Erc1155.mintAdditionalSupply() method
Increase the supply of an existing NFT
Example
const tokenId = 0;
const additionalSupply = 1000;
await contract.erc1155.mintAdditionalSupply(tokenId, additionalSupply);
Signature:
mintAdditionalSupply(tokenId: BigNumberish, additionalSupply: BigNumberish): Promise<TransactionResultWithId<NFT>>;
Parameters
Parameter | Type | Description |
---|---|---|
tokenId | BigNumberish | the token id of the NFT to increase supply of |
additionalSupply | BigNumberish | the additional amount to mint |
Returns:
Promise<TransactionResultWithId<NFT>>
Remarks
Increase the supply of an existing NFT and mint it to the connected wallet address