Skip to main content

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

ParameterTypeDescription
tokenIdBigNumberishthe token id of the NFT to increase supply of
additionalSupplyBigNumberishthe additional amount to mint

Returns:

Promise<TransactionResultWithId<NFT>>

Remarks

Increase the supply of an existing NFT and mint it to the connected wallet address