Erc721.signature property
Signature Minting
Example
// see how to craft a payload to sign in the `contract.erc721.signature.generate()` documentation
const signedPayload = contract.erc721.signature().generate(payload);
// now anyone can mint the NFT
const tx = contract.erc721.signature.mint(signedPayload);
const receipt = tx.receipt; // the mint transaction receipt
const mintedId = tx.id; // the id of the NFT minted
Signature:
get signature(): Erc721WithQuantitySignatureMintable;
Remarks
Generate dynamic NFTs with your own signature, and let others mint them using that signature.