How to implement Dutch auction? #1546
Unanswered
kingaimaster94
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Dutch auctions aren't supported on OpenSea anymore, for about 1 year now. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
const auction = await openseaSDK.createListing({
asset: {
tokenId: tokenId.toString(),
tokenAddress: nftContractAddress,
name: "PrismaticNFT Collection",
},
accountAddress: activeAccount.address,
startAmount: startAmount,
endAmount: endAmount,
listingTime: Math.floor(Date.now() / 1000),
domain: 'https://www.prismaticcapital.com',
expirationTime: expirationTimeStamp,
paymentTokenAddress: paymentTokenAddress,
englishAuction: false,
});
Beta Was this translation helpful? Give feedback.
All reactions