BridgeLogic
This contract tracks events when liquidity is minted without backing, later backed by another user, and when reserves are enabled as collateral.
Events
BackUnbacked(reserve, backer, amount, fee) Emitted when someone backs previously unbacked liquidity (assets minted without immediate backing).
reserve: The asset being backed.backer: The address providing the backing liquidity.amount: The amount backed.fee: The fee paid for backing.
MintUnbacked(reserve, user, onBehalfOf, amount, referralCode) Emitted when unbacked aTokens are minted for a user (tokens representing liquidity, but not yet matched by reserve funds).
reserve: The underlying asset.user: The address initiating the mint.onBehalfOf: The address receiving the minted aTokens.amount: The amount of tokens minted.referralCode: Optional referral code used for rewards or tracking.
ReserveUsedAsCollateralEnabled(reserve, user) Emitted when a user enables a reserve asset as collateral.
reserve: The asset being marked as collateral.user: The address of the user enabling it.
Last updated