@pimlico/alto 0.0.4 → 0.0.5
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/esm/cli/alto.js +0 -4
- package/esm/cli/alto.js.map +1 -1
- package/esm/cli/config/bundler.d.ts +2296 -22
- package/esm/cli/config/bundler.js +31 -4
- package/esm/cli/config/bundler.js.map +1 -1
- package/esm/cli/config/options.js +53 -4
- package/esm/cli/config/options.js.map +1 -1
- package/esm/cli/customTransport.js +5 -1
- package/esm/cli/customTransport.js.map +1 -1
- package/esm/cli/handler.js +14 -3
- package/esm/cli/handler.js.map +1 -1
- package/esm/cli/instrumentation.js +2 -2
- package/esm/cli/instrumentation.js.map +1 -1
- package/esm/cli/setupServer.d.ts +2 -1
- package/esm/cli/setupServer.js +51 -27
- package/esm/cli/setupServer.js.map +1 -1
- package/esm/executor/executor.d.ts +7 -14
- package/esm/executor/executor.js +139 -128
- package/esm/executor/executor.js.map +1 -1
- package/esm/executor/executorManager.d.ts +58 -4
- package/esm/executor/executorManager.js +206 -52
- package/esm/executor/executorManager.js.map +1 -1
- package/esm/executor/senderManager.d.ts +2 -1
- package/esm/executor/senderManager.js +3 -0
- package/esm/executor/senderManager.js.map +1 -1
- package/esm/executor/utilityWalletMonitor.d.ts +15 -0
- package/esm/executor/utilityWalletMonitor.js +38 -0
- package/esm/executor/utilityWalletMonitor.js.map +1 -0
- package/esm/executor/utils.d.ts +1 -2
- package/esm/executor/utils.js +49 -38
- package/esm/executor/utils.js.map +1 -1
- package/esm/handlers/compressionHandler.js.map +1 -0
- package/esm/handlers/eventManager.d.ts +21 -0
- package/esm/handlers/eventManager.js +166 -0
- package/esm/handlers/eventManager.js.map +1 -0
- package/{lib/utils → esm/handlers}/gasPriceManager.d.ts +19 -5
- package/esm/{utils → handlers}/gasPriceManager.js +58 -13
- package/esm/handlers/gasPriceManager.js.map +1 -0
- package/esm/handlers/index.d.ts +4 -0
- package/esm/handlers/index.js +4 -0
- package/esm/handlers/index.js.map +1 -0
- package/esm/mempool/index.d.ts +0 -1
- package/esm/mempool/index.js +0 -1
- package/esm/mempool/index.js.map +1 -1
- package/esm/mempool/mempool.d.ts +4 -2
- package/esm/mempool/mempool.js +65 -19
- package/esm/mempool/mempool.js.map +1 -1
- package/esm/rpc/EntryPointSimulationsV07.d.ts +2 -2
- package/esm/rpc/EntryPointSimulationsV07.js +10 -7
- package/esm/rpc/EntryPointSimulationsV07.js.map +1 -1
- package/esm/rpc/gasEstimation.d.ts +3 -3
- package/esm/rpc/gasEstimation.js +22 -17
- package/esm/rpc/gasEstimation.js.map +1 -1
- package/esm/rpc/nonceQueuer.d.ts +4 -1
- package/esm/rpc/nonceQueuer.js +9 -3
- package/esm/rpc/nonceQueuer.js.map +1 -1
- package/esm/rpc/rpcHandler.d.ts +53 -3
- package/esm/rpc/rpcHandler.js +132 -231
- package/esm/rpc/rpcHandler.js.map +1 -1
- package/esm/rpc/server.d.ts +2 -1
- package/esm/rpc/server.js +6 -1
- package/esm/rpc/server.js.map +1 -1
- package/esm/rpc/validation/SafeValidator.d.ts +3 -2
- package/esm/rpc/validation/SafeValidator.js +2 -2
- package/esm/rpc/validation/SafeValidator.js.map +1 -1
- package/esm/rpc/validation/UnsafeValidator.d.ts +5 -2
- package/esm/rpc/validation/UnsafeValidator.js +10 -6
- package/esm/rpc/validation/UnsafeValidator.js.map +1 -1
- package/esm/rpc/validation/tracer.js +1 -0
- package/esm/rpc/validation/tracer.js.map +1 -1
- package/esm/types/schemas.d.ts +1029 -333
- package/esm/types/schemas.js +94 -20
- package/esm/types/schemas.js.map +1 -1
- package/esm/types/utils.d.ts +1 -1
- package/esm/types/validation.js +7 -2
- package/esm/types/validation.js.map +1 -1
- package/esm/utils/bigInt.d.ts +1 -0
- package/esm/utils/bigInt.js +4 -0
- package/esm/utils/bigInt.js.map +1 -1
- package/esm/utils/helpers.d.ts +1 -0
- package/esm/utils/helpers.js +6 -0
- package/esm/utils/helpers.js.map +1 -1
- package/esm/utils/index.d.ts +0 -3
- package/esm/utils/index.js +0 -3
- package/esm/utils/index.js.map +1 -1
- package/esm/utils/metrics.d.ts +4 -0
- package/esm/utils/metrics.js +29 -1
- package/esm/utils/metrics.js.map +1 -1
- package/esm/utils/rpc-reply.d.ts +1 -1
- package/esm/utils/rpc-reply.js +2 -1
- package/esm/utils/rpc-reply.js.map +1 -1
- package/esm/utils/userop.d.ts +66 -6
- package/esm/utils/userop.js +183 -96
- package/esm/utils/userop.js.map +1 -1
- package/esm/utils/validation.d.ts +1 -1
- package/esm/utils/validation.js +9 -13
- package/esm/utils/validation.js.map +1 -1
- package/lib/cli/alto.js +0 -4
- package/lib/cli/alto.js.map +1 -1
- package/lib/cli/config/bundler.d.ts +2296 -22
- package/lib/cli/config/bundler.js +30 -3
- package/lib/cli/config/bundler.js.map +1 -1
- package/lib/cli/config/options.js +53 -4
- package/lib/cli/config/options.js.map +1 -1
- package/lib/cli/customTransport.js +5 -1
- package/lib/cli/customTransport.js.map +1 -1
- package/lib/cli/handler.js +13 -2
- package/lib/cli/handler.js.map +1 -1
- package/lib/cli/instrumentation.js +2 -2
- package/lib/cli/instrumentation.js.map +1 -1
- package/lib/cli/setupServer.d.ts +2 -1
- package/lib/cli/setupServer.js +52 -28
- package/lib/cli/setupServer.js.map +1 -1
- package/lib/executor/executor.d.ts +7 -14
- package/lib/executor/executor.js +138 -128
- package/lib/executor/executor.js.map +1 -1
- package/lib/executor/executorManager.d.ts +58 -4
- package/lib/executor/executorManager.js +204 -50
- package/lib/executor/executorManager.js.map +1 -1
- package/lib/executor/senderManager.d.ts +2 -1
- package/lib/executor/senderManager.js +3 -0
- package/lib/executor/senderManager.js.map +1 -1
- package/lib/executor/utilityWalletMonitor.d.ts +15 -0
- package/lib/executor/utilityWalletMonitor.js +42 -0
- package/lib/executor/utilityWalletMonitor.js.map +1 -0
- package/lib/executor/utils.d.ts +1 -2
- package/lib/executor/utils.js +48 -37
- package/lib/executor/utils.js.map +1 -1
- package/lib/handlers/compressionHandler.js.map +1 -0
- package/lib/handlers/eventManager.d.ts +21 -0
- package/lib/handlers/eventManager.js +196 -0
- package/lib/handlers/eventManager.js.map +1 -0
- package/{esm/utils → lib/handlers}/gasPriceManager.d.ts +19 -5
- package/lib/{utils → handlers}/gasPriceManager.js +58 -13
- package/lib/handlers/gasPriceManager.js.map +1 -0
- package/lib/handlers/index.d.ts +4 -0
- package/lib/handlers/index.js +20 -0
- package/lib/handlers/index.js.map +1 -0
- package/lib/mempool/index.d.ts +0 -1
- package/lib/mempool/index.js +0 -1
- package/lib/mempool/index.js.map +1 -1
- package/lib/mempool/mempool.d.ts +4 -2
- package/lib/mempool/mempool.js +65 -19
- package/lib/mempool/mempool.js.map +1 -1
- package/lib/rpc/EntryPointSimulationsV07.d.ts +2 -2
- package/lib/rpc/EntryPointSimulationsV07.js +10 -7
- package/lib/rpc/EntryPointSimulationsV07.js.map +1 -1
- package/lib/rpc/gasEstimation.d.ts +3 -3
- package/lib/rpc/gasEstimation.js +22 -17
- package/lib/rpc/gasEstimation.js.map +1 -1
- package/lib/rpc/nonceQueuer.d.ts +4 -1
- package/lib/rpc/nonceQueuer.js +9 -3
- package/lib/rpc/nonceQueuer.js.map +1 -1
- package/lib/rpc/rpcHandler.d.ts +53 -3
- package/lib/rpc/rpcHandler.js +129 -251
- package/lib/rpc/rpcHandler.js.map +1 -1
- package/lib/rpc/server.d.ts +2 -1
- package/lib/rpc/server.js +6 -1
- package/lib/rpc/server.js.map +1 -1
- package/lib/rpc/validation/SafeValidator.d.ts +3 -2
- package/lib/rpc/validation/SafeValidator.js +2 -2
- package/lib/rpc/validation/SafeValidator.js.map +1 -1
- package/lib/rpc/validation/UnsafeValidator.d.ts +5 -2
- package/lib/rpc/validation/UnsafeValidator.js +33 -6
- package/lib/rpc/validation/UnsafeValidator.js.map +1 -1
- package/lib/rpc/validation/tracer.js +1 -0
- package/lib/rpc/validation/tracer.js.map +1 -1
- package/lib/types/schemas.d.ts +1029 -333
- package/lib/types/schemas.js +93 -19
- package/lib/types/schemas.js.map +1 -1
- package/lib/types/utils.d.ts +1 -1
- package/lib/types/validation.js +7 -2
- package/lib/types/validation.js.map +1 -1
- package/lib/utils/bigInt.d.ts +1 -0
- package/lib/utils/bigInt.js +6 -1
- package/lib/utils/bigInt.js.map +1 -1
- package/lib/utils/helpers.d.ts +1 -0
- package/lib/utils/helpers.js +8 -1
- package/lib/utils/helpers.js.map +1 -1
- package/lib/utils/index.d.ts +0 -3
- package/lib/utils/index.js +0 -3
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/metrics.d.ts +4 -0
- package/lib/utils/metrics.js +29 -1
- package/lib/utils/metrics.js.map +1 -1
- package/lib/utils/rpc-reply.d.ts +1 -1
- package/lib/utils/rpc-reply.js +2 -1
- package/lib/utils/rpc-reply.js.map +1 -1
- package/lib/utils/userop.d.ts +66 -6
- package/lib/utils/userop.js +208 -96
- package/lib/utils/userop.js.map +1 -1
- package/lib/utils/validation.d.ts +1 -1
- package/lib/utils/validation.js +9 -36
- package/lib/utils/validation.js.map +1 -1
- package/package.json +15 -14
- package/esm/executor/test/utils.d.ts +0 -13
- package/esm/executor/test/utils.js +0 -75
- package/esm/executor/test/utils.js.map +0 -1
- package/esm/mempool/nullMempool.d.ts +0 -15
- package/esm/mempool/nullMempool.js +0 -36
- package/esm/mempool/nullMempool.js.map +0 -1
- package/esm/types/test/validationTestErrors.d.ts +0 -3
- package/esm/types/test/validationTestErrors.js +0 -229
- package/esm/types/test/validationTestErrors.js.map +0 -1
- package/esm/utils/compressionHandler.js.map +0 -1
- package/esm/utils/gasPriceManager.js.map +0 -1
- package/esm/utils/test.d.ts +0 -17
- package/esm/utils/test.js +0 -130
- package/esm/utils/test.js.map +0 -1
- package/lib/executor/test/utils.d.ts +0 -13
- package/lib/executor/test/utils.js +0 -81
- package/lib/executor/test/utils.js.map +0 -1
- package/lib/mempool/nullMempool.d.ts +0 -15
- package/lib/mempool/nullMempool.js +0 -40
- package/lib/mempool/nullMempool.js.map +0 -1
- package/lib/types/test/validationTestErrors.d.ts +0 -3
- package/lib/types/test/validationTestErrors.js +0 -232
- package/lib/types/test/validationTestErrors.js.map +0 -1
- package/lib/utils/compressionHandler.js.map +0 -1
- package/lib/utils/gasPriceManager.js.map +0 -1
- package/lib/utils/test.d.ts +0 -17
- package/lib/utils/test.js +0 -161
- package/lib/utils/test.js.map +0 -1
- /package/esm/{utils → handlers}/compressionHandler.d.ts +0 -0
- /package/esm/{utils → handlers}/compressionHandler.js +0 -0
- /package/lib/{utils → handlers}/compressionHandler.d.ts +0 -0
- /package/lib/{utils → handlers}/compressionHandler.js +0 -0
package/esm/types/schemas.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import type { MempoolUserOperation } from "./mempool.js";
|
|
|
4
4
|
export declare const hexData32Pattern: RegExp;
|
|
5
5
|
export declare const commaSeperatedAddressPattern: RegExp;
|
|
6
6
|
declare const addressSchema: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7
|
-
export declare const hexNumberSchema: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
7
|
+
export declare const hexNumberSchema: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
8
8
|
declare const hexDataSchema: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9
9
|
declare const hexData32Schema: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10
10
|
export type Address = z.infer<typeof addressSchema>;
|
|
@@ -13,14 +13,14 @@ export type HexData = z.infer<typeof hexDataSchema>;
|
|
|
13
13
|
export type HexData32 = z.infer<typeof hexData32Schema>;
|
|
14
14
|
declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
15
15
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
16
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
16
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
17
17
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
18
18
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
19
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
20
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
21
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
22
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
23
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
19
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
20
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
21
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
22
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
23
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
24
24
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
25
25
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
26
26
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -74,18 +74,18 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
74
74
|
}>;
|
|
75
75
|
declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
76
76
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
77
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
77
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
78
78
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
79
79
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
80
80
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
81
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
82
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
83
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
84
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
85
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
81
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
82
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
83
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
84
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
85
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
86
86
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
87
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
88
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
87
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
88
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
89
89
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
90
90
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
91
91
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -155,11 +155,11 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
155
155
|
}>;
|
|
156
156
|
declare const packerUserOperationSchema: z.ZodEffects<z.ZodObject<{
|
|
157
157
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
158
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
158
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
159
159
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
160
160
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
161
161
|
accountGasLimits: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
162
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
162
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
163
163
|
gasFees: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
164
164
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
165
165
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
@@ -206,14 +206,14 @@ declare const packerUserOperationSchema: z.ZodEffects<z.ZodObject<{
|
|
|
206
206
|
}>;
|
|
207
207
|
declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
208
208
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
209
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
209
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
210
210
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
211
211
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
212
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
213
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
214
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
215
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
216
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
212
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
213
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
214
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
215
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
216
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
217
217
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
218
218
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
219
219
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -266,18 +266,18 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
266
266
|
signature: string;
|
|
267
267
|
}>, z.ZodEffects<z.ZodObject<{
|
|
268
268
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
269
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
269
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
270
270
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
271
271
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
272
272
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
273
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
274
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
275
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
276
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
277
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
273
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
274
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
275
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
276
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
277
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
278
278
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
279
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
280
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
279
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
280
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
281
281
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
282
282
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
283
283
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -413,8 +413,8 @@ declare const supportedEntryPointsRequestSchema: z.ZodObject<{
|
|
|
413
413
|
method: "eth_supportedEntryPoints";
|
|
414
414
|
}>;
|
|
415
415
|
declare const stateOverridesSchema: z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
|
|
416
|
-
balance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
417
|
-
nonce: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
416
|
+
balance: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
417
|
+
nonce: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
418
418
|
code: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
419
419
|
state: z.ZodOptional<z.ZodUnknown>;
|
|
420
420
|
stateDiff: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -436,14 +436,14 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
436
436
|
method: z.ZodLiteral<"eth_estimateUserOperationGas">;
|
|
437
437
|
params: z.ZodUnion<[z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
438
438
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
439
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
439
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
440
440
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
441
441
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
442
|
-
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
443
|
-
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
444
|
-
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
445
|
-
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
446
|
-
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
442
|
+
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
443
|
+
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
444
|
+
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
445
|
+
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
446
|
+
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
447
447
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
448
448
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
449
449
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -496,18 +496,18 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
496
496
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
497
497
|
}>, z.ZodEffects<z.ZodObject<{
|
|
498
498
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
499
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
499
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
500
500
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
501
501
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
502
502
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
503
|
-
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
504
|
-
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
505
|
-
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
506
|
-
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
507
|
-
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
503
|
+
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
504
|
+
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
505
|
+
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
506
|
+
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
507
|
+
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
508
508
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
509
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
510
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
509
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
510
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
511
511
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
512
512
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
513
513
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -576,14 +576,14 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
576
576
|
paymasterData?: string | null | undefined;
|
|
577
577
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>, z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
578
578
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
579
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
579
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
580
580
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
581
581
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
582
|
-
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
583
|
-
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
584
|
-
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
585
|
-
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
586
|
-
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
582
|
+
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
583
|
+
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
584
|
+
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
585
|
+
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
586
|
+
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
587
587
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
588
588
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
589
589
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -636,18 +636,18 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
636
636
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
637
637
|
}>, z.ZodEffects<z.ZodObject<{
|
|
638
638
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
639
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
639
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
640
640
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
641
641
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
642
642
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
643
|
-
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
644
|
-
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
645
|
-
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
646
|
-
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
647
|
-
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
643
|
+
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
644
|
+
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
645
|
+
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
646
|
+
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
647
|
+
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
648
648
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
649
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
650
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
649
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
650
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
651
651
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
652
652
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
653
653
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -715,8 +715,8 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
715
715
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
716
716
|
paymasterData?: string | null | undefined;
|
|
717
717
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
|
|
718
|
-
balance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
719
|
-
nonce: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
718
|
+
balance: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
719
|
+
nonce: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
720
720
|
code: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
721
721
|
state: z.ZodOptional<z.ZodUnknown>;
|
|
722
722
|
stateDiff: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -868,14 +868,14 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
868
868
|
method: z.ZodLiteral<"eth_sendUserOperation">;
|
|
869
869
|
params: z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
870
870
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
871
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
871
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
872
872
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
873
873
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
874
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
875
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
876
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
877
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
878
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
874
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
875
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
876
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
877
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
878
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
879
879
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
880
880
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
881
881
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -928,18 +928,18 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
928
928
|
signature: string;
|
|
929
929
|
}>, z.ZodEffects<z.ZodObject<{
|
|
930
930
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
931
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
931
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
932
932
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
933
933
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
934
934
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
935
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
936
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
937
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
938
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
939
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
935
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
936
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
937
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
938
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
939
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
940
940
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
941
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
942
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
941
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
942
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
943
943
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
944
944
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
945
945
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1144,8 +1144,8 @@ declare const bundlerSetReputationsRequestSchema: z.ZodObject<{
|
|
|
1144
1144
|
method: z.ZodLiteral<"debug_bundler_setReputation">;
|
|
1145
1145
|
params: z.ZodTuple<[z.ZodArray<z.ZodObject<{
|
|
1146
1146
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1147
|
-
opsSeen: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1148
|
-
opsIncluded: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1147
|
+
opsSeen: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1148
|
+
opsIncluded: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1149
1149
|
}, "strip", z.ZodTypeAny, {
|
|
1150
1150
|
address: `0x${string}`;
|
|
1151
1151
|
opsSeen: bigint;
|
|
@@ -1234,14 +1234,14 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1234
1234
|
method: z.ZodLiteral<"eth_estimateUserOperationGas">;
|
|
1235
1235
|
params: z.ZodUnion<[z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
1236
1236
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1237
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1237
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1238
1238
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1239
1239
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1240
|
-
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1241
|
-
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1242
|
-
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1243
|
-
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1244
|
-
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1240
|
+
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1241
|
+
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1242
|
+
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1243
|
+
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1244
|
+
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1245
1245
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1246
1246
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1247
1247
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1294,18 +1294,18 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1294
1294
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1295
1295
|
}>, z.ZodEffects<z.ZodObject<{
|
|
1296
1296
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1297
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1297
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1298
1298
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1299
1299
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1300
1300
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1301
|
-
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1302
|
-
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1303
|
-
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1304
|
-
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1305
|
-
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1301
|
+
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1302
|
+
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1303
|
+
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1304
|
+
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1305
|
+
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1306
1306
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1307
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1308
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1307
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1308
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1309
1309
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1310
1310
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1311
1311
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1374,14 +1374,14 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1374
1374
|
paymasterData?: string | null | undefined;
|
|
1375
1375
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>, z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
1376
1376
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1377
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1377
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1378
1378
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1379
1379
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1380
|
-
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1381
|
-
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1382
|
-
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1383
|
-
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1384
|
-
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1380
|
+
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1381
|
+
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1382
|
+
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1383
|
+
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1384
|
+
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1385
1385
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1386
1386
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1387
1387
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1434,18 +1434,18 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1434
1434
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1435
1435
|
}>, z.ZodEffects<z.ZodObject<{
|
|
1436
1436
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1437
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1437
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1438
1438
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1439
1439
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1440
1440
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1441
|
-
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1442
|
-
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1443
|
-
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1444
|
-
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1445
|
-
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1441
|
+
callGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1442
|
+
verificationGasLimit: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1443
|
+
preVerificationGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1444
|
+
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1445
|
+
maxPriorityFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1446
1446
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1447
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1448
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1447
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1448
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1449
1449
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1450
1450
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1451
1451
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1513,8 +1513,8 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1513
1513
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1514
1514
|
paymasterData?: string | null | undefined;
|
|
1515
1515
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
|
|
1516
|
-
balance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1517
|
-
nonce: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
1516
|
+
balance: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1517
|
+
nonce: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1518
1518
|
code: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
1519
1519
|
state: z.ZodOptional<z.ZodUnknown>;
|
|
1520
1520
|
stateDiff: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -1665,14 +1665,14 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1665
1665
|
method: z.ZodLiteral<"eth_sendUserOperation">;
|
|
1666
1666
|
params: z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
1667
1667
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1668
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1668
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1669
1669
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1670
1670
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1671
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1672
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1673
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1674
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1675
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1671
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1672
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1673
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1674
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1675
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1676
1676
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1677
1677
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1678
1678
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1725,18 +1725,18 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1725
1725
|
signature: string;
|
|
1726
1726
|
}>, z.ZodEffects<z.ZodObject<{
|
|
1727
1727
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1728
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1728
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1729
1729
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1730
1730
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1731
1731
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1732
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1733
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1734
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1735
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1736
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1732
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1733
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1734
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1735
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1736
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1737
1737
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1738
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1739
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1738
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1739
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1740
1740
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1741
1741
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1742
1742
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1933,8 +1933,8 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1933
1933
|
method: z.ZodLiteral<"debug_bundler_setReputation">;
|
|
1934
1934
|
params: z.ZodTuple<[z.ZodArray<z.ZodObject<{
|
|
1935
1935
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1936
|
-
opsSeen: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1937
|
-
opsIncluded: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
1936
|
+
opsSeen: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1937
|
+
opsIncluded: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1938
1938
|
}, "strip", z.ZodTypeAny, {
|
|
1939
1939
|
address: `0x${string}`;
|
|
1940
1940
|
opsSeen: bigint;
|
|
@@ -2003,10 +2003,215 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2003
2003
|
}, {
|
|
2004
2004
|
params: [string, string, string];
|
|
2005
2005
|
method: "pimlico_sendCompressedUserOperation";
|
|
2006
|
+
}>, z.ZodObject<{
|
|
2007
|
+
method: z.ZodLiteral<"pimlico_sendUserOperationNow">;
|
|
2008
|
+
params: z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
2009
|
+
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2010
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2011
|
+
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2012
|
+
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2013
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2014
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2015
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2016
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2017
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2018
|
+
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2019
|
+
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2020
|
+
}, "strict", z.ZodTypeAny, {
|
|
2021
|
+
sender: `0x${string}`;
|
|
2022
|
+
nonce: bigint;
|
|
2023
|
+
initCode: `0x${string}`;
|
|
2024
|
+
callData: `0x${string}`;
|
|
2025
|
+
callGasLimit: bigint;
|
|
2026
|
+
verificationGasLimit: bigint;
|
|
2027
|
+
preVerificationGas: bigint;
|
|
2028
|
+
maxFeePerGas: bigint;
|
|
2029
|
+
maxPriorityFeePerGas: bigint;
|
|
2030
|
+
paymasterAndData: `0x${string}`;
|
|
2031
|
+
signature: `0x${string}`;
|
|
2032
|
+
}, {
|
|
2033
|
+
sender: string;
|
|
2034
|
+
nonce: string | number | bigint;
|
|
2035
|
+
initCode: string;
|
|
2036
|
+
callData: string;
|
|
2037
|
+
callGasLimit: string | number | bigint;
|
|
2038
|
+
verificationGasLimit: string | number | bigint;
|
|
2039
|
+
preVerificationGas: string | number | bigint;
|
|
2040
|
+
maxFeePerGas: string | number | bigint;
|
|
2041
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
2042
|
+
paymasterAndData: string;
|
|
2043
|
+
signature: string;
|
|
2044
|
+
}>, {
|
|
2045
|
+
sender: `0x${string}`;
|
|
2046
|
+
nonce: bigint;
|
|
2047
|
+
initCode: `0x${string}`;
|
|
2048
|
+
callData: `0x${string}`;
|
|
2049
|
+
callGasLimit: bigint;
|
|
2050
|
+
verificationGasLimit: bigint;
|
|
2051
|
+
preVerificationGas: bigint;
|
|
2052
|
+
maxFeePerGas: bigint;
|
|
2053
|
+
maxPriorityFeePerGas: bigint;
|
|
2054
|
+
paymasterAndData: `0x${string}`;
|
|
2055
|
+
signature: `0x${string}`;
|
|
2056
|
+
}, {
|
|
2057
|
+
sender: string;
|
|
2058
|
+
nonce: string | number | bigint;
|
|
2059
|
+
initCode: string;
|
|
2060
|
+
callData: string;
|
|
2061
|
+
callGasLimit: string | number | bigint;
|
|
2062
|
+
verificationGasLimit: string | number | bigint;
|
|
2063
|
+
preVerificationGas: string | number | bigint;
|
|
2064
|
+
maxFeePerGas: string | number | bigint;
|
|
2065
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
2066
|
+
paymasterAndData: string;
|
|
2067
|
+
signature: string;
|
|
2068
|
+
}>, z.ZodEffects<z.ZodObject<{
|
|
2069
|
+
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2070
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2071
|
+
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2072
|
+
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2073
|
+
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2074
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2075
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2076
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2077
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2078
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2079
|
+
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2080
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2081
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2082
|
+
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2083
|
+
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2084
|
+
}, "strict", z.ZodTypeAny, {
|
|
2085
|
+
sender: `0x${string}`;
|
|
2086
|
+
nonce: bigint;
|
|
2087
|
+
callData: `0x${string}`;
|
|
2088
|
+
callGasLimit: bigint;
|
|
2089
|
+
verificationGasLimit: bigint;
|
|
2090
|
+
preVerificationGas: bigint;
|
|
2091
|
+
maxFeePerGas: bigint;
|
|
2092
|
+
maxPriorityFeePerGas: bigint;
|
|
2093
|
+
signature: `0x${string}`;
|
|
2094
|
+
factory: `0x${string}` | null;
|
|
2095
|
+
paymaster: `0x${string}` | null;
|
|
2096
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
2097
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
2098
|
+
factoryData: `0x${string}` | null;
|
|
2099
|
+
paymasterData: `0x${string}` | null;
|
|
2100
|
+
}, {
|
|
2101
|
+
sender: string;
|
|
2102
|
+
nonce: string | number | bigint;
|
|
2103
|
+
callData: string;
|
|
2104
|
+
callGasLimit: string | number | bigint;
|
|
2105
|
+
verificationGasLimit: string | number | bigint;
|
|
2106
|
+
preVerificationGas: string | number | bigint;
|
|
2107
|
+
maxFeePerGas: string | number | bigint;
|
|
2108
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
2109
|
+
signature: string;
|
|
2110
|
+
factory?: string | null | undefined;
|
|
2111
|
+
factoryData?: string | null | undefined;
|
|
2112
|
+
paymaster?: string | null | undefined;
|
|
2113
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2114
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2115
|
+
paymasterData?: string | null | undefined;
|
|
2116
|
+
}>, {
|
|
2117
|
+
sender: `0x${string}`;
|
|
2118
|
+
nonce: bigint;
|
|
2119
|
+
callData: `0x${string}`;
|
|
2120
|
+
callGasLimit: bigint;
|
|
2121
|
+
verificationGasLimit: bigint;
|
|
2122
|
+
preVerificationGas: bigint;
|
|
2123
|
+
maxFeePerGas: bigint;
|
|
2124
|
+
maxPriorityFeePerGas: bigint;
|
|
2125
|
+
signature: `0x${string}`;
|
|
2126
|
+
factory: `0x${string}` | null;
|
|
2127
|
+
paymaster: `0x${string}` | null;
|
|
2128
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
2129
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
2130
|
+
factoryData: `0x${string}` | null;
|
|
2131
|
+
paymasterData: `0x${string}` | null;
|
|
2132
|
+
}, {
|
|
2133
|
+
sender: string;
|
|
2134
|
+
nonce: string | number | bigint;
|
|
2135
|
+
callData: string;
|
|
2136
|
+
callGasLimit: string | number | bigint;
|
|
2137
|
+
verificationGasLimit: string | number | bigint;
|
|
2138
|
+
preVerificationGas: string | number | bigint;
|
|
2139
|
+
maxFeePerGas: string | number | bigint;
|
|
2140
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
2141
|
+
signature: string;
|
|
2142
|
+
factory?: string | null | undefined;
|
|
2143
|
+
factoryData?: string | null | undefined;
|
|
2144
|
+
paymaster?: string | null | undefined;
|
|
2145
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2146
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2147
|
+
paymasterData?: string | null | undefined;
|
|
2148
|
+
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
|
|
2149
|
+
}, "strip", z.ZodTypeAny, {
|
|
2150
|
+
params: [{
|
|
2151
|
+
sender: `0x${string}`;
|
|
2152
|
+
nonce: bigint;
|
|
2153
|
+
initCode: `0x${string}`;
|
|
2154
|
+
callData: `0x${string}`;
|
|
2155
|
+
callGasLimit: bigint;
|
|
2156
|
+
verificationGasLimit: bigint;
|
|
2157
|
+
preVerificationGas: bigint;
|
|
2158
|
+
maxFeePerGas: bigint;
|
|
2159
|
+
maxPriorityFeePerGas: bigint;
|
|
2160
|
+
paymasterAndData: `0x${string}`;
|
|
2161
|
+
signature: `0x${string}`;
|
|
2162
|
+
} | {
|
|
2163
|
+
sender: `0x${string}`;
|
|
2164
|
+
nonce: bigint;
|
|
2165
|
+
callData: `0x${string}`;
|
|
2166
|
+
callGasLimit: bigint;
|
|
2167
|
+
verificationGasLimit: bigint;
|
|
2168
|
+
preVerificationGas: bigint;
|
|
2169
|
+
maxFeePerGas: bigint;
|
|
2170
|
+
maxPriorityFeePerGas: bigint;
|
|
2171
|
+
signature: `0x${string}`;
|
|
2172
|
+
factory: `0x${string}` | null;
|
|
2173
|
+
paymaster: `0x${string}` | null;
|
|
2174
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
2175
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
2176
|
+
factoryData: `0x${string}` | null;
|
|
2177
|
+
paymasterData: `0x${string}` | null;
|
|
2178
|
+
}, `0x${string}`];
|
|
2179
|
+
method: "pimlico_sendUserOperationNow";
|
|
2180
|
+
}, {
|
|
2181
|
+
params: [{
|
|
2182
|
+
sender: string;
|
|
2183
|
+
nonce: string | number | bigint;
|
|
2184
|
+
initCode: string;
|
|
2185
|
+
callData: string;
|
|
2186
|
+
callGasLimit: string | number | bigint;
|
|
2187
|
+
verificationGasLimit: string | number | bigint;
|
|
2188
|
+
preVerificationGas: string | number | bigint;
|
|
2189
|
+
maxFeePerGas: string | number | bigint;
|
|
2190
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
2191
|
+
paymasterAndData: string;
|
|
2192
|
+
signature: string;
|
|
2193
|
+
} | {
|
|
2194
|
+
sender: string;
|
|
2195
|
+
nonce: string | number | bigint;
|
|
2196
|
+
callData: string;
|
|
2197
|
+
callGasLimit: string | number | bigint;
|
|
2198
|
+
verificationGasLimit: string | number | bigint;
|
|
2199
|
+
preVerificationGas: string | number | bigint;
|
|
2200
|
+
maxFeePerGas: string | number | bigint;
|
|
2201
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
2202
|
+
signature: string;
|
|
2203
|
+
factory?: string | null | undefined;
|
|
2204
|
+
factoryData?: string | null | undefined;
|
|
2205
|
+
paymaster?: string | null | undefined;
|
|
2206
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2207
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2208
|
+
paymasterData?: string | null | undefined;
|
|
2209
|
+
}, string];
|
|
2210
|
+
method: "pimlico_sendUserOperationNow";
|
|
2006
2211
|
}>]>;
|
|
2007
2212
|
declare const chainIdResponseSchema: z.ZodObject<{
|
|
2008
2213
|
method: z.ZodLiteral<"eth_chainId">;
|
|
2009
|
-
result: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2214
|
+
result: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2010
2215
|
}, "strip", z.ZodTypeAny, {
|
|
2011
2216
|
method: "eth_chainId";
|
|
2012
2217
|
result: bigint;
|
|
@@ -2027,10 +2232,10 @@ declare const supportedEntryPointsResponseSchema: z.ZodObject<{
|
|
|
2027
2232
|
declare const estimateUserOperationGasResponseSchema: z.ZodObject<{
|
|
2028
2233
|
method: z.ZodLiteral<"eth_estimateUserOperationGas">;
|
|
2029
2234
|
result: z.ZodUnion<[z.ZodObject<{
|
|
2030
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2031
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2032
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2033
|
-
verificationGas: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
2235
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2236
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2237
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2238
|
+
verificationGas: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
2034
2239
|
}, "strip", z.ZodTypeAny, {
|
|
2035
2240
|
callGasLimit: bigint;
|
|
2036
2241
|
verificationGasLimit: bigint;
|
|
@@ -2042,11 +2247,11 @@ declare const estimateUserOperationGasResponseSchema: z.ZodObject<{
|
|
|
2042
2247
|
preVerificationGas: string | number | bigint;
|
|
2043
2248
|
verificationGas?: string | number | bigint | undefined;
|
|
2044
2249
|
}>, z.ZodObject<{
|
|
2045
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2046
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2047
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2048
|
-
paymasterVerificationGasLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
2049
|
-
paymasterPostOpGasLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
2250
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2251
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2252
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2253
|
+
paymasterVerificationGasLimit: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
2254
|
+
paymasterPostOpGasLimit: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
2050
2255
|
}, "strip", z.ZodTypeAny, {
|
|
2051
2256
|
callGasLimit: bigint;
|
|
2052
2257
|
verificationGasLimit: bigint;
|
|
@@ -2126,14 +2331,14 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
2126
2331
|
result: z.ZodUnion<[z.ZodObject<{
|
|
2127
2332
|
userOperation: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
2128
2333
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2129
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2334
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2130
2335
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2131
2336
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2132
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2133
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2134
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2135
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2136
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2337
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2338
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2339
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2340
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2341
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2137
2342
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2138
2343
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2139
2344
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -2186,18 +2391,18 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
2186
2391
|
signature: string;
|
|
2187
2392
|
}>, z.ZodEffects<z.ZodObject<{
|
|
2188
2393
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2189
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2394
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2190
2395
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2191
2396
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2192
2397
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2193
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2194
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2195
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2196
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2197
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2398
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2399
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2400
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2401
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2402
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2198
2403
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2199
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2200
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2404
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2405
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2201
2406
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2202
2407
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2203
2408
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -2266,7 +2471,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
2266
2471
|
paymasterData?: string | null | undefined;
|
|
2267
2472
|
}>]>;
|
|
2268
2473
|
entryPoint: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2269
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2474
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2270
2475
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2271
2476
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2272
2477
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2526,11 +2731,11 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
2526
2731
|
} | null;
|
|
2527
2732
|
}>;
|
|
2528
2733
|
declare const logSchema: z.ZodObject<{
|
|
2529
|
-
logIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2530
|
-
transactionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2734
|
+
logIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2735
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2531
2736
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2532
2737
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2533
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2738
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2534
2739
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2535
2740
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2536
2741
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
@@ -2555,20 +2760,20 @@ declare const logSchema: z.ZodObject<{
|
|
|
2555
2760
|
}>;
|
|
2556
2761
|
declare const receiptSchema: z.ZodObject<{
|
|
2557
2762
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2558
|
-
transactionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2763
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2559
2764
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2560
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2765
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2561
2766
|
from: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2562
2767
|
to: z.ZodUnion<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodNull]>;
|
|
2563
|
-
cumulativeGasUsed: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2564
|
-
gasUsed: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2768
|
+
cumulativeGasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2769
|
+
gasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2565
2770
|
contractAddress: z.ZodUnion<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodNull]>;
|
|
2566
2771
|
logs: z.ZodArray<z.ZodObject<{
|
|
2567
|
-
logIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2568
|
-
transactionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2772
|
+
logIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2773
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2569
2774
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2570
2775
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2571
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2776
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2572
2777
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2573
2778
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2574
2779
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
@@ -2592,8 +2797,8 @@ declare const receiptSchema: z.ZodObject<{
|
|
|
2592
2797
|
topics: string[];
|
|
2593
2798
|
}>, "many">;
|
|
2594
2799
|
logsBloom: z.ZodString;
|
|
2595
|
-
status: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, z.ZodNull]>;
|
|
2596
|
-
effectiveGasPrice: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint
|
|
2800
|
+
status: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, z.ZodNull]>;
|
|
2801
|
+
effectiveGasPrice: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>;
|
|
2597
2802
|
}, "strip", z.ZodTypeAny, {
|
|
2598
2803
|
to: `0x${string}` | null;
|
|
2599
2804
|
gasUsed: bigint;
|
|
@@ -2616,7 +2821,7 @@ declare const receiptSchema: z.ZodObject<{
|
|
|
2616
2821
|
topics: `0x${string}`[];
|
|
2617
2822
|
}[];
|
|
2618
2823
|
logsBloom: string;
|
|
2619
|
-
effectiveGasPrice
|
|
2824
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
2620
2825
|
}, {
|
|
2621
2826
|
to: string | null;
|
|
2622
2827
|
gasUsed: string | number | bigint;
|
|
@@ -2639,7 +2844,7 @@ declare const receiptSchema: z.ZodObject<{
|
|
|
2639
2844
|
topics: string[];
|
|
2640
2845
|
}[];
|
|
2641
2846
|
logsBloom: string;
|
|
2642
|
-
effectiveGasPrice
|
|
2847
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
2643
2848
|
}>;
|
|
2644
2849
|
declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
2645
2850
|
method: z.ZodLiteral<"eth_getUserOperationReceipt">;
|
|
@@ -2647,18 +2852,18 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2647
2852
|
userOpHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2648
2853
|
entryPoint: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2649
2854
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2650
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2855
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2651
2856
|
paymaster: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
2652
|
-
actualGasCost: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2653
|
-
actualGasUsed: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2857
|
+
actualGasCost: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2858
|
+
actualGasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2654
2859
|
success: z.ZodBoolean;
|
|
2655
2860
|
reason: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
2656
2861
|
logs: z.ZodArray<z.ZodObject<{
|
|
2657
|
-
logIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2658
|
-
transactionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2862
|
+
logIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2863
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2659
2864
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2660
2865
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2661
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2866
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2662
2867
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2663
2868
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2664
2869
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
@@ -2683,20 +2888,20 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2683
2888
|
}>, "many">;
|
|
2684
2889
|
receipt: z.ZodObject<{
|
|
2685
2890
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2686
|
-
transactionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2891
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2687
2892
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2688
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2893
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2689
2894
|
from: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2690
2895
|
to: z.ZodUnion<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodNull]>;
|
|
2691
|
-
cumulativeGasUsed: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2692
|
-
gasUsed: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2896
|
+
cumulativeGasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2897
|
+
gasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2693
2898
|
contractAddress: z.ZodUnion<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodNull]>;
|
|
2694
2899
|
logs: z.ZodArray<z.ZodObject<{
|
|
2695
|
-
logIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2696
|
-
transactionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2900
|
+
logIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2901
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2697
2902
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2698
2903
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2699
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2904
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2700
2905
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2701
2906
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2702
2907
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
@@ -2720,8 +2925,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2720
2925
|
topics: string[];
|
|
2721
2926
|
}>, "many">;
|
|
2722
2927
|
logsBloom: z.ZodString;
|
|
2723
|
-
status: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, z.ZodNull]>;
|
|
2724
|
-
effectiveGasPrice: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint
|
|
2928
|
+
status: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, z.ZodNull]>;
|
|
2929
|
+
effectiveGasPrice: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>;
|
|
2725
2930
|
}, "strip", z.ZodTypeAny, {
|
|
2726
2931
|
to: `0x${string}` | null;
|
|
2727
2932
|
gasUsed: bigint;
|
|
@@ -2744,7 +2949,7 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2744
2949
|
topics: `0x${string}`[];
|
|
2745
2950
|
}[];
|
|
2746
2951
|
logsBloom: string;
|
|
2747
|
-
effectiveGasPrice
|
|
2952
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
2748
2953
|
}, {
|
|
2749
2954
|
to: string | null;
|
|
2750
2955
|
gasUsed: string | number | bigint;
|
|
@@ -2767,7 +2972,7 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2767
2972
|
topics: string[];
|
|
2768
2973
|
}[];
|
|
2769
2974
|
logsBloom: string;
|
|
2770
|
-
effectiveGasPrice
|
|
2975
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
2771
2976
|
}>;
|
|
2772
2977
|
}, "strip", z.ZodTypeAny, {
|
|
2773
2978
|
sender: `0x${string}`;
|
|
@@ -2809,7 +3014,7 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2809
3014
|
topics: `0x${string}`[];
|
|
2810
3015
|
}[];
|
|
2811
3016
|
logsBloom: string;
|
|
2812
|
-
effectiveGasPrice
|
|
3017
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
2813
3018
|
};
|
|
2814
3019
|
paymaster?: `0x${string}` | undefined;
|
|
2815
3020
|
reason?: `0x${string}` | undefined;
|
|
@@ -2853,7 +3058,7 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2853
3058
|
topics: string[];
|
|
2854
3059
|
}[];
|
|
2855
3060
|
logsBloom: string;
|
|
2856
|
-
effectiveGasPrice
|
|
3061
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
2857
3062
|
};
|
|
2858
3063
|
paymaster?: string | undefined;
|
|
2859
3064
|
reason?: string | undefined;
|
|
@@ -2900,7 +3105,7 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2900
3105
|
topics: `0x${string}`[];
|
|
2901
3106
|
}[];
|
|
2902
3107
|
logsBloom: string;
|
|
2903
|
-
effectiveGasPrice
|
|
3108
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
2904
3109
|
};
|
|
2905
3110
|
paymaster?: `0x${string}` | undefined;
|
|
2906
3111
|
reason?: `0x${string}` | undefined;
|
|
@@ -2947,7 +3152,7 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2947
3152
|
topics: string[];
|
|
2948
3153
|
}[];
|
|
2949
3154
|
logsBloom: string;
|
|
2950
|
-
effectiveGasPrice
|
|
3155
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
2951
3156
|
};
|
|
2952
3157
|
paymaster?: string | undefined;
|
|
2953
3158
|
reason?: string | undefined;
|
|
@@ -2977,14 +3182,14 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
2977
3182
|
method: z.ZodLiteral<"debug_bundler_dumpMempool">;
|
|
2978
3183
|
result: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
2979
3184
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2980
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3185
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2981
3186
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2982
3187
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2983
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2984
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2985
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2986
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
2987
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3188
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3189
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3190
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3191
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3192
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2988
3193
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2989
3194
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2990
3195
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3037,18 +3242,18 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
3037
3242
|
signature: string;
|
|
3038
3243
|
}>, z.ZodEffects<z.ZodObject<{
|
|
3039
3244
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3040
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3245
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3041
3246
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3042
3247
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3043
3248
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3044
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3045
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3046
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3047
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3048
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3249
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3250
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3251
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3252
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3253
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3049
3254
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3050
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
3051
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
3255
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
3256
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
3052
3257
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3053
3258
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3054
3259
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3266,9 +3471,9 @@ declare const bundlerDumpReputationsResponseSchema: z.ZodObject<{
|
|
|
3266
3471
|
method: z.ZodLiteral<"debug_bundler_dumpReputation">;
|
|
3267
3472
|
result: z.ZodArray<z.ZodObject<{
|
|
3268
3473
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3269
|
-
opsSeen: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3270
|
-
opsIncluded: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3271
|
-
status: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
3474
|
+
opsSeen: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3475
|
+
opsIncluded: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3476
|
+
status: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
3272
3477
|
}, "strip", z.ZodTypeAny, {
|
|
3273
3478
|
address: `0x${string}`;
|
|
3274
3479
|
opsSeen: bigint;
|
|
@@ -3428,7 +3633,7 @@ declare const pimlicoGetUserOperationGasPriceResponseSchema: z.ZodObject<{
|
|
|
3428
3633
|
}>;
|
|
3429
3634
|
declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObject<{
|
|
3430
3635
|
method: z.ZodLiteral<"eth_chainId">;
|
|
3431
|
-
result: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3636
|
+
result: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3432
3637
|
}, "strip", z.ZodTypeAny, {
|
|
3433
3638
|
method: "eth_chainId";
|
|
3434
3639
|
result: bigint;
|
|
@@ -3447,10 +3652,10 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
3447
3652
|
}>, z.ZodObject<{
|
|
3448
3653
|
method: z.ZodLiteral<"eth_estimateUserOperationGas">;
|
|
3449
3654
|
result: z.ZodUnion<[z.ZodObject<{
|
|
3450
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3451
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3452
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3453
|
-
verificationGas: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
3655
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3656
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3657
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3658
|
+
verificationGas: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
3454
3659
|
}, "strip", z.ZodTypeAny, {
|
|
3455
3660
|
callGasLimit: bigint;
|
|
3456
3661
|
verificationGasLimit: bigint;
|
|
@@ -3462,11 +3667,11 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
3462
3667
|
preVerificationGas: string | number | bigint;
|
|
3463
3668
|
verificationGas?: string | number | bigint | undefined;
|
|
3464
3669
|
}>, z.ZodObject<{
|
|
3465
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3466
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3467
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3468
|
-
paymasterVerificationGasLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
3469
|
-
paymasterPostOpGasLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
3670
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3671
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3672
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3673
|
+
paymasterVerificationGasLimit: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
3674
|
+
paymasterPostOpGasLimit: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
3470
3675
|
}, "strip", z.ZodTypeAny, {
|
|
3471
3676
|
callGasLimit: bigint;
|
|
3472
3677
|
verificationGasLimit: bigint;
|
|
@@ -3544,14 +3749,14 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
3544
3749
|
result: z.ZodUnion<[z.ZodObject<{
|
|
3545
3750
|
userOperation: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
3546
3751
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3547
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3752
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3548
3753
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3549
3754
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3550
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3551
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3552
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3553
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3554
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3755
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3756
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3757
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3758
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3759
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3555
3760
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3556
3761
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3557
3762
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3604,18 +3809,18 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
3604
3809
|
signature: string;
|
|
3605
3810
|
}>, z.ZodEffects<z.ZodObject<{
|
|
3606
3811
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3607
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3812
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3608
3813
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3609
3814
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3610
3815
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3611
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3612
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3613
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3614
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3615
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3816
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3817
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3818
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3819
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3820
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3616
3821
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3617
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
3618
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
3822
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
3823
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
3619
3824
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3620
3825
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3621
3826
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3684,7 +3889,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
3684
3889
|
paymasterData?: string | null | undefined;
|
|
3685
3890
|
}>]>;
|
|
3686
3891
|
entryPoint: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3687
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3892
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3688
3893
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3689
3894
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3690
3895
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3948,18 +4153,18 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
3948
4153
|
userOpHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3949
4154
|
entryPoint: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3950
4155
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3951
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4156
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3952
4157
|
paymaster: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
3953
|
-
actualGasCost: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3954
|
-
actualGasUsed: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4158
|
+
actualGasCost: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4159
|
+
actualGasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3955
4160
|
success: z.ZodBoolean;
|
|
3956
4161
|
reason: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
3957
4162
|
logs: z.ZodArray<z.ZodObject<{
|
|
3958
|
-
logIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3959
|
-
transactionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4163
|
+
logIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4164
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3960
4165
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3961
4166
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3962
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4167
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3963
4168
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3964
4169
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3965
4170
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
@@ -3984,20 +4189,20 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
3984
4189
|
}>, "many">;
|
|
3985
4190
|
receipt: z.ZodObject<{
|
|
3986
4191
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3987
|
-
transactionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4192
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3988
4193
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3989
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4194
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3990
4195
|
from: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3991
4196
|
to: z.ZodUnion<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodNull]>;
|
|
3992
|
-
cumulativeGasUsed: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3993
|
-
gasUsed: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4197
|
+
cumulativeGasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4198
|
+
gasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3994
4199
|
contractAddress: z.ZodUnion<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodNull]>;
|
|
3995
4200
|
logs: z.ZodArray<z.ZodObject<{
|
|
3996
|
-
logIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
3997
|
-
transactionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4201
|
+
logIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4202
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3998
4203
|
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3999
4204
|
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4000
|
-
blockNumber: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4205
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4001
4206
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4002
4207
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4003
4208
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
@@ -4021,8 +4226,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4021
4226
|
topics: string[];
|
|
4022
4227
|
}>, "many">;
|
|
4023
4228
|
logsBloom: z.ZodString;
|
|
4024
|
-
status: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, z.ZodNull]>;
|
|
4025
|
-
effectiveGasPrice: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint
|
|
4229
|
+
status: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, z.ZodNull]>;
|
|
4230
|
+
effectiveGasPrice: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>;
|
|
4026
4231
|
}, "strip", z.ZodTypeAny, {
|
|
4027
4232
|
to: `0x${string}` | null;
|
|
4028
4233
|
gasUsed: bigint;
|
|
@@ -4045,7 +4250,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4045
4250
|
topics: `0x${string}`[];
|
|
4046
4251
|
}[];
|
|
4047
4252
|
logsBloom: string;
|
|
4048
|
-
effectiveGasPrice
|
|
4253
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
4049
4254
|
}, {
|
|
4050
4255
|
to: string | null;
|
|
4051
4256
|
gasUsed: string | number | bigint;
|
|
@@ -4068,7 +4273,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4068
4273
|
topics: string[];
|
|
4069
4274
|
}[];
|
|
4070
4275
|
logsBloom: string;
|
|
4071
|
-
effectiveGasPrice
|
|
4276
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
4072
4277
|
}>;
|
|
4073
4278
|
}, "strip", z.ZodTypeAny, {
|
|
4074
4279
|
sender: `0x${string}`;
|
|
@@ -4110,7 +4315,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4110
4315
|
topics: `0x${string}`[];
|
|
4111
4316
|
}[];
|
|
4112
4317
|
logsBloom: string;
|
|
4113
|
-
effectiveGasPrice
|
|
4318
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
4114
4319
|
};
|
|
4115
4320
|
paymaster?: `0x${string}` | undefined;
|
|
4116
4321
|
reason?: `0x${string}` | undefined;
|
|
@@ -4154,7 +4359,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4154
4359
|
topics: string[];
|
|
4155
4360
|
}[];
|
|
4156
4361
|
logsBloom: string;
|
|
4157
|
-
effectiveGasPrice
|
|
4362
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
4158
4363
|
};
|
|
4159
4364
|
paymaster?: string | undefined;
|
|
4160
4365
|
reason?: string | undefined;
|
|
@@ -4201,7 +4406,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4201
4406
|
topics: `0x${string}`[];
|
|
4202
4407
|
}[];
|
|
4203
4408
|
logsBloom: string;
|
|
4204
|
-
effectiveGasPrice
|
|
4409
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
4205
4410
|
};
|
|
4206
4411
|
paymaster?: `0x${string}` | undefined;
|
|
4207
4412
|
reason?: `0x${string}` | undefined;
|
|
@@ -4248,7 +4453,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4248
4453
|
topics: string[];
|
|
4249
4454
|
}[];
|
|
4250
4455
|
logsBloom: string;
|
|
4251
|
-
effectiveGasPrice
|
|
4456
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
4252
4457
|
};
|
|
4253
4458
|
paymaster?: string | undefined;
|
|
4254
4459
|
reason?: string | undefined;
|
|
@@ -4275,14 +4480,14 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4275
4480
|
method: z.ZodLiteral<"debug_bundler_dumpMempool">;
|
|
4276
4481
|
result: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
4277
4482
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4278
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4483
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4279
4484
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4280
4485
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4281
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4282
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4283
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4284
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4285
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4486
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4487
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4488
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4489
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4490
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4286
4491
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4287
4492
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4288
4493
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -4335,18 +4540,18 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4335
4540
|
signature: string;
|
|
4336
4541
|
}>, z.ZodEffects<z.ZodObject<{
|
|
4337
4542
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4338
|
-
nonce: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4543
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4339
4544
|
factory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
4340
4545
|
factoryData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
4341
4546
|
callData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4342
|
-
callGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4343
|
-
verificationGasLimit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4344
|
-
preVerificationGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4345
|
-
maxFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4346
|
-
maxPriorityFeePerGas: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4547
|
+
callGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4548
|
+
verificationGasLimit: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4549
|
+
preVerificationGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4550
|
+
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4551
|
+
maxPriorityFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4347
4552
|
paymaster: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
4348
|
-
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
4349
|
-
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
4553
|
+
paymasterVerificationGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
4554
|
+
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
4350
4555
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
4351
4556
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4352
4557
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -4559,9 +4764,9 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4559
4764
|
method: z.ZodLiteral<"debug_bundler_dumpReputation">;
|
|
4560
4765
|
result: z.ZodArray<z.ZodObject<{
|
|
4561
4766
|
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4562
|
-
opsSeen: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4563
|
-
opsIncluded: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
|
|
4564
|
-
status: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
|
|
4767
|
+
opsSeen: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4768
|
+
opsIncluded: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4769
|
+
status: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
4565
4770
|
}, "strip", z.ZodTypeAny, {
|
|
4566
4771
|
address: `0x${string}`;
|
|
4567
4772
|
opsSeen: bigint;
|
|
@@ -4714,77 +4919,568 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4714
4919
|
}, {
|
|
4715
4920
|
method: "pimlico_sendCompressedUserOperation";
|
|
4716
4921
|
result: string;
|
|
4717
|
-
}
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4922
|
+
}>, z.ZodObject<{
|
|
4923
|
+
method: z.ZodLiteral<"pimlico_sendUserOperationNow">;
|
|
4924
|
+
result: z.ZodUnion<[z.ZodObject<{
|
|
4925
|
+
userOpHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4926
|
+
entryPoint: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4927
|
+
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4928
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4929
|
+
paymaster: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
4930
|
+
actualGasCost: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4931
|
+
actualGasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4932
|
+
success: z.ZodBoolean;
|
|
4933
|
+
reason: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
4934
|
+
logs: z.ZodArray<z.ZodObject<{
|
|
4935
|
+
logIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4936
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4937
|
+
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4938
|
+
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4939
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4940
|
+
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4941
|
+
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4942
|
+
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
4943
|
+
}, "strip", z.ZodTypeAny, {
|
|
4944
|
+
address: `0x${string}`;
|
|
4945
|
+
data: `0x${string}`;
|
|
4946
|
+
blockNumber: bigint;
|
|
4947
|
+
blockHash: `0x${string}`;
|
|
4948
|
+
transactionHash: `0x${string}`;
|
|
4949
|
+
logIndex: bigint;
|
|
4950
|
+
transactionIndex: bigint;
|
|
4951
|
+
topics: `0x${string}`[];
|
|
4952
|
+
}, {
|
|
4953
|
+
address: string;
|
|
4954
|
+
data: string;
|
|
4955
|
+
blockNumber: string | number | bigint;
|
|
4956
|
+
blockHash: string;
|
|
4957
|
+
transactionHash: string;
|
|
4958
|
+
logIndex: string | number | bigint;
|
|
4959
|
+
transactionIndex: string | number | bigint;
|
|
4960
|
+
topics: string[];
|
|
4961
|
+
}>, "many">;
|
|
4962
|
+
receipt: z.ZodObject<{
|
|
4963
|
+
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4964
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4965
|
+
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4966
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4967
|
+
from: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4968
|
+
to: z.ZodUnion<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodNull]>;
|
|
4969
|
+
cumulativeGasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4970
|
+
gasUsed: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4971
|
+
contractAddress: z.ZodUnion<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodNull]>;
|
|
4972
|
+
logs: z.ZodArray<z.ZodObject<{
|
|
4973
|
+
logIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4974
|
+
transactionIndex: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4975
|
+
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4976
|
+
blockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4977
|
+
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4978
|
+
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4979
|
+
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4980
|
+
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
4981
|
+
}, "strip", z.ZodTypeAny, {
|
|
4982
|
+
address: `0x${string}`;
|
|
4983
|
+
data: `0x${string}`;
|
|
4984
|
+
blockNumber: bigint;
|
|
4985
|
+
blockHash: `0x${string}`;
|
|
4986
|
+
transactionHash: `0x${string}`;
|
|
4987
|
+
logIndex: bigint;
|
|
4988
|
+
transactionIndex: bigint;
|
|
4989
|
+
topics: `0x${string}`[];
|
|
4990
|
+
}, {
|
|
4991
|
+
address: string;
|
|
4992
|
+
data: string;
|
|
4993
|
+
blockNumber: string | number | bigint;
|
|
4994
|
+
blockHash: string;
|
|
4995
|
+
transactionHash: string;
|
|
4996
|
+
logIndex: string | number | bigint;
|
|
4997
|
+
transactionIndex: string | number | bigint;
|
|
4998
|
+
topics: string[];
|
|
4999
|
+
}>, "many">;
|
|
5000
|
+
logsBloom: z.ZodString;
|
|
5001
|
+
status: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, z.ZodNull]>;
|
|
5002
|
+
effectiveGasPrice: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>;
|
|
5003
|
+
}, "strip", z.ZodTypeAny, {
|
|
5004
|
+
to: `0x${string}` | null;
|
|
5005
|
+
gasUsed: bigint;
|
|
5006
|
+
status: bigint | null;
|
|
5007
|
+
blockNumber: bigint;
|
|
5008
|
+
blockHash: `0x${string}`;
|
|
5009
|
+
transactionHash: `0x${string}`;
|
|
5010
|
+
transactionIndex: bigint;
|
|
5011
|
+
from: `0x${string}`;
|
|
5012
|
+
cumulativeGasUsed: bigint;
|
|
5013
|
+
contractAddress: `0x${string}` | null;
|
|
5014
|
+
logs: {
|
|
5015
|
+
address: `0x${string}`;
|
|
5016
|
+
data: `0x${string}`;
|
|
5017
|
+
blockNumber: bigint;
|
|
5018
|
+
blockHash: `0x${string}`;
|
|
5019
|
+
transactionHash: `0x${string}`;
|
|
5020
|
+
logIndex: bigint;
|
|
5021
|
+
transactionIndex: bigint;
|
|
5022
|
+
topics: `0x${string}`[];
|
|
5023
|
+
}[];
|
|
5024
|
+
logsBloom: string;
|
|
5025
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
5026
|
+
}, {
|
|
5027
|
+
to: string | null;
|
|
5028
|
+
gasUsed: string | number | bigint;
|
|
5029
|
+
status: string | number | bigint | null;
|
|
5030
|
+
blockNumber: string | number | bigint;
|
|
5031
|
+
blockHash: string;
|
|
5032
|
+
transactionHash: string;
|
|
5033
|
+
transactionIndex: string | number | bigint;
|
|
5034
|
+
from: string;
|
|
5035
|
+
cumulativeGasUsed: string | number | bigint;
|
|
5036
|
+
contractAddress: string | null;
|
|
5037
|
+
logs: {
|
|
5038
|
+
address: string;
|
|
5039
|
+
data: string;
|
|
5040
|
+
blockNumber: string | number | bigint;
|
|
5041
|
+
blockHash: string;
|
|
5042
|
+
transactionHash: string;
|
|
5043
|
+
logIndex: string | number | bigint;
|
|
5044
|
+
transactionIndex: string | number | bigint;
|
|
5045
|
+
topics: string[];
|
|
5046
|
+
}[];
|
|
5047
|
+
logsBloom: string;
|
|
5048
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
5049
|
+
}>;
|
|
5050
|
+
}, "strip", z.ZodTypeAny, {
|
|
5051
|
+
sender: `0x${string}`;
|
|
5052
|
+
nonce: bigint;
|
|
5053
|
+
userOpHash: `0x${string}`;
|
|
5054
|
+
success: boolean;
|
|
5055
|
+
actualGasCost: bigint;
|
|
5056
|
+
actualGasUsed: bigint;
|
|
5057
|
+
entryPoint: `0x${string}`;
|
|
5058
|
+
logs: {
|
|
5059
|
+
address: `0x${string}`;
|
|
5060
|
+
data: `0x${string}`;
|
|
5061
|
+
blockNumber: bigint;
|
|
5062
|
+
blockHash: `0x${string}`;
|
|
5063
|
+
transactionHash: `0x${string}`;
|
|
5064
|
+
logIndex: bigint;
|
|
5065
|
+
transactionIndex: bigint;
|
|
5066
|
+
topics: `0x${string}`[];
|
|
5067
|
+
}[];
|
|
5068
|
+
receipt: {
|
|
5069
|
+
to: `0x${string}` | null;
|
|
5070
|
+
gasUsed: bigint;
|
|
5071
|
+
status: bigint | null;
|
|
5072
|
+
blockNumber: bigint;
|
|
5073
|
+
blockHash: `0x${string}`;
|
|
5074
|
+
transactionHash: `0x${string}`;
|
|
5075
|
+
transactionIndex: bigint;
|
|
5076
|
+
from: `0x${string}`;
|
|
5077
|
+
cumulativeGasUsed: bigint;
|
|
5078
|
+
contractAddress: `0x${string}` | null;
|
|
5079
|
+
logs: {
|
|
5080
|
+
address: `0x${string}`;
|
|
5081
|
+
data: `0x${string}`;
|
|
5082
|
+
blockNumber: bigint;
|
|
5083
|
+
blockHash: `0x${string}`;
|
|
5084
|
+
transactionHash: `0x${string}`;
|
|
5085
|
+
logIndex: bigint;
|
|
5086
|
+
transactionIndex: bigint;
|
|
5087
|
+
topics: `0x${string}`[];
|
|
5088
|
+
}[];
|
|
5089
|
+
logsBloom: string;
|
|
5090
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
5091
|
+
};
|
|
5092
|
+
paymaster?: `0x${string}` | undefined;
|
|
5093
|
+
reason?: `0x${string}` | undefined;
|
|
5094
|
+
}, {
|
|
5095
|
+
sender: string;
|
|
5096
|
+
nonce: string | number | bigint;
|
|
5097
|
+
userOpHash: string;
|
|
5098
|
+
success: boolean;
|
|
5099
|
+
actualGasCost: string | number | bigint;
|
|
5100
|
+
actualGasUsed: string | number | bigint;
|
|
5101
|
+
entryPoint: string;
|
|
5102
|
+
logs: {
|
|
5103
|
+
address: string;
|
|
5104
|
+
data: string;
|
|
5105
|
+
blockNumber: string | number | bigint;
|
|
5106
|
+
blockHash: string;
|
|
5107
|
+
transactionHash: string;
|
|
5108
|
+
logIndex: string | number | bigint;
|
|
5109
|
+
transactionIndex: string | number | bigint;
|
|
5110
|
+
topics: string[];
|
|
5111
|
+
}[];
|
|
5112
|
+
receipt: {
|
|
5113
|
+
to: string | null;
|
|
5114
|
+
gasUsed: string | number | bigint;
|
|
5115
|
+
status: string | number | bigint | null;
|
|
5116
|
+
blockNumber: string | number | bigint;
|
|
5117
|
+
blockHash: string;
|
|
5118
|
+
transactionHash: string;
|
|
5119
|
+
transactionIndex: string | number | bigint;
|
|
5120
|
+
from: string;
|
|
5121
|
+
cumulativeGasUsed: string | number | bigint;
|
|
5122
|
+
contractAddress: string | null;
|
|
5123
|
+
logs: {
|
|
5124
|
+
address: string;
|
|
5125
|
+
data: string;
|
|
5126
|
+
blockNumber: string | number | bigint;
|
|
5127
|
+
blockHash: string;
|
|
5128
|
+
transactionHash: string;
|
|
5129
|
+
logIndex: string | number | bigint;
|
|
5130
|
+
transactionIndex: string | number | bigint;
|
|
5131
|
+
topics: string[];
|
|
5132
|
+
}[];
|
|
5133
|
+
logsBloom: string;
|
|
5134
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
5135
|
+
};
|
|
5136
|
+
paymaster?: string | undefined;
|
|
5137
|
+
reason?: string | undefined;
|
|
5138
|
+
}>, z.ZodNull]>;
|
|
5139
|
+
}, "strip", z.ZodTypeAny, {
|
|
5140
|
+
method: "pimlico_sendUserOperationNow";
|
|
5141
|
+
result: {
|
|
5142
|
+
sender: `0x${string}`;
|
|
5143
|
+
nonce: bigint;
|
|
5144
|
+
userOpHash: `0x${string}`;
|
|
5145
|
+
success: boolean;
|
|
5146
|
+
actualGasCost: bigint;
|
|
5147
|
+
actualGasUsed: bigint;
|
|
5148
|
+
entryPoint: `0x${string}`;
|
|
5149
|
+
logs: {
|
|
5150
|
+
address: `0x${string}`;
|
|
5151
|
+
data: `0x${string}`;
|
|
5152
|
+
blockNumber: bigint;
|
|
5153
|
+
blockHash: `0x${string}`;
|
|
5154
|
+
transactionHash: `0x${string}`;
|
|
5155
|
+
logIndex: bigint;
|
|
5156
|
+
transactionIndex: bigint;
|
|
5157
|
+
topics: `0x${string}`[];
|
|
5158
|
+
}[];
|
|
5159
|
+
receipt: {
|
|
5160
|
+
to: `0x${string}` | null;
|
|
5161
|
+
gasUsed: bigint;
|
|
5162
|
+
status: bigint | null;
|
|
5163
|
+
blockNumber: bigint;
|
|
5164
|
+
blockHash: `0x${string}`;
|
|
5165
|
+
transactionHash: `0x${string}`;
|
|
5166
|
+
transactionIndex: bigint;
|
|
5167
|
+
from: `0x${string}`;
|
|
5168
|
+
cumulativeGasUsed: bigint;
|
|
5169
|
+
contractAddress: `0x${string}` | null;
|
|
5170
|
+
logs: {
|
|
5171
|
+
address: `0x${string}`;
|
|
5172
|
+
data: `0x${string}`;
|
|
5173
|
+
blockNumber: bigint;
|
|
5174
|
+
blockHash: `0x${string}`;
|
|
5175
|
+
transactionHash: `0x${string}`;
|
|
5176
|
+
logIndex: bigint;
|
|
5177
|
+
transactionIndex: bigint;
|
|
5178
|
+
topics: `0x${string}`[];
|
|
5179
|
+
}[];
|
|
5180
|
+
logsBloom: string;
|
|
5181
|
+
effectiveGasPrice?: bigint | null | undefined;
|
|
5182
|
+
};
|
|
5183
|
+
paymaster?: `0x${string}` | undefined;
|
|
5184
|
+
reason?: `0x${string}` | undefined;
|
|
5185
|
+
} | null;
|
|
5186
|
+
}, {
|
|
5187
|
+
method: "pimlico_sendUserOperationNow";
|
|
5188
|
+
result: {
|
|
5189
|
+
sender: string;
|
|
5190
|
+
nonce: string | number | bigint;
|
|
5191
|
+
userOpHash: string;
|
|
5192
|
+
success: boolean;
|
|
5193
|
+
actualGasCost: string | number | bigint;
|
|
5194
|
+
actualGasUsed: string | number | bigint;
|
|
5195
|
+
entryPoint: string;
|
|
5196
|
+
logs: {
|
|
5197
|
+
address: string;
|
|
5198
|
+
data: string;
|
|
5199
|
+
blockNumber: string | number | bigint;
|
|
5200
|
+
blockHash: string;
|
|
5201
|
+
transactionHash: string;
|
|
5202
|
+
logIndex: string | number | bigint;
|
|
5203
|
+
transactionIndex: string | number | bigint;
|
|
5204
|
+
topics: string[];
|
|
5205
|
+
}[];
|
|
5206
|
+
receipt: {
|
|
5207
|
+
to: string | null;
|
|
5208
|
+
gasUsed: string | number | bigint;
|
|
5209
|
+
status: string | number | bigint | null;
|
|
5210
|
+
blockNumber: string | number | bigint;
|
|
5211
|
+
blockHash: string;
|
|
5212
|
+
transactionHash: string;
|
|
5213
|
+
transactionIndex: string | number | bigint;
|
|
5214
|
+
from: string;
|
|
5215
|
+
cumulativeGasUsed: string | number | bigint;
|
|
5216
|
+
contractAddress: string | null;
|
|
5217
|
+
logs: {
|
|
5218
|
+
address: string;
|
|
5219
|
+
data: string;
|
|
5220
|
+
blockNumber: string | number | bigint;
|
|
5221
|
+
blockHash: string;
|
|
5222
|
+
transactionHash: string;
|
|
5223
|
+
logIndex: string | number | bigint;
|
|
5224
|
+
transactionIndex: string | number | bigint;
|
|
5225
|
+
topics: string[];
|
|
5226
|
+
}[];
|
|
5227
|
+
logsBloom: string;
|
|
5228
|
+
effectiveGasPrice?: string | number | bigint | null | undefined;
|
|
5229
|
+
};
|
|
5230
|
+
paymaster?: string | undefined;
|
|
5231
|
+
reason?: string | undefined;
|
|
5232
|
+
} | null;
|
|
5233
|
+
}>]>;
|
|
5234
|
+
export type BundlingMode = z.infer<typeof bundlerSetBundlingModeRequestSchema>["params"][0];
|
|
5235
|
+
export type Reputations = z.infer<typeof bundlerSetReputationsRequestSchema>["params"][0];
|
|
5236
|
+
export type ChainIdResponse = z.infer<typeof chainIdResponseSchema>;
|
|
5237
|
+
export type SupportedEntryPointsResponse = z.infer<typeof supportedEntryPointsResponseSchema>;
|
|
5238
|
+
export type EstimateUserOperationGasResponse = z.infer<typeof estimateUserOperationGasResponseSchema>;
|
|
5239
|
+
export type SendUserOperationResponse = z.infer<typeof sendUserOperationResponseSchema>;
|
|
5240
|
+
export type GetUserOperationByHashResponse = z.infer<typeof getUserOperationByHashResponseSchema>;
|
|
5241
|
+
export type GetUserOperationReceiptResponse = z.infer<typeof getUserOperationReceiptResponseSchema>;
|
|
5242
|
+
export type BundlerClearStateResponse = z.infer<typeof bundlerClearStateResponseSchema>;
|
|
5243
|
+
export type BundlerClearMempoolResponse = z.infer<typeof bundlerClearMempoolResponseSchema>;
|
|
5244
|
+
export type BundlerDumpMempoolResponse = z.infer<typeof bundlerDumpMempoolResponseSchema>;
|
|
5245
|
+
export type BundlerGetStakeStatusResponse = z.infer<typeof bundlerGetStakeStatusResponseSchema>;
|
|
5246
|
+
export type BundlerSendBundleNowResponse = z.infer<typeof bundlerSendBundleNowResponseSchema>;
|
|
5247
|
+
export type BundlerSetBundlingModeResponse = z.infer<typeof bundlerSetBundlingModeResponseSchema>;
|
|
5248
|
+
export type BundlerSetReputationsResponse = z.infer<typeof bundlerSetReputationsResponseSchema>;
|
|
5249
|
+
export type BundlerDumpReputationsResponse = z.infer<typeof bundlerDumpReputationsResponseSchema>;
|
|
5250
|
+
export type PimlicoGetUserOperationStatusResponse = z.infer<typeof pimlicoGetUserOperationStatusResponseSchema>;
|
|
5251
|
+
export type PimlicoGetUserOperationGasPriceResponse = z.infer<typeof pimlicoGetUserOperationGasPriceResponseSchema>;
|
|
5252
|
+
export type ChainIdResponseResult = z.infer<typeof chainIdResponseSchema>["result"];
|
|
5253
|
+
export type SupportedEntryPointsResponseResult = z.infer<typeof supportedEntryPointsResponseSchema>["result"];
|
|
5254
|
+
export type EstimateUserOperationGasResponseResult = z.infer<typeof estimateUserOperationGasResponseSchema>["result"];
|
|
5255
|
+
export type SendUserOperationResponseResult = z.infer<typeof sendUserOperationResponseSchema>["result"];
|
|
5256
|
+
export type GetUserOperationByHashResponseResult = z.infer<typeof getUserOperationByHashResponseSchema>["result"];
|
|
5257
|
+
export type GetUserOperationReceiptResponseResult = z.infer<typeof getUserOperationReceiptResponseSchema>["result"];
|
|
5258
|
+
export type BundlerClearStateResponseResult = z.infer<typeof bundlerClearStateResponseSchema>["result"];
|
|
5259
|
+
export type BundlerClearMempoolResponseResult = z.infer<typeof bundlerClearMempoolResponseSchema>["result"];
|
|
5260
|
+
export type BundlerDumpMempoolResponseResult = z.infer<typeof bundlerDumpMempoolResponseSchema>["result"];
|
|
5261
|
+
export type BundlerGetStakeStatusResponseResult = z.infer<typeof bundlerGetStakeStatusResponseSchema>["result"];
|
|
5262
|
+
export type BundlerSendBundleNowResponseResult = z.infer<typeof bundlerSendBundleNowResponseSchema>["result"];
|
|
5263
|
+
export type BundlerSetBundlingModeResponseResult = z.infer<typeof bundlerSetBundlingModeResponseSchema>["result"];
|
|
5264
|
+
export type BundlerSetReputationsResponseResult = z.infer<typeof bundlerSetReputationsResponseSchema>["result"];
|
|
5265
|
+
export type BundlerDumpReputationsResponseResult = z.infer<typeof bundlerDumpReputationsResponseSchema>["result"];
|
|
5266
|
+
export type PimlicoGetUserOperationStatusResponseResult = z.infer<typeof pimlicoGetUserOperationStatusResponseSchema>["result"];
|
|
5267
|
+
export type PimlicoGetUserOperationGasPriceResponseResult = z.infer<typeof pimlicoGetUserOperationGasPriceResponseSchema>["result"];
|
|
5268
|
+
export type BundlerResponse = z.infer<typeof bundlerResponseSchema>;
|
|
5269
|
+
export type ChainIdRequest = z.infer<typeof chainIdRequestSchema>;
|
|
5270
|
+
export type SupportedEntryPointsRequest = z.infer<typeof supportedEntryPointsRequestSchema>;
|
|
5271
|
+
export type EstimateUserOperationGasRequest = z.infer<typeof estimateUserOperationGasRequestSchema>;
|
|
5272
|
+
export type SendUserOperationRequest = z.infer<typeof sendUserOperationRequestSchema>;
|
|
5273
|
+
export type GetUserOperationByHashRequest = z.infer<typeof getUserOperationByHashRequestSchema>;
|
|
5274
|
+
export type GetUserOperationReceiptRequest = z.infer<typeof getUserOperationReceiptRequestSchema>;
|
|
5275
|
+
export type BundlerClearStateRequest = z.infer<typeof bundlerClearStateRequestSchema>;
|
|
5276
|
+
export type BundlerClearMempoolRequest = z.infer<typeof bundlerClearMempoolRequestSchema>;
|
|
5277
|
+
export type BundlerDumpMempoolRequest = z.infer<typeof bundlerDumpMempoolRequestSchema>;
|
|
5278
|
+
export type BundlerSendBundleNowRequest = z.infer<typeof bundlerSendBundleNowRequestSchema>;
|
|
5279
|
+
export type BundlerSetBundlingModeRequest = z.infer<typeof bundlerSetBundlingModeRequestSchema>;
|
|
5280
|
+
export type BundlerSetReputationsRequest = z.infer<typeof bundlerSetReputationsRequestSchema>;
|
|
5281
|
+
export type BundlerDumpReputationsRequest = z.infer<typeof bundlerDumpReputationsRequestSchema>;
|
|
5282
|
+
export type BundlerGetStakeStatusRequest = z.infer<typeof pimlicoGetStakeStatusRequestSchema>;
|
|
5283
|
+
export type PimlicoGetUserOperationStatusRequest = z.infer<typeof pimlicoGetUserOperationStatusRequestSchema>;
|
|
5284
|
+
export type PimlicoGetUserOperationGasPriceRequest = z.infer<typeof pimlicoGetUserOperationGasPriceRequestSchema>;
|
|
5285
|
+
export type ChainIdRequestParams = z.infer<typeof chainIdRequestSchema>["params"];
|
|
5286
|
+
export type SupportedEntryPointsRequestParams = z.infer<typeof supportedEntryPointsRequestSchema>["params"];
|
|
5287
|
+
export type EstimateUserOperationGasRequestParams = z.infer<typeof estimateUserOperationGasRequestSchema>["params"];
|
|
5288
|
+
export type SendUserOperationRequestParams = z.infer<typeof sendUserOperationRequestSchema>["params"];
|
|
5289
|
+
export type GetUserOperationByHashRequestParams = z.infer<typeof getUserOperationByHashRequestSchema>["params"];
|
|
5290
|
+
export type GetUserOperationReceiptRequestParams = z.infer<typeof getUserOperationReceiptRequestSchema>["params"];
|
|
5291
|
+
export type BundlerClearStateRequestParams = z.infer<typeof bundlerClearStateRequestSchema>["params"];
|
|
5292
|
+
export type BundlerClearMempoolRequestParams = z.infer<typeof bundlerClearMempoolRequestSchema>["params"];
|
|
5293
|
+
export type BundlerDumpMempoolRequestParams = z.infer<typeof bundlerDumpMempoolRequestSchema>["params"];
|
|
5294
|
+
export type BundlerSendBundleNowRequestParams = z.infer<typeof bundlerSendBundleNowRequestSchema>["params"];
|
|
5295
|
+
export type BundlerSetBundlingModeRequestParams = z.infer<typeof bundlerSetBundlingModeRequestSchema>["params"];
|
|
5296
|
+
export type BundlerSetReputationsRequestParams = z.infer<typeof bundlerSetReputationsRequestSchema>["params"];
|
|
5297
|
+
export type BundlerDumpReputationsRequestParams = z.infer<typeof bundlerDumpReputationsRequestSchema>["params"];
|
|
5298
|
+
export type BundlerGetStakeStatusRequestParams = z.infer<typeof pimlicoGetStakeStatusRequestSchema>["params"];
|
|
5299
|
+
export type PimlicoGetUserOperationStatusRequestParams = z.infer<typeof pimlicoGetUserOperationStatusRequestSchema>["params"];
|
|
5300
|
+
export type PimlicoGetUserOperationGasPriceRequestParams = z.infer<typeof pimlicoGetUserOperationGasPriceRequestSchema>["params"];
|
|
4785
5301
|
export type BundlerRequest = z.infer<typeof bundlerRequestSchema>;
|
|
4786
5302
|
export type JSONRPCRequest = z.infer<typeof jsonRpcSchema>;
|
|
4787
5303
|
export type JSONRPCResponse = z.infer<typeof jsonRpcResultSchema>;
|
|
5304
|
+
declare const OpEventType: z.ZodUnion<[z.ZodObject<{
|
|
5305
|
+
eventType: z.ZodLiteral<"received">;
|
|
5306
|
+
}, "strip", z.ZodTypeAny, {
|
|
5307
|
+
eventType: "received";
|
|
5308
|
+
}, {
|
|
5309
|
+
eventType: "received";
|
|
5310
|
+
}>, z.ZodObject<{
|
|
5311
|
+
eventType: z.ZodLiteral<"added_to_mempool">;
|
|
5312
|
+
}, "strip", z.ZodTypeAny, {
|
|
5313
|
+
eventType: "added_to_mempool";
|
|
5314
|
+
}, {
|
|
5315
|
+
eventType: "added_to_mempool";
|
|
5316
|
+
}>, z.ZodObject<{
|
|
5317
|
+
eventType: z.ZodLiteral<"queued">;
|
|
5318
|
+
}, "strip", z.ZodTypeAny, {
|
|
5319
|
+
eventType: "queued";
|
|
5320
|
+
}, {
|
|
5321
|
+
eventType: "queued";
|
|
5322
|
+
}>, z.ZodObject<{
|
|
5323
|
+
eventType: z.ZodLiteral<"failed_validation">;
|
|
5324
|
+
data: z.ZodObject<{
|
|
5325
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5326
|
+
aaError: z.ZodOptional<z.ZodString>;
|
|
5327
|
+
}, "strip", z.ZodTypeAny, {
|
|
5328
|
+
reason?: string | undefined;
|
|
5329
|
+
aaError?: string | undefined;
|
|
5330
|
+
}, {
|
|
5331
|
+
reason?: string | undefined;
|
|
5332
|
+
aaError?: string | undefined;
|
|
5333
|
+
}>;
|
|
5334
|
+
}, "strip", z.ZodTypeAny, {
|
|
5335
|
+
data: {
|
|
5336
|
+
reason?: string | undefined;
|
|
5337
|
+
aaError?: string | undefined;
|
|
5338
|
+
};
|
|
5339
|
+
eventType: "failed_validation";
|
|
5340
|
+
}, {
|
|
5341
|
+
data: {
|
|
5342
|
+
reason?: string | undefined;
|
|
5343
|
+
aaError?: string | undefined;
|
|
5344
|
+
};
|
|
5345
|
+
eventType: "failed_validation";
|
|
5346
|
+
}>, z.ZodObject<{
|
|
5347
|
+
eventType: z.ZodLiteral<"dropped">;
|
|
5348
|
+
data: z.ZodObject<{
|
|
5349
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5350
|
+
aaError: z.ZodOptional<z.ZodString>;
|
|
5351
|
+
}, "strip", z.ZodTypeAny, {
|
|
5352
|
+
reason?: string | undefined;
|
|
5353
|
+
aaError?: string | undefined;
|
|
5354
|
+
}, {
|
|
5355
|
+
reason?: string | undefined;
|
|
5356
|
+
aaError?: string | undefined;
|
|
5357
|
+
}>;
|
|
5358
|
+
}, "strip", z.ZodTypeAny, {
|
|
5359
|
+
data: {
|
|
5360
|
+
reason?: string | undefined;
|
|
5361
|
+
aaError?: string | undefined;
|
|
5362
|
+
};
|
|
5363
|
+
eventType: "dropped";
|
|
5364
|
+
}, {
|
|
5365
|
+
data: {
|
|
5366
|
+
reason?: string | undefined;
|
|
5367
|
+
aaError?: string | undefined;
|
|
5368
|
+
};
|
|
5369
|
+
eventType: "dropped";
|
|
5370
|
+
}>, z.ZodObject<{
|
|
5371
|
+
eventType: z.ZodLiteral<"submitted">;
|
|
5372
|
+
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5373
|
+
}, "strip", z.ZodTypeAny, {
|
|
5374
|
+
transactionHash: `0x${string}`;
|
|
5375
|
+
eventType: "submitted";
|
|
5376
|
+
}, {
|
|
5377
|
+
transactionHash: string;
|
|
5378
|
+
eventType: "submitted";
|
|
5379
|
+
}>, z.ZodObject<{
|
|
5380
|
+
eventType: z.ZodLiteral<"included_onchain">;
|
|
5381
|
+
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5382
|
+
data: z.ZodObject<{
|
|
5383
|
+
blockNumber: z.ZodNumber;
|
|
5384
|
+
}, "strip", z.ZodTypeAny, {
|
|
5385
|
+
blockNumber: number;
|
|
5386
|
+
}, {
|
|
5387
|
+
blockNumber: number;
|
|
5388
|
+
}>;
|
|
5389
|
+
}, "strip", z.ZodTypeAny, {
|
|
5390
|
+
data: {
|
|
5391
|
+
blockNumber: number;
|
|
5392
|
+
};
|
|
5393
|
+
transactionHash: `0x${string}`;
|
|
5394
|
+
eventType: "included_onchain";
|
|
5395
|
+
}, {
|
|
5396
|
+
data: {
|
|
5397
|
+
blockNumber: number;
|
|
5398
|
+
};
|
|
5399
|
+
transactionHash: string;
|
|
5400
|
+
eventType: "included_onchain";
|
|
5401
|
+
}>, z.ZodObject<{
|
|
5402
|
+
eventType: z.ZodLiteral<"frontran_onchain">;
|
|
5403
|
+
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5404
|
+
data: z.ZodObject<{
|
|
5405
|
+
blockNumber: z.ZodNumber;
|
|
5406
|
+
}, "strip", z.ZodTypeAny, {
|
|
5407
|
+
blockNumber: number;
|
|
5408
|
+
}, {
|
|
5409
|
+
blockNumber: number;
|
|
5410
|
+
}>;
|
|
5411
|
+
}, "strip", z.ZodTypeAny, {
|
|
5412
|
+
data: {
|
|
5413
|
+
blockNumber: number;
|
|
5414
|
+
};
|
|
5415
|
+
transactionHash: `0x${string}`;
|
|
5416
|
+
eventType: "frontran_onchain";
|
|
5417
|
+
}, {
|
|
5418
|
+
data: {
|
|
5419
|
+
blockNumber: number;
|
|
5420
|
+
};
|
|
5421
|
+
transactionHash: string;
|
|
5422
|
+
eventType: "frontran_onchain";
|
|
5423
|
+
}>, z.ZodObject<{
|
|
5424
|
+
eventType: z.ZodLiteral<"failed_onchain">;
|
|
5425
|
+
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5426
|
+
data: z.ZodObject<{
|
|
5427
|
+
blockNumber: z.ZodNumber;
|
|
5428
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5429
|
+
aaError: z.ZodOptional<z.ZodString>;
|
|
5430
|
+
}, "strip", z.ZodTypeAny, {
|
|
5431
|
+
blockNumber: number;
|
|
5432
|
+
reason?: string | undefined;
|
|
5433
|
+
aaError?: string | undefined;
|
|
5434
|
+
}, {
|
|
5435
|
+
blockNumber: number;
|
|
5436
|
+
reason?: string | undefined;
|
|
5437
|
+
aaError?: string | undefined;
|
|
5438
|
+
}>;
|
|
5439
|
+
}, "strip", z.ZodTypeAny, {
|
|
5440
|
+
data: {
|
|
5441
|
+
blockNumber: number;
|
|
5442
|
+
reason?: string | undefined;
|
|
5443
|
+
aaError?: string | undefined;
|
|
5444
|
+
};
|
|
5445
|
+
transactionHash: `0x${string}`;
|
|
5446
|
+
eventType: "failed_onchain";
|
|
5447
|
+
}, {
|
|
5448
|
+
data: {
|
|
5449
|
+
blockNumber: number;
|
|
5450
|
+
reason?: string | undefined;
|
|
5451
|
+
aaError?: string | undefined;
|
|
5452
|
+
};
|
|
5453
|
+
transactionHash: string;
|
|
5454
|
+
eventType: "failed_onchain";
|
|
5455
|
+
}>, z.ZodObject<{
|
|
5456
|
+
eventType: z.ZodLiteral<"execution_reverted_onchain">;
|
|
5457
|
+
transactionHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5458
|
+
data: z.ZodObject<{
|
|
5459
|
+
blockNumber: z.ZodNumber;
|
|
5460
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5461
|
+
}, "strip", z.ZodTypeAny, {
|
|
5462
|
+
blockNumber: number;
|
|
5463
|
+
reason?: string | undefined;
|
|
5464
|
+
}, {
|
|
5465
|
+
blockNumber: number;
|
|
5466
|
+
reason?: string | undefined;
|
|
5467
|
+
}>;
|
|
5468
|
+
}, "strip", z.ZodTypeAny, {
|
|
5469
|
+
data: {
|
|
5470
|
+
blockNumber: number;
|
|
5471
|
+
reason?: string | undefined;
|
|
5472
|
+
};
|
|
5473
|
+
transactionHash: `0x${string}`;
|
|
5474
|
+
eventType: "execution_reverted_onchain";
|
|
5475
|
+
}, {
|
|
5476
|
+
data: {
|
|
5477
|
+
blockNumber: number;
|
|
5478
|
+
reason?: string | undefined;
|
|
5479
|
+
};
|
|
5480
|
+
transactionHash: string;
|
|
5481
|
+
eventType: "execution_reverted_onchain";
|
|
5482
|
+
}>]>;
|
|
5483
|
+
export type OpEventType = z.infer<typeof OpEventType>;
|
|
4788
5484
|
export { bundlerClearStateRequestSchema, bundlerClearMempoolRequestSchema, bundlerDumpMempoolRequestSchema, bundlerSendBundleNowRequestSchema, bundlerSetBundlingModeRequestSchema, bundlerSetReputationsRequestSchema, bundlerDumpReputationsRequestSchema, pimlicoGetStakeStatusRequestSchema, pimlicoGetUserOperationStatusRequestSchema, pimlicoGetUserOperationGasPriceRequestSchema, bundlerRequestSchema, jsonRpcSchema, jsonRpcResultSchema, userOperationSchema };
|
|
4789
5485
|
export { bundlerClearStateResponseSchema, bundlerClearMempoolResponseSchema, bundlerDumpMempoolResponseSchema, bundlerGetStakeStatusResponseSchema, bundlerSendBundleNowResponseSchema, bundlerSetBundlingModeResponseSchema, bundlerSetReputationsResponseSchema, bundlerDumpReputationsResponseSchema, pimlicoGetUserOperationStatusResponseSchema, pimlicoGetUserOperationGasPriceResponseSchema, bundlerResponseSchema };
|
|
4790
5486
|
export { addressSchema, hexData32Schema, hexDataSchema, logSchema, receiptSchema };
|