Skip to content

Commit 05a16e6

Browse files
committed
gas limit adjustment
1 parent c10aa7e commit 05a16e6

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### [1.15.1](https://github.com/ElvenTools/elven-tools-cli/releases/tag/v1.15.1) (2022-08-27)
2+
- gas limit adjustment - there are differences between the devnet and testnet
3+
14
### [1.15.0](https://github.com/ElvenTools/elven-tools-cli/releases/tag/v1.15.0) (2022-08-27)
25
- giveaway functionality changes - now you can use multiple addresses for the giveaway. You can use the giveaway.json input file or enter them by hand.
36
- gas limits adjustments

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"type": "module",
77
"types": "build/types",
8-
"version": "1.15.0",
8+
"version": "1.15.1",
99
"elvenTools": {
1010
"smartContractVersionTagName": "v1.9.0",
1111
"minterDappVersionTagName": "v3.1.1"

src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const mintFunctionName =
6262
customConfig?.config?.nftMinterSc?.mintFnName || 'mint';
6363

6464
export const giveawayTxBaseGasLimit =
65-
customConfig?.config?.nftMinterSc?.giveawayBaseGasLimit || 12000000;
65+
customConfig?.config?.nftMinterSc?.giveawayBaseGasLimit || 12100000;
6666

6767
export const giveawayFunctionName =
6868
customConfig?.config?.nftMinterSc?.giveawayFnName || 'giveaway';
@@ -209,7 +209,7 @@ export const tokensPerOneTx =
209209
customConfig?.config?.nftMinterSc?.tokensPerOneTx || 95;
210210

211211
export const tokensPerOneGiveawayTx =
212-
customConfig?.config?.nftMinterSc?.tokensPerOneGiveawayTx || 99;
212+
customConfig?.config?.nftMinterSc?.tokensPerOneGiveawayTx || 98;
213213

214214
export const isMintingPausedFunctionName =
215215
customConfig?.config?.nftMinterSc?.isMintingPausedFnName || 'isMintingPaused';

0 commit comments

Comments
 (0)