Skip to content

Commit

Permalink
Merge pull request #145 from Itheum/feature-nfmeid-vault-launch
Browse files Browse the repository at this point in the history
fix: bump up the gas needed for minting
  • Loading branch information
newbreedofgeek authored Aug 16, 2024
2 parents 0d1c9b3 + ce454ac commit f098e27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itheum/sdk-mx-data-nft",
"version": "3.6.0-alpha.6",
"version": "3.6.0-alpha.7",
"description": "SDK for Itheum's Data NFT Technology on MultiversX Blockchain",
"main": "out/index.js",
"types": "out/index.d.js",
Expand Down
2 changes: 1 addition & 1 deletion src/nft-minter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export class NftMinter extends Minter {
data: data.build(),
sender: senderAddress,
receiver: this.contract.getAddress(),
gasLimit: 100_000_000,
gasLimit: 130_000_000,
chainID: this.chainID
});

Expand Down
2 changes: 1 addition & 1 deletion src/sft-minter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ export class SftMinter extends Minter {
data: data.build(),
sender: senderAddress,
receiver: this.contract.getAddress(),
gasLimit: 100_000_000,
gasLimit: 130_000_000,
chainID: this.chainID
});

Expand Down

0 comments on commit f098e27

Please sign in to comment.