get-token-balance
Retrieve the token balance of a specific blockchain address using 'get-token-balance' in the MCPilot environment, enabling secure and simplified AI-powered blockchain interactions.
Instructions
Get token balance of an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
token | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"type": "string"
},
"token": {
"type": "string"
}
},
"required": [
"address",
"token"
],
"type": "object"
}