get_balance
Query the Solana blockchain to retrieve the balance of a specific account using its Pubkey. Provides the balance in a clear response format for easy integration and verification.
Instructions
Returns the balance of the account of provided Pubkey.
Args: address (str): Pubkey of account to query
Returns: str: Account balance response in the format "Balance of {address}: {balance}"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"title": "Address",
"type": "string"
}
},
"required": [
"address"
],
"title": "get_balanceArguments",
"type": "object"
}