🐻
Ursa
  • Getting Started
    • 👨‍🌾User Guide
    • ❓FAQ
    • Deployed Contracts
  • Documentation
    • 👩‍🔬Technical Overview
      • Supply
      • Collateral
      • Borrow
      • Interest
      • Reserves
      • Liquidation
      • Staking
        • Emission Gauge Voting
      • Proof of Liquidity
    • 🤖Contracts
      • Lens
      • Comptroller
        • Events
        • Error Reporting
      • Oracles
      • Interest Rate Models
      • lTokens
        • Market and Account State
        • Events
        • Error Reporting
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 1 year ago

🤖