
Ethereum Virtual Machine · Reads onchain state
Reads a token balance held by an address, native or ERC-20. The native token address routes to the holder's ETH balance; any other address calls the token's balanceOf. The result carries the token's decimals. Reach for it to size an amount at what is actually held, to require a minimum balance before a step runs, or to measure a balance before and after a solver's route so a predicate confirms the outcome.
Transfer Token on a Schedule



1·Take
A named parameter token is declared here for the caller to supply at execution time, naming the asset this plug moves.
2·Get token balance
Reading the balance of that token held by Your Wallet captures the current holding for the wallet.
3·Bubble
Surfacing that measured balance as an output of this plug hands the figure back to the caller.
4·Take
Next a parameter amount is declared for the caller to supply, sizing how much of the token to send.
5·Take
A parameter recipient_address is declared for the caller to supply, naming where the transfer lands.
6·Take
Following that, times_per_interval is declared as a caller parameter, setting the run cap within each interval.
7·Take
Also taken is interval, a caller parameter defining the length of the window the cap applies to.
8·Repeat
Capping runs at up to the times_per_interval count every interval, this rate limit governs how often the transfer can fire.
9·Transfer tokens
Transferring the amount of token to recipient_address sends the asset from the socket to that address.
On other protocols · 2