Swarm
contract_monitor_subscribe
Subscribe to 30-day continuous monitoring of up to 10 EVM contract addresses. Fires webhook alerts on admin key movement, liquidity drops, claim condition changes, or new critical Slither findings.
Remote hobiecunningham/agentic-swarm-marketplace
Other tools also called contract_monitor_subscribe?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"addresses": {
"type": "array",
"items": {
"type": "string"
},
"title": "Addresses",
"description": "Up to 10 0x-prefixed EVM addresses to watch"
},
"thresholds": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Thresholds",
"default": null,
"description": "Optional JSON object for alert sensitivity (e.g. liquidity drop %, admin key moves). Omit or {} for seller defaults."
},
"webhook_url": {
"type": "string",
"title": "Webhook Url",
"description": "HTTPS URL that receives POST alerts when risk thresholds breach"
},
"duration_days": {
"type": "integer",
"title": "Duration Days",
"default": 30,
"description": "Subscription length in days (default 30; max per seller policy)."
}
}
}