gobject_count - Dash
Example code for the gobject_count json-rpc method. Сomplete guide on how to use gobject_count json-rpc in GetBlock.io Web3 documentation.
Parameters
method name
- string
None
mode
- string
Result return format:
- json (default)
- all - Default before Dash Core 0.12.3 (for backwards compatibility)
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "gobject",
"params": ["count", "json"],
"id": "getblock.io"}'
Response
{
"error": null,
"id": "getblock.io",
"result": {
"erased": 36,
"objects_total": 14,
"other": 0,
"proposals": 14,
"triggers": 0,
"votes": 11078
}
}
Last updated