👋
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
  • mint
  • burnFrom

Token

mint

function mint(address to, uint amount) external;

mints ERC20 token

Parameters Name
Type
Description

to

address

receiver address of the ERC20 address

amount

uint

amount of ERC20 token minted

burnFrom

function burnFrom(address account, uint amount) external;

Tokens from account, deducting from the caller's allowance.

Parameter Name
Type
Description

account

address

Destroys amount tokens from account, deducting from the caller's allowance.

amount

uint

the caller must have allowance for accounts's tokens of at least amount.

PreviousIRewardManagerNextIToken

Last updated 2 years ago