Hi guys, Iβm trying to sell NFT from my code on opensea.
My code like this:
const expirationTime = Math.round(Date.now() / 1000 + 60 * 60 * 24);
const startAmount = 1;
const endAmount = 1;
await Moralis.Plugins.opensea.createSellOrder({
network: "testnet",
tokenAddress: '0xe75a6ff626c5526613169D65e75033fB00E26f73',
tokenId: '5',
tokenType: "ERC721",
userAddress: '0x24556a8cb63663d027be3e32b2551b9e8e68b18d',
startAmount,
endAmount,
expirationTime: startAmount > endAmount && expirationTime, // Only set if you startAmount > endAmount
});
Error
How to fix it