
Values · Reads onchain state
Holds an address as a named value that later steps reference. The address is echoed into a slot, so a recipient, operator, or contract is declared once and coiled everywhere it is needed. Reach for it to give an address a single source of truth in a plug, so changing it in one place updates every transfer, approval, or balance read that uses it.
Rebalance Holdings by Fixed Weights



1·Get address
The literal address 0x4844...3a88 is held as a named value so later steps reference this wallet by name.
2·Set
That held address is written into the variable holder_wallet, wiring the value from the first step so downstream steps read the wallet by name.
3·Get token
WETH is held as a named token value for the first entry in the rebalance set.
4·Use
Composing the Set Rebalance Token plug registers WETH into the token set with its target weight.
5·Get token
WBTC is held next as a named token value for the second entry.
6·Use
Running Set Rebalance Token again registers WBTC into the token set with its target weight.
7·Get token
USDC is held as a named token value for the third entry.
8·Use
Invoking Set Rebalance Token once more registers USDC into the token set with its target weight.
9·Get token
AAVE is held as a named token value for the fourth entry.
10·Use
Composing Set Rebalance Token again registers AAVE into the token set with its target weight.
11·Get token
UNI is held as the fifth named token value.
12·Use
A further Set Rebalance Token call registers UNI into the token set with its target weight.
13·Use
Finally, composing Rebalance Holdings to Target runs the rebalance over holder_wallet, routing the five registered tokens toward their configured weights.