get_balance
Retrieve the balance of a specified address on the Neo N3 blockchain, supporting both mainnet and testnet networks for accurate asset tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Neo N3 address | |
network | No | Network to use: "mainnet" or "testnet" |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "Neo N3 address",
"type": "string"
},
"network": {
"description": "Network to use: \"mainnet\" or \"testnet\"",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}