@pimlico/alto 0.0.0-main.20250326T131157 → 0.0.0-main.20250326T205022
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/config/bundler.d.ts +12 -6
- package/esm/cli/config/bundler.js +2 -1
- package/esm/cli/config/bundler.js.map +1 -1
- package/esm/cli/config/options.js +8 -2
- package/esm/cli/config/options.js.map +1 -1
- package/esm/cli/deploySimulationsContract.d.ts +7 -2
- package/esm/cli/deploySimulationsContract.js +56 -19
- package/esm/cli/deploySimulationsContract.js.map +1 -1
- package/esm/cli/handler.js +21 -5
- package/esm/cli/handler.js.map +1 -1
- package/esm/executor/executorManager.js.map +1 -1
- package/esm/mempool/mempool.d.ts +38 -4
- package/esm/mempool/mempool.js +29 -4
- package/esm/mempool/mempool.js.map +1 -1
- package/esm/rpc/createMethodHandler.d.ts +1 -1
- package/esm/rpc/estimation/gasEstimationsV07.d.ts +5 -4
- package/esm/rpc/estimation/gasEstimationsV07.js +78 -31
- package/esm/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/esm/rpc/methods/debug_bundler_dumpMempool.d.ts +373 -44
- package/esm/rpc/methods/debug_bundler_getStakeStatus.js +11 -3
- package/esm/rpc/methods/debug_bundler_getStakeStatus.js.map +1 -1
- package/esm/rpc/methods/eth_estimateUserOperationGas.d.ts +686 -94
- package/esm/rpc/methods/eth_getUserOperationByHash.d.ts +671 -78
- package/esm/rpc/methods/eth_sendUserOperation.d.ts +336 -40
- package/esm/rpc/methods/eth_sendUserOperation.js +6 -1
- package/esm/rpc/methods/eth_sendUserOperation.js.map +1 -1
- package/esm/rpc/methods/pimlico_sendUserOperationNow.d.ts +336 -40
- package/esm/rpc/methods/pimlico_sendUserOperationNow.js +12 -2
- package/esm/rpc/methods/pimlico_sendUserOperationNow.js.map +1 -1
- package/esm/rpc/rpcHandler.js +20 -4
- package/esm/rpc/rpcHandler.js.map +1 -1
- package/esm/rpc/validation/SafeValidator.js +5 -2
- package/esm/rpc/validation/SafeValidator.js.map +1 -1
- package/esm/rpc/validation/TracerResultParserV07.js +42 -20
- package/esm/rpc/validation/TracerResultParserV07.js.map +1 -1
- package/esm/store/createMemoryOutstandingStore.js +12 -2
- package/esm/store/createMemoryOutstandingStore.js.map +1 -1
- package/esm/store/createMempoolStore.js +10 -8
- package/esm/store/createMempoolStore.js.map +1 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +2 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.js +2 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/esm/types/schemas.d.ts +11240 -5385
- package/esm/types/schemas.js +90 -8
- package/esm/types/schemas.js.map +1 -1
- package/esm/utils/userop.d.ts +23 -3
- package/esm/utils/userop.js +85 -7
- package/esm/utils/userop.js.map +1 -1
- package/lib/cli/config/bundler.d.ts +12 -6
- package/lib/cli/config/bundler.js +2 -1
- package/lib/cli/config/bundler.js.map +1 -1
- package/lib/cli/config/options.js +8 -2
- package/lib/cli/config/options.js.map +1 -1
- package/lib/cli/deploySimulationsContract.d.ts +7 -2
- package/lib/cli/deploySimulationsContract.js +55 -18
- package/lib/cli/deploySimulationsContract.js.map +1 -1
- package/lib/cli/handler.js +21 -5
- package/lib/cli/handler.js.map +1 -1
- package/lib/executor/executorManager.js.map +1 -1
- package/lib/mempool/mempool.d.ts +38 -4
- package/lib/mempool/mempool.js +29 -4
- package/lib/mempool/mempool.js.map +1 -1
- package/lib/rpc/createMethodHandler.d.ts +1 -1
- package/lib/rpc/estimation/gasEstimationsV07.d.ts +5 -4
- package/lib/rpc/estimation/gasEstimationsV07.js +77 -30
- package/lib/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/lib/rpc/methods/debug_bundler_dumpMempool.d.ts +373 -44
- package/lib/rpc/methods/debug_bundler_getStakeStatus.js +10 -2
- package/lib/rpc/methods/debug_bundler_getStakeStatus.js.map +1 -1
- package/lib/rpc/methods/eth_estimateUserOperationGas.d.ts +686 -94
- package/lib/rpc/methods/eth_getUserOperationByHash.d.ts +671 -78
- package/lib/rpc/methods/eth_sendUserOperation.d.ts +336 -40
- package/lib/rpc/methods/eth_sendUserOperation.js +6 -1
- package/lib/rpc/methods/eth_sendUserOperation.js.map +1 -1
- package/lib/rpc/methods/pimlico_sendUserOperationNow.d.ts +336 -40
- package/lib/rpc/methods/pimlico_sendUserOperationNow.js +12 -2
- package/lib/rpc/methods/pimlico_sendUserOperationNow.js.map +1 -1
- package/lib/rpc/rpcHandler.js +20 -4
- package/lib/rpc/rpcHandler.js.map +1 -1
- package/lib/rpc/validation/SafeValidator.js +4 -1
- package/lib/rpc/validation/SafeValidator.js.map +1 -1
- package/lib/rpc/validation/TracerResultParserV07.js +41 -19
- package/lib/rpc/validation/TracerResultParserV07.js.map +1 -1
- package/lib/store/createMemoryOutstandingStore.js +12 -2
- package/lib/store/createMemoryOutstandingStore.js.map +1 -1
- package/lib/store/createMempoolStore.js +10 -8
- package/lib/store/createMempoolStore.js.map +1 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.d.ts +2 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.js +3 -2
- package/lib/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/lib/types/schemas.d.ts +11240 -5385
- package/lib/types/schemas.js +90 -8
- package/lib/types/schemas.js.map +1 -1
- package/lib/utils/userop.d.ts +23 -3
- package/lib/utils/userop.js +87 -7
- package/lib/utils/userop.js.map +1 -1
- package/package.json +2 -2
|
@@ -19,7 +19,7 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
19
19
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
20
20
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
21
21
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
22
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
22
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
23
23
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
24
24
|
}, "strip", import("zod").ZodTypeAny, {
|
|
25
25
|
nonce: number;
|
|
@@ -27,23 +27,23 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
27
27
|
chainId: number;
|
|
28
28
|
r: `0x${string}`;
|
|
29
29
|
s: `0x${string}`;
|
|
30
|
-
v: bigint;
|
|
31
30
|
yParity: number;
|
|
31
|
+
v?: bigint | undefined;
|
|
32
32
|
}, {
|
|
33
33
|
nonce: string | number | bigint;
|
|
34
34
|
contractAddress: string;
|
|
35
35
|
chainId: string | number | bigint;
|
|
36
36
|
r: string;
|
|
37
37
|
s: string;
|
|
38
|
-
v: string | number | bigint;
|
|
39
38
|
yParity: string | number | bigint;
|
|
39
|
+
v?: string | number | bigint | undefined;
|
|
40
40
|
}>, import("zod").ZodObject<{
|
|
41
41
|
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
42
42
|
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
43
43
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
44
44
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
45
45
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
46
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
46
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
47
47
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
48
48
|
}, "strip", import("zod").ZodTypeAny, {
|
|
49
49
|
address: `0x${string}`;
|
|
@@ -51,16 +51,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
51
51
|
chainId: number;
|
|
52
52
|
r: `0x${string}`;
|
|
53
53
|
s: `0x${string}`;
|
|
54
|
-
v: bigint;
|
|
55
54
|
yParity: number;
|
|
55
|
+
v?: bigint | undefined;
|
|
56
56
|
}, {
|
|
57
57
|
address: string;
|
|
58
58
|
nonce: string | number | bigint;
|
|
59
59
|
chainId: string | number | bigint;
|
|
60
60
|
r: string;
|
|
61
61
|
s: string;
|
|
62
|
-
v: string | number | bigint;
|
|
63
62
|
yParity: string | number | bigint;
|
|
63
|
+
v?: string | number | bigint | undefined;
|
|
64
64
|
}>]>>>;
|
|
65
65
|
}, "strict", import("zod").ZodTypeAny, {
|
|
66
66
|
sender: `0x${string}`;
|
|
@@ -80,16 +80,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
80
80
|
chainId: number;
|
|
81
81
|
r: `0x${string}`;
|
|
82
82
|
s: `0x${string}`;
|
|
83
|
-
v: bigint;
|
|
84
83
|
yParity: number;
|
|
84
|
+
v?: bigint | undefined;
|
|
85
85
|
} | {
|
|
86
86
|
address: `0x${string}`;
|
|
87
87
|
nonce: number;
|
|
88
88
|
chainId: number;
|
|
89
89
|
r: `0x${string}`;
|
|
90
90
|
s: `0x${string}`;
|
|
91
|
-
v: bigint;
|
|
92
91
|
yParity: number;
|
|
92
|
+
v?: bigint | undefined;
|
|
93
93
|
} | null | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
sender: string;
|
|
@@ -109,16 +109,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
109
109
|
chainId: string | number | bigint;
|
|
110
110
|
r: string;
|
|
111
111
|
s: string;
|
|
112
|
-
v: string | number | bigint;
|
|
113
112
|
yParity: string | number | bigint;
|
|
113
|
+
v?: string | number | bigint | undefined;
|
|
114
114
|
} | {
|
|
115
115
|
address: string;
|
|
116
116
|
nonce: string | number | bigint;
|
|
117
117
|
chainId: string | number | bigint;
|
|
118
118
|
r: string;
|
|
119
119
|
s: string;
|
|
120
|
-
v: string | number | bigint;
|
|
121
120
|
yParity: string | number | bigint;
|
|
121
|
+
v?: string | number | bigint | undefined;
|
|
122
122
|
} | null | undefined;
|
|
123
123
|
}>, {
|
|
124
124
|
sender: `0x${string}`;
|
|
@@ -138,16 +138,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
138
138
|
chainId: number;
|
|
139
139
|
r: `0x${string}`;
|
|
140
140
|
s: `0x${string}`;
|
|
141
|
-
v: bigint;
|
|
142
141
|
yParity: number;
|
|
142
|
+
v?: bigint | undefined;
|
|
143
143
|
} | {
|
|
144
144
|
address: `0x${string}`;
|
|
145
145
|
nonce: number;
|
|
146
146
|
chainId: number;
|
|
147
147
|
r: `0x${string}`;
|
|
148
148
|
s: `0x${string}`;
|
|
149
|
-
v: bigint;
|
|
150
149
|
yParity: number;
|
|
150
|
+
v?: bigint | undefined;
|
|
151
151
|
} | null | undefined;
|
|
152
152
|
}, {
|
|
153
153
|
sender: string;
|
|
@@ -167,16 +167,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
167
167
|
chainId: string | number | bigint;
|
|
168
168
|
r: string;
|
|
169
169
|
s: string;
|
|
170
|
-
v: string | number | bigint;
|
|
171
170
|
yParity: string | number | bigint;
|
|
171
|
+
v?: string | number | bigint | undefined;
|
|
172
172
|
} | {
|
|
173
173
|
address: string;
|
|
174
174
|
nonce: string | number | bigint;
|
|
175
175
|
chainId: string | number | bigint;
|
|
176
176
|
r: string;
|
|
177
177
|
s: string;
|
|
178
|
-
v: string | number | bigint;
|
|
179
178
|
yParity: string | number | bigint;
|
|
179
|
+
v?: string | number | bigint | undefined;
|
|
180
180
|
} | null | undefined;
|
|
181
181
|
}>, import("zod").ZodEffects<import("zod").ZodObject<{
|
|
182
182
|
sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
@@ -200,7 +200,7 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
200
200
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
201
201
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
202
202
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
203
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
203
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
204
204
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
205
205
|
}, "strip", import("zod").ZodTypeAny, {
|
|
206
206
|
nonce: number;
|
|
@@ -208,23 +208,23 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
208
208
|
chainId: number;
|
|
209
209
|
r: `0x${string}`;
|
|
210
210
|
s: `0x${string}`;
|
|
211
|
-
v: bigint;
|
|
212
211
|
yParity: number;
|
|
212
|
+
v?: bigint | undefined;
|
|
213
213
|
}, {
|
|
214
214
|
nonce: string | number | bigint;
|
|
215
215
|
contractAddress: string;
|
|
216
216
|
chainId: string | number | bigint;
|
|
217
217
|
r: string;
|
|
218
218
|
s: string;
|
|
219
|
-
v: string | number | bigint;
|
|
220
219
|
yParity: string | number | bigint;
|
|
220
|
+
v?: string | number | bigint | undefined;
|
|
221
221
|
}>, import("zod").ZodObject<{
|
|
222
222
|
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
223
223
|
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
224
224
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
225
225
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
226
226
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
227
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
227
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
228
228
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
229
229
|
}, "strip", import("zod").ZodTypeAny, {
|
|
230
230
|
address: `0x${string}`;
|
|
@@ -232,16 +232,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
232
232
|
chainId: number;
|
|
233
233
|
r: `0x${string}`;
|
|
234
234
|
s: `0x${string}`;
|
|
235
|
-
v: bigint;
|
|
236
235
|
yParity: number;
|
|
236
|
+
v?: bigint | undefined;
|
|
237
237
|
}, {
|
|
238
238
|
address: string;
|
|
239
239
|
nonce: string | number | bigint;
|
|
240
240
|
chainId: string | number | bigint;
|
|
241
241
|
r: string;
|
|
242
242
|
s: string;
|
|
243
|
-
v: string | number | bigint;
|
|
244
243
|
yParity: string | number | bigint;
|
|
244
|
+
v?: string | number | bigint | undefined;
|
|
245
245
|
}>]>>>;
|
|
246
246
|
}, "strict", import("zod").ZodTypeAny, {
|
|
247
247
|
sender: `0x${string}`;
|
|
@@ -265,16 +265,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
265
265
|
chainId: number;
|
|
266
266
|
r: `0x${string}`;
|
|
267
267
|
s: `0x${string}`;
|
|
268
|
-
v: bigint;
|
|
269
268
|
yParity: number;
|
|
269
|
+
v?: bigint | undefined;
|
|
270
270
|
} | {
|
|
271
271
|
address: `0x${string}`;
|
|
272
272
|
nonce: number;
|
|
273
273
|
chainId: number;
|
|
274
274
|
r: `0x${string}`;
|
|
275
275
|
s: `0x${string}`;
|
|
276
|
-
v: bigint;
|
|
277
276
|
yParity: number;
|
|
277
|
+
v?: bigint | undefined;
|
|
278
278
|
} | null | undefined;
|
|
279
279
|
}, {
|
|
280
280
|
sender: string;
|
|
@@ -298,16 +298,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
298
298
|
chainId: string | number | bigint;
|
|
299
299
|
r: string;
|
|
300
300
|
s: string;
|
|
301
|
-
v: string | number | bigint;
|
|
302
301
|
yParity: string | number | bigint;
|
|
302
|
+
v?: string | number | bigint | undefined;
|
|
303
303
|
} | {
|
|
304
304
|
address: string;
|
|
305
305
|
nonce: string | number | bigint;
|
|
306
306
|
chainId: string | number | bigint;
|
|
307
307
|
r: string;
|
|
308
308
|
s: string;
|
|
309
|
-
v: string | number | bigint;
|
|
310
309
|
yParity: string | number | bigint;
|
|
310
|
+
v?: string | number | bigint | undefined;
|
|
311
311
|
} | null | undefined;
|
|
312
312
|
}>, {
|
|
313
313
|
sender: `0x${string}`;
|
|
@@ -331,16 +331,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
331
331
|
chainId: number;
|
|
332
332
|
r: `0x${string}`;
|
|
333
333
|
s: `0x${string}`;
|
|
334
|
-
v: bigint;
|
|
335
334
|
yParity: number;
|
|
335
|
+
v?: bigint | undefined;
|
|
336
336
|
} | {
|
|
337
337
|
address: `0x${string}`;
|
|
338
338
|
nonce: number;
|
|
339
339
|
chainId: number;
|
|
340
340
|
r: `0x${string}`;
|
|
341
341
|
s: `0x${string}`;
|
|
342
|
-
v: bigint;
|
|
343
342
|
yParity: number;
|
|
343
|
+
v?: bigint | undefined;
|
|
344
344
|
} | null | undefined;
|
|
345
345
|
}, {
|
|
346
346
|
sender: string;
|
|
@@ -364,28 +364,406 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
364
364
|
chainId: string | number | bigint;
|
|
365
365
|
r: string;
|
|
366
366
|
s: string;
|
|
367
|
-
v: string | number | bigint;
|
|
368
367
|
yParity: string | number | bigint;
|
|
368
|
+
v?: string | number | bigint | undefined;
|
|
369
369
|
} | {
|
|
370
370
|
address: string;
|
|
371
371
|
nonce: string | number | bigint;
|
|
372
372
|
chainId: string | number | bigint;
|
|
373
373
|
r: string;
|
|
374
374
|
s: string;
|
|
375
|
-
v: string | number | bigint;
|
|
376
375
|
yParity: string | number | bigint;
|
|
376
|
+
v?: string | number | bigint | undefined;
|
|
377
|
+
} | null | undefined;
|
|
378
|
+
}>, import("zod").ZodEffects<import("zod").ZodObject<{
|
|
379
|
+
sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
380
|
+
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
381
|
+
factory: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodLiteral<"0x7702">]>>>, `0x${string}` | null, string | null | undefined>;
|
|
382
|
+
factoryData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
383
|
+
callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
384
|
+
callGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
385
|
+
verificationGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
386
|
+
preVerificationGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
387
|
+
maxFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
388
|
+
maxPriorityFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
389
|
+
paymaster: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
390
|
+
paymasterVerificationGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
391
|
+
paymasterPostOpGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
392
|
+
paymasterData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
393
|
+
signature: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
394
|
+
eip7702Auth: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
395
|
+
contractAddress: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
396
|
+
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
397
|
+
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
398
|
+
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
399
|
+
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
400
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
401
|
+
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
402
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
403
|
+
nonce: number;
|
|
404
|
+
contractAddress: `0x${string}`;
|
|
405
|
+
chainId: number;
|
|
406
|
+
r: `0x${string}`;
|
|
407
|
+
s: `0x${string}`;
|
|
408
|
+
yParity: number;
|
|
409
|
+
v?: bigint | undefined;
|
|
410
|
+
}, {
|
|
411
|
+
nonce: string | number | bigint;
|
|
412
|
+
contractAddress: string;
|
|
413
|
+
chainId: string | number | bigint;
|
|
414
|
+
r: string;
|
|
415
|
+
s: string;
|
|
416
|
+
yParity: string | number | bigint;
|
|
417
|
+
v?: string | number | bigint | undefined;
|
|
418
|
+
}>, import("zod").ZodObject<{
|
|
419
|
+
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
420
|
+
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
421
|
+
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
422
|
+
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
423
|
+
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
424
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
425
|
+
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
426
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
427
|
+
address: `0x${string}`;
|
|
428
|
+
nonce: number;
|
|
429
|
+
chainId: number;
|
|
430
|
+
r: `0x${string}`;
|
|
431
|
+
s: `0x${string}`;
|
|
432
|
+
yParity: number;
|
|
433
|
+
v?: bigint | undefined;
|
|
434
|
+
}, {
|
|
435
|
+
address: string;
|
|
436
|
+
nonce: string | number | bigint;
|
|
437
|
+
chainId: string | number | bigint;
|
|
438
|
+
r: string;
|
|
439
|
+
s: string;
|
|
440
|
+
yParity: string | number | bigint;
|
|
441
|
+
v?: string | number | bigint | undefined;
|
|
442
|
+
}>]>>>;
|
|
443
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
444
|
+
sender: `0x${string}`;
|
|
445
|
+
factory: `0x${string}` | null;
|
|
446
|
+
paymaster: `0x${string}` | null;
|
|
447
|
+
nonce: bigint;
|
|
448
|
+
callData: `0x${string}`;
|
|
449
|
+
callGasLimit: bigint;
|
|
450
|
+
verificationGasLimit: bigint;
|
|
451
|
+
preVerificationGas: bigint;
|
|
452
|
+
maxFeePerGas: bigint;
|
|
453
|
+
maxPriorityFeePerGas: bigint;
|
|
454
|
+
signature: `0x${string}`;
|
|
455
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
456
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
457
|
+
factoryData: `0x${string}` | null;
|
|
458
|
+
paymasterData: `0x${string}` | null;
|
|
459
|
+
eip7702Auth?: {
|
|
460
|
+
nonce: number;
|
|
461
|
+
contractAddress: `0x${string}`;
|
|
462
|
+
chainId: number;
|
|
463
|
+
r: `0x${string}`;
|
|
464
|
+
s: `0x${string}`;
|
|
465
|
+
yParity: number;
|
|
466
|
+
v?: bigint | undefined;
|
|
467
|
+
} | {
|
|
468
|
+
address: `0x${string}`;
|
|
469
|
+
nonce: number;
|
|
470
|
+
chainId: number;
|
|
471
|
+
r: `0x${string}`;
|
|
472
|
+
s: `0x${string}`;
|
|
473
|
+
yParity: number;
|
|
474
|
+
v?: bigint | undefined;
|
|
475
|
+
} | null | undefined;
|
|
476
|
+
}, {
|
|
477
|
+
sender: string;
|
|
478
|
+
nonce: string | number | bigint;
|
|
479
|
+
callData: string;
|
|
480
|
+
signature: string;
|
|
481
|
+
factory?: string | null | undefined;
|
|
482
|
+
factoryData?: string | null | undefined;
|
|
483
|
+
callGasLimit?: string | number | bigint | undefined;
|
|
484
|
+
verificationGasLimit?: string | number | bigint | undefined;
|
|
485
|
+
preVerificationGas?: string | number | bigint | undefined;
|
|
486
|
+
maxFeePerGas?: string | number | bigint | undefined;
|
|
487
|
+
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
488
|
+
paymaster?: string | null | undefined;
|
|
489
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
490
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
491
|
+
paymasterData?: string | null | undefined;
|
|
492
|
+
eip7702Auth?: {
|
|
493
|
+
nonce: string | number | bigint;
|
|
494
|
+
contractAddress: string;
|
|
495
|
+
chainId: string | number | bigint;
|
|
496
|
+
r: string;
|
|
497
|
+
s: string;
|
|
498
|
+
yParity: string | number | bigint;
|
|
499
|
+
v?: string | number | bigint | undefined;
|
|
500
|
+
} | {
|
|
501
|
+
address: string;
|
|
502
|
+
nonce: string | number | bigint;
|
|
503
|
+
chainId: string | number | bigint;
|
|
504
|
+
r: string;
|
|
505
|
+
s: string;
|
|
506
|
+
yParity: string | number | bigint;
|
|
507
|
+
v?: string | number | bigint | undefined;
|
|
508
|
+
} | null | undefined;
|
|
509
|
+
}>, {
|
|
510
|
+
sender: `0x${string}`;
|
|
511
|
+
factory: `0x${string}` | null;
|
|
512
|
+
paymaster: `0x${string}` | null;
|
|
513
|
+
nonce: bigint;
|
|
514
|
+
callData: `0x${string}`;
|
|
515
|
+
callGasLimit: bigint;
|
|
516
|
+
verificationGasLimit: bigint;
|
|
517
|
+
preVerificationGas: bigint;
|
|
518
|
+
maxFeePerGas: bigint;
|
|
519
|
+
maxPriorityFeePerGas: bigint;
|
|
520
|
+
signature: `0x${string}`;
|
|
521
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
522
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
523
|
+
factoryData: `0x${string}` | null;
|
|
524
|
+
paymasterData: `0x${string}` | null;
|
|
525
|
+
eip7702Auth?: {
|
|
526
|
+
nonce: number;
|
|
527
|
+
contractAddress: `0x${string}`;
|
|
528
|
+
chainId: number;
|
|
529
|
+
r: `0x${string}`;
|
|
530
|
+
s: `0x${string}`;
|
|
531
|
+
yParity: number;
|
|
532
|
+
v?: bigint | undefined;
|
|
533
|
+
} | {
|
|
534
|
+
address: `0x${string}`;
|
|
535
|
+
nonce: number;
|
|
536
|
+
chainId: number;
|
|
537
|
+
r: `0x${string}`;
|
|
538
|
+
s: `0x${string}`;
|
|
539
|
+
yParity: number;
|
|
540
|
+
v?: bigint | undefined;
|
|
541
|
+
} | null | undefined;
|
|
542
|
+
}, {
|
|
543
|
+
sender: string;
|
|
544
|
+
nonce: string | number | bigint;
|
|
545
|
+
callData: string;
|
|
546
|
+
signature: string;
|
|
547
|
+
factory?: string | null | undefined;
|
|
548
|
+
factoryData?: string | null | undefined;
|
|
549
|
+
callGasLimit?: string | number | bigint | undefined;
|
|
550
|
+
verificationGasLimit?: string | number | bigint | undefined;
|
|
551
|
+
preVerificationGas?: string | number | bigint | undefined;
|
|
552
|
+
maxFeePerGas?: string | number | bigint | undefined;
|
|
553
|
+
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
554
|
+
paymaster?: string | null | undefined;
|
|
555
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
556
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
557
|
+
paymasterData?: string | null | undefined;
|
|
558
|
+
eip7702Auth?: {
|
|
559
|
+
nonce: string | number | bigint;
|
|
560
|
+
contractAddress: string;
|
|
561
|
+
chainId: string | number | bigint;
|
|
562
|
+
r: string;
|
|
563
|
+
s: string;
|
|
564
|
+
yParity: string | number | bigint;
|
|
565
|
+
v?: string | number | bigint | undefined;
|
|
566
|
+
} | {
|
|
567
|
+
address: string;
|
|
568
|
+
nonce: string | number | bigint;
|
|
569
|
+
chainId: string | number | bigint;
|
|
570
|
+
r: string;
|
|
571
|
+
s: string;
|
|
572
|
+
yParity: string | number | bigint;
|
|
573
|
+
v?: string | number | bigint | undefined;
|
|
377
574
|
} | null | undefined;
|
|
378
575
|
}>]>, import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>], null>, import("zod").ZodTuple<[import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodObject<{
|
|
379
576
|
sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
380
577
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
381
|
-
initCode: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
578
|
+
initCode: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
579
|
+
callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
580
|
+
callGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
581
|
+
verificationGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
582
|
+
preVerificationGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
583
|
+
maxPriorityFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
584
|
+
maxFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
585
|
+
paymasterAndData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
586
|
+
signature: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
587
|
+
eip7702Auth: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
588
|
+
contractAddress: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
589
|
+
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
590
|
+
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
591
|
+
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
592
|
+
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
593
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
594
|
+
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
595
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
596
|
+
nonce: number;
|
|
597
|
+
contractAddress: `0x${string}`;
|
|
598
|
+
chainId: number;
|
|
599
|
+
r: `0x${string}`;
|
|
600
|
+
s: `0x${string}`;
|
|
601
|
+
yParity: number;
|
|
602
|
+
v?: bigint | undefined;
|
|
603
|
+
}, {
|
|
604
|
+
nonce: string | number | bigint;
|
|
605
|
+
contractAddress: string;
|
|
606
|
+
chainId: string | number | bigint;
|
|
607
|
+
r: string;
|
|
608
|
+
s: string;
|
|
609
|
+
yParity: string | number | bigint;
|
|
610
|
+
v?: string | number | bigint | undefined;
|
|
611
|
+
}>, import("zod").ZodObject<{
|
|
612
|
+
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
613
|
+
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
614
|
+
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
615
|
+
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
616
|
+
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
617
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
618
|
+
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
619
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
620
|
+
address: `0x${string}`;
|
|
621
|
+
nonce: number;
|
|
622
|
+
chainId: number;
|
|
623
|
+
r: `0x${string}`;
|
|
624
|
+
s: `0x${string}`;
|
|
625
|
+
yParity: number;
|
|
626
|
+
v?: bigint | undefined;
|
|
627
|
+
}, {
|
|
628
|
+
address: string;
|
|
629
|
+
nonce: string | number | bigint;
|
|
630
|
+
chainId: string | number | bigint;
|
|
631
|
+
r: string;
|
|
632
|
+
s: string;
|
|
633
|
+
yParity: string | number | bigint;
|
|
634
|
+
v?: string | number | bigint | undefined;
|
|
635
|
+
}>]>>>;
|
|
636
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
637
|
+
sender: `0x${string}`;
|
|
638
|
+
nonce: bigint;
|
|
639
|
+
initCode: `0x${string}`;
|
|
640
|
+
paymasterAndData: `0x${string}`;
|
|
641
|
+
callData: `0x${string}`;
|
|
642
|
+
callGasLimit: bigint;
|
|
643
|
+
verificationGasLimit: bigint;
|
|
644
|
+
preVerificationGas: bigint;
|
|
645
|
+
maxFeePerGas: bigint;
|
|
646
|
+
maxPriorityFeePerGas: bigint;
|
|
647
|
+
signature: `0x${string}`;
|
|
648
|
+
eip7702Auth?: {
|
|
649
|
+
nonce: number;
|
|
650
|
+
contractAddress: `0x${string}`;
|
|
651
|
+
chainId: number;
|
|
652
|
+
r: `0x${string}`;
|
|
653
|
+
s: `0x${string}`;
|
|
654
|
+
yParity: number;
|
|
655
|
+
v?: bigint | undefined;
|
|
656
|
+
} | {
|
|
657
|
+
address: `0x${string}`;
|
|
658
|
+
nonce: number;
|
|
659
|
+
chainId: number;
|
|
660
|
+
r: `0x${string}`;
|
|
661
|
+
s: `0x${string}`;
|
|
662
|
+
yParity: number;
|
|
663
|
+
v?: bigint | undefined;
|
|
664
|
+
} | null | undefined;
|
|
665
|
+
}, {
|
|
666
|
+
sender: string;
|
|
667
|
+
nonce: string | number | bigint;
|
|
668
|
+
initCode: string;
|
|
669
|
+
paymasterAndData: string;
|
|
670
|
+
callData: string;
|
|
671
|
+
signature: string;
|
|
672
|
+
callGasLimit?: string | number | bigint | undefined;
|
|
673
|
+
verificationGasLimit?: string | number | bigint | undefined;
|
|
674
|
+
preVerificationGas?: string | number | bigint | undefined;
|
|
675
|
+
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
676
|
+
maxFeePerGas?: string | number | bigint | undefined;
|
|
677
|
+
eip7702Auth?: {
|
|
678
|
+
nonce: string | number | bigint;
|
|
679
|
+
contractAddress: string;
|
|
680
|
+
chainId: string | number | bigint;
|
|
681
|
+
r: string;
|
|
682
|
+
s: string;
|
|
683
|
+
yParity: string | number | bigint;
|
|
684
|
+
v?: string | number | bigint | undefined;
|
|
685
|
+
} | {
|
|
686
|
+
address: string;
|
|
687
|
+
nonce: string | number | bigint;
|
|
688
|
+
chainId: string | number | bigint;
|
|
689
|
+
r: string;
|
|
690
|
+
s: string;
|
|
691
|
+
yParity: string | number | bigint;
|
|
692
|
+
v?: string | number | bigint | undefined;
|
|
693
|
+
} | null | undefined;
|
|
694
|
+
}>, {
|
|
695
|
+
sender: `0x${string}`;
|
|
696
|
+
nonce: bigint;
|
|
697
|
+
initCode: `0x${string}`;
|
|
698
|
+
paymasterAndData: `0x${string}`;
|
|
699
|
+
callData: `0x${string}`;
|
|
700
|
+
callGasLimit: bigint;
|
|
701
|
+
verificationGasLimit: bigint;
|
|
702
|
+
preVerificationGas: bigint;
|
|
703
|
+
maxFeePerGas: bigint;
|
|
704
|
+
maxPriorityFeePerGas: bigint;
|
|
705
|
+
signature: `0x${string}`;
|
|
706
|
+
eip7702Auth?: {
|
|
707
|
+
nonce: number;
|
|
708
|
+
contractAddress: `0x${string}`;
|
|
709
|
+
chainId: number;
|
|
710
|
+
r: `0x${string}`;
|
|
711
|
+
s: `0x${string}`;
|
|
712
|
+
yParity: number;
|
|
713
|
+
v?: bigint | undefined;
|
|
714
|
+
} | {
|
|
715
|
+
address: `0x${string}`;
|
|
716
|
+
nonce: number;
|
|
717
|
+
chainId: number;
|
|
718
|
+
r: `0x${string}`;
|
|
719
|
+
s: `0x${string}`;
|
|
720
|
+
yParity: number;
|
|
721
|
+
v?: bigint | undefined;
|
|
722
|
+
} | null | undefined;
|
|
723
|
+
}, {
|
|
724
|
+
sender: string;
|
|
725
|
+
nonce: string | number | bigint;
|
|
726
|
+
initCode: string;
|
|
727
|
+
paymasterAndData: string;
|
|
728
|
+
callData: string;
|
|
729
|
+
signature: string;
|
|
730
|
+
callGasLimit?: string | number | bigint | undefined;
|
|
731
|
+
verificationGasLimit?: string | number | bigint | undefined;
|
|
732
|
+
preVerificationGas?: string | number | bigint | undefined;
|
|
733
|
+
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
734
|
+
maxFeePerGas?: string | number | bigint | undefined;
|
|
735
|
+
eip7702Auth?: {
|
|
736
|
+
nonce: string | number | bigint;
|
|
737
|
+
contractAddress: string;
|
|
738
|
+
chainId: string | number | bigint;
|
|
739
|
+
r: string;
|
|
740
|
+
s: string;
|
|
741
|
+
yParity: string | number | bigint;
|
|
742
|
+
v?: string | number | bigint | undefined;
|
|
743
|
+
} | {
|
|
744
|
+
address: string;
|
|
745
|
+
nonce: string | number | bigint;
|
|
746
|
+
chainId: string | number | bigint;
|
|
747
|
+
r: string;
|
|
748
|
+
s: string;
|
|
749
|
+
yParity: string | number | bigint;
|
|
750
|
+
v?: string | number | bigint | undefined;
|
|
751
|
+
} | null | undefined;
|
|
752
|
+
}>, import("zod").ZodEffects<import("zod").ZodObject<{
|
|
753
|
+
sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
754
|
+
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
755
|
+
factory: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
756
|
+
factoryData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
382
757
|
callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
383
758
|
callGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
384
759
|
verificationGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
385
760
|
preVerificationGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
386
|
-
maxPriorityFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
387
761
|
maxFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
388
|
-
|
|
762
|
+
maxPriorityFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
763
|
+
paymaster: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
764
|
+
paymasterVerificationGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
765
|
+
paymasterPostOpGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
766
|
+
paymasterData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
389
767
|
signature: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
390
768
|
eip7702Auth: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
391
769
|
contractAddress: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
@@ -393,7 +771,7 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
393
771
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
394
772
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
395
773
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
396
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
774
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
397
775
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
398
776
|
}, "strip", import("zod").ZodTypeAny, {
|
|
399
777
|
nonce: number;
|
|
@@ -401,23 +779,23 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
401
779
|
chainId: number;
|
|
402
780
|
r: `0x${string}`;
|
|
403
781
|
s: `0x${string}`;
|
|
404
|
-
v: bigint;
|
|
405
782
|
yParity: number;
|
|
783
|
+
v?: bigint | undefined;
|
|
406
784
|
}, {
|
|
407
785
|
nonce: string | number | bigint;
|
|
408
786
|
contractAddress: string;
|
|
409
787
|
chainId: string | number | bigint;
|
|
410
788
|
r: string;
|
|
411
789
|
s: string;
|
|
412
|
-
v: string | number | bigint;
|
|
413
790
|
yParity: string | number | bigint;
|
|
791
|
+
v?: string | number | bigint | undefined;
|
|
414
792
|
}>, import("zod").ZodObject<{
|
|
415
793
|
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
416
794
|
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
417
795
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
418
796
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
419
797
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
420
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
798
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
421
799
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
422
800
|
}, "strip", import("zod").ZodTypeAny, {
|
|
423
801
|
address: `0x${string}`;
|
|
@@ -425,22 +803,22 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
425
803
|
chainId: number;
|
|
426
804
|
r: `0x${string}`;
|
|
427
805
|
s: `0x${string}`;
|
|
428
|
-
v: bigint;
|
|
429
806
|
yParity: number;
|
|
807
|
+
v?: bigint | undefined;
|
|
430
808
|
}, {
|
|
431
809
|
address: string;
|
|
432
810
|
nonce: string | number | bigint;
|
|
433
811
|
chainId: string | number | bigint;
|
|
434
812
|
r: string;
|
|
435
813
|
s: string;
|
|
436
|
-
v: string | number | bigint;
|
|
437
814
|
yParity: string | number | bigint;
|
|
815
|
+
v?: string | number | bigint | undefined;
|
|
438
816
|
}>]>>>;
|
|
439
817
|
}, "strict", import("zod").ZodTypeAny, {
|
|
440
818
|
sender: `0x${string}`;
|
|
819
|
+
factory: `0x${string}` | null;
|
|
820
|
+
paymaster: `0x${string}` | null;
|
|
441
821
|
nonce: bigint;
|
|
442
|
-
initCode: `0x${string}`;
|
|
443
|
-
paymasterAndData: `0x${string}`;
|
|
444
822
|
callData: `0x${string}`;
|
|
445
823
|
callGasLimit: bigint;
|
|
446
824
|
verificationGasLimit: bigint;
|
|
@@ -448,57 +826,65 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
448
826
|
maxFeePerGas: bigint;
|
|
449
827
|
maxPriorityFeePerGas: bigint;
|
|
450
828
|
signature: `0x${string}`;
|
|
829
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
830
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
831
|
+
factoryData: `0x${string}` | null;
|
|
832
|
+
paymasterData: `0x${string}` | null;
|
|
451
833
|
eip7702Auth?: {
|
|
452
834
|
nonce: number;
|
|
453
835
|
contractAddress: `0x${string}`;
|
|
454
836
|
chainId: number;
|
|
455
837
|
r: `0x${string}`;
|
|
456
838
|
s: `0x${string}`;
|
|
457
|
-
v: bigint;
|
|
458
839
|
yParity: number;
|
|
840
|
+
v?: bigint | undefined;
|
|
459
841
|
} | {
|
|
460
842
|
address: `0x${string}`;
|
|
461
843
|
nonce: number;
|
|
462
844
|
chainId: number;
|
|
463
845
|
r: `0x${string}`;
|
|
464
846
|
s: `0x${string}`;
|
|
465
|
-
v: bigint;
|
|
466
847
|
yParity: number;
|
|
848
|
+
v?: bigint | undefined;
|
|
467
849
|
} | null | undefined;
|
|
468
850
|
}, {
|
|
469
851
|
sender: string;
|
|
470
852
|
nonce: string | number | bigint;
|
|
471
|
-
initCode: string;
|
|
472
|
-
paymasterAndData: string;
|
|
473
853
|
callData: string;
|
|
474
854
|
signature: string;
|
|
855
|
+
factory?: string | null | undefined;
|
|
856
|
+
factoryData?: string | null | undefined;
|
|
475
857
|
callGasLimit?: string | number | bigint | undefined;
|
|
476
858
|
verificationGasLimit?: string | number | bigint | undefined;
|
|
477
859
|
preVerificationGas?: string | number | bigint | undefined;
|
|
478
|
-
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
479
860
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
861
|
+
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
862
|
+
paymaster?: string | null | undefined;
|
|
863
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
864
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
865
|
+
paymasterData?: string | null | undefined;
|
|
480
866
|
eip7702Auth?: {
|
|
481
867
|
nonce: string | number | bigint;
|
|
482
868
|
contractAddress: string;
|
|
483
869
|
chainId: string | number | bigint;
|
|
484
870
|
r: string;
|
|
485
871
|
s: string;
|
|
486
|
-
v: string | number | bigint;
|
|
487
872
|
yParity: string | number | bigint;
|
|
873
|
+
v?: string | number | bigint | undefined;
|
|
488
874
|
} | {
|
|
489
875
|
address: string;
|
|
490
876
|
nonce: string | number | bigint;
|
|
491
877
|
chainId: string | number | bigint;
|
|
492
878
|
r: string;
|
|
493
879
|
s: string;
|
|
494
|
-
v: string | number | bigint;
|
|
495
880
|
yParity: string | number | bigint;
|
|
881
|
+
v?: string | number | bigint | undefined;
|
|
496
882
|
} | null | undefined;
|
|
497
883
|
}>, {
|
|
498
884
|
sender: `0x${string}`;
|
|
885
|
+
factory: `0x${string}` | null;
|
|
886
|
+
paymaster: `0x${string}` | null;
|
|
499
887
|
nonce: bigint;
|
|
500
|
-
initCode: `0x${string}`;
|
|
501
|
-
paymasterAndData: `0x${string}`;
|
|
502
888
|
callData: `0x${string}`;
|
|
503
889
|
callGasLimit: bigint;
|
|
504
890
|
verificationGasLimit: bigint;
|
|
@@ -506,56 +892,64 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
506
892
|
maxFeePerGas: bigint;
|
|
507
893
|
maxPriorityFeePerGas: bigint;
|
|
508
894
|
signature: `0x${string}`;
|
|
895
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
896
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
897
|
+
factoryData: `0x${string}` | null;
|
|
898
|
+
paymasterData: `0x${string}` | null;
|
|
509
899
|
eip7702Auth?: {
|
|
510
900
|
nonce: number;
|
|
511
901
|
contractAddress: `0x${string}`;
|
|
512
902
|
chainId: number;
|
|
513
903
|
r: `0x${string}`;
|
|
514
904
|
s: `0x${string}`;
|
|
515
|
-
v: bigint;
|
|
516
905
|
yParity: number;
|
|
906
|
+
v?: bigint | undefined;
|
|
517
907
|
} | {
|
|
518
908
|
address: `0x${string}`;
|
|
519
909
|
nonce: number;
|
|
520
910
|
chainId: number;
|
|
521
911
|
r: `0x${string}`;
|
|
522
912
|
s: `0x${string}`;
|
|
523
|
-
v: bigint;
|
|
524
913
|
yParity: number;
|
|
914
|
+
v?: bigint | undefined;
|
|
525
915
|
} | null | undefined;
|
|
526
916
|
}, {
|
|
527
917
|
sender: string;
|
|
528
918
|
nonce: string | number | bigint;
|
|
529
|
-
initCode: string;
|
|
530
|
-
paymasterAndData: string;
|
|
531
919
|
callData: string;
|
|
532
920
|
signature: string;
|
|
921
|
+
factory?: string | null | undefined;
|
|
922
|
+
factoryData?: string | null | undefined;
|
|
533
923
|
callGasLimit?: string | number | bigint | undefined;
|
|
534
924
|
verificationGasLimit?: string | number | bigint | undefined;
|
|
535
925
|
preVerificationGas?: string | number | bigint | undefined;
|
|
536
|
-
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
537
926
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
927
|
+
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
928
|
+
paymaster?: string | null | undefined;
|
|
929
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
930
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
931
|
+
paymasterData?: string | null | undefined;
|
|
538
932
|
eip7702Auth?: {
|
|
539
933
|
nonce: string | number | bigint;
|
|
540
934
|
contractAddress: string;
|
|
541
935
|
chainId: string | number | bigint;
|
|
542
936
|
r: string;
|
|
543
937
|
s: string;
|
|
544
|
-
v: string | number | bigint;
|
|
545
938
|
yParity: string | number | bigint;
|
|
939
|
+
v?: string | number | bigint | undefined;
|
|
546
940
|
} | {
|
|
547
941
|
address: string;
|
|
548
942
|
nonce: string | number | bigint;
|
|
549
943
|
chainId: string | number | bigint;
|
|
550
944
|
r: string;
|
|
551
945
|
s: string;
|
|
552
|
-
v: string | number | bigint;
|
|
553
946
|
yParity: string | number | bigint;
|
|
947
|
+
v?: string | number | bigint | undefined;
|
|
554
948
|
} | null | undefined;
|
|
555
949
|
}>, import("zod").ZodEffects<import("zod").ZodObject<{
|
|
556
950
|
sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
557
951
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
558
|
-
factory: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
952
|
+
factory: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodLiteral<"0x7702">]>>>, `0x${string}` | null, string | null | undefined>;
|
|
559
953
|
factoryData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
560
954
|
callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
561
955
|
callGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
@@ -574,7 +968,7 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
574
968
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
575
969
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
576
970
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
577
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
971
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
578
972
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
579
973
|
}, "strip", import("zod").ZodTypeAny, {
|
|
580
974
|
nonce: number;
|
|
@@ -582,23 +976,23 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
582
976
|
chainId: number;
|
|
583
977
|
r: `0x${string}`;
|
|
584
978
|
s: `0x${string}`;
|
|
585
|
-
v: bigint;
|
|
586
979
|
yParity: number;
|
|
980
|
+
v?: bigint | undefined;
|
|
587
981
|
}, {
|
|
588
982
|
nonce: string | number | bigint;
|
|
589
983
|
contractAddress: string;
|
|
590
984
|
chainId: string | number | bigint;
|
|
591
985
|
r: string;
|
|
592
986
|
s: string;
|
|
593
|
-
v: string | number | bigint;
|
|
594
987
|
yParity: string | number | bigint;
|
|
988
|
+
v?: string | number | bigint | undefined;
|
|
595
989
|
}>, import("zod").ZodObject<{
|
|
596
990
|
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
597
991
|
chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
598
992
|
nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
599
993
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
600
994
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
601
|
-
v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint
|
|
995
|
+
v: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
602
996
|
yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
603
997
|
}, "strip", import("zod").ZodTypeAny, {
|
|
604
998
|
address: `0x${string}`;
|
|
@@ -606,16 +1000,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
606
1000
|
chainId: number;
|
|
607
1001
|
r: `0x${string}`;
|
|
608
1002
|
s: `0x${string}`;
|
|
609
|
-
v: bigint;
|
|
610
1003
|
yParity: number;
|
|
1004
|
+
v?: bigint | undefined;
|
|
611
1005
|
}, {
|
|
612
1006
|
address: string;
|
|
613
1007
|
nonce: string | number | bigint;
|
|
614
1008
|
chainId: string | number | bigint;
|
|
615
1009
|
r: string;
|
|
616
1010
|
s: string;
|
|
617
|
-
v: string | number | bigint;
|
|
618
1011
|
yParity: string | number | bigint;
|
|
1012
|
+
v?: string | number | bigint | undefined;
|
|
619
1013
|
}>]>>>;
|
|
620
1014
|
}, "strict", import("zod").ZodTypeAny, {
|
|
621
1015
|
sender: `0x${string}`;
|
|
@@ -639,16 +1033,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
639
1033
|
chainId: number;
|
|
640
1034
|
r: `0x${string}`;
|
|
641
1035
|
s: `0x${string}`;
|
|
642
|
-
v: bigint;
|
|
643
1036
|
yParity: number;
|
|
1037
|
+
v?: bigint | undefined;
|
|
644
1038
|
} | {
|
|
645
1039
|
address: `0x${string}`;
|
|
646
1040
|
nonce: number;
|
|
647
1041
|
chainId: number;
|
|
648
1042
|
r: `0x${string}`;
|
|
649
1043
|
s: `0x${string}`;
|
|
650
|
-
v: bigint;
|
|
651
1044
|
yParity: number;
|
|
1045
|
+
v?: bigint | undefined;
|
|
652
1046
|
} | null | undefined;
|
|
653
1047
|
}, {
|
|
654
1048
|
sender: string;
|
|
@@ -672,16 +1066,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
672
1066
|
chainId: string | number | bigint;
|
|
673
1067
|
r: string;
|
|
674
1068
|
s: string;
|
|
675
|
-
v: string | number | bigint;
|
|
676
1069
|
yParity: string | number | bigint;
|
|
1070
|
+
v?: string | number | bigint | undefined;
|
|
677
1071
|
} | {
|
|
678
1072
|
address: string;
|
|
679
1073
|
nonce: string | number | bigint;
|
|
680
1074
|
chainId: string | number | bigint;
|
|
681
1075
|
r: string;
|
|
682
1076
|
s: string;
|
|
683
|
-
v: string | number | bigint;
|
|
684
1077
|
yParity: string | number | bigint;
|
|
1078
|
+
v?: string | number | bigint | undefined;
|
|
685
1079
|
} | null | undefined;
|
|
686
1080
|
}>, {
|
|
687
1081
|
sender: `0x${string}`;
|
|
@@ -705,16 +1099,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
705
1099
|
chainId: number;
|
|
706
1100
|
r: `0x${string}`;
|
|
707
1101
|
s: `0x${string}`;
|
|
708
|
-
v: bigint;
|
|
709
1102
|
yParity: number;
|
|
1103
|
+
v?: bigint | undefined;
|
|
710
1104
|
} | {
|
|
711
1105
|
address: `0x${string}`;
|
|
712
1106
|
nonce: number;
|
|
713
1107
|
chainId: number;
|
|
714
1108
|
r: `0x${string}`;
|
|
715
1109
|
s: `0x${string}`;
|
|
716
|
-
v: bigint;
|
|
717
1110
|
yParity: number;
|
|
1111
|
+
v?: bigint | undefined;
|
|
718
1112
|
} | null | undefined;
|
|
719
1113
|
}, {
|
|
720
1114
|
sender: string;
|
|
@@ -738,16 +1132,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
738
1132
|
chainId: string | number | bigint;
|
|
739
1133
|
r: string;
|
|
740
1134
|
s: string;
|
|
741
|
-
v: string | number | bigint;
|
|
742
1135
|
yParity: string | number | bigint;
|
|
1136
|
+
v?: string | number | bigint | undefined;
|
|
743
1137
|
} | {
|
|
744
1138
|
address: string;
|
|
745
1139
|
nonce: string | number | bigint;
|
|
746
1140
|
chainId: string | number | bigint;
|
|
747
1141
|
r: string;
|
|
748
1142
|
s: string;
|
|
749
|
-
v: string | number | bigint;
|
|
750
1143
|
yParity: string | number | bigint;
|
|
1144
|
+
v?: string | number | bigint | undefined;
|
|
751
1145
|
} | null | undefined;
|
|
752
1146
|
}>]>, import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodRecord<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodObject<{
|
|
753
1147
|
balance: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
@@ -844,16 +1238,49 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
844
1238
|
chainId: number;
|
|
845
1239
|
r: `0x${string}`;
|
|
846
1240
|
s: `0x${string}`;
|
|
847
|
-
v: bigint;
|
|
848
1241
|
yParity: number;
|
|
1242
|
+
v?: bigint | undefined;
|
|
1243
|
+
} | {
|
|
1244
|
+
address: `0x${string}`;
|
|
1245
|
+
nonce: number;
|
|
1246
|
+
chainId: number;
|
|
1247
|
+
r: `0x${string}`;
|
|
1248
|
+
s: `0x${string}`;
|
|
1249
|
+
yParity: number;
|
|
1250
|
+
v?: bigint | undefined;
|
|
1251
|
+
} | null | undefined;
|
|
1252
|
+
} | {
|
|
1253
|
+
sender: `0x${string}`;
|
|
1254
|
+
factory: `0x${string}` | null;
|
|
1255
|
+
paymaster: `0x${string}` | null;
|
|
1256
|
+
nonce: bigint;
|
|
1257
|
+
callData: `0x${string}`;
|
|
1258
|
+
callGasLimit: bigint;
|
|
1259
|
+
verificationGasLimit: bigint;
|
|
1260
|
+
preVerificationGas: bigint;
|
|
1261
|
+
maxFeePerGas: bigint;
|
|
1262
|
+
maxPriorityFeePerGas: bigint;
|
|
1263
|
+
signature: `0x${string}`;
|
|
1264
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1265
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1266
|
+
factoryData: `0x${string}` | null;
|
|
1267
|
+
paymasterData: `0x${string}` | null;
|
|
1268
|
+
eip7702Auth?: {
|
|
1269
|
+
nonce: number;
|
|
1270
|
+
contractAddress: `0x${string}`;
|
|
1271
|
+
chainId: number;
|
|
1272
|
+
r: `0x${string}`;
|
|
1273
|
+
s: `0x${string}`;
|
|
1274
|
+
yParity: number;
|
|
1275
|
+
v?: bigint | undefined;
|
|
849
1276
|
} | {
|
|
850
1277
|
address: `0x${string}`;
|
|
851
1278
|
nonce: number;
|
|
852
1279
|
chainId: number;
|
|
853
1280
|
r: `0x${string}`;
|
|
854
1281
|
s: `0x${string}`;
|
|
855
|
-
v: bigint;
|
|
856
1282
|
yParity: number;
|
|
1283
|
+
v?: bigint | undefined;
|
|
857
1284
|
} | null | undefined;
|
|
858
1285
|
} | {
|
|
859
1286
|
sender: `0x${string}`;
|
|
@@ -877,16 +1304,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
877
1304
|
chainId: number;
|
|
878
1305
|
r: `0x${string}`;
|
|
879
1306
|
s: `0x${string}`;
|
|
880
|
-
v: bigint;
|
|
881
1307
|
yParity: number;
|
|
1308
|
+
v?: bigint | undefined;
|
|
882
1309
|
} | {
|
|
883
1310
|
address: `0x${string}`;
|
|
884
1311
|
nonce: number;
|
|
885
1312
|
chainId: number;
|
|
886
1313
|
r: `0x${string}`;
|
|
887
1314
|
s: `0x${string}`;
|
|
888
|
-
v: bigint;
|
|
889
1315
|
yParity: number;
|
|
1316
|
+
v?: bigint | undefined;
|
|
890
1317
|
} | null | undefined;
|
|
891
1318
|
}, `0x${string}`] | [{
|
|
892
1319
|
sender: `0x${string}`;
|
|
@@ -906,16 +1333,49 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
906
1333
|
chainId: number;
|
|
907
1334
|
r: `0x${string}`;
|
|
908
1335
|
s: `0x${string}`;
|
|
909
|
-
v: bigint;
|
|
910
1336
|
yParity: number;
|
|
1337
|
+
v?: bigint | undefined;
|
|
1338
|
+
} | {
|
|
1339
|
+
address: `0x${string}`;
|
|
1340
|
+
nonce: number;
|
|
1341
|
+
chainId: number;
|
|
1342
|
+
r: `0x${string}`;
|
|
1343
|
+
s: `0x${string}`;
|
|
1344
|
+
yParity: number;
|
|
1345
|
+
v?: bigint | undefined;
|
|
1346
|
+
} | null | undefined;
|
|
1347
|
+
} | {
|
|
1348
|
+
sender: `0x${string}`;
|
|
1349
|
+
factory: `0x${string}` | null;
|
|
1350
|
+
paymaster: `0x${string}` | null;
|
|
1351
|
+
nonce: bigint;
|
|
1352
|
+
callData: `0x${string}`;
|
|
1353
|
+
callGasLimit: bigint;
|
|
1354
|
+
verificationGasLimit: bigint;
|
|
1355
|
+
preVerificationGas: bigint;
|
|
1356
|
+
maxFeePerGas: bigint;
|
|
1357
|
+
maxPriorityFeePerGas: bigint;
|
|
1358
|
+
signature: `0x${string}`;
|
|
1359
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1360
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1361
|
+
factoryData: `0x${string}` | null;
|
|
1362
|
+
paymasterData: `0x${string}` | null;
|
|
1363
|
+
eip7702Auth?: {
|
|
1364
|
+
nonce: number;
|
|
1365
|
+
contractAddress: `0x${string}`;
|
|
1366
|
+
chainId: number;
|
|
1367
|
+
r: `0x${string}`;
|
|
1368
|
+
s: `0x${string}`;
|
|
1369
|
+
yParity: number;
|
|
1370
|
+
v?: bigint | undefined;
|
|
911
1371
|
} | {
|
|
912
1372
|
address: `0x${string}`;
|
|
913
1373
|
nonce: number;
|
|
914
1374
|
chainId: number;
|
|
915
1375
|
r: `0x${string}`;
|
|
916
1376
|
s: `0x${string}`;
|
|
917
|
-
v: bigint;
|
|
918
1377
|
yParity: number;
|
|
1378
|
+
v?: bigint | undefined;
|
|
919
1379
|
} | null | undefined;
|
|
920
1380
|
} | {
|
|
921
1381
|
sender: `0x${string}`;
|
|
@@ -939,16 +1399,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
939
1399
|
chainId: number;
|
|
940
1400
|
r: `0x${string}`;
|
|
941
1401
|
s: `0x${string}`;
|
|
942
|
-
v: bigint;
|
|
943
1402
|
yParity: number;
|
|
1403
|
+
v?: bigint | undefined;
|
|
944
1404
|
} | {
|
|
945
1405
|
address: `0x${string}`;
|
|
946
1406
|
nonce: number;
|
|
947
1407
|
chainId: number;
|
|
948
1408
|
r: `0x${string}`;
|
|
949
1409
|
s: `0x${string}`;
|
|
950
|
-
v: bigint;
|
|
951
1410
|
yParity: number;
|
|
1411
|
+
v?: bigint | undefined;
|
|
952
1412
|
} | null | undefined;
|
|
953
1413
|
}, `0x${string}`, Partial<Record<`0x${string}`, {
|
|
954
1414
|
balance?: bigint | undefined;
|
|
@@ -1000,16 +1460,49 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
1000
1460
|
chainId: string | number | bigint;
|
|
1001
1461
|
r: string;
|
|
1002
1462
|
s: string;
|
|
1003
|
-
v: string | number | bigint;
|
|
1004
1463
|
yParity: string | number | bigint;
|
|
1464
|
+
v?: string | number | bigint | undefined;
|
|
1465
|
+
} | {
|
|
1466
|
+
address: string;
|
|
1467
|
+
nonce: string | number | bigint;
|
|
1468
|
+
chainId: string | number | bigint;
|
|
1469
|
+
r: string;
|
|
1470
|
+
s: string;
|
|
1471
|
+
yParity: string | number | bigint;
|
|
1472
|
+
v?: string | number | bigint | undefined;
|
|
1473
|
+
} | null | undefined;
|
|
1474
|
+
} | {
|
|
1475
|
+
sender: string;
|
|
1476
|
+
nonce: string | number | bigint;
|
|
1477
|
+
callData: string;
|
|
1478
|
+
signature: string;
|
|
1479
|
+
factory?: string | null | undefined;
|
|
1480
|
+
factoryData?: string | null | undefined;
|
|
1481
|
+
callGasLimit?: string | number | bigint | undefined;
|
|
1482
|
+
verificationGasLimit?: string | number | bigint | undefined;
|
|
1483
|
+
preVerificationGas?: string | number | bigint | undefined;
|
|
1484
|
+
maxFeePerGas?: string | number | bigint | undefined;
|
|
1485
|
+
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1486
|
+
paymaster?: string | null | undefined;
|
|
1487
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1488
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1489
|
+
paymasterData?: string | null | undefined;
|
|
1490
|
+
eip7702Auth?: {
|
|
1491
|
+
nonce: string | number | bigint;
|
|
1492
|
+
contractAddress: string;
|
|
1493
|
+
chainId: string | number | bigint;
|
|
1494
|
+
r: string;
|
|
1495
|
+
s: string;
|
|
1496
|
+
yParity: string | number | bigint;
|
|
1497
|
+
v?: string | number | bigint | undefined;
|
|
1005
1498
|
} | {
|
|
1006
1499
|
address: string;
|
|
1007
1500
|
nonce: string | number | bigint;
|
|
1008
1501
|
chainId: string | number | bigint;
|
|
1009
1502
|
r: string;
|
|
1010
1503
|
s: string;
|
|
1011
|
-
v: string | number | bigint;
|
|
1012
1504
|
yParity: string | number | bigint;
|
|
1505
|
+
v?: string | number | bigint | undefined;
|
|
1013
1506
|
} | null | undefined;
|
|
1014
1507
|
} | {
|
|
1015
1508
|
sender: string;
|
|
@@ -1033,16 +1526,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
1033
1526
|
chainId: string | number | bigint;
|
|
1034
1527
|
r: string;
|
|
1035
1528
|
s: string;
|
|
1036
|
-
v: string | number | bigint;
|
|
1037
1529
|
yParity: string | number | bigint;
|
|
1530
|
+
v?: string | number | bigint | undefined;
|
|
1038
1531
|
} | {
|
|
1039
1532
|
address: string;
|
|
1040
1533
|
nonce: string | number | bigint;
|
|
1041
1534
|
chainId: string | number | bigint;
|
|
1042
1535
|
r: string;
|
|
1043
1536
|
s: string;
|
|
1044
|
-
v: string | number | bigint;
|
|
1045
1537
|
yParity: string | number | bigint;
|
|
1538
|
+
v?: string | number | bigint | undefined;
|
|
1046
1539
|
} | null | undefined;
|
|
1047
1540
|
}, string] | [{
|
|
1048
1541
|
sender: string;
|
|
@@ -1062,16 +1555,49 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
1062
1555
|
chainId: string | number | bigint;
|
|
1063
1556
|
r: string;
|
|
1064
1557
|
s: string;
|
|
1065
|
-
v: string | number | bigint;
|
|
1066
1558
|
yParity: string | number | bigint;
|
|
1559
|
+
v?: string | number | bigint | undefined;
|
|
1560
|
+
} | {
|
|
1561
|
+
address: string;
|
|
1562
|
+
nonce: string | number | bigint;
|
|
1563
|
+
chainId: string | number | bigint;
|
|
1564
|
+
r: string;
|
|
1565
|
+
s: string;
|
|
1566
|
+
yParity: string | number | bigint;
|
|
1567
|
+
v?: string | number | bigint | undefined;
|
|
1568
|
+
} | null | undefined;
|
|
1569
|
+
} | {
|
|
1570
|
+
sender: string;
|
|
1571
|
+
nonce: string | number | bigint;
|
|
1572
|
+
callData: string;
|
|
1573
|
+
signature: string;
|
|
1574
|
+
factory?: string | null | undefined;
|
|
1575
|
+
factoryData?: string | null | undefined;
|
|
1576
|
+
callGasLimit?: string | number | bigint | undefined;
|
|
1577
|
+
verificationGasLimit?: string | number | bigint | undefined;
|
|
1578
|
+
preVerificationGas?: string | number | bigint | undefined;
|
|
1579
|
+
maxFeePerGas?: string | number | bigint | undefined;
|
|
1580
|
+
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1581
|
+
paymaster?: string | null | undefined;
|
|
1582
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1583
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1584
|
+
paymasterData?: string | null | undefined;
|
|
1585
|
+
eip7702Auth?: {
|
|
1586
|
+
nonce: string | number | bigint;
|
|
1587
|
+
contractAddress: string;
|
|
1588
|
+
chainId: string | number | bigint;
|
|
1589
|
+
r: string;
|
|
1590
|
+
s: string;
|
|
1591
|
+
yParity: string | number | bigint;
|
|
1592
|
+
v?: string | number | bigint | undefined;
|
|
1067
1593
|
} | {
|
|
1068
1594
|
address: string;
|
|
1069
1595
|
nonce: string | number | bigint;
|
|
1070
1596
|
chainId: string | number | bigint;
|
|
1071
1597
|
r: string;
|
|
1072
1598
|
s: string;
|
|
1073
|
-
v: string | number | bigint;
|
|
1074
1599
|
yParity: string | number | bigint;
|
|
1600
|
+
v?: string | number | bigint | undefined;
|
|
1075
1601
|
} | null | undefined;
|
|
1076
1602
|
} | {
|
|
1077
1603
|
sender: string;
|
|
@@ -1095,16 +1621,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
1095
1621
|
chainId: string | number | bigint;
|
|
1096
1622
|
r: string;
|
|
1097
1623
|
s: string;
|
|
1098
|
-
v: string | number | bigint;
|
|
1099
1624
|
yParity: string | number | bigint;
|
|
1625
|
+
v?: string | number | bigint | undefined;
|
|
1100
1626
|
} | {
|
|
1101
1627
|
address: string;
|
|
1102
1628
|
nonce: string | number | bigint;
|
|
1103
1629
|
chainId: string | number | bigint;
|
|
1104
1630
|
r: string;
|
|
1105
1631
|
s: string;
|
|
1106
|
-
v: string | number | bigint;
|
|
1107
1632
|
yParity: string | number | bigint;
|
|
1633
|
+
v?: string | number | bigint | undefined;
|
|
1108
1634
|
} | null | undefined;
|
|
1109
1635
|
}, string, Record<string, {
|
|
1110
1636
|
balance?: string | number | bigint | undefined;
|
|
@@ -1136,16 +1662,49 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
1136
1662
|
chainId: number;
|
|
1137
1663
|
r: `0x${string}`;
|
|
1138
1664
|
s: `0x${string}`;
|
|
1139
|
-
v: bigint;
|
|
1140
1665
|
yParity: number;
|
|
1666
|
+
v?: bigint | undefined;
|
|
1667
|
+
} | {
|
|
1668
|
+
address: `0x${string}`;
|
|
1669
|
+
nonce: number;
|
|
1670
|
+
chainId: number;
|
|
1671
|
+
r: `0x${string}`;
|
|
1672
|
+
s: `0x${string}`;
|
|
1673
|
+
yParity: number;
|
|
1674
|
+
v?: bigint | undefined;
|
|
1675
|
+
} | null | undefined;
|
|
1676
|
+
}> | import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
1677
|
+
sender: `0x${string}`;
|
|
1678
|
+
factory: `0x${string}` | null;
|
|
1679
|
+
paymaster: `0x${string}` | null;
|
|
1680
|
+
nonce: bigint;
|
|
1681
|
+
callData: `0x${string}`;
|
|
1682
|
+
callGasLimit: bigint;
|
|
1683
|
+
verificationGasLimit: bigint;
|
|
1684
|
+
preVerificationGas: bigint;
|
|
1685
|
+
maxFeePerGas: bigint;
|
|
1686
|
+
maxPriorityFeePerGas: bigint;
|
|
1687
|
+
signature: `0x${string}`;
|
|
1688
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1689
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1690
|
+
factoryData: `0x${string}` | null;
|
|
1691
|
+
paymasterData: `0x${string}` | null;
|
|
1692
|
+
eip7702Auth?: {
|
|
1693
|
+
nonce: number;
|
|
1694
|
+
contractAddress: `0x${string}`;
|
|
1695
|
+
chainId: number;
|
|
1696
|
+
r: `0x${string}`;
|
|
1697
|
+
s: `0x${string}`;
|
|
1698
|
+
yParity: number;
|
|
1699
|
+
v?: bigint | undefined;
|
|
1141
1700
|
} | {
|
|
1142
1701
|
address: `0x${string}`;
|
|
1143
1702
|
nonce: number;
|
|
1144
1703
|
chainId: number;
|
|
1145
1704
|
r: `0x${string}`;
|
|
1146
1705
|
s: `0x${string}`;
|
|
1147
|
-
v: bigint;
|
|
1148
1706
|
yParity: number;
|
|
1707
|
+
v?: bigint | undefined;
|
|
1149
1708
|
} | null | undefined;
|
|
1150
1709
|
}> | import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
1151
1710
|
sender: `0x${string}`;
|
|
@@ -1169,16 +1728,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
1169
1728
|
chainId: number;
|
|
1170
1729
|
r: `0x${string}`;
|
|
1171
1730
|
s: `0x${string}`;
|
|
1172
|
-
v: bigint;
|
|
1173
1731
|
yParity: number;
|
|
1732
|
+
v?: bigint | undefined;
|
|
1174
1733
|
} | {
|
|
1175
1734
|
address: `0x${string}`;
|
|
1176
1735
|
nonce: number;
|
|
1177
1736
|
chainId: number;
|
|
1178
1737
|
r: `0x${string}`;
|
|
1179
1738
|
s: `0x${string}`;
|
|
1180
|
-
v: bigint;
|
|
1181
1739
|
yParity: number;
|
|
1740
|
+
v?: bigint | undefined;
|
|
1182
1741
|
} | null | undefined;
|
|
1183
1742
|
}>, `0x${string}`] | readonly [import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
1184
1743
|
sender: `0x${string}`;
|
|
@@ -1198,16 +1757,49 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
1198
1757
|
chainId: number;
|
|
1199
1758
|
r: `0x${string}`;
|
|
1200
1759
|
s: `0x${string}`;
|
|
1201
|
-
v: bigint;
|
|
1202
1760
|
yParity: number;
|
|
1761
|
+
v?: bigint | undefined;
|
|
1762
|
+
} | {
|
|
1763
|
+
address: `0x${string}`;
|
|
1764
|
+
nonce: number;
|
|
1765
|
+
chainId: number;
|
|
1766
|
+
r: `0x${string}`;
|
|
1767
|
+
s: `0x${string}`;
|
|
1768
|
+
yParity: number;
|
|
1769
|
+
v?: bigint | undefined;
|
|
1770
|
+
} | null | undefined;
|
|
1771
|
+
}> | import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
1772
|
+
sender: `0x${string}`;
|
|
1773
|
+
factory: `0x${string}` | null;
|
|
1774
|
+
paymaster: `0x${string}` | null;
|
|
1775
|
+
nonce: bigint;
|
|
1776
|
+
callData: `0x${string}`;
|
|
1777
|
+
callGasLimit: bigint;
|
|
1778
|
+
verificationGasLimit: bigint;
|
|
1779
|
+
preVerificationGas: bigint;
|
|
1780
|
+
maxFeePerGas: bigint;
|
|
1781
|
+
maxPriorityFeePerGas: bigint;
|
|
1782
|
+
signature: `0x${string}`;
|
|
1783
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
1784
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
1785
|
+
factoryData: `0x${string}` | null;
|
|
1786
|
+
paymasterData: `0x${string}` | null;
|
|
1787
|
+
eip7702Auth?: {
|
|
1788
|
+
nonce: number;
|
|
1789
|
+
contractAddress: `0x${string}`;
|
|
1790
|
+
chainId: number;
|
|
1791
|
+
r: `0x${string}`;
|
|
1792
|
+
s: `0x${string}`;
|
|
1793
|
+
yParity: number;
|
|
1794
|
+
v?: bigint | undefined;
|
|
1203
1795
|
} | {
|
|
1204
1796
|
address: `0x${string}`;
|
|
1205
1797
|
nonce: number;
|
|
1206
1798
|
chainId: number;
|
|
1207
1799
|
r: `0x${string}`;
|
|
1208
1800
|
s: `0x${string}`;
|
|
1209
|
-
v: bigint;
|
|
1210
1801
|
yParity: number;
|
|
1802
|
+
v?: bigint | undefined;
|
|
1211
1803
|
} | null | undefined;
|
|
1212
1804
|
}> | import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
1213
1805
|
sender: `0x${string}`;
|
|
@@ -1231,16 +1823,16 @@ export declare const ethEstimateUserOperationGasHandler: {
|
|
|
1231
1823
|
chainId: number;
|
|
1232
1824
|
r: `0x${string}`;
|
|
1233
1825
|
s: `0x${string}`;
|
|
1234
|
-
v: bigint;
|
|
1235
1826
|
yParity: number;
|
|
1827
|
+
v?: bigint | undefined;
|
|
1236
1828
|
} | {
|
|
1237
1829
|
address: `0x${string}`;
|
|
1238
1830
|
nonce: number;
|
|
1239
1831
|
chainId: number;
|
|
1240
1832
|
r: `0x${string}`;
|
|
1241
1833
|
s: `0x${string}`;
|
|
1242
|
-
v: bigint;
|
|
1243
1834
|
yParity: number;
|
|
1835
|
+
v?: bigint | undefined;
|
|
1244
1836
|
} | null | undefined;
|
|
1245
1837
|
}>, `0x${string}`, import("type-fest/source/readonly-deep").ReadonlyObjectDeep<Partial<Record<`0x${string}`, {
|
|
1246
1838
|
balance?: bigint | undefined;
|