Mint

Once registered with a proper NFT factory contract, a Wallet could mint NFTs for others.

mintNFT(mintNFT: {
    recipient: Address;
    contentHash: ethers.BytesLike;
    feeToken: TokenLike;
    fee?: BigNumberish;
    nonce?: Nonce;
}): Promise<Transaction>;
Parameter
Description

.recipient

The recipient address which receives the newly minted NFT

.contentHash

An identifier of the NFT (e.g. IFPS content identifier)

.feeToken

Token to pay the fee in (typically ETH)

.fee

Amount of token to be paid as the fee

.nonce

Nonce that is going to be used

Last updated