get_block_count
Retrieve the total number of blocks on the Neo N3 blockchain for a specified network, enabling users to track blockchain progress and verify data integrity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | No | Network to use: "mainnet" or "testnet" |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"network": {
"description": "Network to use: \"mainnet\" or \"testnet\"",
"type": "string"
}
},
"type": "object"
}