gokite-aa-sdk 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gokite-aa-sdk.js +3 -3
- package/package.json +1 -1
package/dist/gokite-aa-sdk.js
CHANGED
|
@@ -428,9 +428,9 @@ class GokiteAASDK {
|
|
|
428
428
|
gasEstimate.callGasLimit = gasEstimate.callGasLimit + 5000000n;
|
|
429
429
|
gasEstimate.verificationGasLimit = gasEstimate.verificationGasLimit + 1000000n;
|
|
430
430
|
gasEstimate.preVerificationGas = gasEstimate.preVerificationGas + 1000000n;
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
userOp.gasFees = (0, utils_1.packAccountGasLimits)(maxPriorityFeePerGas, maxFeePerGas);
|
|
431
|
+
gasEstimate.maxFeePerGas = BigInt(100000000);
|
|
432
|
+
gasEstimate.maxPriorityFeePerGas = BigInt(1);
|
|
433
|
+
userOp.gasFees = (0, utils_1.packAccountGasLimits)(gasEstimate.maxPriorityFeePerGas, gasEstimate.maxFeePerGas);
|
|
434
434
|
// Pack gas limits and fees (note: verificationGasLimit first, callGasLimit second)
|
|
435
435
|
userOp.accountGasLimits = (0, utils_1.packAccountGasLimits)(gasEstimate.verificationGasLimit, gasEstimate.callGasLimit);
|
|
436
436
|
userOp.preVerificationGas = gasEstimate.preVerificationGas;
|