Commit 4784f14f authored by nopara73's avatar nopara73 Committed by GitHub

Update ApiSpecification.md

parent 82872f1c
...@@ -125,6 +125,21 @@ POST /wallet/send-transaction - Attempts to send a transaction ...@@ -125,6 +125,21 @@ POST /wallet/send-transaction - Attempts to send a transaction
} }
``` ```
## GET /wallet/status - Displays dynamic information on the wallet ## GET /wallet/status - Displays dynamic information on the wallet
### Responses
```
{
"success": "true",
"connectedNodeCount": "7",
"maxConnextedNodeCount": "8",
"headerChainHeight": "1048",
"trackingHeight": "1047",
"trackedTransactionCount": "306",
"trackedScriptPubKeyCount": "100",
"walletState": "syncingBlocks", // notStarted/syncingHeaders/syncingBlocks/mempoolStalling/syncingMempool/synced
"historyChangeBump": "231321" // every time something changes this number is dumped. So it's enough to poll this get request and no need to poll the history or balances get request constantly to update the up, but only when this number changes
}
```
## POST /wallet/create - Creates the wallet ## POST /wallet/create - Creates the wallet
### Parameters ### Parameters
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment