getmerkleblocks - Dash
Example code for the getmerkleblocks json-rpc method. Сomplete guide on how to use getmerkleblocks json-rpc in GetBlock.io Web3 documentation.
Parameters
filter
- string
The hex encoded bloom filter.
hash
- string
The block hash.
count
- number (int)
Optional.
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "getmerkleblocks",
"params": ["2303028005802040100040000008008400048141010000f8400420800080025004000004130000000000000001", "00000000007e1432d2af52e8463278bf556b55cf5049262f25634557e2e91202", 2000],
"id": "getblock.io"}'
Response
{
"error": null,
"id": "getblock.io",
"result": [
"000000202c...aefc440107",
"0000002058...9a17830103"
]
}
Last updated