👋
Overview Lender V2
  • Overview
  • The Basics
    • Glossary of Key Words
    • Basic lending pool operations
    • Connect and Deposit
    • Reward Manager
    • Verification Manager
    • Strategy Manager
    • Governance: Yet to be built
    • Conclusion
  • LenderPool
    • ILenderPool
  • RedeemPool
    • IRedeemPool
  • Reward
    • IReward
  • RewardManager
    • IRewardManager
  • Token
    • IToken
  • Verification
    • IVerification
Powered by GitBook
On this page
  1. RedeemPool

IRedeemPool

PreviousRedeemPoolNextReward

Last updated 2 years ago

Also available on .

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;
}
Github