Dutch Auction Smart Contract
Address
Read-Only Functions
Returns the average price of token from all the commitments.
Returns price of the token during auction which proportionally decreases as time elapses. Gives initialized minimum price of token when the auction period ends
Returns auction is a success if all the tokens are sold ie. all the tokens are sold at a price greater or equal to minimum price
Returns number of tokens user is able to claim
Returns the clearing ie. current price for the token. The price is based on the proportional price drop of the token. The price drop is based on the difference between start price and minimum price and the time that has been elapsed
init function
Init functions can only be called once
Name
Description
_funder
The address that funds the auction
_token
The address of the token that needs to be auctioned
_totalTokens
The total number of tokens for auction
_startTime
Auction start time
_endTime
Auction end time
_paymentCurrency
The currency the dutch auction accepts as payment. Can be ETH or token
_startPrice
Starting price of token for auction. It is the maximum price for the token
_minimumPrice
Minimum price for the token to be successful
_admin
Address with admin privileges
_pointList
Gives point to estimate how much a investor can invest. Can be zero address if not required
_wallet
Address where collected funds will be forwarded to
Buy a token
A gateway to buy a token using Eth as a payment currency. It is a commitment of ether for equivalent amount of token on sale
A gateway to buy token using a specific ERC20 token as payment currency. It is a commitment of Payment Currency for equivalent amount of token on sale
Finalize Auction
We can finalize the market auction if we have the required role or the time for auction has expired. If the auction is successfully finalized, the payment is forwarded to the specified wallet. If the auction is not successful, all the auction token is sent back to the wallet.
If the auction was successful it transfers the claimed tokens to the buyer. If not successful sends the funds back to the buyer
Can call this function to cancel the auction if need be. Only the admin can cancel the auction. If the auction is finalized or fund is already raised, the auction can not be cancelled.
Last updated