DASH
POST
GET
Last updated on January 1, 1970
2 min read
Method listsinceblock undefined ()
connect with JSON-RPC protocol
listsinceblock
Method not allowed
Gets all transactions affecting the wallet which have occurred since aparticular block, plus the header hash of a block at a particular depth.
Parameters
Header Hash
- string (hex)
Optional.
The hash of a block header encoded as hex in RPC byte order. All transactions affecting the wallet which are not in that block or any earlier block will be returned, including unconfirmed transactions. Default is the hash of the genesis block, so all transactions affecting the wallet are returned by default.
Target Confirmations
- number (int)
Optional.
Sets the lastblock field of the results to the header hash of a block with this many confirmations. This does not affect which transactions are returned.
Default is 1, so the hash of the most recent block on the local best block chain is returned.
Include Watch-Only
- bool
Optional.
If set to true, include watch-only addresses in details and calculations as if they were regular addresses belonging to the wallet.
If set to false (the default), treat watch-only addresses as if they didn't belong to this wallet.
include_removed
- bool
Optional. Default=true
Show transactions that were removed due to a reorg in the "removed" array (not guaranteed to work on pruned nodes).
Request
curl --location --request POST 'https://dash.getblock.io/mainnet/'
--header 'x-api-key: YOUR-API-KEY'
--header 'Content-Type: application/json'
--data-raw '{"jsonrpc": "2.0",
"method": "listsinceblock",
"params": [null, null, null, null],
"id": "getblock.io"}'
Response
{
"result": "null",
"id": "getblock.io",
"status_code": 405,
"message": "Method not allowed"
}
Start Building with GetBlock RPCs for Free
Previous
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }
Next
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }