File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
4
### [ 1.15.0] ( https://github.com/ElvenTools/elven-tools-cli/releases/tag/v1.15.0 ) (2022-08-27)
2
5
- 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.
3
6
- gas limits adjustments
Original file line number Diff line number Diff line change 5
5
},
6
6
"type" : " module" ,
7
7
"types" : " build/types" ,
8
- "version" : " 1.15.0 " ,
8
+ "version" : " 1.15.1 " ,
9
9
"elvenTools" : {
10
10
"smartContractVersionTagName" : " v1.9.0" ,
11
11
"minterDappVersionTagName" : " v3.1.1"
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export const mintFunctionName =
62
62
customConfig ?. config ?. nftMinterSc ?. mintFnName || 'mint' ;
63
63
64
64
export const giveawayTxBaseGasLimit =
65
- customConfig ?. config ?. nftMinterSc ?. giveawayBaseGasLimit || 12000000 ;
65
+ customConfig ?. config ?. nftMinterSc ?. giveawayBaseGasLimit || 12100000 ;
66
66
67
67
export const giveawayFunctionName =
68
68
customConfig ?. config ?. nftMinterSc ?. giveawayFnName || 'giveaway' ;
@@ -209,7 +209,7 @@ export const tokensPerOneTx =
209
209
customConfig ?. config ?. nftMinterSc ?. tokensPerOneTx || 95 ;
210
210
211
211
export const tokensPerOneGiveawayTx =
212
- customConfig ?. config ?. nftMinterSc ?. tokensPerOneGiveawayTx || 99 ;
212
+ customConfig ?. config ?. nftMinterSc ?. tokensPerOneGiveawayTx || 98 ;
213
213
214
214
export const isMintingPausedFunctionName =
215
215
customConfig ?. config ?. nftMinterSc ?. isMintingPausedFnName || 'isMintingPaused' ;
You can’t perform that action at this time.
0 commit comments