Docs
  • β›΅Lodestar Finance
  • Getting Started
    • πŸ‘¨β€πŸŒΎUser Guide
    • ❓FAQ
    • πŸ—οΈDeployed Contracts
  • Documentation
    • πŸ‘©β€πŸ”¬Technical Overview
      • Supply
      • Collateral
        • Collateral Factors
      • Borrow
      • Interest
        • Interest Rate Model 1
        • Interest Rate Model 2
        • Interest Rate Model 3
        • Interest Rate Model 4
        • Interest Rate Model 5
      • Reserves
        • Reserve Factors
        • Rake
      • Liquidation
      • Staking
        • Emission Gauge Voting
      • Looping
    • πŸ€–Contracts
      • Lens
      • Comptroller
        • LODE Emissions
        • Events
        • Error Reporting
      • Oracles
      • Interest Rate Models
        • Constructor Arguments
      • lTokens
        • Market and Account State
        • Events
        • Error Reporting
    • βš™οΈAPI
    • πŸ”Security
    • πŸ—ΊοΈRoadmap
    • πŸ₯šInception
  • Tokenomics
    • 🧭LODE
  • Links
    • Twitter
    • Discord
    • Medium
    • Github
    • Lodestar Website
    • Lodestar dApp
    • Lodestar Liquidity Mining
    • LODE Token Claim for Aelin Supporters
Powered by GitBook
On this page
  1. Documentation
  2. Contracts
  3. lTokens

Events

The protocol's lToken emitted events.

Event
Description

Mint(address minter, uint mintAmount, uint mintTokens)

Emitted upon any successful mints

Redeem(address redeemer, uint redeemAmount, uint redeemTokens)

Emitted upon any successful redeems

Borrow(address borrower, uint borrowAmount, uint accountBorrows, uint totalBorrows)

Emitted upon any successful borrows

RepayBorrow(address payer, address borrower, uint repayAmount, uint accountBorrows, uint totalBorrows)

Emitted upon any successful repay borrows

LiquidateBorrow(address liquidator, address borrower, uint repayAmount, address lTokenCollateral, uint seizeTokens)

Emitted upon any successful liquidations

PreviousMarket and Account StateNextError Reporting

Last updated 2 years ago

πŸ€–