PRODUCT
Transaction automation
Auto-forward deposits to master wallets. Define rules, batch transactions, and optimize fees automatically.
Auto-Forwarding
Automatically forward deposits from sub-wallets to your master treasury wallet.
Rule Engine
Define conditions and actions. Forward based on amount, currency, or custom logic.
Batch Processing
Combine multiple transfers into a single transaction. Save gas, reduce costs.
Scheduled Operations
Schedule recurring transfers, sweeps, and treasury rebalancing.
Gas Optimization
Smart gas estimation and timing to minimize transaction costs.
Configurable Thresholds
Set minimum amounts, waiting periods, and confirmation requirements.
Set rules, automate everything
Define forwarding rules and schedules once. We handle execution, retries, and gas optimization automatically.
1const rule = await Relay.automation.createRule({2 name: 'forward-to-treasury',3 trigger: {4 event: 'deposit.confirmed',5 conditions: {6 min_amount: '0.01',7 currency: 'ETH'8 }9 },10 action: {11 type: 'forward',12 destination: 'wal_treasury_001',13 percentage: 10014 }15});