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);

AuctionPurchase

event AuctionPurchase(uint256 _nftId, uint256 _flashtronautNftId, uint256 _fcTokensBurned, uint256 _premiumPaid);
  • _nftId: the id of the FlashNFT that is being purchased at auction.

  • _flashtronautNftId: the optionally provided Flashtronaut NFT that the auction purchaser is holding to give them a discount on premium paid.

  • _fcTokensBurned: the amount of fc-Tokens to pay back the amount still owed from what was borrowed by the previous FlashNFT owner.

  • _premiumPaid: the amount of $FLASH tokens paid to win the auction.

Last updated