Safety
Operational guidance for AI agents integrating with blockchain infrastructure: read-only APIs, no transaction signing, and human-in-the-loop for any mutations.
Defaults
- Read first
Use query and inspect tools before anything that moves funds or changes state.
- Validate addresses
Check the address format matches the chain. Wrong chain often returns empty data, not an error.
- Prefer webhooks
Subscribe to events instead of polling RPC or REST in a loop.
- Limit retries
Backoff on errors. Do not hammer the API after a 429.
- Protect secrets
Never pass private keys or API keys into the model context.
Out of scope
- This site documents read APIs and gateway access. Transaction signing belongs in your wallet, KMS, or signer.
- Deleting webhooks, rotating keys, or gateway writes should need human confirmation.