Hi,
Iโm trying to use opensea plugin to sell and buy NFT. I used the following code to create a sell order:
Moralis.Plugins.opensea.createSellOrder({
network: this.network,
tokenAddress: this.nftContractAddress,
tokenId: tokenId,
tokenType: this.tokenType,
userAddress: this.fromAddress,
startAmount: 0.01,
endAmount: 0.01,
});
But I am getting following error after setApprovalForAll
transaction is confirmed.
error:
web3Sign trigger signer address missing or invalid
how do I overcome this?
Thank you