trading channel sends every confirmed fill. Filter it by wallets and you get only that wallet’s order flow, decoded and ready to act on.
What you need
- An API key from radion.app/dashboard.
- The wallet addresses you want to follow (
0x…). - The
@radion-app/sdkpackage.
Follow the wallet
Subscribe totrading with a wallets filter. The SDK opens the socket, sends the X-API-Key header, and resubscribes after a reconnect.
wallets filter keeps events where a listed address is the maker or taker. Read side (0 = buy, 1 = sell), tokenId, and the filled amounts to size your own trade.
Front-run the confirmation
Want to act before the fill lands in a block? Add a secondtrading subscription with confirmed: false to get the pending feed. Pending frames are guesses, so treat them as a hint and reconcile against the confirmed trading event by transaction_hash. See Mempool front-run alert for the full pattern.
Notes
- Multiple wallets in one subscription — the filter matches any of them.
- Add
min_usdto skip small fills and copy only meaningful size. - The
tradingchannel is order flow only. For a wallet’s full activity (transfers, splits, redemptions), use thewalletsfilter channel.
Next steps
trading channel
Every order-flow event and its payload.
Examples repo
Runnable
copytrade example you can clone.