status-go/services/browsers
Jonathan Rainville b2d8f7f416
feat: add bookmarks table for the browser bookmarks
plus get bookmark icon using a lib
2020-11-16 13:31:34 -05:00
..
README.md Add browsers API (#1523) 2019-07-17 08:28:37 +03:00
api.go feat: add bookmarks table for the browser bookmarks 2020-11-16 13:31:34 -05:00
api_test.go feat: add bookmarks table for the browser bookmarks 2020-11-16 13:31:34 -05:00
database.go feat: add bookmarks table for the browser bookmarks 2020-11-16 13:31:34 -05:00
service.go Create single database appdatase 2019-08-21 10:44:50 +03:00

README.md

Browsers Service

Browser service provides read/write API for browser object.

To enable include browsers config part and add browsers to APIModules:

{
  "BrowsersConfig": {
    "Enabled": true,
  },
  APIModules: "browsers"
}

API

Enabling service will expose three additional methods:

browsers_addBrowser

Stores browser in the database. All fields are specified below:

{
  "browser-id": "1",
  "name": "first",
  "timestamp": 10,
  "dapp?": true,
  "history-index": 1,
  "history": [
    "one",
    "two"
  ]
}

browsers_getBrowsers

Reads all browsers, returns in the format specified above. List is sorted by timestamp.

browsers_deleteBrowser

Delete browser from database. Accepts browser id.