provider_get_logs
Extract blockchain logs using a customizable filter for specific addresses, topics, and block ranges, enhancing transaction and event monitoring on EVM-compatible networks.
Instructions
Get logs that match a filter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | Yes | The filter to apply |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"description": "The filter to apply",
"properties": {
"address": {
"type": "string"
},
"fromBlock": {
"type": "string"
},
"toBlock": {
"type": "string"
},
"topics": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"filter"
],
"type": "object"
}