getchaintips - Bitcoin Gold
Example code for the getchaintips json-rpc method. Сomplete guide on how to use getchaintips json-rpc in GetBlock.io Web3 documentation.
Parameters
-
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "getchaintips",
"params": [],
"id": "getblock.io"}'
Response
{
"error": null,
"id": "getblock.io",
"result": [
{
"branchlen": 0,
"hash": "000000007cc1fc836d0992202730ca71f77a8cf2a35974ca300dadbf8bc1e090",
"height": 702634,
"status": "active"
}
]
}
Last updated