VIZ RPC Reference
JSON-RPC 2.0 methods served by node.viz.cx. Endpoint: POST https://node.viz.cx
get_dynamic_global_properties
Returns live chain state: head block, total supply, vesting fund, reward fund, committee fund, and more.
Returns
DynamicGlobalProperties object. Key fields: head_block_number, current_supply, total_vesting_fund, total_vesting_shares, total_reward_fund, committee_fund.
Example request
curl -X POST https://node.viz.cx \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "get_dynamic_global_properties"
}'Try it
Target
Method
JSON-RPC request
{
"jsonrpc": "2.0",
"id": 1,
"method": "get_dynamic_global_properties"
}POST https://node.viz.cx