Events
AuctionTokensDestinationUpdated
event AuctionTokensDestinationUpdated(address _newAuctionTokensDestination);
_newAuctionTokensDestination: the address that the $FLASH tokens will be sent to when they are spent to win an Auction
PositionDeposit
event PositionDeposit(uint256 _nftId);
PositionWithdraw
event PositionWithdraw(uint256 _nftId);
PositionPartialWithdraw
event PositionPartialWithdraw(uint256 _nftId, uint256 _fTokensBurned, uint256 _fcTokensBurned);
_nftId: the id of the FlashNFT that is being partially paid back by burning fc-Tokens to withdraw the NFT
_fTokensBurned: the amount of fTokens required for a partial unstake your FlashNFT had it not been borrowed against.
_fcTokensBurned: the amount of fc-Tokens to pay back for a partial withdraw.
AuctionPurchase
event AuctionPurchase(uint256 _nftId, uint256 _flashtronautNftId, uint256 _fcTokensBurned, uint256 _premiumPaid);
_flashtronautNftId: the optionally provided Flashtronaut NFT that the auction purchaser is holding to give them a discount on premium paid.
_premiumPaid: the amount of $FLASH tokens paid to win the auction.
Last updated