Storage and types overview
token_t
status_auction_t
auction_t
end_time
timestamp
Time when auction will be finished
current_bidder
address
Address of a user who made current bid
current_bid
nat
Current bid
amt
nat
Amount of tokens that that were put up for auction
fees_t
dev_fee_f
nat
Float value multiplied by 1e+18
Fee that goes to the devs fund and can be withdrawn by an administrator
bid_fee_f
nat
Float value multiplied by 1e+18
Fee in QuipuSwap Governance token that applies on each bid for all auctions
storage_t - main contract storage
dev_fee_balances_f
big_map(token_t, nat)
Float value multiplied by 1e+18
Mapping of tokens to their balances that can be withdrawn by an administrator
public_fee_balances_f
big_map(token_t, nat)
Float value multiplied by 1e+18
Mapping of tokens to their balances for which auction can be launched (except of whitelisted tokens)
whitelist
set(token_t)
A set of tokens for which an auction can't be started. Can be updated by an administrator
baker
option(key_hash)
Baker for whom all TEZ tokens on the contract were delegated. Can be changed by an administrator
admin
address
Administrator of the contract
pending_admin
option(address)
Pending administrator that should accept his new administrator role (if he is not None
)
bid_fee_balance_f
nat
Float value multiplied by 1e+18
Bid fee balance in QuipuSwap Governance token that were withdrawn from each bid. Can be burned by an administrator
auctions_count
nat
Number of auctions created by all users
auction_duration
nat
Duration of each auction that will be created. Can be changed by an administrator
full_storage_t - storage root
Last updated