status-go/services/browsers
Dmitry Shulyak 6f1c2eca12
Don't omit history index when the value is 0 (#1545)
2019-07-27 08:48:23 +03:00
..
migrations Add browsers API (#1523) 2019-07-17 08:28:37 +03:00
README.md Add browsers API (#1523) 2019-07-17 08:28:37 +03:00
api.go Add browsers API (#1523) 2019-07-17 08:28:37 +03:00
api_test.go Don't omit history index when the value is 0 (#1545) 2019-07-27 08:48:23 +03:00
database.go Don't omit history index when the value is 0 (#1545) 2019-07-27 08:48:23 +03:00
service.go Add browsers API (#1523) 2019-07-17 08:28:37 +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.