Set stored value
Set stored value

Database · Acts onchain

Writes a value to the socket's persistent storage under a scope and key. Scope chooses socket storage, shared across every plug the socket runs, or plug storage, private to this plug bundle. The value persists across transactions until overwritten; writing zero deletes it. Read it back with the read stored value action using the same scope and key. Reach for it to persist anything a later run needs: a running total, the timestamp of the last rebalance, a cap consumed so far.

Unstake From Lido, Claim It When It Clears, Restake It

plug
database
boolean
11actions
  1. 1·Take

    Declares unstake_amount as a caller-supplied parameter, the quantity of stETH to queue for withdrawal at execution time.

  2. 2·Read stored value

    Reads the stored unstake_request value from this plug's own storage, pulling whatever request identifier a prior run may have saved.

  3. 3·Predicate

    Comparing the stored unstake_request against 0 with an equality operator, control branches on whether no request is currently outstanding.

  4. 4·Request withdrawal

    When no request exists, the unstake_amount of stETH at 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84 is queued for withdrawal through Lido, yielding a claimable request NFT.

  5. 5·Set stored value

    Writing the resulting request identifier back into plug storage under unstake_request, this persists the open claim for the next run to find.

  6. 6·Else branch

    Opening the else branch, this defines what runs when a request identifier was already stored.

  7. 7·Claim withdrawal

    On that branch, the stored unstake_request is claimed from Lido, and once the request has finalized the socket receives native ETH.

  8. 8·Set stored value

    Resetting the stored unstake_request to 0 clears the marker, so a future run starts a fresh withdrawal.

  9. 9·Get token balance

    Reading the ETH balance held by the socket at 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE, this measures the native ETH now on hand.

  10. 10·Stake

    Staking that measured ETH balance with Lido returns stETH at 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84, restaking the claimed proceeds.

  11. 11·End block

    Closing the innermost open block, this ends the else branch.

Take
Read stored value of in
Request withdrawal of from Lido
Set stored value of in to
Else
Claim withdrawal from Lido
Set stored value of in to
Get balance of held by
Stake for
End block
  • Unstake From Lido, Claim It When It Clears, Restake It

    plug
    database
    boolean
  • Borrow + Term Repayment Schedule

    time
    database
    boolean
  • Trailing Stop Loss (WETH/USDC Loop)

    boolean
    aave
    evm
  • Loop at Target HF + Borrow Rate Exit Guard

    database
    boolean
    aave
  • Loop at Target HF + Trailing Stop Loss

    database
    boolean
    aave