@@ -236,7 +236,7 @@ public static TransactionRequest LocalMint(
236236 {
237237 var transaction = TransactionRequest . CreateCallSmartContractTransactionRequest ( networkConfig ,
238238 account ,
239- SYSTEM_SMART_CONTRACT_ADDRESS ,
239+ account . Address ,
240240 ESDTAmount . Zero ( ) ,
241241 ESDT_LOCAL_MINT ,
242242 ESDTIdentifierValue . From ( tokenIdentifier ) ,
@@ -264,7 +264,7 @@ public static TransactionRequest LocalBurn(
264264 {
265265 var transaction = TransactionRequest . CreateCallSmartContractTransactionRequest ( networkConfig ,
266266 account ,
267- SYSTEM_SMART_CONTRACT_ADDRESS ,
267+ account . Address ,
268268 ESDTAmount . Zero ( ) ,
269269 ESDT_LOCAL_BURN ,
270270 ESDTIdentifierValue . From ( tokenIdentifier ) ,
@@ -294,7 +294,7 @@ public static TransactionRequest Pause(
294294 PAUSE ,
295295 ESDTIdentifierValue . From ( tokenIdentifier ) ) ;
296296
297- transaction . SetGasLimit ( new GasLimit ( 500000 ) ) ;
297+ transaction . SetGasLimit ( new GasLimit ( 60000000 ) ) ;
298298
299299 return transaction ;
300300 }
@@ -318,7 +318,7 @@ public static TransactionRequest Unpause(
318318 UNPAUSE ,
319319 ESDTIdentifierValue . From ( tokenIdentifier ) ) ;
320320
321- transaction . SetGasLimit ( new GasLimit ( 500000 ) ) ;
321+ transaction . SetGasLimit ( new GasLimit ( 60000000 ) ) ;
322322
323323 return transaction ;
324324 }
@@ -345,7 +345,7 @@ public static TransactionRequest Freeze(
345345 ESDTIdentifierValue . From ( tokenIdentifier ) ,
346346 receiver ) ;
347347
348- transaction . SetGasLimit ( new GasLimit ( 500000 ) ) ;
348+ transaction . SetGasLimit ( new GasLimit ( 60000000 ) ) ;
349349
350350 return transaction ;
351351 }
@@ -372,7 +372,7 @@ public static TransactionRequest Unfreeze(
372372 ESDTIdentifierValue . From ( tokenIdentifier ) ,
373373 receiver ) ;
374374
375- transaction . SetGasLimit ( new GasLimit ( 500000 ) ) ;
375+ transaction . SetGasLimit ( new GasLimit ( 60000000 ) ) ;
376376
377377 return transaction ;
378378 }
@@ -400,7 +400,7 @@ public static TransactionRequest Wipe(
400400 ESDTIdentifierValue . From ( tokenIdentifier ) ,
401401 receiver ) ;
402402
403- transaction . SetGasLimit ( new GasLimit ( 500000 ) ) ;
403+ transaction . SetGasLimit ( new GasLimit ( 60000000 ) ) ;
404404
405405 return transaction ;
406406 }
0 commit comments