IRedeemPool

Also available on Github.

pragma solidity ^0.8.14;

interface IRedeemPool {

    event StableWithdrawn(uint amount);

    event StableDeposited(uint amount);

    function redeemStable(uint amount) external;

    function redeemStableFor(address account, uint amount) external;
}

Last updated