solana_gettokenbondingstatus
Query the bonding status of a token on Solana networks (mainnet/devnet) using a specified contract address to monitor its bonding state.
Instructions
Get the token bonding status for a given network and contract (if relevant).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to query | |
network | Yes | The network to query |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address to query",
"type": "string"
},
"network": {
"description": "The network to query",
"enum": [
"mainnet",
"devnet"
],
"type": "string"
}
},
"required": [
"network",
"address"
],
"type": "object"
}