2df9df10ab
interface for initializing db, which is implemented for appdatabase and walletdatabase. TBD for multiaccounts DB. Unified DB initializion for all tests using helpers and new interface. Reduced sqlcipher kdf iterations for all tests to 1. |
||
---|---|---|
.. | ||
README.md | ||
api.go | ||
api_test.go | ||
database.go | ||
service.go |
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
.