get_blockchain_info
Retrieve essential blockchain details from the Neo N3 network, including current block height and native asset data, by specifying the network (mainnet or testnet) for precise results.
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"
}