← Dogecoin overview
Dogecoin · bitcoin
getchaintips
Bitcoin Core RPC: getchaintips
Bitcoin Core / compatible node RPC. Reference: developer.bitcoin.org/reference/rpc/getchaintips.html
Result
Bitcoin Core JSON-RPC result
Schema
{
"type": "unknown"
}Example request
Endpoint: https://your-doge-node.azxa.io
JSON-RPC
{
"jsonrpc": "1.0",
"id": 1,
"method": "getchaintips",
"params": []
}Example response
{
"jsonrpc": "2.0",
"id": 1,
"result": null
}cURL
curl -X POST https://your-doge-node.azxa.io \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"1.0","id":1,"method":"getchaintips","params":[]}'