@pimlico/alto 0.0.0-main.20250326T131157 → 0.0.0-main.20250329T153456
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 +91 -9
- 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 +91 -9
- 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
|
@@ -20,7 +20,7 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
20
20
|
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>;
|
|
21
21
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
22
22
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
23
|
-
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
|
|
23
|
+
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>>;
|
|
24
24
|
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>;
|
|
25
25
|
}, "strip", import("zod").ZodTypeAny, {
|
|
26
26
|
nonce: number;
|
|
@@ -28,23 +28,23 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
28
28
|
chainId: number;
|
|
29
29
|
r: `0x${string}`;
|
|
30
30
|
s: `0x${string}`;
|
|
31
|
-
v: bigint;
|
|
32
31
|
yParity: number;
|
|
32
|
+
v?: bigint | undefined;
|
|
33
33
|
}, {
|
|
34
34
|
nonce: string | number | bigint;
|
|
35
35
|
contractAddress: string;
|
|
36
36
|
chainId: string | number | bigint;
|
|
37
37
|
r: string;
|
|
38
38
|
s: string;
|
|
39
|
-
v: string | number | bigint;
|
|
40
39
|
yParity: string | number | bigint;
|
|
40
|
+
v?: string | number | bigint | undefined;
|
|
41
41
|
}>, import("zod").ZodObject<{
|
|
42
42
|
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
43
43
|
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>;
|
|
44
44
|
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>;
|
|
45
45
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
46
46
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
47
|
-
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
|
|
47
|
+
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>>;
|
|
48
48
|
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>;
|
|
49
49
|
}, "strip", import("zod").ZodTypeAny, {
|
|
50
50
|
address: `0x${string}`;
|
|
@@ -52,16 +52,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
52
52
|
chainId: number;
|
|
53
53
|
r: `0x${string}`;
|
|
54
54
|
s: `0x${string}`;
|
|
55
|
-
v: bigint;
|
|
56
55
|
yParity: number;
|
|
56
|
+
v?: bigint | undefined;
|
|
57
57
|
}, {
|
|
58
58
|
address: string;
|
|
59
59
|
nonce: string | number | bigint;
|
|
60
60
|
chainId: string | number | bigint;
|
|
61
61
|
r: string;
|
|
62
62
|
s: string;
|
|
63
|
-
v: string | number | bigint;
|
|
64
63
|
yParity: string | number | bigint;
|
|
64
|
+
v?: string | number | bigint | undefined;
|
|
65
65
|
}>]>>>;
|
|
66
66
|
}, "strict", import("zod").ZodTypeAny, {
|
|
67
67
|
sender: `0x${string}`;
|
|
@@ -81,16 +81,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
81
81
|
chainId: number;
|
|
82
82
|
r: `0x${string}`;
|
|
83
83
|
s: `0x${string}`;
|
|
84
|
-
v: bigint;
|
|
85
84
|
yParity: number;
|
|
85
|
+
v?: bigint | undefined;
|
|
86
86
|
} | {
|
|
87
87
|
address: `0x${string}`;
|
|
88
88
|
nonce: number;
|
|
89
89
|
chainId: number;
|
|
90
90
|
r: `0x${string}`;
|
|
91
91
|
s: `0x${string}`;
|
|
92
|
-
v: bigint;
|
|
93
92
|
yParity: number;
|
|
93
|
+
v?: bigint | undefined;
|
|
94
94
|
} | null | undefined;
|
|
95
95
|
}, {
|
|
96
96
|
sender: string;
|
|
@@ -110,16 +110,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
110
110
|
chainId: string | number | bigint;
|
|
111
111
|
r: string;
|
|
112
112
|
s: string;
|
|
113
|
-
v: string | number | bigint;
|
|
114
113
|
yParity: string | number | bigint;
|
|
114
|
+
v?: string | number | bigint | undefined;
|
|
115
115
|
} | {
|
|
116
116
|
address: string;
|
|
117
117
|
nonce: string | number | bigint;
|
|
118
118
|
chainId: string | number | bigint;
|
|
119
119
|
r: string;
|
|
120
120
|
s: string;
|
|
121
|
-
v: string | number | bigint;
|
|
122
121
|
yParity: string | number | bigint;
|
|
122
|
+
v?: string | number | bigint | undefined;
|
|
123
123
|
} | null | undefined;
|
|
124
124
|
}>, {
|
|
125
125
|
sender: `0x${string}`;
|
|
@@ -139,16 +139,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
139
139
|
chainId: number;
|
|
140
140
|
r: `0x${string}`;
|
|
141
141
|
s: `0x${string}`;
|
|
142
|
-
v: bigint;
|
|
143
142
|
yParity: number;
|
|
143
|
+
v?: bigint | undefined;
|
|
144
144
|
} | {
|
|
145
145
|
address: `0x${string}`;
|
|
146
146
|
nonce: number;
|
|
147
147
|
chainId: number;
|
|
148
148
|
r: `0x${string}`;
|
|
149
149
|
s: `0x${string}`;
|
|
150
|
-
v: bigint;
|
|
151
150
|
yParity: number;
|
|
151
|
+
v?: bigint | undefined;
|
|
152
152
|
} | null | undefined;
|
|
153
153
|
}, {
|
|
154
154
|
sender: string;
|
|
@@ -168,16 +168,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
168
168
|
chainId: string | number | bigint;
|
|
169
169
|
r: string;
|
|
170
170
|
s: string;
|
|
171
|
-
v: string | number | bigint;
|
|
172
171
|
yParity: string | number | bigint;
|
|
172
|
+
v?: string | number | bigint | undefined;
|
|
173
173
|
} | {
|
|
174
174
|
address: string;
|
|
175
175
|
nonce: string | number | bigint;
|
|
176
176
|
chainId: string | number | bigint;
|
|
177
177
|
r: string;
|
|
178
178
|
s: string;
|
|
179
|
-
v: string | number | bigint;
|
|
180
179
|
yParity: string | number | bigint;
|
|
180
|
+
v?: string | number | bigint | undefined;
|
|
181
181
|
} | null | undefined;
|
|
182
182
|
}>, import("zod").ZodEffects<import("zod").ZodObject<{
|
|
183
183
|
sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
@@ -201,7 +201,7 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
201
201
|
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>;
|
|
202
202
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
203
203
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
204
|
-
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
|
|
204
|
+
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>>;
|
|
205
205
|
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>;
|
|
206
206
|
}, "strip", import("zod").ZodTypeAny, {
|
|
207
207
|
nonce: number;
|
|
@@ -209,23 +209,23 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
209
209
|
chainId: number;
|
|
210
210
|
r: `0x${string}`;
|
|
211
211
|
s: `0x${string}`;
|
|
212
|
-
v: bigint;
|
|
213
212
|
yParity: number;
|
|
213
|
+
v?: bigint | undefined;
|
|
214
214
|
}, {
|
|
215
215
|
nonce: string | number | bigint;
|
|
216
216
|
contractAddress: string;
|
|
217
217
|
chainId: string | number | bigint;
|
|
218
218
|
r: string;
|
|
219
219
|
s: string;
|
|
220
|
-
v: string | number | bigint;
|
|
221
220
|
yParity: string | number | bigint;
|
|
221
|
+
v?: string | number | bigint | undefined;
|
|
222
222
|
}>, import("zod").ZodObject<{
|
|
223
223
|
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
224
224
|
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>;
|
|
225
225
|
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>;
|
|
226
226
|
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
227
227
|
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
228
|
-
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
|
|
228
|
+
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>>;
|
|
229
229
|
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>;
|
|
230
230
|
}, "strip", import("zod").ZodTypeAny, {
|
|
231
231
|
address: `0x${string}`;
|
|
@@ -233,16 +233,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
233
233
|
chainId: number;
|
|
234
234
|
r: `0x${string}`;
|
|
235
235
|
s: `0x${string}`;
|
|
236
|
-
v: bigint;
|
|
237
236
|
yParity: number;
|
|
237
|
+
v?: bigint | undefined;
|
|
238
238
|
}, {
|
|
239
239
|
address: string;
|
|
240
240
|
nonce: string | number | bigint;
|
|
241
241
|
chainId: string | number | bigint;
|
|
242
242
|
r: string;
|
|
243
243
|
s: string;
|
|
244
|
-
v: string | number | bigint;
|
|
245
244
|
yParity: string | number | bigint;
|
|
245
|
+
v?: string | number | bigint | undefined;
|
|
246
246
|
}>]>>>;
|
|
247
247
|
}, "strict", import("zod").ZodTypeAny, {
|
|
248
248
|
sender: `0x${string}`;
|
|
@@ -266,16 +266,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
266
266
|
chainId: number;
|
|
267
267
|
r: `0x${string}`;
|
|
268
268
|
s: `0x${string}`;
|
|
269
|
-
v: bigint;
|
|
270
269
|
yParity: number;
|
|
270
|
+
v?: bigint | undefined;
|
|
271
271
|
} | {
|
|
272
272
|
address: `0x${string}`;
|
|
273
273
|
nonce: number;
|
|
274
274
|
chainId: number;
|
|
275
275
|
r: `0x${string}`;
|
|
276
276
|
s: `0x${string}`;
|
|
277
|
-
v: bigint;
|
|
278
277
|
yParity: number;
|
|
278
|
+
v?: bigint | undefined;
|
|
279
279
|
} | null | undefined;
|
|
280
280
|
}, {
|
|
281
281
|
sender: string;
|
|
@@ -299,16 +299,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
299
299
|
chainId: string | number | bigint;
|
|
300
300
|
r: string;
|
|
301
301
|
s: string;
|
|
302
|
-
v: string | number | bigint;
|
|
303
302
|
yParity: string | number | bigint;
|
|
303
|
+
v?: string | number | bigint | undefined;
|
|
304
304
|
} | {
|
|
305
305
|
address: string;
|
|
306
306
|
nonce: string | number | bigint;
|
|
307
307
|
chainId: string | number | bigint;
|
|
308
308
|
r: string;
|
|
309
309
|
s: string;
|
|
310
|
-
v: string | number | bigint;
|
|
311
310
|
yParity: string | number | bigint;
|
|
311
|
+
v?: string | number | bigint | undefined;
|
|
312
312
|
} | null | undefined;
|
|
313
313
|
}>, {
|
|
314
314
|
sender: `0x${string}`;
|
|
@@ -332,16 +332,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
332
332
|
chainId: number;
|
|
333
333
|
r: `0x${string}`;
|
|
334
334
|
s: `0x${string}`;
|
|
335
|
-
v: bigint;
|
|
336
335
|
yParity: number;
|
|
336
|
+
v?: bigint | undefined;
|
|
337
337
|
} | {
|
|
338
338
|
address: `0x${string}`;
|
|
339
339
|
nonce: number;
|
|
340
340
|
chainId: number;
|
|
341
341
|
r: `0x${string}`;
|
|
342
342
|
s: `0x${string}`;
|
|
343
|
-
v: bigint;
|
|
344
343
|
yParity: number;
|
|
344
|
+
v?: bigint | undefined;
|
|
345
345
|
} | null | undefined;
|
|
346
346
|
}, {
|
|
347
347
|
sender: string;
|
|
@@ -365,16 +365,213 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
365
365
|
chainId: string | number | bigint;
|
|
366
366
|
r: string;
|
|
367
367
|
s: string;
|
|
368
|
-
v: string | number | bigint;
|
|
369
368
|
yParity: string | number | bigint;
|
|
369
|
+
v?: string | number | bigint | undefined;
|
|
370
370
|
} | {
|
|
371
371
|
address: string;
|
|
372
372
|
nonce: string | number | bigint;
|
|
373
373
|
chainId: string | number | bigint;
|
|
374
374
|
r: string;
|
|
375
375
|
s: string;
|
|
376
|
-
v: string | number | bigint;
|
|
377
376
|
yParity: string | number | bigint;
|
|
377
|
+
v?: string | number | bigint | undefined;
|
|
378
|
+
} | null | undefined;
|
|
379
|
+
}>, import("zod").ZodEffects<import("zod").ZodObject<{
|
|
380
|
+
sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
381
|
+
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>;
|
|
382
|
+
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>;
|
|
383
|
+
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>;
|
|
384
|
+
callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
385
|
+
callGasLimit: 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
|
+
verificationGasLimit: 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
|
+
preVerificationGas: 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
|
+
maxFeePerGas: 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
|
+
maxPriorityFeePerGas: 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>;
|
|
390
|
+
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>;
|
|
391
|
+
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>;
|
|
392
|
+
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>;
|
|
393
|
+
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>;
|
|
394
|
+
signature: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
395
|
+
eip7702Auth: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
396
|
+
contractAddress: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
397
|
+
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>;
|
|
398
|
+
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>;
|
|
399
|
+
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
400
|
+
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
401
|
+
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>>;
|
|
402
|
+
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>;
|
|
403
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
404
|
+
nonce: number;
|
|
405
|
+
contractAddress: `0x${string}`;
|
|
406
|
+
chainId: number;
|
|
407
|
+
r: `0x${string}`;
|
|
408
|
+
s: `0x${string}`;
|
|
409
|
+
yParity: number;
|
|
410
|
+
v?: bigint | undefined;
|
|
411
|
+
}, {
|
|
412
|
+
nonce: string | number | bigint;
|
|
413
|
+
contractAddress: string;
|
|
414
|
+
chainId: string | number | bigint;
|
|
415
|
+
r: string;
|
|
416
|
+
s: string;
|
|
417
|
+
yParity: string | number | bigint;
|
|
418
|
+
v?: string | number | bigint | undefined;
|
|
419
|
+
}>, import("zod").ZodObject<{
|
|
420
|
+
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
421
|
+
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>;
|
|
422
|
+
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>;
|
|
423
|
+
r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
424
|
+
s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
425
|
+
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>>;
|
|
426
|
+
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>;
|
|
427
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
428
|
+
address: `0x${string}`;
|
|
429
|
+
nonce: number;
|
|
430
|
+
chainId: number;
|
|
431
|
+
r: `0x${string}`;
|
|
432
|
+
s: `0x${string}`;
|
|
433
|
+
yParity: number;
|
|
434
|
+
v?: bigint | undefined;
|
|
435
|
+
}, {
|
|
436
|
+
address: string;
|
|
437
|
+
nonce: string | number | bigint;
|
|
438
|
+
chainId: string | number | bigint;
|
|
439
|
+
r: string;
|
|
440
|
+
s: string;
|
|
441
|
+
yParity: string | number | bigint;
|
|
442
|
+
v?: string | number | bigint | undefined;
|
|
443
|
+
}>]>>>;
|
|
444
|
+
}, "strict", import("zod").ZodTypeAny, {
|
|
445
|
+
sender: `0x${string}`;
|
|
446
|
+
factory: `0x${string}` | null;
|
|
447
|
+
paymaster: `0x${string}` | null;
|
|
448
|
+
nonce: bigint;
|
|
449
|
+
callData: `0x${string}`;
|
|
450
|
+
callGasLimit: bigint;
|
|
451
|
+
verificationGasLimit: bigint;
|
|
452
|
+
preVerificationGas: bigint;
|
|
453
|
+
maxFeePerGas: bigint;
|
|
454
|
+
maxPriorityFeePerGas: bigint;
|
|
455
|
+
signature: `0x${string}`;
|
|
456
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
457
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
458
|
+
factoryData: `0x${string}` | null;
|
|
459
|
+
paymasterData: `0x${string}` | null;
|
|
460
|
+
eip7702Auth?: {
|
|
461
|
+
nonce: number;
|
|
462
|
+
contractAddress: `0x${string}`;
|
|
463
|
+
chainId: number;
|
|
464
|
+
r: `0x${string}`;
|
|
465
|
+
s: `0x${string}`;
|
|
466
|
+
yParity: number;
|
|
467
|
+
v?: bigint | undefined;
|
|
468
|
+
} | {
|
|
469
|
+
address: `0x${string}`;
|
|
470
|
+
nonce: number;
|
|
471
|
+
chainId: number;
|
|
472
|
+
r: `0x${string}`;
|
|
473
|
+
s: `0x${string}`;
|
|
474
|
+
yParity: number;
|
|
475
|
+
v?: bigint | undefined;
|
|
476
|
+
} | null | undefined;
|
|
477
|
+
}, {
|
|
478
|
+
sender: string;
|
|
479
|
+
nonce: string | number | bigint;
|
|
480
|
+
callData: string;
|
|
481
|
+
callGasLimit: string | number | bigint;
|
|
482
|
+
verificationGasLimit: string | number | bigint;
|
|
483
|
+
preVerificationGas: string | number | bigint;
|
|
484
|
+
maxFeePerGas: string | number | bigint;
|
|
485
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
486
|
+
signature: string;
|
|
487
|
+
factory?: string | null | undefined;
|
|
488
|
+
factoryData?: string | null | undefined;
|
|
489
|
+
paymaster?: string | null | undefined;
|
|
490
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
491
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
492
|
+
paymasterData?: string | null | undefined;
|
|
493
|
+
eip7702Auth?: {
|
|
494
|
+
nonce: string | number | bigint;
|
|
495
|
+
contractAddress: string;
|
|
496
|
+
chainId: string | number | bigint;
|
|
497
|
+
r: string;
|
|
498
|
+
s: string;
|
|
499
|
+
yParity: string | number | bigint;
|
|
500
|
+
v?: string | number | bigint | undefined;
|
|
501
|
+
} | {
|
|
502
|
+
address: string;
|
|
503
|
+
nonce: string | number | bigint;
|
|
504
|
+
chainId: string | number | bigint;
|
|
505
|
+
r: string;
|
|
506
|
+
s: string;
|
|
507
|
+
yParity: string | number | bigint;
|
|
508
|
+
v?: string | number | bigint | undefined;
|
|
509
|
+
} | null | undefined;
|
|
510
|
+
}>, {
|
|
511
|
+
sender: `0x${string}`;
|
|
512
|
+
factory: `0x${string}` | null;
|
|
513
|
+
paymaster: `0x${string}` | null;
|
|
514
|
+
nonce: bigint;
|
|
515
|
+
callData: `0x${string}`;
|
|
516
|
+
callGasLimit: bigint;
|
|
517
|
+
verificationGasLimit: bigint;
|
|
518
|
+
preVerificationGas: bigint;
|
|
519
|
+
maxFeePerGas: bigint;
|
|
520
|
+
maxPriorityFeePerGas: bigint;
|
|
521
|
+
signature: `0x${string}`;
|
|
522
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
523
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
524
|
+
factoryData: `0x${string}` | null;
|
|
525
|
+
paymasterData: `0x${string}` | null;
|
|
526
|
+
eip7702Auth?: {
|
|
527
|
+
nonce: number;
|
|
528
|
+
contractAddress: `0x${string}`;
|
|
529
|
+
chainId: number;
|
|
530
|
+
r: `0x${string}`;
|
|
531
|
+
s: `0x${string}`;
|
|
532
|
+
yParity: number;
|
|
533
|
+
v?: bigint | undefined;
|
|
534
|
+
} | {
|
|
535
|
+
address: `0x${string}`;
|
|
536
|
+
nonce: number;
|
|
537
|
+
chainId: number;
|
|
538
|
+
r: `0x${string}`;
|
|
539
|
+
s: `0x${string}`;
|
|
540
|
+
yParity: number;
|
|
541
|
+
v?: bigint | undefined;
|
|
542
|
+
} | null | undefined;
|
|
543
|
+
}, {
|
|
544
|
+
sender: string;
|
|
545
|
+
nonce: string | number | bigint;
|
|
546
|
+
callData: string;
|
|
547
|
+
callGasLimit: string | number | bigint;
|
|
548
|
+
verificationGasLimit: string | number | bigint;
|
|
549
|
+
preVerificationGas: string | number | bigint;
|
|
550
|
+
maxFeePerGas: string | number | bigint;
|
|
551
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
552
|
+
signature: string;
|
|
553
|
+
factory?: string | null | undefined;
|
|
554
|
+
factoryData?: string | null | undefined;
|
|
555
|
+
paymaster?: string | null | undefined;
|
|
556
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
557
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
558
|
+
paymasterData?: string | null | undefined;
|
|
559
|
+
eip7702Auth?: {
|
|
560
|
+
nonce: string | number | bigint;
|
|
561
|
+
contractAddress: string;
|
|
562
|
+
chainId: string | number | bigint;
|
|
563
|
+
r: string;
|
|
564
|
+
s: string;
|
|
565
|
+
yParity: string | number | bigint;
|
|
566
|
+
v?: string | number | bigint | undefined;
|
|
567
|
+
} | {
|
|
568
|
+
address: string;
|
|
569
|
+
nonce: string | number | bigint;
|
|
570
|
+
chainId: string | number | bigint;
|
|
571
|
+
r: string;
|
|
572
|
+
s: string;
|
|
573
|
+
yParity: string | number | bigint;
|
|
574
|
+
v?: string | number | bigint | undefined;
|
|
378
575
|
} | null | undefined;
|
|
379
576
|
}>]>, "many">;
|
|
380
577
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -396,16 +593,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
396
593
|
chainId: number;
|
|
397
594
|
r: `0x${string}`;
|
|
398
595
|
s: `0x${string}`;
|
|
399
|
-
v: bigint;
|
|
400
596
|
yParity: number;
|
|
597
|
+
v?: bigint | undefined;
|
|
401
598
|
} | {
|
|
402
599
|
address: `0x${string}`;
|
|
403
600
|
nonce: number;
|
|
404
601
|
chainId: number;
|
|
405
602
|
r: `0x${string}`;
|
|
406
603
|
s: `0x${string}`;
|
|
407
|
-
v: bigint;
|
|
408
604
|
yParity: number;
|
|
605
|
+
v?: bigint | undefined;
|
|
409
606
|
} | null | undefined;
|
|
410
607
|
} | {
|
|
411
608
|
sender: `0x${string}`;
|
|
@@ -429,16 +626,49 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
429
626
|
chainId: number;
|
|
430
627
|
r: `0x${string}`;
|
|
431
628
|
s: `0x${string}`;
|
|
432
|
-
v: bigint;
|
|
433
629
|
yParity: number;
|
|
630
|
+
v?: bigint | undefined;
|
|
434
631
|
} | {
|
|
435
632
|
address: `0x${string}`;
|
|
436
633
|
nonce: number;
|
|
437
634
|
chainId: number;
|
|
438
635
|
r: `0x${string}`;
|
|
439
636
|
s: `0x${string}`;
|
|
440
|
-
v: bigint;
|
|
441
637
|
yParity: number;
|
|
638
|
+
v?: bigint | undefined;
|
|
639
|
+
} | null | undefined;
|
|
640
|
+
} | {
|
|
641
|
+
sender: `0x${string}`;
|
|
642
|
+
factory: `0x${string}` | null;
|
|
643
|
+
paymaster: `0x${string}` | null;
|
|
644
|
+
nonce: bigint;
|
|
645
|
+
callData: `0x${string}`;
|
|
646
|
+
callGasLimit: bigint;
|
|
647
|
+
verificationGasLimit: bigint;
|
|
648
|
+
preVerificationGas: bigint;
|
|
649
|
+
maxFeePerGas: bigint;
|
|
650
|
+
maxPriorityFeePerGas: bigint;
|
|
651
|
+
signature: `0x${string}`;
|
|
652
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
653
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
654
|
+
factoryData: `0x${string}` | null;
|
|
655
|
+
paymasterData: `0x${string}` | null;
|
|
656
|
+
eip7702Auth?: {
|
|
657
|
+
nonce: number;
|
|
658
|
+
contractAddress: `0x${string}`;
|
|
659
|
+
chainId: number;
|
|
660
|
+
r: `0x${string}`;
|
|
661
|
+
s: `0x${string}`;
|
|
662
|
+
yParity: number;
|
|
663
|
+
v?: bigint | undefined;
|
|
664
|
+
} | {
|
|
665
|
+
address: `0x${string}`;
|
|
666
|
+
nonce: number;
|
|
667
|
+
chainId: number;
|
|
668
|
+
r: `0x${string}`;
|
|
669
|
+
s: `0x${string}`;
|
|
670
|
+
yParity: number;
|
|
671
|
+
v?: bigint | undefined;
|
|
442
672
|
} | null | undefined;
|
|
443
673
|
})[];
|
|
444
674
|
params: [`0x${string}`];
|
|
@@ -462,16 +692,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
462
692
|
chainId: string | number | bigint;
|
|
463
693
|
r: string;
|
|
464
694
|
s: string;
|
|
465
|
-
v: string | number | bigint;
|
|
466
695
|
yParity: string | number | bigint;
|
|
696
|
+
v?: string | number | bigint | undefined;
|
|
467
697
|
} | {
|
|
468
698
|
address: string;
|
|
469
699
|
nonce: string | number | bigint;
|
|
470
700
|
chainId: string | number | bigint;
|
|
471
701
|
r: string;
|
|
472
702
|
s: string;
|
|
473
|
-
v: string | number | bigint;
|
|
474
703
|
yParity: string | number | bigint;
|
|
704
|
+
v?: string | number | bigint | undefined;
|
|
475
705
|
} | null | undefined;
|
|
476
706
|
} | {
|
|
477
707
|
sender: string;
|
|
@@ -495,16 +725,49 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
495
725
|
chainId: string | number | bigint;
|
|
496
726
|
r: string;
|
|
497
727
|
s: string;
|
|
498
|
-
v: string | number | bigint;
|
|
499
728
|
yParity: string | number | bigint;
|
|
729
|
+
v?: string | number | bigint | undefined;
|
|
500
730
|
} | {
|
|
501
731
|
address: string;
|
|
502
732
|
nonce: string | number | bigint;
|
|
503
733
|
chainId: string | number | bigint;
|
|
504
734
|
r: string;
|
|
505
735
|
s: string;
|
|
506
|
-
v: string | number | bigint;
|
|
507
736
|
yParity: string | number | bigint;
|
|
737
|
+
v?: string | number | bigint | undefined;
|
|
738
|
+
} | null | undefined;
|
|
739
|
+
} | {
|
|
740
|
+
sender: string;
|
|
741
|
+
nonce: string | number | bigint;
|
|
742
|
+
callData: string;
|
|
743
|
+
callGasLimit: string | number | bigint;
|
|
744
|
+
verificationGasLimit: string | number | bigint;
|
|
745
|
+
preVerificationGas: string | number | bigint;
|
|
746
|
+
maxFeePerGas: string | number | bigint;
|
|
747
|
+
maxPriorityFeePerGas: string | number | bigint;
|
|
748
|
+
signature: string;
|
|
749
|
+
factory?: string | null | undefined;
|
|
750
|
+
factoryData?: string | null | undefined;
|
|
751
|
+
paymaster?: string | null | undefined;
|
|
752
|
+
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
753
|
+
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
754
|
+
paymasterData?: string | null | undefined;
|
|
755
|
+
eip7702Auth?: {
|
|
756
|
+
nonce: string | number | bigint;
|
|
757
|
+
contractAddress: string;
|
|
758
|
+
chainId: string | number | bigint;
|
|
759
|
+
r: string;
|
|
760
|
+
s: string;
|
|
761
|
+
yParity: string | number | bigint;
|
|
762
|
+
v?: string | number | bigint | undefined;
|
|
763
|
+
} | {
|
|
764
|
+
address: string;
|
|
765
|
+
nonce: string | number | bigint;
|
|
766
|
+
chainId: string | number | bigint;
|
|
767
|
+
r: string;
|
|
768
|
+
s: string;
|
|
769
|
+
yParity: string | number | bigint;
|
|
770
|
+
v?: string | number | bigint | undefined;
|
|
508
771
|
} | null | undefined;
|
|
509
772
|
})[];
|
|
510
773
|
params: [string];
|
|
@@ -533,16 +796,49 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
533
796
|
chainId: number;
|
|
534
797
|
r: `0x${string}`;
|
|
535
798
|
s: `0x${string}`;
|
|
536
|
-
v: bigint;
|
|
537
799
|
yParity: number;
|
|
800
|
+
v?: bigint | undefined;
|
|
801
|
+
} | {
|
|
802
|
+
address: `0x${string}`;
|
|
803
|
+
nonce: number;
|
|
804
|
+
chainId: number;
|
|
805
|
+
r: `0x${string}`;
|
|
806
|
+
s: `0x${string}`;
|
|
807
|
+
yParity: number;
|
|
808
|
+
v?: bigint | undefined;
|
|
809
|
+
} | null | undefined;
|
|
810
|
+
} | {
|
|
811
|
+
sender: `0x${string}`;
|
|
812
|
+
factory: `0x${string}` | null;
|
|
813
|
+
paymaster: `0x${string}` | null;
|
|
814
|
+
nonce: bigint;
|
|
815
|
+
callData: `0x${string}`;
|
|
816
|
+
callGasLimit: bigint;
|
|
817
|
+
verificationGasLimit: bigint;
|
|
818
|
+
preVerificationGas: bigint;
|
|
819
|
+
maxFeePerGas: bigint;
|
|
820
|
+
maxPriorityFeePerGas: bigint;
|
|
821
|
+
signature: `0x${string}`;
|
|
822
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
823
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
824
|
+
factoryData: `0x${string}` | null;
|
|
825
|
+
paymasterData: `0x${string}` | null;
|
|
826
|
+
eip7702Auth?: {
|
|
827
|
+
nonce: number;
|
|
828
|
+
contractAddress: `0x${string}`;
|
|
829
|
+
chainId: number;
|
|
830
|
+
r: `0x${string}`;
|
|
831
|
+
s: `0x${string}`;
|
|
832
|
+
yParity: number;
|
|
833
|
+
v?: bigint | undefined;
|
|
538
834
|
} | {
|
|
539
835
|
address: `0x${string}`;
|
|
540
836
|
nonce: number;
|
|
541
837
|
chainId: number;
|
|
542
838
|
r: `0x${string}`;
|
|
543
839
|
s: `0x${string}`;
|
|
544
|
-
v: bigint;
|
|
545
840
|
yParity: number;
|
|
841
|
+
v?: bigint | undefined;
|
|
546
842
|
} | null | undefined;
|
|
547
843
|
} | {
|
|
548
844
|
sender: `0x${string}`;
|
|
@@ -566,16 +862,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
566
862
|
chainId: number;
|
|
567
863
|
r: `0x${string}`;
|
|
568
864
|
s: `0x${string}`;
|
|
569
|
-
v: bigint;
|
|
570
865
|
yParity: number;
|
|
866
|
+
v?: bigint | undefined;
|
|
571
867
|
} | {
|
|
572
868
|
address: `0x${string}`;
|
|
573
869
|
nonce: number;
|
|
574
870
|
chainId: number;
|
|
575
871
|
r: `0x${string}`;
|
|
576
872
|
s: `0x${string}`;
|
|
577
|
-
v: bigint;
|
|
578
873
|
yParity: number;
|
|
874
|
+
v?: bigint | undefined;
|
|
579
875
|
} | null | undefined;
|
|
580
876
|
})[] | Promise<({
|
|
581
877
|
sender: `0x${string}`;
|
|
@@ -595,16 +891,49 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
595
891
|
chainId: number;
|
|
596
892
|
r: `0x${string}`;
|
|
597
893
|
s: `0x${string}`;
|
|
598
|
-
v: bigint;
|
|
599
894
|
yParity: number;
|
|
895
|
+
v?: bigint | undefined;
|
|
896
|
+
} | {
|
|
897
|
+
address: `0x${string}`;
|
|
898
|
+
nonce: number;
|
|
899
|
+
chainId: number;
|
|
900
|
+
r: `0x${string}`;
|
|
901
|
+
s: `0x${string}`;
|
|
902
|
+
yParity: number;
|
|
903
|
+
v?: bigint | undefined;
|
|
904
|
+
} | null | undefined;
|
|
905
|
+
} | {
|
|
906
|
+
sender: `0x${string}`;
|
|
907
|
+
factory: `0x${string}` | null;
|
|
908
|
+
paymaster: `0x${string}` | null;
|
|
909
|
+
nonce: bigint;
|
|
910
|
+
callData: `0x${string}`;
|
|
911
|
+
callGasLimit: bigint;
|
|
912
|
+
verificationGasLimit: bigint;
|
|
913
|
+
preVerificationGas: bigint;
|
|
914
|
+
maxFeePerGas: bigint;
|
|
915
|
+
maxPriorityFeePerGas: bigint;
|
|
916
|
+
signature: `0x${string}`;
|
|
917
|
+
paymasterVerificationGasLimit: bigint | null;
|
|
918
|
+
paymasterPostOpGasLimit: bigint | null;
|
|
919
|
+
factoryData: `0x${string}` | null;
|
|
920
|
+
paymasterData: `0x${string}` | null;
|
|
921
|
+
eip7702Auth?: {
|
|
922
|
+
nonce: number;
|
|
923
|
+
contractAddress: `0x${string}`;
|
|
924
|
+
chainId: number;
|
|
925
|
+
r: `0x${string}`;
|
|
926
|
+
s: `0x${string}`;
|
|
927
|
+
yParity: number;
|
|
928
|
+
v?: bigint | undefined;
|
|
600
929
|
} | {
|
|
601
930
|
address: `0x${string}`;
|
|
602
931
|
nonce: number;
|
|
603
932
|
chainId: number;
|
|
604
933
|
r: `0x${string}`;
|
|
605
934
|
s: `0x${string}`;
|
|
606
|
-
v: bigint;
|
|
607
935
|
yParity: number;
|
|
936
|
+
v?: bigint | undefined;
|
|
608
937
|
} | null | undefined;
|
|
609
938
|
} | {
|
|
610
939
|
sender: `0x${string}`;
|
|
@@ -628,16 +957,16 @@ export declare const debugBundlerDumpMempoolHandler: {
|
|
|
628
957
|
chainId: number;
|
|
629
958
|
r: `0x${string}`;
|
|
630
959
|
s: `0x${string}`;
|
|
631
|
-
v: bigint;
|
|
632
960
|
yParity: number;
|
|
961
|
+
v?: bigint | undefined;
|
|
633
962
|
} | {
|
|
634
963
|
address: `0x${string}`;
|
|
635
964
|
nonce: number;
|
|
636
965
|
chainId: number;
|
|
637
966
|
r: `0x${string}`;
|
|
638
967
|
s: `0x${string}`;
|
|
639
|
-
v: bigint;
|
|
640
968
|
yParity: number;
|
|
969
|
+
v?: bigint | undefined;
|
|
641
970
|
} | null | undefined;
|
|
642
971
|
})[]>;
|
|
643
972
|
};
|