Cancel Listing
Remove an NFT from the marketplace
Parameters
Parameter
Type
Description
Example Usage
import { cancelListing} from "streamnft-evm";
const response = await cancelListing(
"0x1234...abcd", // tokenAddress
1, // tokenId
0, // fungibleIndex ( 0 for ERC721 )
1, // count
656476, // Chain ID
signer // Ethers signer
);Last updated