contract_view_functions
Retrieve and analyze available functions on a NEAR smart contract by specifying the contract ID and network, enabling efficient interaction with blockchain data.
Instructions
View available functions on a NEAR smart contract.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contractId | Yes | ||
networkId | No | mainnet |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contractId": {
"type": "string"
},
"networkId": {
"default": "mainnet",
"enum": [
"testnet",
"mainnet"
],
"type": "string"
}
},
"required": [
"contractId"
],
"type": "object"
}