watch-contract-events
Monitor specific smart contract events on the Monad testnet by specifying the contract address, event name, and ABI. Track events starting from a chosen block number for accurate data analysis.
Instructions
Watch for smart contract events on Monad testnet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
abi | Yes | Contract ABI | |
address | Yes | Contract address to watch | |
eventName | Yes | Name of the event to watch | |
fromBlock | No | Start watching from this block number |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"abi": {
"description": "Contract ABI",
"type": "string"
},
"address": {
"description": "Contract address to watch",
"type": "string"
},
"eventName": {
"description": "Name of the event to watch",
"type": "string"
},
"fromBlock": {
"description": "Start watching from this block number",
"type": "string"
}
},
"required": [
"address",
"eventName",
"abi"
],
"type": "object"
}