@lumiapassport/ui-kit 1.15.5 → 1.15.6
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/iframe/index.html +1 -1
- package/dist/iframe/main.js +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -3893,7 +3893,7 @@ async function sendUserOperation(session, callTarget, amountWei, innerData = "0x
|
|
|
3893
3893
|
};
|
|
3894
3894
|
let estimated = false;
|
|
3895
3895
|
try {
|
|
3896
|
-
const gasEst = await estimateUserOperationGas(
|
|
3896
|
+
const gasEst = await estimateUserOperationGas(userOp);
|
|
3897
3897
|
console.log("[Account] Gas estimation from bundler:", { callGasLimit: gasEst.callGasLimit, verificationGasLimit: gasEst.verificationGasLimit, preVerificationGas: gasEst.preVerificationGas });
|
|
3898
3898
|
userOp.callGasLimit = gasEst.callGasLimit;
|
|
3899
3899
|
userOp.verificationGasLimit = gasEst.verificationGasLimit;
|
|
@@ -4082,7 +4082,7 @@ async function prepareUserOperation(session, callTarget, amountWei, innerData =
|
|
|
4082
4082
|
};
|
|
4083
4083
|
let estimated = false;
|
|
4084
4084
|
try {
|
|
4085
|
-
const gasEst = await estimateUserOperationGas(
|
|
4085
|
+
const gasEst = await estimateUserOperationGas(userOp);
|
|
4086
4086
|
console.log("[Account] Gas estimation from bundler:", { callGasLimit: gasEst.callGasLimit, verificationGasLimit: gasEst.verificationGasLimit, preVerificationGas: gasEst.preVerificationGas });
|
|
4087
4087
|
userOp.callGasLimit = gasEst.callGasLimit;
|
|
4088
4088
|
userOp.verificationGasLimit = gasEst.verificationGasLimit;
|
|
@@ -5563,7 +5563,7 @@ function Header() {
|
|
|
5563
5563
|
// package.json
|
|
5564
5564
|
var package_default = {
|
|
5565
5565
|
name: "@lumiapassport/ui-kit",
|
|
5566
|
-
version: "1.15.
|
|
5566
|
+
version: "1.15.6",
|
|
5567
5567
|
description: "React UI components and hooks for Lumia Passport authentication and Account Abstraction",
|
|
5568
5568
|
type: "module",
|
|
5569
5569
|
main: "./dist/index.cjs",
|