Auction V1.0.0
Introduction
The Auction ADO is a smart contract that allows performing custom auctions on NFTs. NFTs can be sent to this contract with the required messages to start an auction on it. Once the auction has started, users can place bids on the token until the auction expires. The highest bid will win the auction, sending the funds to the seller and receiving the token in return.
There are multiple ways to customize this ADO:
Authorized: Only the NFT contracts sepcified at instantiation are allowed to send NFTs to this Auction ADO.
Open: This means that any NFT contract is allowed to send an NFT to this ADO to be auctioned. To have the Auction ADO be open, do not specify
authorized_token_addresses
in instantiation.
Bidding on the NFT can also be customized to work with one of the following options:
Native: By specifying the denom of the chain in the StartAuction message.
CW20: By specifying the contract address of the CW20 token to be used in the StartAuction. The CW20 tokens allowed to be set as the bidding token can be restricted by specifying
authorized_cw20_address
at instantiation. If this is not specified, then any CW20 token can be set.
This ADO allows creating English Auctions.
Ado_type: auction
InstantiateMsg
Name | Type | Description |
---|---|---|
| Option<Vec<AndrAddr>> | Optional set of CW721 contract addresses to be allowed to send NFTs to the Auction ADO. If not specified, then any CW721 can send NFTs to the auction. |
| Optoin<AndrAddr> | Optional CW20 address to authorize to be used as the purchasing coin for the NFTs in auction. If not specified, then any CW20 can be set as the purchasing coin. |
| String | Contract address of the kernel contract to be used for AMP messaging. Kernel contract address can be found in our deployed contracts. |
| Option<String> | Optional address to specify as the owner of the ADO being created. Defaults to the sender if not specified. |
ExecuteMsg
ReceiveNft
Receives a token from a SendNft
and starts an auction based on the given parameters in the StartAuction
struct.
The auction information can be modified before it has started but is immutable after that.
Only the NFT owner can send the NFT and start the auction.
This message is not called by the user on this ADO, but is the case that handles receiving NFTs from a CW721 ADO.
In order to start an auction you need to define the message of the Cw721ReceiveMsg
as a Cw721HookMsg
.
StartAuction
Starts an auction sale on the sent NFT.
You need to get the base64 encoded representation of the JSON message and attach it as the msg
when sending.
start_time
should not be a time in the past.
Name | Type | Description |
---|---|---|
| Option<MillisecondsExpiration> | Optional Start time for the sale specified as a timestamp in milliseconds. Defaults to immediately if not specified. |
| Timestamp in milliseconds for when the sale ends. | |
| String | The coin denomination to be used to bid on the NFT. Can be either a native coin ie."uandr" or a CW20 token address ie. "andr1..." |
| bool | Whether a CW20 is used to bid on the NFT. If set to false, then a native token is used. |
| Option<Uint128> | The minimum bid that can be placed on the auctioned token. |
| Option<Vec<Addr>> | Optional list of addresses to whitelist for the auction. If None, auction is public. |
| Option<Recipient> | An optional recipient to receive the sale funds for the sold NFT. |
Receive
Receives tokens from a CW20 Send message to be used as a bid on the NFT auction.
This message is not called by the user on this ADO, but is the case that handles receiving CW20 tokens from a CW20 ADO.
In order to bid on an auction using a CW20, you need to define the message of the Cw20ReceiveMsg
as a Cw721HookMsg
.
PlaceBid (CW20)
You need to get the base64 encoded representation of the JSON message and attach it as the msg
field for the CW20 Send message.
The following criteria must be met for the bid to be placed:
The NFT is currently under auction
The sender's bid is higher than the highest bid
The sender does not currently hold the highest bid
The sender is not the token owner
Name | Type | Description |
---|---|---|
| String | The token id of the NFT you want to place a bid on. |
| String | The address of the NFT contract the NFT belongs to. |
AuthorizeTokenContract
Authorize a CW721 contract to send NFTs to this ADO.
Only available to the contract owner.
Name | Type | Description |
---|---|---|
| The contract address of the CW721 (NFT) contract to authorize. | |
| Option<MillisecondsExpiration> | An optional expiration for the permission. |
DeauthorizeTokenContract
Removes authorization from a CW721 contract to send NFTs to the auction.
Only available to the contract owner.
Name | Type | Description |
---|---|---|
| The contract address of the CW721 (NFT) contract to remove authorization for. |
UpdateAuction
Updates the information of an auction.
Only the owner of the auction can execute UpdateAuction
.
An auction can be updated only if it has not started yet.
start_time
should not be a time in the past.
Name | Type | Description |
---|---|---|
| String | The Id of the NFT that is being auctioned. |
| String | The address of the NFT contract. |
| Option<MillisecondsExpiration> | Start time in milliseconds since epoch. |
| Duration in milliseconds from the | |
| String | The coin denomination to be used to bid on the NFT. Can be either a native coin ie."uandr" or a CW20 token address ie. "andr1..." |
| bool | Whether a CW20 is used to bid on the NFT. If set to false, then a native token is used. |
| Option<Uint128> | The minimum bid that can be placed on the auctioned token. |
| Option<Vec<Addr>> | Optional list of addresses to whitelist for the auction. If None, auction is public. |
| Option<Recipient> | An optional recipient to receive the sale funds for the sold NFT. |
CancelAuction
Only the owner of the auction can execute CancelAuction
.
An auction cannot be canceled after it has started.
Cancels the auction of a token.
Name | Type | Description |
---|---|---|
| String | The Id of the NFT in the auction to be cancelled. |
| String | The address of the NFT contract. |
PlaceBid
Places a bid for the auction for the given NFT Id. The bid must be sent as native funds along with this message. The previous largest bid gets automatically sent back to the bidder when they are outbid.
The following criteria must be met for the bid to be placed:
The NFT is currently under auction
The sender's bid is higher than the highest bid
The sender does not currently hold the highest bid
The sender is not the token owner
Name | Type | Description |
---|---|---|
| String | The Id of the NFT to place a bid on. |
| String | The address of the NFT contract. |
Claim
Sends the winner of the auction the NFT and the funds to the NFT owner when the auction has finished. Anyone is allowed to execute this message.
Can only be done when the end_time
has been passed. If there were no bids placed, the original owner retains the token.
Name | Type | Description |
---|---|---|
| String | The Id of the token that was auctioned. |
| String | The address of the NFT contract. |
Base Executes
The rest of the execute messages can be found in the ADO Base section.
QueryMsg
LatestAuctionState
Queries the most recent auction for the given token (either ongoing, complete, or not started yet).
Name | Type | Description |
---|---|---|
| String | The Id of the NFT that we want to query the auction of. |
| String | The address of the NFT contract. |
AuctionStateResponse
Name | Type | Description |
---|---|---|
| The start of the auction. | |
| The end of the auction. | |
| String | The address of the highest bidder. |
| Uint128 | The amount of the highest bid. |
| Uint128 | The Id of the auction. |
| String | The denom the auction is in. |
| bool | Whether or not the auction has been cancelled. |
| Option<Uint128> | The minimum bid that can be placed on the auctioned token. |
| Option<Vec<Addr>> | The whitelisted addresses if they were specified at time of creation. |
| Option<Recipient> | Address to receive the funds of the auction. |
AuctionState
Gets the auction state for a particular auction_id
.
Each Auction has an auction_id which starts at 1 and increments every new auction.
To get the auction_id of a particular token, use LatestAuctionState.
Name | Type | Description |
---|---|---|
| Uint128 | The auction Id. |
Response
See AuctionStateResponse.
Bids
Gets the bids for a given auction.
Name | Type | Description |
---|---|---|
| Uint128 | The auction Id. |
| Option<u64> | Optional parameter to specify which bid to start after. If none specified index |
| Option<u64> | Optional parameter to specify how many bids to query. If none specified a default limit of 10 is used. |
| Option<OrderBy> | Optional parameter to specify the order of the bids being queries. Default is Ascending. |
BidsResponse
Name | Type | Description |
---|---|---|
| Vec<Bid> | The retrieved bids. |
Bid
The state for a particular bid is stored in a basic struct.
Name | Type | |
---|---|---|
| String | The address of the bidder. |
| Uint128 | The amount of funds bid. |
| The time of the bid. |
AuctionIds
Queries the auction Ids for a given token.
Name | Type | Description |
---|---|---|
| String | The Id of the token/NFT. |
| String | The address of the NFT contract. |
AuctionIdsResponse
Name | Type | Description |
---|---|---|
| Vec<Uint128> | The auction Ids. |
AuctionInfosForAddress
Gets all of the auction infos for a given token address.
Name | Type | Description |
---|---|---|
| String | The address of the token contract |
| Option<String> | Optional parameter to specify which |
| Option<u64> | Optional parameter to specify how many |
AuctionInfosForAddressResponse
Returns a vector of AuctionInfo defined below.
Name | Type | Description |
---|---|---|
| Vec<Uint128> | The Ids of the auctions that use the specified |
| String | The address of the token contract. |
| String | The Id of the token that was auctioned. |
IsCancelled
Checks if the specified aution was cancelled.
Name | Type | Description |
---|---|---|
| String | The Id of the token that was auctioned. |
| String | The address of the token contract. |
Returns a true if the auction has been cancelled and false otherwise.
IsClosed
Checks if the specified auction has been closes. Returns true only if the auction has been cancelled, the token has been claimed, or the end time has expired.
Name | Type | Description |
---|---|---|
| String | The Id of the token that was auctioned. |
| String | The address of the token contract. |
Returns a true if the auction has been cancelled and false otherwise.
IsClaimed
Checks if the NFT has been claimed after the auction has concluded.
Name | Type | Description |
---|---|---|
| String | The Id of the token that was auctioned. |
| String | The address of the token contract. |
Returns a true if the NFT has been claimed and false otherwise.
AuthorizedAddresses
Gets all of the authorized CW721 addresses for the auction.
Name | Type | Description |
---|---|---|
| Option<String> | Optional parameter to specify which |
| Option<u64> | Optional parameter to specify how many addresses to return. If none specified a default limit of 25 is used. The maximum limit is 50. |
| Option<OrderBy> | Whether to return the addresses in ascending or descending order. Defaults to ascending if not specified. |
OrderBy
How the returned addresses are ordered.
Base Queries
The rest of the query messages can be found in the ADO Base section.
Last updated