Use wallet activity recipes when your workflow should respond to transfers, deposits, withdrawals, or contract events.

Pattern

text
onchain trigger -> threshold condition -> enrich with data -> notify or create follow-up task
Wallet activity alert
listener matchevent contextsignificant activity Onchain event Receive, send, log, Solana transaction Trigger filter Chain, address, token, amount, topic Threshold branch High-value or policy-relevant transfer Notify or task Alert path, review queue, follow-up workflow

Trigger Options

TriggerUse it for
erc20-receiveToken deposits to a watched address.
erc20-sendToken withdrawals from a watched address.
eth-receiveNative gas-token deposits.
eth-sendNative gas-token withdrawals.
evm-logCustom smart contract events.
solana-transactionSolana wallet or event activity.

Example Filter

json
{ "root": { "type": "erc20-receive", "payload": { "chainId": 8453, "toAddress": "0x0000000000000000000000000000000000000000", "minimumAmount": "1000000" }, "children": ["send_alert"] }}

Safety Notes

Monitoring workflows should not automatically move funds unless you have a clear policy gate, simulation coverage, and operational review. Keep read-only alerting separate from wallet write actions when possible.

Onchain triggers

Reference for EVM and Solana trigger schemas.

Learn More
Wallet docs

Organization wallet boundaries, signing, and operational guidance.

Learn More
EVM actions

Read, write, transfer, approval, and DeFi action schemas.

Learn More
Ask a question... ⌘I