
Plug · Acts onchain
Composes another plug inside this one. The referenced plug's Takes become this step's inputs and its Bubbles become its outputs. Composition is expanded into the referenced plug's real steps before compilation, so the result is one atomic transaction. Reach for it to reuse a tested building block, such as a rebalance or a harvest routine, inside a larger strategy without duplicating its steps.
Get Chainlink Token Value (USD)


1·Take
Opening with a declared parameter, token is left for the caller to supply at execution time, naming the asset to be valued.
2·Take
A second parameter, amount, is declared as caller-supplied, giving the quantity that the price will be applied to.
3·Use
Composing the Get Chainlink Price (USD) plug pulls its price-reading logic into this one, returning the token's USD rate.
4·Calculate
Multiplying the composed price by amount converts the supplied quantity into its USD value.
5·Bubble
Surfacing that product returns the computed USD value as the output of this plug.