@edgeandnode/graph-auth-kit 7.4.8 → 7.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/GraphAuthKit.context.d.ts.map +1 -1
- package/dist/{GraphAuthKitInner.context-B8vsvUDy.js → GraphAuthKitInner.context-BO9AWGN6.js} +4 -4
- package/dist/client.d.ts +868 -1429
- package/dist/client.d.ts.map +1 -1
- package/dist/constants.d.ts +26 -20
- package/dist/constants.d.ts.map +1 -1
- package/dist/ens/index.js +1 -1
- package/dist/{hooks-Ajg7XZho.js → hooks-CyChKJkx.js} +3 -2
- package/dist/hooks.d.ts.map +1 -1
- package/dist/index.js +6 -6
- package/dist/inner/GraphAuthKitInner.context.d.ts +2 -10
- package/dist/inner/GraphAuthKitInner.context.d.ts.map +1 -1
- package/dist/inner/hooks.d.ts.map +1 -1
- package/dist/safe/SafeEthersSigner.d.ts.map +1 -1
- package/dist/safe/index.js +3 -3
- package/dist/safe/utils.d.ts.map +1 -1
- package/dist/test-harness/index.js +1 -1
- package/dist/test-harness/utils.d.ts +9 -96
- package/dist/test-harness/utils.d.ts.map +1 -1
- package/dist/types.d.ts +5 -24
- package/dist/types.d.ts.map +1 -1
- package/dist/{useGraphAuthKitEnsNames-0NID83yf.js → useGraphAuthKitEnsNames-D9Yn-OnO.js} +2 -2
- package/dist/{useWaitForSafeTransaction-B54aZDPo.js → useWaitForSafeTransaction-DnrHaXbJ.js} +2 -2
- package/dist/{utils-DAZvb54b.js → utils-BhLWRLN_.js} +1 -1
- package/package.json +19 -19
package/dist/client.d.ts
CHANGED
|
@@ -1,22 +1,14 @@
|
|
|
1
1
|
import { HttpTransport } from 'viem';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
declare const BuildInfuraHttpTransportArgs: z.ZodObject<
|
|
3
|
+
declare const BuildInfuraHttpTransportArgs: z.ZodObject<{
|
|
4
4
|
infuraKey: z.ZodReadonly<z.ZodString>;
|
|
5
|
-
}, {
|
|
6
5
|
chain: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodReadonly<z.ZodUnion<readonly [z.ZodLiteral<1>, z.ZodLiteral<11155111>, z.ZodLiteral<42161>, z.ZodLiteral<421614>]>>>>>;
|
|
7
|
-
}
|
|
8
|
-
infuraKey: string;
|
|
9
|
-
chain: 1 | 11155111 | 42161 | 421614 | null;
|
|
10
|
-
}, {
|
|
11
|
-
infuraKey: string;
|
|
12
|
-
chain?: 1 | 11155111 | 42161 | 421614 | null | undefined;
|
|
13
|
-
}>;
|
|
6
|
+
}, z.core.$strip>;
|
|
14
7
|
export type BuildInfuraHttpTransportArgs = z.infer<typeof BuildInfuraHttpTransportArgs>;
|
|
15
8
|
export declare function buildInfuraHttpTransport({ chain, infuraKey, }: BuildInfuraHttpTransportArgs): HttpTransport;
|
|
16
|
-
export declare const BuildPublicClientArgs: z.ZodObject<
|
|
9
|
+
export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
17
10
|
infuraKey: z.ZodReadonly<z.ZodString>;
|
|
18
|
-
|
|
19
|
-
chain: z.ZodDefault<z.ZodOptional<z.ZodType<{
|
|
11
|
+
chain: z.ZodDefault<z.ZodOptional<z.ZodCustom<{
|
|
20
12
|
graphCliName: string;
|
|
21
13
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
22
14
|
blockExplorers: {
|
|
@@ -26,13 +18,11 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
26
18
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
27
19
|
};
|
|
28
20
|
};
|
|
21
|
+
blockTime: 12000;
|
|
29
22
|
contracts: {
|
|
30
|
-
readonly ensRegistry: {
|
|
31
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
32
|
-
};
|
|
33
23
|
readonly ensUniversalResolver: {
|
|
34
|
-
readonly address: "
|
|
35
|
-
readonly blockCreated:
|
|
24
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
25
|
+
readonly blockCreated: 23085558;
|
|
36
26
|
};
|
|
37
27
|
readonly multicall3: {
|
|
38
28
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -47,6 +37,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
47
37
|
readonly symbol: "ETH";
|
|
48
38
|
readonly decimals: 18;
|
|
49
39
|
};
|
|
40
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
50
41
|
rpcUrls: {
|
|
51
42
|
readonly default: {
|
|
52
43
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -68,17 +59,15 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
68
59
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
69
60
|
};
|
|
70
61
|
};
|
|
62
|
+
blockTime?: number | undefined | undefined;
|
|
71
63
|
contracts: {
|
|
72
64
|
readonly multicall3: {
|
|
73
65
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
74
66
|
readonly blockCreated: 751532;
|
|
75
67
|
};
|
|
76
|
-
readonly ensRegistry: {
|
|
77
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
78
|
-
};
|
|
79
68
|
readonly ensUniversalResolver: {
|
|
80
|
-
readonly address: "
|
|
81
|
-
readonly blockCreated:
|
|
69
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
70
|
+
readonly blockCreated: 8928790;
|
|
82
71
|
};
|
|
83
72
|
};
|
|
84
73
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -89,6 +78,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
89
78
|
readonly symbol: "ETH";
|
|
90
79
|
readonly decimals: 18;
|
|
91
80
|
};
|
|
81
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
92
82
|
rpcUrls: {
|
|
93
83
|
readonly default: {
|
|
94
84
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -110,6 +100,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
110
100
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
111
101
|
};
|
|
112
102
|
};
|
|
103
|
+
blockTime: 250;
|
|
113
104
|
contracts: {
|
|
114
105
|
readonly multicall3: {
|
|
115
106
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -124,6 +115,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
124
115
|
readonly symbol: "ETH";
|
|
125
116
|
readonly decimals: 18;
|
|
126
117
|
};
|
|
118
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
127
119
|
rpcUrls: {
|
|
128
120
|
readonly default: {
|
|
129
121
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -145,6 +137,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
145
137
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
146
138
|
};
|
|
147
139
|
};
|
|
140
|
+
blockTime: 250;
|
|
148
141
|
contracts: {
|
|
149
142
|
readonly multicall3: {
|
|
150
143
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -159,6 +152,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
159
152
|
readonly symbol: "ETH";
|
|
160
153
|
readonly decimals: 18;
|
|
161
154
|
};
|
|
155
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
162
156
|
rpcUrls: {
|
|
163
157
|
readonly default: {
|
|
164
158
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -170,7 +164,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
170
164
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
171
165
|
formatters?: undefined;
|
|
172
166
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
173
|
-
},
|
|
167
|
+
}, {
|
|
174
168
|
graphCliName: string;
|
|
175
169
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
176
170
|
blockExplorers: {
|
|
@@ -180,13 +174,11 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
180
174
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
181
175
|
};
|
|
182
176
|
};
|
|
177
|
+
blockTime: 12000;
|
|
183
178
|
contracts: {
|
|
184
|
-
readonly ensRegistry: {
|
|
185
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
186
|
-
};
|
|
187
179
|
readonly ensUniversalResolver: {
|
|
188
|
-
readonly address: "
|
|
189
|
-
readonly blockCreated:
|
|
180
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
181
|
+
readonly blockCreated: 23085558;
|
|
190
182
|
};
|
|
191
183
|
readonly multicall3: {
|
|
192
184
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -201,6 +193,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
201
193
|
readonly symbol: "ETH";
|
|
202
194
|
readonly decimals: 18;
|
|
203
195
|
};
|
|
196
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
204
197
|
rpcUrls: {
|
|
205
198
|
readonly default: {
|
|
206
199
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -222,17 +215,15 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
222
215
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
223
216
|
};
|
|
224
217
|
};
|
|
218
|
+
blockTime?: number | undefined | undefined;
|
|
225
219
|
contracts: {
|
|
226
220
|
readonly multicall3: {
|
|
227
221
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
228
222
|
readonly blockCreated: 751532;
|
|
229
223
|
};
|
|
230
|
-
readonly ensRegistry: {
|
|
231
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
232
|
-
};
|
|
233
224
|
readonly ensUniversalResolver: {
|
|
234
|
-
readonly address: "
|
|
235
|
-
readonly blockCreated:
|
|
225
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
226
|
+
readonly blockCreated: 8928790;
|
|
236
227
|
};
|
|
237
228
|
};
|
|
238
229
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -243,6 +234,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
243
234
|
readonly symbol: "ETH";
|
|
244
235
|
readonly decimals: 18;
|
|
245
236
|
};
|
|
237
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
246
238
|
rpcUrls: {
|
|
247
239
|
readonly default: {
|
|
248
240
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -264,6 +256,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
264
256
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
265
257
|
};
|
|
266
258
|
};
|
|
259
|
+
blockTime: 250;
|
|
267
260
|
contracts: {
|
|
268
261
|
readonly multicall3: {
|
|
269
262
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -278,6 +271,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
278
271
|
readonly symbol: "ETH";
|
|
279
272
|
readonly decimals: 18;
|
|
280
273
|
};
|
|
274
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
281
275
|
rpcUrls: {
|
|
282
276
|
readonly default: {
|
|
283
277
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -299,6 +293,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
299
293
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
300
294
|
};
|
|
301
295
|
};
|
|
296
|
+
blockTime: 250;
|
|
302
297
|
contracts: {
|
|
303
298
|
readonly multicall3: {
|
|
304
299
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -313,6 +308,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
313
308
|
readonly symbol: "ETH";
|
|
314
309
|
readonly decimals: 18;
|
|
315
310
|
};
|
|
311
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
316
312
|
rpcUrls: {
|
|
317
313
|
readonly default: {
|
|
318
314
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -325,8 +321,18 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
325
321
|
formatters?: undefined;
|
|
326
322
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
327
323
|
}>>>;
|
|
328
|
-
}
|
|
329
|
-
|
|
324
|
+
}, z.core.$strip>;
|
|
325
|
+
export type BuildPublicClientArgs = z.infer<typeof BuildPublicClientArgs>;
|
|
326
|
+
export declare function isBuildPublicClientArgs(args: any): args is BuildClientArgs;
|
|
327
|
+
export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClientArgs): {
|
|
328
|
+
account: undefined;
|
|
329
|
+
batch?: {
|
|
330
|
+
multicall?: boolean | import('viem').Prettify<import('viem').MulticallBatchOptions> | undefined;
|
|
331
|
+
} | undefined;
|
|
332
|
+
cacheTime: number;
|
|
333
|
+
ccipRead?: false | {
|
|
334
|
+
request?: (parameters: import('viem').CcipRequestParameters) => Promise<`0x${string}`>;
|
|
335
|
+
} | undefined;
|
|
330
336
|
chain: {
|
|
331
337
|
graphCliName: string;
|
|
332
338
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
@@ -337,13 +343,11 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
337
343
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
338
344
|
};
|
|
339
345
|
};
|
|
346
|
+
blockTime: 12000;
|
|
340
347
|
contracts: {
|
|
341
|
-
readonly ensRegistry: {
|
|
342
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
343
|
-
};
|
|
344
348
|
readonly ensUniversalResolver: {
|
|
345
|
-
readonly address: "
|
|
346
|
-
readonly blockCreated:
|
|
349
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
350
|
+
readonly blockCreated: 23085558;
|
|
347
351
|
};
|
|
348
352
|
readonly multicall3: {
|
|
349
353
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -358,6 +362,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
358
362
|
readonly symbol: "ETH";
|
|
359
363
|
readonly decimals: 18;
|
|
360
364
|
};
|
|
365
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
361
366
|
rpcUrls: {
|
|
362
367
|
readonly default: {
|
|
363
368
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -379,17 +384,15 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
379
384
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
380
385
|
};
|
|
381
386
|
};
|
|
387
|
+
blockTime?: number | undefined | undefined;
|
|
382
388
|
contracts: {
|
|
383
389
|
readonly multicall3: {
|
|
384
390
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
385
391
|
readonly blockCreated: 751532;
|
|
386
392
|
};
|
|
387
|
-
readonly ensRegistry: {
|
|
388
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
389
|
-
};
|
|
390
393
|
readonly ensUniversalResolver: {
|
|
391
|
-
readonly address: "
|
|
392
|
-
readonly blockCreated:
|
|
394
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
395
|
+
readonly blockCreated: 8928790;
|
|
393
396
|
};
|
|
394
397
|
};
|
|
395
398
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -400,6 +403,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
400
403
|
readonly symbol: "ETH";
|
|
401
404
|
readonly decimals: 18;
|
|
402
405
|
};
|
|
406
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
403
407
|
rpcUrls: {
|
|
404
408
|
readonly default: {
|
|
405
409
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -421,6 +425,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
421
425
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
422
426
|
};
|
|
423
427
|
};
|
|
428
|
+
blockTime: 250;
|
|
424
429
|
contracts: {
|
|
425
430
|
readonly multicall3: {
|
|
426
431
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -435,6 +440,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
435
440
|
readonly symbol: "ETH";
|
|
436
441
|
readonly decimals: 18;
|
|
437
442
|
};
|
|
443
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
438
444
|
rpcUrls: {
|
|
439
445
|
readonly default: {
|
|
440
446
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -456,6 +462,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
456
462
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
457
463
|
};
|
|
458
464
|
};
|
|
465
|
+
blockTime: 250;
|
|
459
466
|
contracts: {
|
|
460
467
|
readonly multicall3: {
|
|
461
468
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -470,6 +477,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
470
477
|
readonly symbol: "ETH";
|
|
471
478
|
readonly decimals: 18;
|
|
472
479
|
};
|
|
480
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
473
481
|
rpcUrls: {
|
|
474
482
|
readonly default: {
|
|
475
483
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -482,9 +490,18 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
482
490
|
formatters?: undefined;
|
|
483
491
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
484
492
|
};
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
493
|
+
experimental_blockTag?: import('viem').BlockTag | undefined;
|
|
494
|
+
key: string;
|
|
495
|
+
name: string;
|
|
496
|
+
pollingInterval: number;
|
|
497
|
+
request: import('viem').EIP1193RequestFn<import('viem').PublicRpcSchema>;
|
|
498
|
+
transport: import('viem').TransportConfig<"http", import('viem').EIP1193RequestFn> & {
|
|
499
|
+
fetchOptions?: import('viem').HttpTransportConfig["fetchOptions"] | undefined;
|
|
500
|
+
url?: string | undefined;
|
|
501
|
+
};
|
|
502
|
+
type: string;
|
|
503
|
+
uid: string;
|
|
504
|
+
call: (parameters: import('viem').CallParameters<{
|
|
488
505
|
graphCliName: string;
|
|
489
506
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
490
507
|
blockExplorers: {
|
|
@@ -494,13 +511,11 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
494
511
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
495
512
|
};
|
|
496
513
|
};
|
|
514
|
+
blockTime: 12000;
|
|
497
515
|
contracts: {
|
|
498
|
-
readonly ensRegistry: {
|
|
499
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
500
|
-
};
|
|
501
516
|
readonly ensUniversalResolver: {
|
|
502
|
-
readonly address: "
|
|
503
|
-
readonly blockCreated:
|
|
517
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
518
|
+
readonly blockCreated: 23085558;
|
|
504
519
|
};
|
|
505
520
|
readonly multicall3: {
|
|
506
521
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -515,6 +530,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
515
530
|
readonly symbol: "ETH";
|
|
516
531
|
readonly decimals: 18;
|
|
517
532
|
};
|
|
533
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
518
534
|
rpcUrls: {
|
|
519
535
|
readonly default: {
|
|
520
536
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -536,17 +552,15 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
536
552
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
537
553
|
};
|
|
538
554
|
};
|
|
555
|
+
blockTime?: number | undefined | undefined;
|
|
539
556
|
contracts: {
|
|
540
557
|
readonly multicall3: {
|
|
541
558
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
542
559
|
readonly blockCreated: 751532;
|
|
543
560
|
};
|
|
544
|
-
readonly ensRegistry: {
|
|
545
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
546
|
-
};
|
|
547
561
|
readonly ensUniversalResolver: {
|
|
548
|
-
readonly address: "
|
|
549
|
-
readonly blockCreated:
|
|
562
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
563
|
+
readonly blockCreated: 8928790;
|
|
550
564
|
};
|
|
551
565
|
};
|
|
552
566
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -557,6 +571,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
557
571
|
readonly symbol: "ETH";
|
|
558
572
|
readonly decimals: 18;
|
|
559
573
|
};
|
|
574
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
560
575
|
rpcUrls: {
|
|
561
576
|
readonly default: {
|
|
562
577
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -578,6 +593,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
578
593
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
579
594
|
};
|
|
580
595
|
};
|
|
596
|
+
blockTime: 250;
|
|
581
597
|
contracts: {
|
|
582
598
|
readonly multicall3: {
|
|
583
599
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -592,6 +608,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
592
608
|
readonly symbol: "ETH";
|
|
593
609
|
readonly decimals: 18;
|
|
594
610
|
};
|
|
611
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
595
612
|
rpcUrls: {
|
|
596
613
|
readonly default: {
|
|
597
614
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -613,6 +630,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
613
630
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
614
631
|
};
|
|
615
632
|
};
|
|
633
|
+
blockTime: 250;
|
|
616
634
|
contracts: {
|
|
617
635
|
readonly multicall3: {
|
|
618
636
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -627,6 +645,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
627
645
|
readonly symbol: "ETH";
|
|
628
646
|
readonly decimals: 18;
|
|
629
647
|
};
|
|
648
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
630
649
|
rpcUrls: {
|
|
631
650
|
readonly default: {
|
|
632
651
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -638,20 +657,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
638
657
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
639
658
|
formatters?: undefined;
|
|
640
659
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
export type BuildPublicClientArgs = z.infer<typeof BuildPublicClientArgs>;
|
|
644
|
-
export declare function isBuildPublicClientArgs(args: any): args is BuildClientArgs;
|
|
645
|
-
export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClientArgs): {
|
|
646
|
-
account: undefined;
|
|
647
|
-
batch?: {
|
|
648
|
-
multicall?: boolean | import('viem').Prettify<import('viem').MulticallBatchOptions> | undefined;
|
|
649
|
-
} | undefined;
|
|
650
|
-
cacheTime: number;
|
|
651
|
-
ccipRead?: false | {
|
|
652
|
-
request?: (parameters: import('viem').CcipRequestParameters) => Promise<`0x${string}`>;
|
|
653
|
-
} | undefined;
|
|
654
|
-
chain: {
|
|
660
|
+
}>) => Promise<import('viem').CallReturnType>;
|
|
661
|
+
createAccessList: (parameters: import('viem').CreateAccessListParameters<{
|
|
655
662
|
graphCliName: string;
|
|
656
663
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
657
664
|
blockExplorers: {
|
|
@@ -661,13 +668,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
661
668
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
662
669
|
};
|
|
663
670
|
};
|
|
671
|
+
blockTime: 12000;
|
|
664
672
|
contracts: {
|
|
665
|
-
readonly ensRegistry: {
|
|
666
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
667
|
-
};
|
|
668
673
|
readonly ensUniversalResolver: {
|
|
669
|
-
readonly address: "
|
|
670
|
-
readonly blockCreated:
|
|
674
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
675
|
+
readonly blockCreated: 23085558;
|
|
671
676
|
};
|
|
672
677
|
readonly multicall3: {
|
|
673
678
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -682,6 +687,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
682
687
|
readonly symbol: "ETH";
|
|
683
688
|
readonly decimals: 18;
|
|
684
689
|
};
|
|
690
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
685
691
|
rpcUrls: {
|
|
686
692
|
readonly default: {
|
|
687
693
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -703,17 +709,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
703
709
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
704
710
|
};
|
|
705
711
|
};
|
|
712
|
+
blockTime?: number | undefined | undefined;
|
|
706
713
|
contracts: {
|
|
707
714
|
readonly multicall3: {
|
|
708
715
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
709
716
|
readonly blockCreated: 751532;
|
|
710
717
|
};
|
|
711
|
-
readonly ensRegistry: {
|
|
712
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
713
|
-
};
|
|
714
718
|
readonly ensUniversalResolver: {
|
|
715
|
-
readonly address: "
|
|
716
|
-
readonly blockCreated:
|
|
719
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
720
|
+
readonly blockCreated: 8928790;
|
|
717
721
|
};
|
|
718
722
|
};
|
|
719
723
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -724,6 +728,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
724
728
|
readonly symbol: "ETH";
|
|
725
729
|
readonly decimals: 18;
|
|
726
730
|
};
|
|
731
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
727
732
|
rpcUrls: {
|
|
728
733
|
readonly default: {
|
|
729
734
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -745,6 +750,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
745
750
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
746
751
|
};
|
|
747
752
|
};
|
|
753
|
+
blockTime: 250;
|
|
748
754
|
contracts: {
|
|
749
755
|
readonly multicall3: {
|
|
750
756
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -759,6 +765,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
759
765
|
readonly symbol: "ETH";
|
|
760
766
|
readonly decimals: 18;
|
|
761
767
|
};
|
|
768
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
762
769
|
rpcUrls: {
|
|
763
770
|
readonly default: {
|
|
764
771
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -780,6 +787,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
780
787
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
781
788
|
};
|
|
782
789
|
};
|
|
790
|
+
blockTime: 250;
|
|
783
791
|
contracts: {
|
|
784
792
|
readonly multicall3: {
|
|
785
793
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -794,6 +802,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
794
802
|
readonly symbol: "ETH";
|
|
795
803
|
readonly decimals: 18;
|
|
796
804
|
};
|
|
805
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
797
806
|
rpcUrls: {
|
|
798
807
|
readonly default: {
|
|
799
808
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -805,18 +814,16 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
805
814
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
806
815
|
formatters?: undefined;
|
|
807
816
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
uid: string;
|
|
819
|
-
call: (parameters: import('viem').CallParameters<{
|
|
817
|
+
}>) => Promise<{
|
|
818
|
+
accessList: import('viem').AccessList;
|
|
819
|
+
gasUsed: bigint;
|
|
820
|
+
}>;
|
|
821
|
+
createBlockFilter: () => Promise<import('viem').CreateBlockFilterReturnType>;
|
|
822
|
+
createContractEventFilter: <const abi extends import('abitype').Abi | readonly unknown[], eventName extends import('viem').ContractEventName<abi> | undefined, args extends import('viem').MaybeExtractEventArgsFromAbi<abi, eventName> | undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').CreateContractEventFilterParameters<abi, eventName, args, strict, fromBlock, toBlock>) => Promise<import('viem').CreateContractEventFilterReturnType<abi, eventName, args, strict, fromBlock, toBlock>>;
|
|
823
|
+
createEventFilter: <const abiEvent extends import('abitype').AbiEvent | undefined = undefined, const abiEvents extends readonly import('abitype').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('abitype').AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, _EventName extends string | undefined = import('viem').MaybeAbiEventName<abiEvent>, _Args extends import('viem').MaybeExtractEventArgsFromAbi<abiEvents, _EventName> | undefined = undefined>(args?: import('viem').CreateEventFilterParameters<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args> | undefined) => Promise<import('viem').CreateEventFilterReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args>>;
|
|
824
|
+
createPendingTransactionFilter: () => Promise<import('viem').CreatePendingTransactionFilterReturnType>;
|
|
825
|
+
estimateContractGas: <chain extends import('viem').Chain | undefined, const abi extends import('abitype').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>>(args: import('viem').EstimateContractGasParameters<abi, functionName, args, chain>) => Promise<import('viem').EstimateContractGasReturnType>;
|
|
826
|
+
estimateGas: (args: import('viem').EstimateGasParameters<{
|
|
820
827
|
graphCliName: string;
|
|
821
828
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
822
829
|
blockExplorers: {
|
|
@@ -826,13 +833,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
826
833
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
827
834
|
};
|
|
828
835
|
};
|
|
836
|
+
blockTime: 12000;
|
|
829
837
|
contracts: {
|
|
830
|
-
readonly ensRegistry: {
|
|
831
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
832
|
-
};
|
|
833
838
|
readonly ensUniversalResolver: {
|
|
834
|
-
readonly address: "
|
|
835
|
-
readonly blockCreated:
|
|
839
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
840
|
+
readonly blockCreated: 23085558;
|
|
836
841
|
};
|
|
837
842
|
readonly multicall3: {
|
|
838
843
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -847,6 +852,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
847
852
|
readonly symbol: "ETH";
|
|
848
853
|
readonly decimals: 18;
|
|
849
854
|
};
|
|
855
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
850
856
|
rpcUrls: {
|
|
851
857
|
readonly default: {
|
|
852
858
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -868,17 +874,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
868
874
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
869
875
|
};
|
|
870
876
|
};
|
|
877
|
+
blockTime?: number | undefined | undefined;
|
|
871
878
|
contracts: {
|
|
872
879
|
readonly multicall3: {
|
|
873
880
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
874
881
|
readonly blockCreated: 751532;
|
|
875
882
|
};
|
|
876
|
-
readonly ensRegistry: {
|
|
877
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
878
|
-
};
|
|
879
883
|
readonly ensUniversalResolver: {
|
|
880
|
-
readonly address: "
|
|
881
|
-
readonly blockCreated:
|
|
884
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
885
|
+
readonly blockCreated: 8928790;
|
|
882
886
|
};
|
|
883
887
|
};
|
|
884
888
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -889,6 +893,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
889
893
|
readonly symbol: "ETH";
|
|
890
894
|
readonly decimals: 18;
|
|
891
895
|
};
|
|
896
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
892
897
|
rpcUrls: {
|
|
893
898
|
readonly default: {
|
|
894
899
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -910,6 +915,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
910
915
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
911
916
|
};
|
|
912
917
|
};
|
|
918
|
+
blockTime: 250;
|
|
913
919
|
contracts: {
|
|
914
920
|
readonly multicall3: {
|
|
915
921
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -924,6 +930,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
924
930
|
readonly symbol: "ETH";
|
|
925
931
|
readonly decimals: 18;
|
|
926
932
|
};
|
|
933
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
927
934
|
rpcUrls: {
|
|
928
935
|
readonly default: {
|
|
929
936
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -945,6 +952,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
945
952
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
946
953
|
};
|
|
947
954
|
};
|
|
955
|
+
blockTime: 250;
|
|
948
956
|
contracts: {
|
|
949
957
|
readonly multicall3: {
|
|
950
958
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -959,6 +967,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
959
967
|
readonly symbol: "ETH";
|
|
960
968
|
readonly decimals: 18;
|
|
961
969
|
};
|
|
970
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
962
971
|
rpcUrls: {
|
|
963
972
|
readonly default: {
|
|
964
973
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -970,8 +979,177 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
970
979
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
971
980
|
formatters?: undefined;
|
|
972
981
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
973
|
-
}>) => Promise<import('viem').
|
|
974
|
-
|
|
982
|
+
}>) => Promise<import('viem').EstimateGasReturnType>;
|
|
983
|
+
getBalance: (args: import('viem').GetBalanceParameters) => Promise<import('viem').GetBalanceReturnType>;
|
|
984
|
+
getBlobBaseFee: () => Promise<import('viem').GetBlobBaseFeeReturnType>;
|
|
985
|
+
getBlock: <includeTransactions extends boolean = false, blockTag extends import('viem').BlockTag = "latest">(args?: import('viem').GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
|
|
986
|
+
number: blockTag extends "pending" ? null : bigint;
|
|
987
|
+
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
988
|
+
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
989
|
+
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
990
|
+
baseFeePerGas: bigint | null;
|
|
991
|
+
blobGasUsed: bigint;
|
|
992
|
+
difficulty: bigint;
|
|
993
|
+
excessBlobGas: bigint;
|
|
994
|
+
extraData: import('viem').Hex;
|
|
995
|
+
gasLimit: bigint;
|
|
996
|
+
gasUsed: bigint;
|
|
997
|
+
miner: import('abitype').Address;
|
|
998
|
+
mixHash: import('viem').Hash;
|
|
999
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1000
|
+
parentHash: import('viem').Hash;
|
|
1001
|
+
receiptsRoot: import('viem').Hex;
|
|
1002
|
+
sealFields: import('viem').Hex[];
|
|
1003
|
+
sha3Uncles: import('viem').Hash;
|
|
1004
|
+
size: bigint;
|
|
1005
|
+
stateRoot: import('viem').Hash;
|
|
1006
|
+
timestamp: bigint;
|
|
1007
|
+
totalDifficulty: bigint | null;
|
|
1008
|
+
transactionsRoot: import('viem').Hash;
|
|
1009
|
+
uncles: import('viem').Hash[];
|
|
1010
|
+
withdrawals?: import('viem').Withdrawal[] | undefined | undefined;
|
|
1011
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1012
|
+
transactions: includeTransactions extends true ? ({
|
|
1013
|
+
from: import('abitype').Address;
|
|
1014
|
+
gas: bigint;
|
|
1015
|
+
nonce: number;
|
|
1016
|
+
to: import('abitype').Address | null;
|
|
1017
|
+
type: "legacy";
|
|
1018
|
+
value: bigint;
|
|
1019
|
+
r: import('viem').Hex;
|
|
1020
|
+
s: import('viem').Hex;
|
|
1021
|
+
v: bigint;
|
|
1022
|
+
yParity?: undefined | undefined;
|
|
1023
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1024
|
+
gasPrice: bigint;
|
|
1025
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1026
|
+
maxFeePerGas?: undefined | undefined;
|
|
1027
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1028
|
+
chainId?: number | undefined;
|
|
1029
|
+
accessList?: undefined | undefined;
|
|
1030
|
+
authorizationList?: undefined | undefined;
|
|
1031
|
+
input: import('viem').Hex;
|
|
1032
|
+
hash: import('viem').Hash;
|
|
1033
|
+
typeHex: import('viem').Hex | null;
|
|
1034
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
1035
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
|
|
1036
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
1037
|
+
} | {
|
|
1038
|
+
from: import('abitype').Address;
|
|
1039
|
+
gas: bigint;
|
|
1040
|
+
nonce: number;
|
|
1041
|
+
to: import('abitype').Address | null;
|
|
1042
|
+
type: "eip2930";
|
|
1043
|
+
value: bigint;
|
|
1044
|
+
r: import('viem').Hex;
|
|
1045
|
+
s: import('viem').Hex;
|
|
1046
|
+
v: bigint;
|
|
1047
|
+
yParity: number;
|
|
1048
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1049
|
+
gasPrice: bigint;
|
|
1050
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1051
|
+
maxFeePerGas?: undefined | undefined;
|
|
1052
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1053
|
+
chainId: number;
|
|
1054
|
+
accessList: import('viem').AccessList;
|
|
1055
|
+
authorizationList?: undefined | undefined;
|
|
1056
|
+
input: import('viem').Hex;
|
|
1057
|
+
hash: import('viem').Hash;
|
|
1058
|
+
typeHex: import('viem').Hex | null;
|
|
1059
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
|
|
1060
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
|
|
1061
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
1062
|
+
} | {
|
|
1063
|
+
from: import('abitype').Address;
|
|
1064
|
+
gas: bigint;
|
|
1065
|
+
nonce: number;
|
|
1066
|
+
to: import('abitype').Address | null;
|
|
1067
|
+
type: "eip1559";
|
|
1068
|
+
value: bigint;
|
|
1069
|
+
r: import('viem').Hex;
|
|
1070
|
+
s: import('viem').Hex;
|
|
1071
|
+
v: bigint;
|
|
1072
|
+
yParity: number;
|
|
1073
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1074
|
+
gasPrice?: undefined | undefined;
|
|
1075
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1076
|
+
maxFeePerGas: bigint;
|
|
1077
|
+
maxPriorityFeePerGas: bigint;
|
|
1078
|
+
chainId: number;
|
|
1079
|
+
accessList: import('viem').AccessList;
|
|
1080
|
+
authorizationList?: undefined | undefined;
|
|
1081
|
+
input: import('viem').Hex;
|
|
1082
|
+
hash: import('viem').Hash;
|
|
1083
|
+
typeHex: import('viem').Hex | null;
|
|
1084
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
|
|
1085
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
|
|
1086
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
1087
|
+
} | {
|
|
1088
|
+
from: import('abitype').Address;
|
|
1089
|
+
gas: bigint;
|
|
1090
|
+
nonce: number;
|
|
1091
|
+
to: import('abitype').Address | null;
|
|
1092
|
+
type: "eip4844";
|
|
1093
|
+
value: bigint;
|
|
1094
|
+
r: import('viem').Hex;
|
|
1095
|
+
s: import('viem').Hex;
|
|
1096
|
+
v: bigint;
|
|
1097
|
+
yParity: number;
|
|
1098
|
+
blobVersionedHashes: readonly import('viem').Hex[];
|
|
1099
|
+
gasPrice?: undefined | undefined;
|
|
1100
|
+
maxFeePerBlobGas: bigint;
|
|
1101
|
+
maxFeePerGas: bigint;
|
|
1102
|
+
maxPriorityFeePerGas: bigint;
|
|
1103
|
+
chainId: number;
|
|
1104
|
+
accessList: import('viem').AccessList;
|
|
1105
|
+
authorizationList?: undefined | undefined;
|
|
1106
|
+
input: import('viem').Hex;
|
|
1107
|
+
hash: import('viem').Hash;
|
|
1108
|
+
typeHex: import('viem').Hex | null;
|
|
1109
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
|
|
1110
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
|
|
1111
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
1112
|
+
} | {
|
|
1113
|
+
from: import('abitype').Address;
|
|
1114
|
+
gas: bigint;
|
|
1115
|
+
nonce: number;
|
|
1116
|
+
to: import('abitype').Address | null;
|
|
1117
|
+
type: "eip7702";
|
|
1118
|
+
value: bigint;
|
|
1119
|
+
r: import('viem').Hex;
|
|
1120
|
+
s: import('viem').Hex;
|
|
1121
|
+
v: bigint;
|
|
1122
|
+
yParity: number;
|
|
1123
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1124
|
+
gasPrice?: undefined | undefined;
|
|
1125
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1126
|
+
maxFeePerGas: bigint;
|
|
1127
|
+
maxPriorityFeePerGas: bigint;
|
|
1128
|
+
chainId: number;
|
|
1129
|
+
accessList: import('viem').AccessList;
|
|
1130
|
+
authorizationList: import('viem').SignedAuthorizationList;
|
|
1131
|
+
input: import('viem').Hex;
|
|
1132
|
+
hash: import('viem').Hash;
|
|
1133
|
+
typeHex: import('viem').Hex | null;
|
|
1134
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
|
|
1135
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
|
|
1136
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
1137
|
+
})[] : `0x${string}`[];
|
|
1138
|
+
}>;
|
|
1139
|
+
getBlockNumber: (args?: import('viem').GetBlockNumberParameters | undefined) => Promise<import('viem').GetBlockNumberReturnType>;
|
|
1140
|
+
getBlockTransactionCount: (args?: import('viem').GetBlockTransactionCountParameters | undefined) => Promise<import('viem').GetBlockTransactionCountReturnType>;
|
|
1141
|
+
getBytecode: (args: import('viem').GetBytecodeParameters) => Promise<import('viem').GetBytecodeReturnType>;
|
|
1142
|
+
getChainId: () => Promise<import('viem').GetChainIdReturnType>;
|
|
1143
|
+
getCode: (args: import('viem').GetBytecodeParameters) => Promise<import('viem').GetBytecodeReturnType>;
|
|
1144
|
+
getContractEvents: <const abi extends import('abitype').Abi | readonly unknown[], eventName extends import('viem').ContractEventName<abi> | undefined = undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').GetContractEventsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import('viem').GetContractEventsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
1145
|
+
getEip712Domain: (args: import('viem').GetEip712DomainParameters) => Promise<import('viem').GetEip712DomainReturnType>;
|
|
1146
|
+
getEnsAddress: (args: import('viem').GetEnsAddressParameters) => Promise<import('viem').GetEnsAddressReturnType>;
|
|
1147
|
+
getEnsAvatar: (args: import('viem').GetEnsAvatarParameters) => Promise<import('viem').GetEnsAvatarReturnType>;
|
|
1148
|
+
getEnsName: (args: import('viem').GetEnsNameParameters) => Promise<import('viem').GetEnsNameReturnType>;
|
|
1149
|
+
getEnsResolver: (args: import('viem').GetEnsResolverParameters) => Promise<import('viem').GetEnsResolverReturnType>;
|
|
1150
|
+
getEnsText: (args: import('viem').GetEnsTextParameters) => Promise<import('viem').GetEnsTextReturnType>;
|
|
1151
|
+
getFeeHistory: (args: import('viem').GetFeeHistoryParameters) => Promise<import('viem').GetFeeHistoryReturnType>;
|
|
1152
|
+
estimateFeesPerGas: <chainOverride extends import('viem').Chain | undefined = undefined, type extends import('viem').FeeValuesType = "eip1559">(args?: import('viem').EstimateFeesPerGasParameters<{
|
|
975
1153
|
graphCliName: string;
|
|
976
1154
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
977
1155
|
blockExplorers: {
|
|
@@ -981,13 +1159,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
981
1159
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
982
1160
|
};
|
|
983
1161
|
};
|
|
1162
|
+
blockTime: 12000;
|
|
984
1163
|
contracts: {
|
|
985
|
-
readonly ensRegistry: {
|
|
986
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
987
|
-
};
|
|
988
1164
|
readonly ensUniversalResolver: {
|
|
989
|
-
readonly address: "
|
|
990
|
-
readonly blockCreated:
|
|
1165
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1166
|
+
readonly blockCreated: 23085558;
|
|
991
1167
|
};
|
|
992
1168
|
readonly multicall3: {
|
|
993
1169
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1002,6 +1178,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1002
1178
|
readonly symbol: "ETH";
|
|
1003
1179
|
readonly decimals: 18;
|
|
1004
1180
|
};
|
|
1181
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1005
1182
|
rpcUrls: {
|
|
1006
1183
|
readonly default: {
|
|
1007
1184
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -1023,17 +1200,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1023
1200
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
1024
1201
|
};
|
|
1025
1202
|
};
|
|
1203
|
+
blockTime?: number | undefined | undefined;
|
|
1026
1204
|
contracts: {
|
|
1027
1205
|
readonly multicall3: {
|
|
1028
1206
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1029
1207
|
readonly blockCreated: 751532;
|
|
1030
1208
|
};
|
|
1031
|
-
readonly ensRegistry: {
|
|
1032
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1033
|
-
};
|
|
1034
1209
|
readonly ensUniversalResolver: {
|
|
1035
|
-
readonly address: "
|
|
1036
|
-
readonly blockCreated:
|
|
1210
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1211
|
+
readonly blockCreated: 8928790;
|
|
1037
1212
|
};
|
|
1038
1213
|
};
|
|
1039
1214
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1044,6 +1219,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1044
1219
|
readonly symbol: "ETH";
|
|
1045
1220
|
readonly decimals: 18;
|
|
1046
1221
|
};
|
|
1222
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1047
1223
|
rpcUrls: {
|
|
1048
1224
|
readonly default: {
|
|
1049
1225
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -1065,6 +1241,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1065
1241
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
1066
1242
|
};
|
|
1067
1243
|
};
|
|
1244
|
+
blockTime: 250;
|
|
1068
1245
|
contracts: {
|
|
1069
1246
|
readonly multicall3: {
|
|
1070
1247
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1079,6 +1256,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1079
1256
|
readonly symbol: "ETH";
|
|
1080
1257
|
readonly decimals: 18;
|
|
1081
1258
|
};
|
|
1259
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1082
1260
|
rpcUrls: {
|
|
1083
1261
|
readonly default: {
|
|
1084
1262
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -1100,6 +1278,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1100
1278
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
1101
1279
|
};
|
|
1102
1280
|
};
|
|
1281
|
+
blockTime: 250;
|
|
1103
1282
|
contracts: {
|
|
1104
1283
|
readonly multicall3: {
|
|
1105
1284
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1114,6 +1293,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1114
1293
|
readonly symbol: "ETH";
|
|
1115
1294
|
readonly decimals: 18;
|
|
1116
1295
|
};
|
|
1296
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1117
1297
|
rpcUrls: {
|
|
1118
1298
|
readonly default: {
|
|
1119
1299
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -1125,16 +1305,143 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1125
1305
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1126
1306
|
formatters?: undefined;
|
|
1127
1307
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1128
|
-
}>) => Promise<
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1308
|
+
}, chainOverride, type> | undefined) => Promise<import('viem').EstimateFeesPerGasReturnType<type>>;
|
|
1309
|
+
getFilterChanges: <filterType extends import('viem').FilterType, const abi extends import('abitype').Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').GetFilterChangesParameters<filterType, abi, eventName, strict, fromBlock, toBlock>) => Promise<import('viem').GetFilterChangesReturnType<filterType, abi, eventName, strict, fromBlock, toBlock>>;
|
|
1310
|
+
getFilterLogs: <const abi extends import('abitype').Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').GetFilterLogsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import('viem').GetFilterLogsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
1311
|
+
getGasPrice: () => Promise<import('viem').GetGasPriceReturnType>;
|
|
1312
|
+
getLogs: <const abiEvent extends import('abitype').AbiEvent | undefined = undefined, const abiEvents extends readonly import('abitype').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('abitype').AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args?: import('viem').GetLogsParameters<abiEvent, abiEvents, strict, fromBlock, toBlock> | undefined) => Promise<import('viem').GetLogsReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock>>;
|
|
1313
|
+
getProof: (args: import('viem').GetProofParameters) => Promise<import('viem').GetProofReturnType>;
|
|
1314
|
+
estimateMaxPriorityFeePerGas: <chainOverride extends import('viem').Chain | undefined = undefined>(args?: {
|
|
1315
|
+
chain?: chainOverride | null | undefined;
|
|
1316
|
+
} | undefined) => Promise<import('viem').EstimateMaxPriorityFeePerGasReturnType>;
|
|
1317
|
+
getStorageAt: (args: import('viem').GetStorageAtParameters) => Promise<import('viem').GetStorageAtReturnType>;
|
|
1318
|
+
getTransaction: <blockTag extends import('viem').BlockTag = "latest">(args: import('viem').GetTransactionParameters<blockTag>) => Promise<{
|
|
1319
|
+
from: import('abitype').Address;
|
|
1320
|
+
gas: bigint;
|
|
1321
|
+
nonce: number;
|
|
1322
|
+
to: import('abitype').Address | null;
|
|
1323
|
+
type: "legacy";
|
|
1324
|
+
value: bigint;
|
|
1325
|
+
r: import('viem').Hex;
|
|
1326
|
+
s: import('viem').Hex;
|
|
1327
|
+
v: bigint;
|
|
1328
|
+
yParity?: undefined | undefined;
|
|
1329
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1330
|
+
gasPrice: bigint;
|
|
1331
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1332
|
+
maxFeePerGas?: undefined | undefined;
|
|
1333
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1334
|
+
chainId?: number | undefined;
|
|
1335
|
+
accessList?: undefined | undefined;
|
|
1336
|
+
authorizationList?: undefined | undefined;
|
|
1337
|
+
input: import('viem').Hex;
|
|
1338
|
+
hash: import('viem').Hash;
|
|
1339
|
+
typeHex: import('viem').Hex | null;
|
|
1340
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
1341
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
|
|
1342
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
1343
|
+
} | {
|
|
1344
|
+
from: import('abitype').Address;
|
|
1345
|
+
gas: bigint;
|
|
1346
|
+
nonce: number;
|
|
1347
|
+
to: import('abitype').Address | null;
|
|
1348
|
+
type: "eip2930";
|
|
1349
|
+
value: bigint;
|
|
1350
|
+
r: import('viem').Hex;
|
|
1351
|
+
s: import('viem').Hex;
|
|
1352
|
+
v: bigint;
|
|
1353
|
+
yParity: number;
|
|
1354
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1355
|
+
gasPrice: bigint;
|
|
1356
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1357
|
+
maxFeePerGas?: undefined | undefined;
|
|
1358
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1359
|
+
chainId: number;
|
|
1360
|
+
accessList: import('viem').AccessList;
|
|
1361
|
+
authorizationList?: undefined | undefined;
|
|
1362
|
+
input: import('viem').Hex;
|
|
1363
|
+
hash: import('viem').Hash;
|
|
1364
|
+
typeHex: import('viem').Hex | null;
|
|
1365
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
|
|
1366
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
|
|
1367
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
1368
|
+
} | {
|
|
1369
|
+
from: import('abitype').Address;
|
|
1370
|
+
gas: bigint;
|
|
1371
|
+
nonce: number;
|
|
1372
|
+
to: import('abitype').Address | null;
|
|
1373
|
+
type: "eip1559";
|
|
1374
|
+
value: bigint;
|
|
1375
|
+
r: import('viem').Hex;
|
|
1376
|
+
s: import('viem').Hex;
|
|
1377
|
+
v: bigint;
|
|
1378
|
+
yParity: number;
|
|
1379
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1380
|
+
gasPrice?: undefined | undefined;
|
|
1381
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1382
|
+
maxFeePerGas: bigint;
|
|
1383
|
+
maxPriorityFeePerGas: bigint;
|
|
1384
|
+
chainId: number;
|
|
1385
|
+
accessList: import('viem').AccessList;
|
|
1386
|
+
authorizationList?: undefined | undefined;
|
|
1387
|
+
input: import('viem').Hex;
|
|
1388
|
+
hash: import('viem').Hash;
|
|
1389
|
+
typeHex: import('viem').Hex | null;
|
|
1390
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
|
|
1391
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
|
|
1392
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
1393
|
+
} | {
|
|
1394
|
+
from: import('abitype').Address;
|
|
1395
|
+
gas: bigint;
|
|
1396
|
+
nonce: number;
|
|
1397
|
+
to: import('abitype').Address | null;
|
|
1398
|
+
type: "eip4844";
|
|
1399
|
+
value: bigint;
|
|
1400
|
+
r: import('viem').Hex;
|
|
1401
|
+
s: import('viem').Hex;
|
|
1402
|
+
v: bigint;
|
|
1403
|
+
yParity: number;
|
|
1404
|
+
blobVersionedHashes: readonly import('viem').Hex[];
|
|
1405
|
+
gasPrice?: undefined | undefined;
|
|
1406
|
+
maxFeePerBlobGas: bigint;
|
|
1407
|
+
maxFeePerGas: bigint;
|
|
1408
|
+
maxPriorityFeePerGas: bigint;
|
|
1409
|
+
chainId: number;
|
|
1410
|
+
accessList: import('viem').AccessList;
|
|
1411
|
+
authorizationList?: undefined | undefined;
|
|
1412
|
+
input: import('viem').Hex;
|
|
1413
|
+
hash: import('viem').Hash;
|
|
1414
|
+
typeHex: import('viem').Hex | null;
|
|
1415
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
|
|
1416
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
|
|
1417
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
1418
|
+
} | {
|
|
1419
|
+
from: import('abitype').Address;
|
|
1420
|
+
gas: bigint;
|
|
1421
|
+
nonce: number;
|
|
1422
|
+
to: import('abitype').Address | null;
|
|
1423
|
+
type: "eip7702";
|
|
1424
|
+
value: bigint;
|
|
1425
|
+
r: import('viem').Hex;
|
|
1426
|
+
s: import('viem').Hex;
|
|
1427
|
+
v: bigint;
|
|
1428
|
+
yParity: number;
|
|
1429
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1430
|
+
gasPrice?: undefined | undefined;
|
|
1431
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1432
|
+
maxFeePerGas: bigint;
|
|
1433
|
+
maxPriorityFeePerGas: bigint;
|
|
1434
|
+
chainId: number;
|
|
1435
|
+
accessList: import('viem').AccessList;
|
|
1436
|
+
authorizationList: import('viem').SignedAuthorizationList;
|
|
1437
|
+
input: import('viem').Hex;
|
|
1438
|
+
hash: import('viem').Hash;
|
|
1439
|
+
typeHex: import('viem').Hex | null;
|
|
1440
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
|
|
1441
|
+
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
|
|
1442
|
+
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
1443
|
+
}>;
|
|
1444
|
+
getTransactionConfirmations: (args: import('viem').GetTransactionConfirmationsParameters<{
|
|
1138
1445
|
graphCliName: string;
|
|
1139
1446
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
1140
1447
|
blockExplorers: {
|
|
@@ -1144,13 +1451,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1144
1451
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1145
1452
|
};
|
|
1146
1453
|
};
|
|
1454
|
+
blockTime: 12000;
|
|
1147
1455
|
contracts: {
|
|
1148
|
-
readonly ensRegistry: {
|
|
1149
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1150
|
-
};
|
|
1151
1456
|
readonly ensUniversalResolver: {
|
|
1152
|
-
readonly address: "
|
|
1153
|
-
readonly blockCreated:
|
|
1457
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1458
|
+
readonly blockCreated: 23085558;
|
|
1154
1459
|
};
|
|
1155
1460
|
readonly multicall3: {
|
|
1156
1461
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1165,6 +1470,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1165
1470
|
readonly symbol: "ETH";
|
|
1166
1471
|
readonly decimals: 18;
|
|
1167
1472
|
};
|
|
1473
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1168
1474
|
rpcUrls: {
|
|
1169
1475
|
readonly default: {
|
|
1170
1476
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -1186,17 +1492,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1186
1492
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
1187
1493
|
};
|
|
1188
1494
|
};
|
|
1495
|
+
blockTime?: number | undefined | undefined;
|
|
1189
1496
|
contracts: {
|
|
1190
1497
|
readonly multicall3: {
|
|
1191
1498
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1192
1499
|
readonly blockCreated: 751532;
|
|
1193
1500
|
};
|
|
1194
|
-
readonly ensRegistry: {
|
|
1195
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1196
|
-
};
|
|
1197
1501
|
readonly ensUniversalResolver: {
|
|
1198
|
-
readonly address: "
|
|
1199
|
-
readonly blockCreated:
|
|
1502
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1503
|
+
readonly blockCreated: 8928790;
|
|
1200
1504
|
};
|
|
1201
1505
|
};
|
|
1202
1506
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1207,6 +1511,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1207
1511
|
readonly symbol: "ETH";
|
|
1208
1512
|
readonly decimals: 18;
|
|
1209
1513
|
};
|
|
1514
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1210
1515
|
rpcUrls: {
|
|
1211
1516
|
readonly default: {
|
|
1212
1517
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -1228,6 +1533,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1228
1533
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
1229
1534
|
};
|
|
1230
1535
|
};
|
|
1536
|
+
blockTime: 250;
|
|
1231
1537
|
contracts: {
|
|
1232
1538
|
readonly multicall3: {
|
|
1233
1539
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1242,6 +1548,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1242
1548
|
readonly symbol: "ETH";
|
|
1243
1549
|
readonly decimals: 18;
|
|
1244
1550
|
};
|
|
1551
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1245
1552
|
rpcUrls: {
|
|
1246
1553
|
readonly default: {
|
|
1247
1554
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -1263,6 +1570,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1263
1570
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
1264
1571
|
};
|
|
1265
1572
|
};
|
|
1573
|
+
blockTime: 250;
|
|
1266
1574
|
contracts: {
|
|
1267
1575
|
readonly multicall3: {
|
|
1268
1576
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1277,6 +1585,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1277
1585
|
readonly symbol: "ETH";
|
|
1278
1586
|
readonly decimals: 18;
|
|
1279
1587
|
};
|
|
1588
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1280
1589
|
rpcUrls: {
|
|
1281
1590
|
readonly default: {
|
|
1282
1591
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -1288,177 +1597,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1288
1597
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1289
1598
|
formatters?: undefined;
|
|
1290
1599
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1291
|
-
}>) => Promise<import('viem').
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
1297
|
-
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
1298
|
-
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
1299
|
-
baseFeePerGas: bigint | null;
|
|
1300
|
-
blobGasUsed: bigint;
|
|
1301
|
-
difficulty: bigint;
|
|
1302
|
-
excessBlobGas: bigint;
|
|
1303
|
-
extraData: import('viem').Hex;
|
|
1304
|
-
gasLimit: bigint;
|
|
1305
|
-
gasUsed: bigint;
|
|
1306
|
-
miner: import('abitype').Address;
|
|
1307
|
-
mixHash: import('viem').Hash;
|
|
1308
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1309
|
-
parentHash: import('viem').Hash;
|
|
1310
|
-
receiptsRoot: import('viem').Hex;
|
|
1311
|
-
sealFields: import('viem').Hex[];
|
|
1312
|
-
sha3Uncles: import('viem').Hash;
|
|
1313
|
-
size: bigint;
|
|
1314
|
-
stateRoot: import('viem').Hash;
|
|
1315
|
-
timestamp: bigint;
|
|
1316
|
-
totalDifficulty: bigint | null;
|
|
1317
|
-
transactionsRoot: import('viem').Hash;
|
|
1318
|
-
uncles: import('viem').Hash[];
|
|
1319
|
-
withdrawals?: import('viem').Withdrawal[] | undefined | undefined;
|
|
1320
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1321
|
-
transactions: includeTransactions extends true ? ({
|
|
1322
|
-
from: import('abitype').Address;
|
|
1323
|
-
gas: bigint;
|
|
1324
|
-
nonce: number;
|
|
1325
|
-
to: import('abitype').Address | null;
|
|
1326
|
-
type: "legacy";
|
|
1327
|
-
value: bigint;
|
|
1328
|
-
r: import('viem').Hex;
|
|
1329
|
-
s: import('viem').Hex;
|
|
1330
|
-
v: bigint;
|
|
1331
|
-
yParity?: undefined | undefined;
|
|
1332
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1333
|
-
gasPrice: bigint;
|
|
1334
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1335
|
-
maxFeePerGas?: undefined | undefined;
|
|
1336
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1337
|
-
chainId?: number | undefined;
|
|
1338
|
-
accessList?: undefined | undefined;
|
|
1339
|
-
authorizationList?: undefined | undefined;
|
|
1340
|
-
hash: import('viem').Hash;
|
|
1341
|
-
input: import('viem').Hex;
|
|
1342
|
-
typeHex: import('viem').Hex | null;
|
|
1343
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
1344
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
|
|
1345
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
1346
|
-
} | {
|
|
1347
|
-
from: import('abitype').Address;
|
|
1348
|
-
gas: bigint;
|
|
1349
|
-
nonce: number;
|
|
1350
|
-
to: import('abitype').Address | null;
|
|
1351
|
-
type: "eip2930";
|
|
1352
|
-
value: bigint;
|
|
1353
|
-
r: import('viem').Hex;
|
|
1354
|
-
s: import('viem').Hex;
|
|
1355
|
-
v: bigint;
|
|
1356
|
-
yParity: number;
|
|
1357
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1358
|
-
gasPrice: bigint;
|
|
1359
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1360
|
-
maxFeePerGas?: undefined | undefined;
|
|
1361
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1362
|
-
chainId: number;
|
|
1363
|
-
accessList: import('viem').AccessList;
|
|
1364
|
-
authorizationList?: undefined | undefined;
|
|
1365
|
-
hash: import('viem').Hash;
|
|
1366
|
-
input: import('viem').Hex;
|
|
1367
|
-
typeHex: import('viem').Hex | null;
|
|
1368
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
|
|
1369
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
|
|
1370
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
1371
|
-
} | {
|
|
1372
|
-
from: import('abitype').Address;
|
|
1373
|
-
gas: bigint;
|
|
1374
|
-
nonce: number;
|
|
1375
|
-
to: import('abitype').Address | null;
|
|
1376
|
-
type: "eip1559";
|
|
1377
|
-
value: bigint;
|
|
1378
|
-
r: import('viem').Hex;
|
|
1379
|
-
s: import('viem').Hex;
|
|
1380
|
-
v: bigint;
|
|
1381
|
-
yParity: number;
|
|
1382
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1383
|
-
gasPrice?: undefined | undefined;
|
|
1384
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1385
|
-
maxFeePerGas: bigint;
|
|
1386
|
-
maxPriorityFeePerGas: bigint;
|
|
1387
|
-
chainId: number;
|
|
1388
|
-
accessList: import('viem').AccessList;
|
|
1389
|
-
authorizationList?: undefined | undefined;
|
|
1390
|
-
hash: import('viem').Hash;
|
|
1391
|
-
input: import('viem').Hex;
|
|
1392
|
-
typeHex: import('viem').Hex | null;
|
|
1393
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
|
|
1394
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
|
|
1395
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
1396
|
-
} | {
|
|
1397
|
-
from: import('abitype').Address;
|
|
1398
|
-
gas: bigint;
|
|
1399
|
-
nonce: number;
|
|
1400
|
-
to: import('abitype').Address | null;
|
|
1401
|
-
type: "eip4844";
|
|
1402
|
-
value: bigint;
|
|
1403
|
-
r: import('viem').Hex;
|
|
1404
|
-
s: import('viem').Hex;
|
|
1405
|
-
v: bigint;
|
|
1406
|
-
yParity: number;
|
|
1407
|
-
blobVersionedHashes: readonly import('viem').Hex[];
|
|
1408
|
-
gasPrice?: undefined | undefined;
|
|
1409
|
-
maxFeePerBlobGas: bigint;
|
|
1410
|
-
maxFeePerGas: bigint;
|
|
1411
|
-
maxPriorityFeePerGas: bigint;
|
|
1412
|
-
chainId: number;
|
|
1413
|
-
accessList: import('viem').AccessList;
|
|
1414
|
-
authorizationList?: undefined | undefined;
|
|
1415
|
-
hash: import('viem').Hash;
|
|
1416
|
-
input: import('viem').Hex;
|
|
1417
|
-
typeHex: import('viem').Hex | null;
|
|
1418
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
|
|
1419
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
|
|
1420
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
1421
|
-
} | {
|
|
1422
|
-
from: import('abitype').Address;
|
|
1423
|
-
gas: bigint;
|
|
1424
|
-
nonce: number;
|
|
1425
|
-
to: import('abitype').Address | null;
|
|
1426
|
-
type: "eip7702";
|
|
1427
|
-
value: bigint;
|
|
1428
|
-
r: import('viem').Hex;
|
|
1429
|
-
s: import('viem').Hex;
|
|
1430
|
-
v: bigint;
|
|
1431
|
-
yParity: number;
|
|
1432
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1433
|
-
gasPrice?: undefined | undefined;
|
|
1434
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1435
|
-
maxFeePerGas: bigint;
|
|
1436
|
-
maxPriorityFeePerGas: bigint;
|
|
1437
|
-
chainId: number;
|
|
1438
|
-
accessList: import('viem').AccessList;
|
|
1439
|
-
authorizationList: import('viem').SignedAuthorizationList;
|
|
1440
|
-
hash: import('viem').Hash;
|
|
1441
|
-
input: import('viem').Hex;
|
|
1442
|
-
typeHex: import('viem').Hex | null;
|
|
1443
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
|
|
1444
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
|
|
1445
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
1446
|
-
})[] : `0x${string}`[];
|
|
1447
|
-
}>;
|
|
1448
|
-
getBlockNumber: (args?: import('viem').GetBlockNumberParameters | undefined) => Promise<import('viem').GetBlockNumberReturnType>;
|
|
1449
|
-
getBlockTransactionCount: (args?: import('viem').GetBlockTransactionCountParameters | undefined) => Promise<import('viem').GetBlockTransactionCountReturnType>;
|
|
1450
|
-
getBytecode: (args: import('viem').GetBytecodeParameters) => Promise<import('viem').GetBytecodeReturnType>;
|
|
1451
|
-
getChainId: () => Promise<import('viem').GetChainIdReturnType>;
|
|
1452
|
-
getCode: (args: import('viem').GetBytecodeParameters) => Promise<import('viem').GetBytecodeReturnType>;
|
|
1453
|
-
getContractEvents: <const abi extends import('abitype').Abi | readonly unknown[], eventName extends import('viem').ContractEventName<abi> | undefined = undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').GetContractEventsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import('viem').GetContractEventsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
1454
|
-
getEip712Domain: (args: import('viem').GetEip712DomainParameters) => Promise<import('viem').GetEip712DomainReturnType>;
|
|
1455
|
-
getEnsAddress: (args: import('viem').GetEnsAddressParameters) => Promise<import('viem').GetEnsAddressReturnType>;
|
|
1456
|
-
getEnsAvatar: (args: import('viem').GetEnsAvatarParameters) => Promise<import('viem').GetEnsAvatarReturnType>;
|
|
1457
|
-
getEnsName: (args: import('viem').GetEnsNameParameters) => Promise<import('viem').GetEnsNameReturnType>;
|
|
1458
|
-
getEnsResolver: (args: import('viem').GetEnsResolverParameters) => Promise<import('viem').GetEnsResolverReturnType>;
|
|
1459
|
-
getEnsText: (args: import('viem').GetEnsTextParameters) => Promise<import('viem').GetEnsTextReturnType>;
|
|
1460
|
-
getFeeHistory: (args: import('viem').GetFeeHistoryParameters) => Promise<import('viem').GetFeeHistoryReturnType>;
|
|
1461
|
-
estimateFeesPerGas: <chainOverride extends import('viem').Chain | undefined = undefined, type extends import('viem').FeeValuesType = "eip1559">(args?: import('viem').EstimateFeesPerGasParameters<{
|
|
1600
|
+
}>) => Promise<import('viem').GetTransactionConfirmationsReturnType>;
|
|
1601
|
+
getTransactionCount: (args: import('viem').GetTransactionCountParameters) => Promise<import('viem').GetTransactionCountReturnType>;
|
|
1602
|
+
getTransactionReceipt: (args: import('viem').GetTransactionReceiptParameters) => Promise<import('viem').TransactionReceipt>;
|
|
1603
|
+
multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import('viem').MulticallParameters<contracts, allowFailure>) => Promise<import('viem').MulticallReturnType<contracts, allowFailure>>;
|
|
1604
|
+
prepareTransactionRequest: <const request extends import('viem').PrepareTransactionRequestRequest<{
|
|
1462
1605
|
graphCliName: string;
|
|
1463
1606
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
1464
1607
|
blockExplorers: {
|
|
@@ -1468,13 +1611,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1468
1611
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1469
1612
|
};
|
|
1470
1613
|
};
|
|
1614
|
+
blockTime: 12000;
|
|
1471
1615
|
contracts: {
|
|
1472
|
-
readonly ensRegistry: {
|
|
1473
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1474
|
-
};
|
|
1475
1616
|
readonly ensUniversalResolver: {
|
|
1476
|
-
readonly address: "
|
|
1477
|
-
readonly blockCreated:
|
|
1617
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1618
|
+
readonly blockCreated: 23085558;
|
|
1478
1619
|
};
|
|
1479
1620
|
readonly multicall3: {
|
|
1480
1621
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1489,6 +1630,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1489
1630
|
readonly symbol: "ETH";
|
|
1490
1631
|
readonly decimals: 18;
|
|
1491
1632
|
};
|
|
1633
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1492
1634
|
rpcUrls: {
|
|
1493
1635
|
readonly default: {
|
|
1494
1636
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -1510,17 +1652,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1510
1652
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
1511
1653
|
};
|
|
1512
1654
|
};
|
|
1655
|
+
blockTime?: number | undefined | undefined;
|
|
1513
1656
|
contracts: {
|
|
1514
1657
|
readonly multicall3: {
|
|
1515
1658
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1516
1659
|
readonly blockCreated: 751532;
|
|
1517
1660
|
};
|
|
1518
|
-
readonly ensRegistry: {
|
|
1519
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1520
|
-
};
|
|
1521
1661
|
readonly ensUniversalResolver: {
|
|
1522
|
-
readonly address: "
|
|
1523
|
-
readonly blockCreated:
|
|
1662
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1663
|
+
readonly blockCreated: 8928790;
|
|
1524
1664
|
};
|
|
1525
1665
|
};
|
|
1526
1666
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1531,6 +1671,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1531
1671
|
readonly symbol: "ETH";
|
|
1532
1672
|
readonly decimals: 18;
|
|
1533
1673
|
};
|
|
1674
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1534
1675
|
rpcUrls: {
|
|
1535
1676
|
readonly default: {
|
|
1536
1677
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -1552,6 +1693,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1552
1693
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
1553
1694
|
};
|
|
1554
1695
|
};
|
|
1696
|
+
blockTime: 250;
|
|
1555
1697
|
contracts: {
|
|
1556
1698
|
readonly multicall3: {
|
|
1557
1699
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1566,6 +1708,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1566
1708
|
readonly symbol: "ETH";
|
|
1567
1709
|
readonly decimals: 18;
|
|
1568
1710
|
};
|
|
1711
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1569
1712
|
rpcUrls: {
|
|
1570
1713
|
readonly default: {
|
|
1571
1714
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -1587,6 +1730,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1587
1730
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
1588
1731
|
};
|
|
1589
1732
|
};
|
|
1733
|
+
blockTime: 250;
|
|
1590
1734
|
contracts: {
|
|
1591
1735
|
readonly multicall3: {
|
|
1592
1736
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1601,6 +1745,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1601
1745
|
readonly symbol: "ETH";
|
|
1602
1746
|
readonly decimals: 18;
|
|
1603
1747
|
};
|
|
1748
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1604
1749
|
rpcUrls: {
|
|
1605
1750
|
readonly default: {
|
|
1606
1751
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -1612,143 +1757,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1612
1757
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1613
1758
|
formatters?: undefined;
|
|
1614
1759
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1615
|
-
}, chainOverride
|
|
1616
|
-
getFilterChanges: <filterType extends import('viem').FilterType, const abi extends import('abitype').Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').GetFilterChangesParameters<filterType, abi, eventName, strict, fromBlock, toBlock>) => Promise<import('viem').GetFilterChangesReturnType<filterType, abi, eventName, strict, fromBlock, toBlock>>;
|
|
1617
|
-
getFilterLogs: <const abi extends import('abitype').Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args: import('viem').GetFilterLogsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import('viem').GetFilterLogsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
1618
|
-
getGasPrice: () => Promise<import('viem').GetGasPriceReturnType>;
|
|
1619
|
-
getLogs: <const abiEvent extends import('abitype').AbiEvent | undefined = undefined, const abiEvents extends readonly import('abitype').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('abitype').AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined, toBlock extends import('viem').BlockNumber | import('viem').BlockTag | undefined = undefined>(args?: import('viem').GetLogsParameters<abiEvent, abiEvents, strict, fromBlock, toBlock> | undefined) => Promise<import('viem').GetLogsReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock>>;
|
|
1620
|
-
getProof: (args: import('viem').GetProofParameters) => Promise<import('viem').GetProofReturnType>;
|
|
1621
|
-
estimateMaxPriorityFeePerGas: <chainOverride extends import('viem').Chain | undefined = undefined>(args?: {
|
|
1622
|
-
chain?: chainOverride | null | undefined;
|
|
1623
|
-
} | undefined) => Promise<import('viem').EstimateMaxPriorityFeePerGasReturnType>;
|
|
1624
|
-
getStorageAt: (args: import('viem').GetStorageAtParameters) => Promise<import('viem').GetStorageAtReturnType>;
|
|
1625
|
-
getTransaction: <blockTag extends import('viem').BlockTag = "latest">(args: import('viem').GetTransactionParameters<blockTag>) => Promise<{
|
|
1626
|
-
from: import('abitype').Address;
|
|
1627
|
-
gas: bigint;
|
|
1628
|
-
nonce: number;
|
|
1629
|
-
to: import('abitype').Address | null;
|
|
1630
|
-
type: "legacy";
|
|
1631
|
-
value: bigint;
|
|
1632
|
-
r: import('viem').Hex;
|
|
1633
|
-
s: import('viem').Hex;
|
|
1634
|
-
v: bigint;
|
|
1635
|
-
yParity?: undefined | undefined;
|
|
1636
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1637
|
-
gasPrice: bigint;
|
|
1638
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1639
|
-
maxFeePerGas?: undefined | undefined;
|
|
1640
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1641
|
-
chainId?: number | undefined;
|
|
1642
|
-
accessList?: undefined | undefined;
|
|
1643
|
-
authorizationList?: undefined | undefined;
|
|
1644
|
-
hash: import('viem').Hash;
|
|
1645
|
-
input: import('viem').Hex;
|
|
1646
|
-
typeHex: import('viem').Hex | null;
|
|
1647
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
1648
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
|
|
1649
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
1650
|
-
} | {
|
|
1651
|
-
from: import('abitype').Address;
|
|
1652
|
-
gas: bigint;
|
|
1653
|
-
nonce: number;
|
|
1654
|
-
to: import('abitype').Address | null;
|
|
1655
|
-
type: "eip2930";
|
|
1656
|
-
value: bigint;
|
|
1657
|
-
r: import('viem').Hex;
|
|
1658
|
-
s: import('viem').Hex;
|
|
1659
|
-
v: bigint;
|
|
1660
|
-
yParity: number;
|
|
1661
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1662
|
-
gasPrice: bigint;
|
|
1663
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1664
|
-
maxFeePerGas?: undefined | undefined;
|
|
1665
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1666
|
-
chainId: number;
|
|
1667
|
-
accessList: import('viem').AccessList;
|
|
1668
|
-
authorizationList?: undefined | undefined;
|
|
1669
|
-
hash: import('viem').Hash;
|
|
1670
|
-
input: import('viem').Hex;
|
|
1671
|
-
typeHex: import('viem').Hex | null;
|
|
1672
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
|
|
1673
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
|
|
1674
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
1675
|
-
} | {
|
|
1676
|
-
from: import('abitype').Address;
|
|
1677
|
-
gas: bigint;
|
|
1678
|
-
nonce: number;
|
|
1679
|
-
to: import('abitype').Address | null;
|
|
1680
|
-
type: "eip1559";
|
|
1681
|
-
value: bigint;
|
|
1682
|
-
r: import('viem').Hex;
|
|
1683
|
-
s: import('viem').Hex;
|
|
1684
|
-
v: bigint;
|
|
1685
|
-
yParity: number;
|
|
1686
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1687
|
-
gasPrice?: undefined | undefined;
|
|
1688
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1689
|
-
maxFeePerGas: bigint;
|
|
1690
|
-
maxPriorityFeePerGas: bigint;
|
|
1691
|
-
chainId: number;
|
|
1692
|
-
accessList: import('viem').AccessList;
|
|
1693
|
-
authorizationList?: undefined | undefined;
|
|
1694
|
-
hash: import('viem').Hash;
|
|
1695
|
-
input: import('viem').Hex;
|
|
1696
|
-
typeHex: import('viem').Hex | null;
|
|
1697
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
|
|
1698
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
|
|
1699
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
1700
|
-
} | {
|
|
1701
|
-
from: import('abitype').Address;
|
|
1702
|
-
gas: bigint;
|
|
1703
|
-
nonce: number;
|
|
1704
|
-
to: import('abitype').Address | null;
|
|
1705
|
-
type: "eip4844";
|
|
1706
|
-
value: bigint;
|
|
1707
|
-
r: import('viem').Hex;
|
|
1708
|
-
s: import('viem').Hex;
|
|
1709
|
-
v: bigint;
|
|
1710
|
-
yParity: number;
|
|
1711
|
-
blobVersionedHashes: readonly import('viem').Hex[];
|
|
1712
|
-
gasPrice?: undefined | undefined;
|
|
1713
|
-
maxFeePerBlobGas: bigint;
|
|
1714
|
-
maxFeePerGas: bigint;
|
|
1715
|
-
maxPriorityFeePerGas: bigint;
|
|
1716
|
-
chainId: number;
|
|
1717
|
-
accessList: import('viem').AccessList;
|
|
1718
|
-
authorizationList?: undefined | undefined;
|
|
1719
|
-
hash: import('viem').Hash;
|
|
1720
|
-
input: import('viem').Hex;
|
|
1721
|
-
typeHex: import('viem').Hex | null;
|
|
1722
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
|
|
1723
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
|
|
1724
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
1725
|
-
} | {
|
|
1726
|
-
from: import('abitype').Address;
|
|
1727
|
-
gas: bigint;
|
|
1728
|
-
nonce: number;
|
|
1729
|
-
to: import('abitype').Address | null;
|
|
1730
|
-
type: "eip7702";
|
|
1731
|
-
value: bigint;
|
|
1732
|
-
r: import('viem').Hex;
|
|
1733
|
-
s: import('viem').Hex;
|
|
1734
|
-
v: bigint;
|
|
1735
|
-
yParity: number;
|
|
1736
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1737
|
-
gasPrice?: undefined | undefined;
|
|
1738
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1739
|
-
maxFeePerGas: bigint;
|
|
1740
|
-
maxPriorityFeePerGas: bigint;
|
|
1741
|
-
chainId: number;
|
|
1742
|
-
accessList: import('viem').AccessList;
|
|
1743
|
-
authorizationList: import('viem').SignedAuthorizationList;
|
|
1744
|
-
hash: import('viem').Hash;
|
|
1745
|
-
input: import('viem').Hex;
|
|
1746
|
-
typeHex: import('viem').Hex | null;
|
|
1747
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
|
|
1748
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
|
|
1749
|
-
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
1750
|
-
}>;
|
|
1751
|
-
getTransactionConfirmations: (args: import('viem').GetTransactionConfirmationsParameters<{
|
|
1760
|
+
}, chainOverride>, chainOverride extends import('viem').Chain | undefined = undefined, accountOverride extends import('viem').Account | import('abitype').Address | undefined = undefined>(args: import('viem').PrepareTransactionRequestParameters<{
|
|
1752
1761
|
graphCliName: string;
|
|
1753
1762
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
1754
1763
|
blockExplorers: {
|
|
@@ -1758,13 +1767,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1758
1767
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1759
1768
|
};
|
|
1760
1769
|
};
|
|
1770
|
+
blockTime: 12000;
|
|
1761
1771
|
contracts: {
|
|
1762
|
-
readonly ensRegistry: {
|
|
1763
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1764
|
-
};
|
|
1765
1772
|
readonly ensUniversalResolver: {
|
|
1766
|
-
readonly address: "
|
|
1767
|
-
readonly blockCreated:
|
|
1773
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1774
|
+
readonly blockCreated: 23085558;
|
|
1768
1775
|
};
|
|
1769
1776
|
readonly multicall3: {
|
|
1770
1777
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1779,6 +1786,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1779
1786
|
readonly symbol: "ETH";
|
|
1780
1787
|
readonly decimals: 18;
|
|
1781
1788
|
};
|
|
1789
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1782
1790
|
rpcUrls: {
|
|
1783
1791
|
readonly default: {
|
|
1784
1792
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -1800,17 +1808,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1800
1808
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
1801
1809
|
};
|
|
1802
1810
|
};
|
|
1811
|
+
blockTime?: number | undefined | undefined;
|
|
1803
1812
|
contracts: {
|
|
1804
1813
|
readonly multicall3: {
|
|
1805
1814
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1806
1815
|
readonly blockCreated: 751532;
|
|
1807
1816
|
};
|
|
1808
|
-
readonly ensRegistry: {
|
|
1809
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1810
|
-
};
|
|
1811
1817
|
readonly ensUniversalResolver: {
|
|
1812
|
-
readonly address: "
|
|
1813
|
-
readonly blockCreated:
|
|
1818
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1819
|
+
readonly blockCreated: 8928790;
|
|
1814
1820
|
};
|
|
1815
1821
|
};
|
|
1816
1822
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1821,6 +1827,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1821
1827
|
readonly symbol: "ETH";
|
|
1822
1828
|
readonly decimals: 18;
|
|
1823
1829
|
};
|
|
1830
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1824
1831
|
rpcUrls: {
|
|
1825
1832
|
readonly default: {
|
|
1826
1833
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -1842,6 +1849,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1842
1849
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
1843
1850
|
};
|
|
1844
1851
|
};
|
|
1852
|
+
blockTime: 250;
|
|
1845
1853
|
contracts: {
|
|
1846
1854
|
readonly multicall3: {
|
|
1847
1855
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1856,6 +1864,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1856
1864
|
readonly symbol: "ETH";
|
|
1857
1865
|
readonly decimals: 18;
|
|
1858
1866
|
};
|
|
1867
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1859
1868
|
rpcUrls: {
|
|
1860
1869
|
readonly default: {
|
|
1861
1870
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -1877,6 +1886,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1877
1886
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
1878
1887
|
};
|
|
1879
1888
|
};
|
|
1889
|
+
blockTime: 250;
|
|
1880
1890
|
contracts: {
|
|
1881
1891
|
readonly multicall3: {
|
|
1882
1892
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1891,6 +1901,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1891
1901
|
readonly symbol: "ETH";
|
|
1892
1902
|
readonly decimals: 18;
|
|
1893
1903
|
};
|
|
1904
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1894
1905
|
rpcUrls: {
|
|
1895
1906
|
readonly default: {
|
|
1896
1907
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -1902,11 +1913,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1902
1913
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1903
1914
|
formatters?: undefined;
|
|
1904
1915
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1905
|
-
}>) => Promise<import('viem').
|
|
1906
|
-
getTransactionCount: (args: import('viem').GetTransactionCountParameters) => Promise<import('viem').GetTransactionCountReturnType>;
|
|
1907
|
-
getTransactionReceipt: (args: import('viem').GetTransactionReceiptParameters) => Promise<import('viem').TransactionReceipt>;
|
|
1908
|
-
multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import('viem').MulticallParameters<contracts, allowFailure>) => Promise<import('viem').MulticallReturnType<contracts, allowFailure>>;
|
|
1909
|
-
prepareTransactionRequest: <const request extends import('viem').PrepareTransactionRequestRequest<{
|
|
1916
|
+
}, import('viem').Account | undefined, chainOverride, accountOverride, request>) => Promise<import('viem').UnionRequiredBy<Extract<import('viem').UnionOmit<import('viem').ExtractChainFormatterParameters<import('viem').DeriveChain<{
|
|
1910
1917
|
graphCliName: string;
|
|
1911
1918
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
1912
1919
|
blockExplorers: {
|
|
@@ -1916,13 +1923,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1916
1923
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1917
1924
|
};
|
|
1918
1925
|
};
|
|
1926
|
+
blockTime: 12000;
|
|
1919
1927
|
contracts: {
|
|
1920
|
-
readonly ensRegistry: {
|
|
1921
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1922
|
-
};
|
|
1923
1928
|
readonly ensUniversalResolver: {
|
|
1924
|
-
readonly address: "
|
|
1925
|
-
readonly blockCreated:
|
|
1929
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1930
|
+
readonly blockCreated: 23085558;
|
|
1926
1931
|
};
|
|
1927
1932
|
readonly multicall3: {
|
|
1928
1933
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1937,6 +1942,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1937
1942
|
readonly symbol: "ETH";
|
|
1938
1943
|
readonly decimals: 18;
|
|
1939
1944
|
};
|
|
1945
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1940
1946
|
rpcUrls: {
|
|
1941
1947
|
readonly default: {
|
|
1942
1948
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -1958,17 +1964,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1958
1964
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
1959
1965
|
};
|
|
1960
1966
|
};
|
|
1967
|
+
blockTime?: number | undefined | undefined;
|
|
1961
1968
|
contracts: {
|
|
1962
1969
|
readonly multicall3: {
|
|
1963
1970
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1964
1971
|
readonly blockCreated: 751532;
|
|
1965
1972
|
};
|
|
1966
|
-
readonly ensRegistry: {
|
|
1967
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1968
|
-
};
|
|
1969
1973
|
readonly ensUniversalResolver: {
|
|
1970
|
-
readonly address: "
|
|
1971
|
-
readonly blockCreated:
|
|
1974
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1975
|
+
readonly blockCreated: 8928790;
|
|
1972
1976
|
};
|
|
1973
1977
|
};
|
|
1974
1978
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1979,6 +1983,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1979
1983
|
readonly symbol: "ETH";
|
|
1980
1984
|
readonly decimals: 18;
|
|
1981
1985
|
};
|
|
1986
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1982
1987
|
rpcUrls: {
|
|
1983
1988
|
readonly default: {
|
|
1984
1989
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -2000,6 +2005,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2000
2005
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2001
2006
|
};
|
|
2002
2007
|
};
|
|
2008
|
+
blockTime: 250;
|
|
2003
2009
|
contracts: {
|
|
2004
2010
|
readonly multicall3: {
|
|
2005
2011
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2014,6 +2020,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2014
2020
|
readonly symbol: "ETH";
|
|
2015
2021
|
readonly decimals: 18;
|
|
2016
2022
|
};
|
|
2023
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2017
2024
|
rpcUrls: {
|
|
2018
2025
|
readonly default: {
|
|
2019
2026
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -2035,6 +2042,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2035
2042
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2036
2043
|
};
|
|
2037
2044
|
};
|
|
2045
|
+
blockTime: 250;
|
|
2038
2046
|
contracts: {
|
|
2039
2047
|
readonly multicall3: {
|
|
2040
2048
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2049,6 +2057,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2049
2057
|
readonly symbol: "ETH";
|
|
2050
2058
|
readonly decimals: 18;
|
|
2051
2059
|
};
|
|
2060
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2052
2061
|
rpcUrls: {
|
|
2053
2062
|
readonly default: {
|
|
2054
2063
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -2060,7 +2069,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2060
2069
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2061
2070
|
formatters?: undefined;
|
|
2062
2071
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2063
|
-
}, chainOverride>,
|
|
2072
|
+
}, chainOverride>, "transactionRequest", import('viem').TransactionRequest>, "from"> & (import('viem').DeriveChain<{
|
|
2064
2073
|
graphCliName: string;
|
|
2065
2074
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2066
2075
|
blockExplorers: {
|
|
@@ -2070,13 +2079,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2070
2079
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
2071
2080
|
};
|
|
2072
2081
|
};
|
|
2082
|
+
blockTime: 12000;
|
|
2073
2083
|
contracts: {
|
|
2074
|
-
readonly ensRegistry: {
|
|
2075
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2076
|
-
};
|
|
2077
2084
|
readonly ensUniversalResolver: {
|
|
2078
|
-
readonly address: "
|
|
2079
|
-
readonly blockCreated:
|
|
2085
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2086
|
+
readonly blockCreated: 23085558;
|
|
2080
2087
|
};
|
|
2081
2088
|
readonly multicall3: {
|
|
2082
2089
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2091,6 +2098,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2091
2098
|
readonly symbol: "ETH";
|
|
2092
2099
|
readonly decimals: 18;
|
|
2093
2100
|
};
|
|
2101
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2094
2102
|
rpcUrls: {
|
|
2095
2103
|
readonly default: {
|
|
2096
2104
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -2112,17 +2120,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2112
2120
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
2113
2121
|
};
|
|
2114
2122
|
};
|
|
2123
|
+
blockTime?: number | undefined | undefined;
|
|
2115
2124
|
contracts: {
|
|
2116
2125
|
readonly multicall3: {
|
|
2117
2126
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2118
2127
|
readonly blockCreated: 751532;
|
|
2119
2128
|
};
|
|
2120
|
-
readonly ensRegistry: {
|
|
2121
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2122
|
-
};
|
|
2123
2129
|
readonly ensUniversalResolver: {
|
|
2124
|
-
readonly address: "
|
|
2125
|
-
readonly blockCreated:
|
|
2130
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2131
|
+
readonly blockCreated: 8928790;
|
|
2126
2132
|
};
|
|
2127
2133
|
};
|
|
2128
2134
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -2133,6 +2139,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2133
2139
|
readonly symbol: "ETH";
|
|
2134
2140
|
readonly decimals: 18;
|
|
2135
2141
|
};
|
|
2142
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2136
2143
|
rpcUrls: {
|
|
2137
2144
|
readonly default: {
|
|
2138
2145
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -2154,6 +2161,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2154
2161
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2155
2162
|
};
|
|
2156
2163
|
};
|
|
2164
|
+
blockTime: 250;
|
|
2157
2165
|
contracts: {
|
|
2158
2166
|
readonly multicall3: {
|
|
2159
2167
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2168,6 +2176,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2168
2176
|
readonly symbol: "ETH";
|
|
2169
2177
|
readonly decimals: 18;
|
|
2170
2178
|
};
|
|
2179
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2171
2180
|
rpcUrls: {
|
|
2172
2181
|
readonly default: {
|
|
2173
2182
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -2189,6 +2198,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2189
2198
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2190
2199
|
};
|
|
2191
2200
|
};
|
|
2201
|
+
blockTime: 250;
|
|
2192
2202
|
contracts: {
|
|
2193
2203
|
readonly multicall3: {
|
|
2194
2204
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2203,6 +2213,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2203
2213
|
readonly symbol: "ETH";
|
|
2204
2214
|
readonly decimals: 18;
|
|
2205
2215
|
};
|
|
2216
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2206
2217
|
rpcUrls: {
|
|
2207
2218
|
readonly default: {
|
|
2208
2219
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -2214,7 +2225,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2214
2225
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2215
2226
|
formatters?: undefined;
|
|
2216
2227
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2217
|
-
},
|
|
2228
|
+
}, chainOverride> extends infer T_14 ? T_14 extends import('viem').DeriveChain<{
|
|
2218
2229
|
graphCliName: string;
|
|
2219
2230
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2220
2231
|
blockExplorers: {
|
|
@@ -2224,13 +2235,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2224
2235
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
2225
2236
|
};
|
|
2226
2237
|
};
|
|
2238
|
+
blockTime: 12000;
|
|
2227
2239
|
contracts: {
|
|
2228
|
-
readonly ensRegistry: {
|
|
2229
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2230
|
-
};
|
|
2231
2240
|
readonly ensUniversalResolver: {
|
|
2232
|
-
readonly address: "
|
|
2233
|
-
readonly blockCreated:
|
|
2241
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2242
|
+
readonly blockCreated: 23085558;
|
|
2234
2243
|
};
|
|
2235
2244
|
readonly multicall3: {
|
|
2236
2245
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2245,6 +2254,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2245
2254
|
readonly symbol: "ETH";
|
|
2246
2255
|
readonly decimals: 18;
|
|
2247
2256
|
};
|
|
2257
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2248
2258
|
rpcUrls: {
|
|
2249
2259
|
readonly default: {
|
|
2250
2260
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -2266,325 +2276,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2266
2276
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
2267
2277
|
};
|
|
2268
2278
|
};
|
|
2279
|
+
blockTime?: number | undefined | undefined;
|
|
2269
2280
|
contracts: {
|
|
2270
2281
|
readonly multicall3: {
|
|
2271
2282
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2272
2283
|
readonly blockCreated: 751532;
|
|
2273
2284
|
};
|
|
2274
|
-
readonly ensRegistry: {
|
|
2275
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2276
|
-
};
|
|
2277
2285
|
readonly ensUniversalResolver: {
|
|
2278
|
-
readonly address: "
|
|
2279
|
-
readonly blockCreated:
|
|
2280
|
-
};
|
|
2281
|
-
};
|
|
2282
|
-
ensTlds?: readonly string[] | undefined;
|
|
2283
|
-
id: 11155111;
|
|
2284
|
-
name: "Sepolia";
|
|
2285
|
-
nativeCurrency: {
|
|
2286
|
-
readonly name: "Sepolia Ether";
|
|
2287
|
-
readonly symbol: "ETH";
|
|
2288
|
-
readonly decimals: 18;
|
|
2289
|
-
};
|
|
2290
|
-
rpcUrls: {
|
|
2291
|
-
readonly default: {
|
|
2292
|
-
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
2293
|
-
};
|
|
2294
|
-
};
|
|
2295
|
-
sourceId?: number | undefined | undefined;
|
|
2296
|
-
testnet: true;
|
|
2297
|
-
custom?: Record<string, unknown> | undefined;
|
|
2298
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2299
|
-
formatters?: undefined;
|
|
2300
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2301
|
-
} | {
|
|
2302
|
-
graphCliName: string;
|
|
2303
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2304
|
-
blockExplorers: {
|
|
2305
|
-
readonly default: {
|
|
2306
|
-
readonly name: "Arbiscan";
|
|
2307
|
-
readonly url: "https://arbiscan.io";
|
|
2308
|
-
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2309
|
-
};
|
|
2310
|
-
};
|
|
2311
|
-
contracts: {
|
|
2312
|
-
readonly multicall3: {
|
|
2313
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2314
|
-
readonly blockCreated: 7654707;
|
|
2315
|
-
};
|
|
2316
|
-
};
|
|
2317
|
-
ensTlds?: readonly string[] | undefined;
|
|
2318
|
-
id: 42161;
|
|
2319
|
-
name: "Arbitrum One";
|
|
2320
|
-
nativeCurrency: {
|
|
2321
|
-
readonly name: "Ether";
|
|
2322
|
-
readonly symbol: "ETH";
|
|
2323
|
-
readonly decimals: 18;
|
|
2324
|
-
};
|
|
2325
|
-
rpcUrls: {
|
|
2326
|
-
readonly default: {
|
|
2327
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
2328
|
-
};
|
|
2329
|
-
};
|
|
2330
|
-
sourceId?: number | undefined | undefined;
|
|
2331
|
-
testnet?: boolean | undefined | undefined;
|
|
2332
|
-
custom?: Record<string, unknown> | undefined;
|
|
2333
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2334
|
-
formatters?: undefined;
|
|
2335
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2336
|
-
} | {
|
|
2337
|
-
graphCliName: string;
|
|
2338
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2339
|
-
blockExplorers: {
|
|
2340
|
-
readonly default: {
|
|
2341
|
-
readonly name: "Arbiscan";
|
|
2342
|
-
readonly url: "https://sepolia.arbiscan.io";
|
|
2343
|
-
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2344
|
-
};
|
|
2345
|
-
};
|
|
2346
|
-
contracts: {
|
|
2347
|
-
readonly multicall3: {
|
|
2348
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2349
|
-
readonly blockCreated: 81930;
|
|
2350
|
-
};
|
|
2351
|
-
};
|
|
2352
|
-
ensTlds?: readonly string[] | undefined;
|
|
2353
|
-
id: 421614;
|
|
2354
|
-
name: "Arbitrum Sepolia";
|
|
2355
|
-
nativeCurrency: {
|
|
2356
|
-
readonly name: "Arbitrum Sepolia Ether";
|
|
2357
|
-
readonly symbol: "ETH";
|
|
2358
|
-
readonly decimals: 18;
|
|
2359
|
-
};
|
|
2360
|
-
rpcUrls: {
|
|
2361
|
-
readonly default: {
|
|
2362
|
-
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2363
|
-
};
|
|
2364
|
-
};
|
|
2365
|
-
sourceId?: number | undefined | undefined;
|
|
2366
|
-
testnet: true;
|
|
2367
|
-
custom?: Record<string, unknown> | undefined;
|
|
2368
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2369
|
-
formatters?: undefined;
|
|
2370
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2371
|
-
}, chainOverride>, "transactionRequest", import('viem').TransactionRequest>, "from"> & (import('viem').DeriveChain<{
|
|
2372
|
-
graphCliName: string;
|
|
2373
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2374
|
-
blockExplorers: {
|
|
2375
|
-
readonly default: {
|
|
2376
|
-
readonly name: "Etherscan";
|
|
2377
|
-
readonly url: "https://etherscan.io";
|
|
2378
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
2379
|
-
};
|
|
2380
|
-
};
|
|
2381
|
-
contracts: {
|
|
2382
|
-
readonly ensRegistry: {
|
|
2383
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2384
|
-
};
|
|
2385
|
-
readonly ensUniversalResolver: {
|
|
2386
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
2387
|
-
readonly blockCreated: 19258213;
|
|
2388
|
-
};
|
|
2389
|
-
readonly multicall3: {
|
|
2390
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2391
|
-
readonly blockCreated: 14353601;
|
|
2392
|
-
};
|
|
2393
|
-
};
|
|
2394
|
-
ensTlds?: readonly string[] | undefined;
|
|
2395
|
-
id: 1;
|
|
2396
|
-
name: "Ethereum";
|
|
2397
|
-
nativeCurrency: {
|
|
2398
|
-
readonly name: "Ether";
|
|
2399
|
-
readonly symbol: "ETH";
|
|
2400
|
-
readonly decimals: 18;
|
|
2401
|
-
};
|
|
2402
|
-
rpcUrls: {
|
|
2403
|
-
readonly default: {
|
|
2404
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
2405
|
-
};
|
|
2406
|
-
};
|
|
2407
|
-
sourceId?: number | undefined | undefined;
|
|
2408
|
-
testnet?: boolean | undefined | undefined;
|
|
2409
|
-
custom?: Record<string, unknown> | undefined;
|
|
2410
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2411
|
-
formatters?: undefined;
|
|
2412
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2413
|
-
} | {
|
|
2414
|
-
graphCliName: string;
|
|
2415
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2416
|
-
blockExplorers: {
|
|
2417
|
-
readonly default: {
|
|
2418
|
-
readonly name: "Etherscan";
|
|
2419
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
2420
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
2421
|
-
};
|
|
2422
|
-
};
|
|
2423
|
-
contracts: {
|
|
2424
|
-
readonly multicall3: {
|
|
2425
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2426
|
-
readonly blockCreated: 751532;
|
|
2427
|
-
};
|
|
2428
|
-
readonly ensRegistry: {
|
|
2429
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2430
|
-
};
|
|
2431
|
-
readonly ensUniversalResolver: {
|
|
2432
|
-
readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
|
|
2433
|
-
readonly blockCreated: 5317080;
|
|
2434
|
-
};
|
|
2435
|
-
};
|
|
2436
|
-
ensTlds?: readonly string[] | undefined;
|
|
2437
|
-
id: 11155111;
|
|
2438
|
-
name: "Sepolia";
|
|
2439
|
-
nativeCurrency: {
|
|
2440
|
-
readonly name: "Sepolia Ether";
|
|
2441
|
-
readonly symbol: "ETH";
|
|
2442
|
-
readonly decimals: 18;
|
|
2443
|
-
};
|
|
2444
|
-
rpcUrls: {
|
|
2445
|
-
readonly default: {
|
|
2446
|
-
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
2447
|
-
};
|
|
2448
|
-
};
|
|
2449
|
-
sourceId?: number | undefined | undefined;
|
|
2450
|
-
testnet: true;
|
|
2451
|
-
custom?: Record<string, unknown> | undefined;
|
|
2452
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2453
|
-
formatters?: undefined;
|
|
2454
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2455
|
-
} | {
|
|
2456
|
-
graphCliName: string;
|
|
2457
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2458
|
-
blockExplorers: {
|
|
2459
|
-
readonly default: {
|
|
2460
|
-
readonly name: "Arbiscan";
|
|
2461
|
-
readonly url: "https://arbiscan.io";
|
|
2462
|
-
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2463
|
-
};
|
|
2464
|
-
};
|
|
2465
|
-
contracts: {
|
|
2466
|
-
readonly multicall3: {
|
|
2467
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2468
|
-
readonly blockCreated: 7654707;
|
|
2469
|
-
};
|
|
2470
|
-
};
|
|
2471
|
-
ensTlds?: readonly string[] | undefined;
|
|
2472
|
-
id: 42161;
|
|
2473
|
-
name: "Arbitrum One";
|
|
2474
|
-
nativeCurrency: {
|
|
2475
|
-
readonly name: "Ether";
|
|
2476
|
-
readonly symbol: "ETH";
|
|
2477
|
-
readonly decimals: 18;
|
|
2478
|
-
};
|
|
2479
|
-
rpcUrls: {
|
|
2480
|
-
readonly default: {
|
|
2481
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
2482
|
-
};
|
|
2483
|
-
};
|
|
2484
|
-
sourceId?: number | undefined | undefined;
|
|
2485
|
-
testnet?: boolean | undefined | undefined;
|
|
2486
|
-
custom?: Record<string, unknown> | undefined;
|
|
2487
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2488
|
-
formatters?: undefined;
|
|
2489
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2490
|
-
} | {
|
|
2491
|
-
graphCliName: string;
|
|
2492
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2493
|
-
blockExplorers: {
|
|
2494
|
-
readonly default: {
|
|
2495
|
-
readonly name: "Arbiscan";
|
|
2496
|
-
readonly url: "https://sepolia.arbiscan.io";
|
|
2497
|
-
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2498
|
-
};
|
|
2499
|
-
};
|
|
2500
|
-
contracts: {
|
|
2501
|
-
readonly multicall3: {
|
|
2502
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2503
|
-
readonly blockCreated: 81930;
|
|
2504
|
-
};
|
|
2505
|
-
};
|
|
2506
|
-
ensTlds?: readonly string[] | undefined;
|
|
2507
|
-
id: 421614;
|
|
2508
|
-
name: "Arbitrum Sepolia";
|
|
2509
|
-
nativeCurrency: {
|
|
2510
|
-
readonly name: "Arbitrum Sepolia Ether";
|
|
2511
|
-
readonly symbol: "ETH";
|
|
2512
|
-
readonly decimals: 18;
|
|
2513
|
-
};
|
|
2514
|
-
rpcUrls: {
|
|
2515
|
-
readonly default: {
|
|
2516
|
-
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2517
|
-
};
|
|
2518
|
-
};
|
|
2519
|
-
sourceId?: number | undefined | undefined;
|
|
2520
|
-
testnet: true;
|
|
2521
|
-
custom?: Record<string, unknown> | undefined;
|
|
2522
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2523
|
-
formatters?: undefined;
|
|
2524
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2525
|
-
}, chainOverride> extends infer T_14 ? T_14 extends import('viem').DeriveChain<{
|
|
2526
|
-
graphCliName: string;
|
|
2527
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2528
|
-
blockExplorers: {
|
|
2529
|
-
readonly default: {
|
|
2530
|
-
readonly name: "Etherscan";
|
|
2531
|
-
readonly url: "https://etherscan.io";
|
|
2532
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
2533
|
-
};
|
|
2534
|
-
};
|
|
2535
|
-
contracts: {
|
|
2536
|
-
readonly ensRegistry: {
|
|
2537
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2538
|
-
};
|
|
2539
|
-
readonly ensUniversalResolver: {
|
|
2540
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
2541
|
-
readonly blockCreated: 19258213;
|
|
2542
|
-
};
|
|
2543
|
-
readonly multicall3: {
|
|
2544
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2545
|
-
readonly blockCreated: 14353601;
|
|
2546
|
-
};
|
|
2547
|
-
};
|
|
2548
|
-
ensTlds?: readonly string[] | undefined;
|
|
2549
|
-
id: 1;
|
|
2550
|
-
name: "Ethereum";
|
|
2551
|
-
nativeCurrency: {
|
|
2552
|
-
readonly name: "Ether";
|
|
2553
|
-
readonly symbol: "ETH";
|
|
2554
|
-
readonly decimals: 18;
|
|
2555
|
-
};
|
|
2556
|
-
rpcUrls: {
|
|
2557
|
-
readonly default: {
|
|
2558
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
2559
|
-
};
|
|
2560
|
-
};
|
|
2561
|
-
sourceId?: number | undefined | undefined;
|
|
2562
|
-
testnet?: boolean | undefined | undefined;
|
|
2563
|
-
custom?: Record<string, unknown> | undefined;
|
|
2564
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2565
|
-
formatters?: undefined;
|
|
2566
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2567
|
-
} | {
|
|
2568
|
-
graphCliName: string;
|
|
2569
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
2570
|
-
blockExplorers: {
|
|
2571
|
-
readonly default: {
|
|
2572
|
-
readonly name: "Etherscan";
|
|
2573
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
2574
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
2575
|
-
};
|
|
2576
|
-
};
|
|
2577
|
-
contracts: {
|
|
2578
|
-
readonly multicall3: {
|
|
2579
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2580
|
-
readonly blockCreated: 751532;
|
|
2581
|
-
};
|
|
2582
|
-
readonly ensRegistry: {
|
|
2583
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2584
|
-
};
|
|
2585
|
-
readonly ensUniversalResolver: {
|
|
2586
|
-
readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
|
|
2587
|
-
readonly blockCreated: 5317080;
|
|
2286
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2287
|
+
readonly blockCreated: 8928790;
|
|
2588
2288
|
};
|
|
2589
2289
|
};
|
|
2590
2290
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -2595,6 +2295,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2595
2295
|
readonly symbol: "ETH";
|
|
2596
2296
|
readonly decimals: 18;
|
|
2597
2297
|
};
|
|
2298
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2598
2299
|
rpcUrls: {
|
|
2599
2300
|
readonly default: {
|
|
2600
2301
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -2616,6 +2317,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2616
2317
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2617
2318
|
};
|
|
2618
2319
|
};
|
|
2320
|
+
blockTime: 250;
|
|
2619
2321
|
contracts: {
|
|
2620
2322
|
readonly multicall3: {
|
|
2621
2323
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2630,6 +2332,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2630
2332
|
readonly symbol: "ETH";
|
|
2631
2333
|
readonly decimals: 18;
|
|
2632
2334
|
};
|
|
2335
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2633
2336
|
rpcUrls: {
|
|
2634
2337
|
readonly default: {
|
|
2635
2338
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -2651,6 +2354,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2651
2354
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2652
2355
|
};
|
|
2653
2356
|
};
|
|
2357
|
+
blockTime: 250;
|
|
2654
2358
|
contracts: {
|
|
2655
2359
|
readonly multicall3: {
|
|
2656
2360
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2665,6 +2369,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2665
2369
|
readonly symbol: "ETH";
|
|
2666
2370
|
readonly decimals: 18;
|
|
2667
2371
|
};
|
|
2372
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2668
2373
|
rpcUrls: {
|
|
2669
2374
|
readonly default: {
|
|
2670
2375
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -5938,13 +5643,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5938
5643
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
5939
5644
|
};
|
|
5940
5645
|
};
|
|
5646
|
+
blockTime: 12000;
|
|
5941
5647
|
contracts: {
|
|
5942
|
-
readonly ensRegistry: {
|
|
5943
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
5944
|
-
};
|
|
5945
5648
|
readonly ensUniversalResolver: {
|
|
5946
|
-
readonly address: "
|
|
5947
|
-
readonly blockCreated:
|
|
5649
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5650
|
+
readonly blockCreated: 23085558;
|
|
5948
5651
|
};
|
|
5949
5652
|
readonly multicall3: {
|
|
5950
5653
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -5959,6 +5662,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5959
5662
|
readonly symbol: "ETH";
|
|
5960
5663
|
readonly decimals: 18;
|
|
5961
5664
|
};
|
|
5665
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
5962
5666
|
rpcUrls: {
|
|
5963
5667
|
readonly default: {
|
|
5964
5668
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -5980,17 +5684,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5980
5684
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
5981
5685
|
};
|
|
5982
5686
|
};
|
|
5687
|
+
blockTime?: number | undefined | undefined;
|
|
5983
5688
|
contracts: {
|
|
5984
5689
|
readonly multicall3: {
|
|
5985
5690
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
5986
5691
|
readonly blockCreated: 751532;
|
|
5987
5692
|
};
|
|
5988
|
-
readonly ensRegistry: {
|
|
5989
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
5990
|
-
};
|
|
5991
5693
|
readonly ensUniversalResolver: {
|
|
5992
|
-
readonly address: "
|
|
5993
|
-
readonly blockCreated:
|
|
5694
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5695
|
+
readonly blockCreated: 8928790;
|
|
5994
5696
|
};
|
|
5995
5697
|
};
|
|
5996
5698
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -6001,6 +5703,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6001
5703
|
readonly symbol: "ETH";
|
|
6002
5704
|
readonly decimals: 18;
|
|
6003
5705
|
};
|
|
5706
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6004
5707
|
rpcUrls: {
|
|
6005
5708
|
readonly default: {
|
|
6006
5709
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -6022,6 +5725,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6022
5725
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
6023
5726
|
};
|
|
6024
5727
|
};
|
|
5728
|
+
blockTime: 250;
|
|
6025
5729
|
contracts: {
|
|
6026
5730
|
readonly multicall3: {
|
|
6027
5731
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6036,6 +5740,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6036
5740
|
readonly symbol: "ETH";
|
|
6037
5741
|
readonly decimals: 18;
|
|
6038
5742
|
};
|
|
5743
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6039
5744
|
rpcUrls: {
|
|
6040
5745
|
readonly default: {
|
|
6041
5746
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -6057,6 +5762,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6057
5762
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
6058
5763
|
};
|
|
6059
5764
|
};
|
|
5765
|
+
blockTime: 250;
|
|
6060
5766
|
contracts: {
|
|
6061
5767
|
readonly multicall3: {
|
|
6062
5768
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6071,6 +5777,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6071
5777
|
readonly symbol: "ETH";
|
|
6072
5778
|
readonly decimals: 18;
|
|
6073
5779
|
};
|
|
5780
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6074
5781
|
rpcUrls: {
|
|
6075
5782
|
readonly default: {
|
|
6076
5783
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -6092,13 +5799,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6092
5799
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
6093
5800
|
};
|
|
6094
5801
|
};
|
|
5802
|
+
blockTime: 12000;
|
|
6095
5803
|
contracts: {
|
|
6096
|
-
readonly ensRegistry: {
|
|
6097
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6098
|
-
};
|
|
6099
5804
|
readonly ensUniversalResolver: {
|
|
6100
|
-
readonly address: "
|
|
6101
|
-
readonly blockCreated:
|
|
5805
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5806
|
+
readonly blockCreated: 23085558;
|
|
6102
5807
|
};
|
|
6103
5808
|
readonly multicall3: {
|
|
6104
5809
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6113,6 +5818,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6113
5818
|
readonly symbol: "ETH";
|
|
6114
5819
|
readonly decimals: 18;
|
|
6115
5820
|
};
|
|
5821
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6116
5822
|
rpcUrls: {
|
|
6117
5823
|
readonly default: {
|
|
6118
5824
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -6134,17 +5840,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6134
5840
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
6135
5841
|
};
|
|
6136
5842
|
};
|
|
5843
|
+
blockTime?: number | undefined | undefined;
|
|
6137
5844
|
contracts: {
|
|
6138
5845
|
readonly multicall3: {
|
|
6139
5846
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6140
5847
|
readonly blockCreated: 751532;
|
|
6141
5848
|
};
|
|
6142
|
-
readonly ensRegistry: {
|
|
6143
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6144
|
-
};
|
|
6145
5849
|
readonly ensUniversalResolver: {
|
|
6146
|
-
readonly address: "
|
|
6147
|
-
readonly blockCreated:
|
|
5850
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5851
|
+
readonly blockCreated: 8928790;
|
|
6148
5852
|
};
|
|
6149
5853
|
};
|
|
6150
5854
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -6155,6 +5859,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6155
5859
|
readonly symbol: "ETH";
|
|
6156
5860
|
readonly decimals: 18;
|
|
6157
5861
|
};
|
|
5862
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6158
5863
|
rpcUrls: {
|
|
6159
5864
|
readonly default: {
|
|
6160
5865
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -6176,6 +5881,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6176
5881
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
6177
5882
|
};
|
|
6178
5883
|
};
|
|
5884
|
+
blockTime: 250;
|
|
6179
5885
|
contracts: {
|
|
6180
5886
|
readonly multicall3: {
|
|
6181
5887
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6190,6 +5896,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6190
5896
|
readonly symbol: "ETH";
|
|
6191
5897
|
readonly decimals: 18;
|
|
6192
5898
|
};
|
|
5899
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6193
5900
|
rpcUrls: {
|
|
6194
5901
|
readonly default: {
|
|
6195
5902
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -6211,6 +5918,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6211
5918
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
6212
5919
|
};
|
|
6213
5920
|
};
|
|
5921
|
+
blockTime: 250;
|
|
6214
5922
|
contracts: {
|
|
6215
5923
|
readonly multicall3: {
|
|
6216
5924
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6225,6 +5933,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6225
5933
|
readonly symbol: "ETH";
|
|
6226
5934
|
readonly decimals: 18;
|
|
6227
5935
|
};
|
|
5936
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6228
5937
|
rpcUrls: {
|
|
6229
5938
|
readonly default: {
|
|
6230
5939
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -6246,13 +5955,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6246
5955
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
6247
5956
|
};
|
|
6248
5957
|
};
|
|
5958
|
+
blockTime: 12000;
|
|
6249
5959
|
contracts: {
|
|
6250
|
-
readonly ensRegistry: {
|
|
6251
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6252
|
-
};
|
|
6253
5960
|
readonly ensUniversalResolver: {
|
|
6254
|
-
readonly address: "
|
|
6255
|
-
readonly blockCreated:
|
|
5961
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5962
|
+
readonly blockCreated: 23085558;
|
|
6256
5963
|
};
|
|
6257
5964
|
readonly multicall3: {
|
|
6258
5965
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6267,6 +5974,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6267
5974
|
readonly symbol: "ETH";
|
|
6268
5975
|
readonly decimals: 18;
|
|
6269
5976
|
};
|
|
5977
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6270
5978
|
rpcUrls: {
|
|
6271
5979
|
readonly default: {
|
|
6272
5980
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -6288,17 +5996,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6288
5996
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
6289
5997
|
};
|
|
6290
5998
|
};
|
|
5999
|
+
blockTime?: number | undefined | undefined;
|
|
6291
6000
|
contracts: {
|
|
6292
6001
|
readonly multicall3: {
|
|
6293
6002
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6294
6003
|
readonly blockCreated: 751532;
|
|
6295
6004
|
};
|
|
6296
|
-
readonly ensRegistry: {
|
|
6297
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6298
|
-
};
|
|
6299
6005
|
readonly ensUniversalResolver: {
|
|
6300
|
-
readonly address: "
|
|
6301
|
-
readonly blockCreated:
|
|
6006
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6007
|
+
readonly blockCreated: 8928790;
|
|
6302
6008
|
};
|
|
6303
6009
|
};
|
|
6304
6010
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -6309,6 +6015,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6309
6015
|
readonly symbol: "ETH";
|
|
6310
6016
|
readonly decimals: 18;
|
|
6311
6017
|
};
|
|
6018
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6312
6019
|
rpcUrls: {
|
|
6313
6020
|
readonly default: {
|
|
6314
6021
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -6330,6 +6037,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6330
6037
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
6331
6038
|
};
|
|
6332
6039
|
};
|
|
6040
|
+
blockTime: 250;
|
|
6333
6041
|
contracts: {
|
|
6334
6042
|
readonly multicall3: {
|
|
6335
6043
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6344,6 +6052,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6344
6052
|
readonly symbol: "ETH";
|
|
6345
6053
|
readonly decimals: 18;
|
|
6346
6054
|
};
|
|
6055
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6347
6056
|
rpcUrls: {
|
|
6348
6057
|
readonly default: {
|
|
6349
6058
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -6365,6 +6074,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6365
6074
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
6366
6075
|
};
|
|
6367
6076
|
};
|
|
6077
|
+
blockTime: 250;
|
|
6368
6078
|
contracts: {
|
|
6369
6079
|
readonly multicall3: {
|
|
6370
6080
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6379,6 +6089,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6379
6089
|
readonly symbol: "ETH";
|
|
6380
6090
|
readonly decimals: 18;
|
|
6381
6091
|
};
|
|
6092
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6382
6093
|
rpcUrls: {
|
|
6383
6094
|
readonly default: {
|
|
6384
6095
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -9595,383 +9306,60 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9595
9306
|
} & {
|
|
9596
9307
|
accessList: import('viem').TransactionSerializableEIP2930["accessList"];
|
|
9597
9308
|
} ? "eip2930" : never) | (request extends ({
|
|
9598
|
-
accessList?: import('viem').AccessList | undefined;
|
|
9599
|
-
authorizationList?: undefined | undefined;
|
|
9600
|
-
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
9601
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9602
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
9603
|
-
maxFeePerGas?: bigint | undefined;
|
|
9604
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
9605
|
-
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
9606
|
-
} | {
|
|
9607
|
-
accessList?: import('viem').AccessList | undefined;
|
|
9608
|
-
authorizationList?: undefined | undefined;
|
|
9609
|
-
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
9610
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9611
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
9612
|
-
maxFeePerGas?: bigint | undefined;
|
|
9613
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
9614
|
-
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
9615
|
-
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
9616
|
-
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
9617
|
-
} | {
|
|
9618
|
-
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9619
|
-
} | {
|
|
9620
|
-
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
9621
|
-
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9622
|
-
accessList?: import('viem').AccessList | undefined;
|
|
9623
|
-
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
9624
|
-
blobs?: undefined | undefined;
|
|
9625
|
-
blobVersionedHashes?: undefined | undefined;
|
|
9626
|
-
gasPrice?: undefined | undefined;
|
|
9627
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
9628
|
-
maxFeePerGas?: bigint | undefined;
|
|
9629
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
9630
|
-
sidecars?: undefined | undefined;
|
|
9631
|
-
} | {
|
|
9632
|
-
accessList?: import('viem').AccessList | undefined;
|
|
9633
|
-
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
9634
|
-
blobs?: undefined | undefined;
|
|
9635
|
-
blobVersionedHashes?: undefined | undefined;
|
|
9636
|
-
gasPrice?: undefined | undefined;
|
|
9637
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
9638
|
-
maxFeePerGas?: bigint | undefined;
|
|
9639
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
9640
|
-
sidecars?: undefined | undefined;
|
|
9641
|
-
}) & {
|
|
9642
|
-
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
9643
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? import('viem').TransactionRequestEIP7702 : never : never : never)>> & {
|
|
9644
|
-
chainId?: number | undefined;
|
|
9645
|
-
}, (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K]; } : never>;
|
|
9646
|
-
readContract: <const abi extends import('abitype').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "pure" | "view">, const args extends import('viem').ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: import('viem').ReadContractParameters<abi, functionName, args>) => Promise<import('viem').ReadContractReturnType<abi, functionName, args>>;
|
|
9647
|
-
sendRawTransaction: (args: import('viem').SendRawTransactionParameters) => Promise<import('viem').SendRawTransactionReturnType>;
|
|
9648
|
-
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
9649
|
-
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
9650
|
-
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
9651
|
-
simulateContract: <const abi extends import('abitype').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import('viem').Chain | undefined, accountOverride extends import('viem').Account | import('abitype').Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, {
|
|
9652
|
-
graphCliName: string;
|
|
9653
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
9654
|
-
blockExplorers: {
|
|
9655
|
-
readonly default: {
|
|
9656
|
-
readonly name: "Etherscan";
|
|
9657
|
-
readonly url: "https://etherscan.io";
|
|
9658
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
9659
|
-
};
|
|
9660
|
-
};
|
|
9661
|
-
contracts: {
|
|
9662
|
-
readonly ensRegistry: {
|
|
9663
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9664
|
-
};
|
|
9665
|
-
readonly ensUniversalResolver: {
|
|
9666
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
9667
|
-
readonly blockCreated: 19258213;
|
|
9668
|
-
};
|
|
9669
|
-
readonly multicall3: {
|
|
9670
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9671
|
-
readonly blockCreated: 14353601;
|
|
9672
|
-
};
|
|
9673
|
-
};
|
|
9674
|
-
ensTlds?: readonly string[] | undefined;
|
|
9675
|
-
id: 1;
|
|
9676
|
-
name: "Ethereum";
|
|
9677
|
-
nativeCurrency: {
|
|
9678
|
-
readonly name: "Ether";
|
|
9679
|
-
readonly symbol: "ETH";
|
|
9680
|
-
readonly decimals: 18;
|
|
9681
|
-
};
|
|
9682
|
-
rpcUrls: {
|
|
9683
|
-
readonly default: {
|
|
9684
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
9685
|
-
};
|
|
9686
|
-
};
|
|
9687
|
-
sourceId?: number | undefined | undefined;
|
|
9688
|
-
testnet?: boolean | undefined | undefined;
|
|
9689
|
-
custom?: Record<string, unknown> | undefined;
|
|
9690
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
9691
|
-
formatters?: undefined;
|
|
9692
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9693
|
-
} | {
|
|
9694
|
-
graphCliName: string;
|
|
9695
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
9696
|
-
blockExplorers: {
|
|
9697
|
-
readonly default: {
|
|
9698
|
-
readonly name: "Etherscan";
|
|
9699
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
9700
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
9701
|
-
};
|
|
9702
|
-
};
|
|
9703
|
-
contracts: {
|
|
9704
|
-
readonly multicall3: {
|
|
9705
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9706
|
-
readonly blockCreated: 751532;
|
|
9707
|
-
};
|
|
9708
|
-
readonly ensRegistry: {
|
|
9709
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9710
|
-
};
|
|
9711
|
-
readonly ensUniversalResolver: {
|
|
9712
|
-
readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
|
|
9713
|
-
readonly blockCreated: 5317080;
|
|
9714
|
-
};
|
|
9715
|
-
};
|
|
9716
|
-
ensTlds?: readonly string[] | undefined;
|
|
9717
|
-
id: 11155111;
|
|
9718
|
-
name: "Sepolia";
|
|
9719
|
-
nativeCurrency: {
|
|
9720
|
-
readonly name: "Sepolia Ether";
|
|
9721
|
-
readonly symbol: "ETH";
|
|
9722
|
-
readonly decimals: 18;
|
|
9723
|
-
};
|
|
9724
|
-
rpcUrls: {
|
|
9725
|
-
readonly default: {
|
|
9726
|
-
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
9727
|
-
};
|
|
9728
|
-
};
|
|
9729
|
-
sourceId?: number | undefined | undefined;
|
|
9730
|
-
testnet: true;
|
|
9731
|
-
custom?: Record<string, unknown> | undefined;
|
|
9732
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
9733
|
-
formatters?: undefined;
|
|
9734
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9735
|
-
} | {
|
|
9736
|
-
graphCliName: string;
|
|
9737
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
9738
|
-
blockExplorers: {
|
|
9739
|
-
readonly default: {
|
|
9740
|
-
readonly name: "Arbiscan";
|
|
9741
|
-
readonly url: "https://arbiscan.io";
|
|
9742
|
-
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
9743
|
-
};
|
|
9744
|
-
};
|
|
9745
|
-
contracts: {
|
|
9746
|
-
readonly multicall3: {
|
|
9747
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9748
|
-
readonly blockCreated: 7654707;
|
|
9749
|
-
};
|
|
9750
|
-
};
|
|
9751
|
-
ensTlds?: readonly string[] | undefined;
|
|
9752
|
-
id: 42161;
|
|
9753
|
-
name: "Arbitrum One";
|
|
9754
|
-
nativeCurrency: {
|
|
9755
|
-
readonly name: "Ether";
|
|
9756
|
-
readonly symbol: "ETH";
|
|
9757
|
-
readonly decimals: 18;
|
|
9758
|
-
};
|
|
9759
|
-
rpcUrls: {
|
|
9760
|
-
readonly default: {
|
|
9761
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
9762
|
-
};
|
|
9763
|
-
};
|
|
9764
|
-
sourceId?: number | undefined | undefined;
|
|
9765
|
-
testnet?: boolean | undefined | undefined;
|
|
9766
|
-
custom?: Record<string, unknown> | undefined;
|
|
9767
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
9768
|
-
formatters?: undefined;
|
|
9769
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9770
|
-
} | {
|
|
9771
|
-
graphCliName: string;
|
|
9772
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
9773
|
-
blockExplorers: {
|
|
9774
|
-
readonly default: {
|
|
9775
|
-
readonly name: "Arbiscan";
|
|
9776
|
-
readonly url: "https://sepolia.arbiscan.io";
|
|
9777
|
-
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
9778
|
-
};
|
|
9779
|
-
};
|
|
9780
|
-
contracts: {
|
|
9781
|
-
readonly multicall3: {
|
|
9782
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9783
|
-
readonly blockCreated: 81930;
|
|
9784
|
-
};
|
|
9785
|
-
};
|
|
9786
|
-
ensTlds?: readonly string[] | undefined;
|
|
9787
|
-
id: 421614;
|
|
9788
|
-
name: "Arbitrum Sepolia";
|
|
9789
|
-
nativeCurrency: {
|
|
9790
|
-
readonly name: "Arbitrum Sepolia Ether";
|
|
9791
|
-
readonly symbol: "ETH";
|
|
9792
|
-
readonly decimals: 18;
|
|
9793
|
-
};
|
|
9794
|
-
rpcUrls: {
|
|
9795
|
-
readonly default: {
|
|
9796
|
-
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
9797
|
-
};
|
|
9798
|
-
};
|
|
9799
|
-
sourceId?: number | undefined | undefined;
|
|
9800
|
-
testnet: true;
|
|
9801
|
-
custom?: Record<string, unknown> | undefined;
|
|
9802
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
9803
|
-
formatters?: undefined;
|
|
9804
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9805
|
-
}, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, {
|
|
9806
|
-
graphCliName: string;
|
|
9807
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
9808
|
-
blockExplorers: {
|
|
9809
|
-
readonly default: {
|
|
9810
|
-
readonly name: "Etherscan";
|
|
9811
|
-
readonly url: "https://etherscan.io";
|
|
9812
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
9813
|
-
};
|
|
9814
|
-
};
|
|
9815
|
-
contracts: {
|
|
9816
|
-
readonly ensRegistry: {
|
|
9817
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9818
|
-
};
|
|
9819
|
-
readonly ensUniversalResolver: {
|
|
9820
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
9821
|
-
readonly blockCreated: 19258213;
|
|
9822
|
-
};
|
|
9823
|
-
readonly multicall3: {
|
|
9824
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9825
|
-
readonly blockCreated: 14353601;
|
|
9826
|
-
};
|
|
9827
|
-
};
|
|
9828
|
-
ensTlds?: readonly string[] | undefined;
|
|
9829
|
-
id: 1;
|
|
9830
|
-
name: "Ethereum";
|
|
9831
|
-
nativeCurrency: {
|
|
9832
|
-
readonly name: "Ether";
|
|
9833
|
-
readonly symbol: "ETH";
|
|
9834
|
-
readonly decimals: 18;
|
|
9835
|
-
};
|
|
9836
|
-
rpcUrls: {
|
|
9837
|
-
readonly default: {
|
|
9838
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
9839
|
-
};
|
|
9840
|
-
};
|
|
9841
|
-
sourceId?: number | undefined | undefined;
|
|
9842
|
-
testnet?: boolean | undefined | undefined;
|
|
9843
|
-
custom?: Record<string, unknown> | undefined;
|
|
9844
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
9845
|
-
formatters?: undefined;
|
|
9846
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9847
|
-
} | {
|
|
9848
|
-
graphCliName: string;
|
|
9849
|
-
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
9850
|
-
blockExplorers: {
|
|
9851
|
-
readonly default: {
|
|
9852
|
-
readonly name: "Etherscan";
|
|
9853
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
9854
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
9855
|
-
};
|
|
9856
|
-
};
|
|
9857
|
-
contracts: {
|
|
9858
|
-
readonly multicall3: {
|
|
9859
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9860
|
-
readonly blockCreated: 751532;
|
|
9861
|
-
};
|
|
9862
|
-
readonly ensRegistry: {
|
|
9863
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9864
|
-
};
|
|
9865
|
-
readonly ensUniversalResolver: {
|
|
9866
|
-
readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
|
|
9867
|
-
readonly blockCreated: 5317080;
|
|
9868
|
-
};
|
|
9869
|
-
};
|
|
9870
|
-
ensTlds?: readonly string[] | undefined;
|
|
9871
|
-
id: 11155111;
|
|
9872
|
-
name: "Sepolia";
|
|
9873
|
-
nativeCurrency: {
|
|
9874
|
-
readonly name: "Sepolia Ether";
|
|
9875
|
-
readonly symbol: "ETH";
|
|
9876
|
-
readonly decimals: 18;
|
|
9877
|
-
};
|
|
9878
|
-
rpcUrls: {
|
|
9879
|
-
readonly default: {
|
|
9880
|
-
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
9881
|
-
};
|
|
9882
|
-
};
|
|
9883
|
-
sourceId?: number | undefined | undefined;
|
|
9884
|
-
testnet: true;
|
|
9885
|
-
custom?: Record<string, unknown> | undefined;
|
|
9886
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
9887
|
-
formatters?: undefined;
|
|
9888
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9309
|
+
accessList?: import('viem').AccessList | undefined;
|
|
9310
|
+
authorizationList?: undefined | undefined;
|
|
9311
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
9312
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9313
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9314
|
+
maxFeePerGas?: bigint | undefined;
|
|
9315
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9316
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
9889
9317
|
} | {
|
|
9890
|
-
|
|
9891
|
-
|
|
9892
|
-
|
|
9893
|
-
|
|
9894
|
-
|
|
9895
|
-
|
|
9896
|
-
|
|
9897
|
-
|
|
9898
|
-
|
|
9899
|
-
|
|
9900
|
-
readonly multicall3: {
|
|
9901
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9902
|
-
readonly blockCreated: 7654707;
|
|
9903
|
-
};
|
|
9904
|
-
};
|
|
9905
|
-
ensTlds?: readonly string[] | undefined;
|
|
9906
|
-
id: 42161;
|
|
9907
|
-
name: "Arbitrum One";
|
|
9908
|
-
nativeCurrency: {
|
|
9909
|
-
readonly name: "Ether";
|
|
9910
|
-
readonly symbol: "ETH";
|
|
9911
|
-
readonly decimals: 18;
|
|
9912
|
-
};
|
|
9913
|
-
rpcUrls: {
|
|
9914
|
-
readonly default: {
|
|
9915
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
9916
|
-
};
|
|
9917
|
-
};
|
|
9918
|
-
sourceId?: number | undefined | undefined;
|
|
9919
|
-
testnet?: boolean | undefined | undefined;
|
|
9920
|
-
custom?: Record<string, unknown> | undefined;
|
|
9921
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
9922
|
-
formatters?: undefined;
|
|
9923
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9318
|
+
accessList?: import('viem').AccessList | undefined;
|
|
9319
|
+
authorizationList?: undefined | undefined;
|
|
9320
|
+
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
9321
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
9322
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
9323
|
+
maxFeePerGas?: bigint | undefined;
|
|
9324
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9325
|
+
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
9326
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
9327
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
9924
9328
|
} | {
|
|
9925
|
-
|
|
9926
|
-
|
|
9927
|
-
|
|
9928
|
-
|
|
9929
|
-
|
|
9930
|
-
|
|
9931
|
-
|
|
9932
|
-
|
|
9933
|
-
|
|
9934
|
-
|
|
9935
|
-
|
|
9936
|
-
|
|
9937
|
-
|
|
9938
|
-
|
|
9939
|
-
|
|
9940
|
-
|
|
9941
|
-
|
|
9942
|
-
|
|
9943
|
-
|
|
9944
|
-
|
|
9945
|
-
|
|
9946
|
-
|
|
9947
|
-
|
|
9948
|
-
|
|
9949
|
-
|
|
9950
|
-
|
|
9951
|
-
|
|
9952
|
-
|
|
9953
|
-
|
|
9954
|
-
|
|
9955
|
-
|
|
9956
|
-
|
|
9957
|
-
|
|
9958
|
-
|
|
9959
|
-
}, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
9960
|
-
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
9961
|
-
verifySiweMessage: (args: {
|
|
9962
|
-
blockNumber?: bigint | undefined | undefined;
|
|
9963
|
-
blockTag?: import('viem').BlockTag | undefined;
|
|
9964
|
-
nonce?: string | undefined | undefined;
|
|
9965
|
-
address?: string | undefined;
|
|
9966
|
-
domain?: string | undefined | undefined;
|
|
9967
|
-
scheme?: string | undefined | undefined;
|
|
9968
|
-
time?: Date | undefined;
|
|
9969
|
-
message: string;
|
|
9970
|
-
signature: import('viem').Hex;
|
|
9971
|
-
}) => Promise<boolean>;
|
|
9972
|
-
verifyTypedData: (args: import('viem').VerifyTypedDataActionParameters) => Promise<import('viem').VerifyTypedDataActionReturnType>;
|
|
9973
|
-
uninstallFilter: (args: import('viem').UninstallFilterParameters) => Promise<import('viem').UninstallFilterReturnType>;
|
|
9974
|
-
waitForTransactionReceipt: (args: import('viem').WaitForTransactionReceiptParameters<{
|
|
9329
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
9330
|
+
} | {
|
|
9331
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
9332
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
9333
|
+
accessList?: import('viem').AccessList | undefined;
|
|
9334
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
9335
|
+
blobs?: undefined | undefined;
|
|
9336
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9337
|
+
gasPrice?: undefined | undefined;
|
|
9338
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9339
|
+
maxFeePerGas?: bigint | undefined;
|
|
9340
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9341
|
+
sidecars?: undefined | undefined;
|
|
9342
|
+
} | {
|
|
9343
|
+
accessList?: import('viem').AccessList | undefined;
|
|
9344
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
9345
|
+
blobs?: undefined | undefined;
|
|
9346
|
+
blobVersionedHashes?: undefined | undefined;
|
|
9347
|
+
gasPrice?: undefined | undefined;
|
|
9348
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
9349
|
+
maxFeePerGas?: bigint | undefined;
|
|
9350
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
9351
|
+
sidecars?: undefined | undefined;
|
|
9352
|
+
}) & {
|
|
9353
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
9354
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? import('viem').TransactionRequestEIP7702 : never : never : never)>> & {
|
|
9355
|
+
chainId?: number | undefined;
|
|
9356
|
+
}, (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K]; } : never>;
|
|
9357
|
+
readContract: <const abi extends import('abitype').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "pure" | "view">, const args extends import('viem').ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: import('viem').ReadContractParameters<abi, functionName, args>) => Promise<import('viem').ReadContractReturnType<abi, functionName, args>>;
|
|
9358
|
+
sendRawTransaction: (args: import('viem').SendRawTransactionParameters) => Promise<import('viem').SendRawTransactionReturnType>;
|
|
9359
|
+
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
9360
|
+
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
9361
|
+
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
9362
|
+
simulateContract: <const abi extends import('abitype').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import('viem').Chain | undefined, accountOverride extends import('viem').Account | import('abitype').Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, {
|
|
9975
9363
|
graphCliName: string;
|
|
9976
9364
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
9977
9365
|
blockExplorers: {
|
|
@@ -9981,13 +9369,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9981
9369
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
9982
9370
|
};
|
|
9983
9371
|
};
|
|
9372
|
+
blockTime: 12000;
|
|
9984
9373
|
contracts: {
|
|
9985
|
-
readonly ensRegistry: {
|
|
9986
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9987
|
-
};
|
|
9988
9374
|
readonly ensUniversalResolver: {
|
|
9989
|
-
readonly address: "
|
|
9990
|
-
readonly blockCreated:
|
|
9375
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
9376
|
+
readonly blockCreated: 23085558;
|
|
9991
9377
|
};
|
|
9992
9378
|
readonly multicall3: {
|
|
9993
9379
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10002,6 +9388,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10002
9388
|
readonly symbol: "ETH";
|
|
10003
9389
|
readonly decimals: 18;
|
|
10004
9390
|
};
|
|
9391
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10005
9392
|
rpcUrls: {
|
|
10006
9393
|
readonly default: {
|
|
10007
9394
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -10023,17 +9410,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10023
9410
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
10024
9411
|
};
|
|
10025
9412
|
};
|
|
9413
|
+
blockTime?: number | undefined | undefined;
|
|
10026
9414
|
contracts: {
|
|
10027
9415
|
readonly multicall3: {
|
|
10028
9416
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
10029
9417
|
readonly blockCreated: 751532;
|
|
10030
9418
|
};
|
|
10031
|
-
readonly ensRegistry: {
|
|
10032
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10033
|
-
};
|
|
10034
9419
|
readonly ensUniversalResolver: {
|
|
10035
|
-
readonly address: "
|
|
10036
|
-
readonly blockCreated:
|
|
9420
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
9421
|
+
readonly blockCreated: 8928790;
|
|
10037
9422
|
};
|
|
10038
9423
|
};
|
|
10039
9424
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -10044,6 +9429,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10044
9429
|
readonly symbol: "ETH";
|
|
10045
9430
|
readonly decimals: 18;
|
|
10046
9431
|
};
|
|
9432
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10047
9433
|
rpcUrls: {
|
|
10048
9434
|
readonly default: {
|
|
10049
9435
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -10065,6 +9451,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10065
9451
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
10066
9452
|
};
|
|
10067
9453
|
};
|
|
9454
|
+
blockTime: 250;
|
|
10068
9455
|
contracts: {
|
|
10069
9456
|
readonly multicall3: {
|
|
10070
9457
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10079,6 +9466,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10079
9466
|
readonly symbol: "ETH";
|
|
10080
9467
|
readonly decimals: 18;
|
|
10081
9468
|
};
|
|
9469
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10082
9470
|
rpcUrls: {
|
|
10083
9471
|
readonly default: {
|
|
10084
9472
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -10100,6 +9488,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10100
9488
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
10101
9489
|
};
|
|
10102
9490
|
};
|
|
9491
|
+
blockTime: 250;
|
|
10103
9492
|
contracts: {
|
|
10104
9493
|
readonly multicall3: {
|
|
10105
9494
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10114,6 +9503,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10114
9503
|
readonly symbol: "ETH";
|
|
10115
9504
|
readonly decimals: 18;
|
|
10116
9505
|
};
|
|
9506
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10117
9507
|
rpcUrls: {
|
|
10118
9508
|
readonly default: {
|
|
10119
9509
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -10125,9 +9515,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10125
9515
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
10126
9516
|
formatters?: undefined;
|
|
10127
9517
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10128
|
-
}>) => Promise<import('viem').
|
|
10129
|
-
watchBlockNumber: (args: import('viem').WatchBlockNumberParameters) => import('viem').WatchBlockNumberReturnType;
|
|
10130
|
-
watchBlocks: <includeTransactions extends boolean = false, blockTag extends import('viem').BlockTag = "latest">(args: import('viem').WatchBlocksParameters<HttpTransport, {
|
|
9518
|
+
}, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, {
|
|
10131
9519
|
graphCliName: string;
|
|
10132
9520
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
10133
9521
|
blockExplorers: {
|
|
@@ -10137,13 +9525,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10137
9525
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
10138
9526
|
};
|
|
10139
9527
|
};
|
|
9528
|
+
blockTime: 12000;
|
|
10140
9529
|
contracts: {
|
|
10141
|
-
readonly ensRegistry: {
|
|
10142
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10143
|
-
};
|
|
10144
9530
|
readonly ensUniversalResolver: {
|
|
10145
|
-
readonly address: "
|
|
10146
|
-
readonly blockCreated:
|
|
9531
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
9532
|
+
readonly blockCreated: 23085558;
|
|
10147
9533
|
};
|
|
10148
9534
|
readonly multicall3: {
|
|
10149
9535
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10158,6 +9544,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10158
9544
|
readonly symbol: "ETH";
|
|
10159
9545
|
readonly decimals: 18;
|
|
10160
9546
|
};
|
|
9547
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10161
9548
|
rpcUrls: {
|
|
10162
9549
|
readonly default: {
|
|
10163
9550
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -10179,17 +9566,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10179
9566
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
10180
9567
|
};
|
|
10181
9568
|
};
|
|
9569
|
+
blockTime?: number | undefined | undefined;
|
|
10182
9570
|
contracts: {
|
|
10183
9571
|
readonly multicall3: {
|
|
10184
9572
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
10185
9573
|
readonly blockCreated: 751532;
|
|
10186
9574
|
};
|
|
10187
|
-
readonly ensRegistry: {
|
|
10188
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10189
|
-
};
|
|
10190
9575
|
readonly ensUniversalResolver: {
|
|
10191
|
-
readonly address: "
|
|
10192
|
-
readonly blockCreated:
|
|
9576
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
9577
|
+
readonly blockCreated: 8928790;
|
|
10193
9578
|
};
|
|
10194
9579
|
};
|
|
10195
9580
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -10200,6 +9585,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10200
9585
|
readonly symbol: "ETH";
|
|
10201
9586
|
readonly decimals: 18;
|
|
10202
9587
|
};
|
|
9588
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10203
9589
|
rpcUrls: {
|
|
10204
9590
|
readonly default: {
|
|
10205
9591
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -10221,6 +9607,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10221
9607
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
10222
9608
|
};
|
|
10223
9609
|
};
|
|
9610
|
+
blockTime: 250;
|
|
10224
9611
|
contracts: {
|
|
10225
9612
|
readonly multicall3: {
|
|
10226
9613
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10235,6 +9622,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10235
9622
|
readonly symbol: "ETH";
|
|
10236
9623
|
readonly decimals: 18;
|
|
10237
9624
|
};
|
|
9625
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10238
9626
|
rpcUrls: {
|
|
10239
9627
|
readonly default: {
|
|
10240
9628
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -10256,6 +9644,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10256
9644
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
10257
9645
|
};
|
|
10258
9646
|
};
|
|
9647
|
+
blockTime: 250;
|
|
10259
9648
|
contracts: {
|
|
10260
9649
|
readonly multicall3: {
|
|
10261
9650
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10270,6 +9659,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10270
9659
|
readonly symbol: "ETH";
|
|
10271
9660
|
readonly decimals: 18;
|
|
10272
9661
|
};
|
|
9662
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10273
9663
|
rpcUrls: {
|
|
10274
9664
|
readonly default: {
|
|
10275
9665
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -10281,25 +9671,23 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10281
9671
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
10282
9672
|
formatters?: undefined;
|
|
10283
9673
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10284
|
-
},
|
|
10285
|
-
|
|
10286
|
-
|
|
10287
|
-
|
|
10288
|
-
|
|
10289
|
-
|
|
10290
|
-
|
|
10291
|
-
|
|
10292
|
-
|
|
10293
|
-
|
|
10294
|
-
|
|
10295
|
-
|
|
10296
|
-
|
|
10297
|
-
|
|
10298
|
-
|
|
10299
|
-
|
|
10300
|
-
|
|
10301
|
-
uid?: undefined;
|
|
10302
|
-
} & import('viem').ExactPartial<Pick<import('viem').PublicActions<HttpTransport, {
|
|
9674
|
+
}, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
9675
|
+
verifyHash: (args: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>;
|
|
9676
|
+
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
9677
|
+
verifySiweMessage: (args: {
|
|
9678
|
+
blockNumber?: bigint | undefined | undefined;
|
|
9679
|
+
blockTag?: import('viem').BlockTag | undefined;
|
|
9680
|
+
nonce?: string | undefined | undefined;
|
|
9681
|
+
address?: string | undefined;
|
|
9682
|
+
domain?: string | undefined | undefined;
|
|
9683
|
+
scheme?: string | undefined | undefined;
|
|
9684
|
+
time?: Date | undefined;
|
|
9685
|
+
message: string;
|
|
9686
|
+
signature: import('viem').Hex;
|
|
9687
|
+
}) => Promise<boolean>;
|
|
9688
|
+
verifyTypedData: (args: import('viem').VerifyTypedDataActionParameters) => Promise<import('viem').VerifyTypedDataActionReturnType>;
|
|
9689
|
+
uninstallFilter: (args: import('viem').UninstallFilterParameters) => Promise<import('viem').UninstallFilterReturnType>;
|
|
9690
|
+
waitForTransactionReceipt: (args: import('viem').WaitForTransactionReceiptParameters<{
|
|
10303
9691
|
graphCliName: string;
|
|
10304
9692
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
10305
9693
|
blockExplorers: {
|
|
@@ -10309,13 +9697,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10309
9697
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
10310
9698
|
};
|
|
10311
9699
|
};
|
|
9700
|
+
blockTime: 12000;
|
|
10312
9701
|
contracts: {
|
|
10313
|
-
readonly ensRegistry: {
|
|
10314
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10315
|
-
};
|
|
10316
9702
|
readonly ensUniversalResolver: {
|
|
10317
|
-
readonly address: "
|
|
10318
|
-
readonly blockCreated:
|
|
9703
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
9704
|
+
readonly blockCreated: 23085558;
|
|
10319
9705
|
};
|
|
10320
9706
|
readonly multicall3: {
|
|
10321
9707
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10330,6 +9716,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10330
9716
|
readonly symbol: "ETH";
|
|
10331
9717
|
readonly decimals: 18;
|
|
10332
9718
|
};
|
|
9719
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10333
9720
|
rpcUrls: {
|
|
10334
9721
|
readonly default: {
|
|
10335
9722
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -10351,17 +9738,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10351
9738
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
10352
9739
|
};
|
|
10353
9740
|
};
|
|
9741
|
+
blockTime?: number | undefined | undefined;
|
|
10354
9742
|
contracts: {
|
|
10355
9743
|
readonly multicall3: {
|
|
10356
9744
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
10357
9745
|
readonly blockCreated: 751532;
|
|
10358
9746
|
};
|
|
10359
|
-
readonly ensRegistry: {
|
|
10360
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10361
|
-
};
|
|
10362
9747
|
readonly ensUniversalResolver: {
|
|
10363
|
-
readonly address: "
|
|
10364
|
-
readonly blockCreated:
|
|
9748
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
9749
|
+
readonly blockCreated: 8928790;
|
|
10365
9750
|
};
|
|
10366
9751
|
};
|
|
10367
9752
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -10372,6 +9757,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10372
9757
|
readonly symbol: "ETH";
|
|
10373
9758
|
readonly decimals: 18;
|
|
10374
9759
|
};
|
|
9760
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10375
9761
|
rpcUrls: {
|
|
10376
9762
|
readonly default: {
|
|
10377
9763
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -10393,6 +9779,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10393
9779
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
10394
9780
|
};
|
|
10395
9781
|
};
|
|
9782
|
+
blockTime: 250;
|
|
10396
9783
|
contracts: {
|
|
10397
9784
|
readonly multicall3: {
|
|
10398
9785
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10407,6 +9794,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10407
9794
|
readonly symbol: "ETH";
|
|
10408
9795
|
readonly decimals: 18;
|
|
10409
9796
|
};
|
|
9797
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10410
9798
|
rpcUrls: {
|
|
10411
9799
|
readonly default: {
|
|
10412
9800
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -10428,6 +9816,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10428
9816
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
10429
9817
|
};
|
|
10430
9818
|
};
|
|
9819
|
+
blockTime: 250;
|
|
10431
9820
|
contracts: {
|
|
10432
9821
|
readonly multicall3: {
|
|
10433
9822
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10442,6 +9831,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10442
9831
|
readonly symbol: "ETH";
|
|
10443
9832
|
readonly decimals: 18;
|
|
10444
9833
|
};
|
|
9834
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10445
9835
|
rpcUrls: {
|
|
10446
9836
|
readonly default: {
|
|
10447
9837
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -10453,7 +9843,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10453
9843
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
10454
9844
|
formatters?: undefined;
|
|
10455
9845
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10456
|
-
}
|
|
9846
|
+
}>) => Promise<import('viem').TransactionReceipt>;
|
|
9847
|
+
watchBlockNumber: (args: import('viem').WatchBlockNumberParameters) => import('viem').WatchBlockNumberReturnType;
|
|
9848
|
+
watchBlocks: <includeTransactions extends boolean = false, blockTag extends import('viem').BlockTag = "latest">(args: import('viem').WatchBlocksParameters<HttpTransport, {
|
|
10457
9849
|
graphCliName: string;
|
|
10458
9850
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
10459
9851
|
blockExplorers: {
|
|
@@ -10463,13 +9855,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10463
9855
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
10464
9856
|
};
|
|
10465
9857
|
};
|
|
9858
|
+
blockTime: 12000;
|
|
10466
9859
|
contracts: {
|
|
10467
|
-
readonly ensRegistry: {
|
|
10468
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10469
|
-
};
|
|
10470
9860
|
readonly ensUniversalResolver: {
|
|
10471
|
-
readonly address: "
|
|
10472
|
-
readonly blockCreated:
|
|
9861
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
9862
|
+
readonly blockCreated: 23085558;
|
|
10473
9863
|
};
|
|
10474
9864
|
readonly multicall3: {
|
|
10475
9865
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10484,6 +9874,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10484
9874
|
readonly symbol: "ETH";
|
|
10485
9875
|
readonly decimals: 18;
|
|
10486
9876
|
};
|
|
9877
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10487
9878
|
rpcUrls: {
|
|
10488
9879
|
readonly default: {
|
|
10489
9880
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -10505,17 +9896,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10505
9896
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
10506
9897
|
};
|
|
10507
9898
|
};
|
|
9899
|
+
blockTime?: number | undefined | undefined;
|
|
10508
9900
|
contracts: {
|
|
10509
9901
|
readonly multicall3: {
|
|
10510
9902
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
10511
9903
|
readonly blockCreated: 751532;
|
|
10512
9904
|
};
|
|
10513
|
-
readonly ensRegistry: {
|
|
10514
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10515
|
-
};
|
|
10516
9905
|
readonly ensUniversalResolver: {
|
|
10517
|
-
readonly address: "
|
|
10518
|
-
readonly blockCreated:
|
|
9906
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
9907
|
+
readonly blockCreated: 8928790;
|
|
10519
9908
|
};
|
|
10520
9909
|
};
|
|
10521
9910
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -10526,6 +9915,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10526
9915
|
readonly symbol: "ETH";
|
|
10527
9916
|
readonly decimals: 18;
|
|
10528
9917
|
};
|
|
9918
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10529
9919
|
rpcUrls: {
|
|
10530
9920
|
readonly default: {
|
|
10531
9921
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -10547,6 +9937,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10547
9937
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
10548
9938
|
};
|
|
10549
9939
|
};
|
|
9940
|
+
blockTime: 250;
|
|
10550
9941
|
contracts: {
|
|
10551
9942
|
readonly multicall3: {
|
|
10552
9943
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10561,6 +9952,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10561
9952
|
readonly symbol: "ETH";
|
|
10562
9953
|
readonly decimals: 18;
|
|
10563
9954
|
};
|
|
9955
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10564
9956
|
rpcUrls: {
|
|
10565
9957
|
readonly default: {
|
|
10566
9958
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -10582,6 +9974,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10582
9974
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
10583
9975
|
};
|
|
10584
9976
|
};
|
|
9977
|
+
blockTime: 250;
|
|
10585
9978
|
contracts: {
|
|
10586
9979
|
readonly multicall3: {
|
|
10587
9980
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10596,6 +9989,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10596
9989
|
readonly symbol: "ETH";
|
|
10597
9990
|
readonly decimals: 18;
|
|
10598
9991
|
};
|
|
9992
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10599
9993
|
rpcUrls: {
|
|
10600
9994
|
readonly default: {
|
|
10601
9995
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -10607,7 +10001,26 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10607
10001
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
10608
10002
|
formatters?: undefined;
|
|
10609
10003
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10610
|
-
},
|
|
10004
|
+
}, includeTransactions, blockTag>) => import('viem').WatchBlocksReturnType;
|
|
10005
|
+
watchContractEvent: <const abi extends import('abitype').Abi | readonly unknown[], eventName extends import('viem').ContractEventName<abi>, strict extends boolean | undefined = undefined>(args: import('viem').WatchContractEventParameters<abi, eventName, strict, HttpTransport>) => import('viem').WatchContractEventReturnType;
|
|
10006
|
+
watchEvent: <const abiEvent extends import('abitype').AbiEvent | undefined = undefined, const abiEvents extends readonly import('abitype').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('abitype').AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined>(args: import('viem').WatchEventParameters<abiEvent, abiEvents, strict, HttpTransport>) => import('viem').WatchEventReturnType;
|
|
10007
|
+
watchPendingTransactions: (args: import('viem').WatchPendingTransactionsParameters<HttpTransport>) => import('viem').WatchPendingTransactionsReturnType;
|
|
10008
|
+
extend: <const client extends {
|
|
10009
|
+
[x: string]: unknown;
|
|
10010
|
+
account?: undefined;
|
|
10011
|
+
batch?: undefined;
|
|
10012
|
+
cacheTime?: undefined;
|
|
10013
|
+
ccipRead?: undefined;
|
|
10014
|
+
chain?: undefined;
|
|
10015
|
+
experimental_blockTag?: undefined;
|
|
10016
|
+
key?: undefined;
|
|
10017
|
+
name?: undefined;
|
|
10018
|
+
pollingInterval?: undefined;
|
|
10019
|
+
request?: undefined;
|
|
10020
|
+
transport?: undefined;
|
|
10021
|
+
type?: undefined;
|
|
10022
|
+
uid?: undefined;
|
|
10023
|
+
} & import('viem').ExactPartial<Pick<import('viem').PublicActions<HttpTransport, {
|
|
10611
10024
|
graphCliName: string;
|
|
10612
10025
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
10613
10026
|
blockExplorers: {
|
|
@@ -10617,13 +10030,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10617
10030
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
10618
10031
|
};
|
|
10619
10032
|
};
|
|
10033
|
+
blockTime: 12000;
|
|
10620
10034
|
contracts: {
|
|
10621
|
-
readonly ensRegistry: {
|
|
10622
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10623
|
-
};
|
|
10624
10035
|
readonly ensUniversalResolver: {
|
|
10625
|
-
readonly address: "
|
|
10626
|
-
readonly blockCreated:
|
|
10036
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10037
|
+
readonly blockCreated: 23085558;
|
|
10627
10038
|
};
|
|
10628
10039
|
readonly multicall3: {
|
|
10629
10040
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10638,6 +10049,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10638
10049
|
readonly symbol: "ETH";
|
|
10639
10050
|
readonly decimals: 18;
|
|
10640
10051
|
};
|
|
10052
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10641
10053
|
rpcUrls: {
|
|
10642
10054
|
readonly default: {
|
|
10643
10055
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -10659,17 +10071,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10659
10071
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
10660
10072
|
};
|
|
10661
10073
|
};
|
|
10074
|
+
blockTime?: number | undefined | undefined;
|
|
10662
10075
|
contracts: {
|
|
10663
10076
|
readonly multicall3: {
|
|
10664
10077
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
10665
10078
|
readonly blockCreated: 751532;
|
|
10666
10079
|
};
|
|
10667
|
-
readonly ensRegistry: {
|
|
10668
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10669
|
-
};
|
|
10670
10080
|
readonly ensUniversalResolver: {
|
|
10671
|
-
readonly address: "
|
|
10672
|
-
readonly blockCreated:
|
|
10081
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10082
|
+
readonly blockCreated: 8928790;
|
|
10673
10083
|
};
|
|
10674
10084
|
};
|
|
10675
10085
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -10680,6 +10090,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10680
10090
|
readonly symbol: "ETH";
|
|
10681
10091
|
readonly decimals: 18;
|
|
10682
10092
|
};
|
|
10093
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10683
10094
|
rpcUrls: {
|
|
10684
10095
|
readonly default: {
|
|
10685
10096
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -10701,6 +10112,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10701
10112
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
10702
10113
|
};
|
|
10703
10114
|
};
|
|
10115
|
+
blockTime: 250;
|
|
10704
10116
|
contracts: {
|
|
10705
10117
|
readonly multicall3: {
|
|
10706
10118
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10715,6 +10127,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10715
10127
|
readonly symbol: "ETH";
|
|
10716
10128
|
readonly decimals: 18;
|
|
10717
10129
|
};
|
|
10130
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10718
10131
|
rpcUrls: {
|
|
10719
10132
|
readonly default: {
|
|
10720
10133
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -10736,6 +10149,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10736
10149
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
10737
10150
|
};
|
|
10738
10151
|
};
|
|
10152
|
+
blockTime: 250;
|
|
10739
10153
|
contracts: {
|
|
10740
10154
|
readonly multicall3: {
|
|
10741
10155
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10750,6 +10164,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10750
10164
|
readonly symbol: "ETH";
|
|
10751
10165
|
readonly decimals: 18;
|
|
10752
10166
|
};
|
|
10167
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10753
10168
|
rpcUrls: {
|
|
10754
10169
|
readonly default: {
|
|
10755
10170
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -10761,7 +10176,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10761
10176
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
10762
10177
|
formatters?: undefined;
|
|
10763
10178
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10764
|
-
}, undefined
|
|
10179
|
+
}, undefined>, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import('viem').WalletActions<{
|
|
10765
10180
|
graphCliName: string;
|
|
10766
10181
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
10767
10182
|
blockExplorers: {
|
|
@@ -10771,13 +10186,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10771
10186
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
10772
10187
|
};
|
|
10773
10188
|
};
|
|
10189
|
+
blockTime: 12000;
|
|
10774
10190
|
contracts: {
|
|
10775
|
-
readonly ensRegistry: {
|
|
10776
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10777
|
-
};
|
|
10778
10191
|
readonly ensUniversalResolver: {
|
|
10779
|
-
readonly address: "
|
|
10780
|
-
readonly blockCreated:
|
|
10192
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10193
|
+
readonly blockCreated: 23085558;
|
|
10781
10194
|
};
|
|
10782
10195
|
readonly multicall3: {
|
|
10783
10196
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10792,6 +10205,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10792
10205
|
readonly symbol: "ETH";
|
|
10793
10206
|
readonly decimals: 18;
|
|
10794
10207
|
};
|
|
10208
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10795
10209
|
rpcUrls: {
|
|
10796
10210
|
readonly default: {
|
|
10797
10211
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -10813,17 +10227,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10813
10227
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
10814
10228
|
};
|
|
10815
10229
|
};
|
|
10230
|
+
blockTime?: number | undefined | undefined;
|
|
10816
10231
|
contracts: {
|
|
10817
10232
|
readonly multicall3: {
|
|
10818
10233
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
10819
10234
|
readonly blockCreated: 751532;
|
|
10820
10235
|
};
|
|
10821
|
-
readonly ensRegistry: {
|
|
10822
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10823
|
-
};
|
|
10824
10236
|
readonly ensUniversalResolver: {
|
|
10825
|
-
readonly address: "
|
|
10826
|
-
readonly blockCreated:
|
|
10237
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10238
|
+
readonly blockCreated: 8928790;
|
|
10827
10239
|
};
|
|
10828
10240
|
};
|
|
10829
10241
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -10834,6 +10246,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10834
10246
|
readonly symbol: "ETH";
|
|
10835
10247
|
readonly decimals: 18;
|
|
10836
10248
|
};
|
|
10249
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10837
10250
|
rpcUrls: {
|
|
10838
10251
|
readonly default: {
|
|
10839
10252
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -10855,6 +10268,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10855
10268
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
10856
10269
|
};
|
|
10857
10270
|
};
|
|
10271
|
+
blockTime: 250;
|
|
10858
10272
|
contracts: {
|
|
10859
10273
|
readonly multicall3: {
|
|
10860
10274
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10869,6 +10283,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10869
10283
|
readonly symbol: "ETH";
|
|
10870
10284
|
readonly decimals: 18;
|
|
10871
10285
|
};
|
|
10286
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10872
10287
|
rpcUrls: {
|
|
10873
10288
|
readonly default: {
|
|
10874
10289
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -10890,6 +10305,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10890
10305
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
10891
10306
|
};
|
|
10892
10307
|
};
|
|
10308
|
+
blockTime: 250;
|
|
10893
10309
|
contracts: {
|
|
10894
10310
|
readonly multicall3: {
|
|
10895
10311
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10904,6 +10320,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10904
10320
|
readonly symbol: "ETH";
|
|
10905
10321
|
readonly decimals: 18;
|
|
10906
10322
|
};
|
|
10323
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10907
10324
|
rpcUrls: {
|
|
10908
10325
|
readonly default: {
|
|
10909
10326
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -10915,7 +10332,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10915
10332
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
10916
10333
|
formatters?: undefined;
|
|
10917
10334
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10918
|
-
}
|
|
10335
|
+
}, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import('viem').Client<HttpTransport, {
|
|
10919
10336
|
graphCliName: string;
|
|
10920
10337
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
10921
10338
|
blockExplorers: {
|
|
@@ -10925,13 +10342,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10925
10342
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
10926
10343
|
};
|
|
10927
10344
|
};
|
|
10345
|
+
blockTime: 12000;
|
|
10928
10346
|
contracts: {
|
|
10929
|
-
readonly ensRegistry: {
|
|
10930
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10931
|
-
};
|
|
10932
10347
|
readonly ensUniversalResolver: {
|
|
10933
|
-
readonly address: "
|
|
10934
|
-
readonly blockCreated:
|
|
10348
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10349
|
+
readonly blockCreated: 23085558;
|
|
10935
10350
|
};
|
|
10936
10351
|
readonly multicall3: {
|
|
10937
10352
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -10946,6 +10361,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10946
10361
|
readonly symbol: "ETH";
|
|
10947
10362
|
readonly decimals: 18;
|
|
10948
10363
|
};
|
|
10364
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10949
10365
|
rpcUrls: {
|
|
10950
10366
|
readonly default: {
|
|
10951
10367
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -10967,17 +10383,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10967
10383
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
10968
10384
|
};
|
|
10969
10385
|
};
|
|
10386
|
+
blockTime?: number | undefined | undefined;
|
|
10970
10387
|
contracts: {
|
|
10971
10388
|
readonly multicall3: {
|
|
10972
10389
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
10973
10390
|
readonly blockCreated: 751532;
|
|
10974
10391
|
};
|
|
10975
|
-
readonly ensRegistry: {
|
|
10976
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
10977
|
-
};
|
|
10978
10392
|
readonly ensUniversalResolver: {
|
|
10979
|
-
readonly address: "
|
|
10980
|
-
readonly blockCreated:
|
|
10393
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10394
|
+
readonly blockCreated: 8928790;
|
|
10981
10395
|
};
|
|
10982
10396
|
};
|
|
10983
10397
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -10988,6 +10402,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10988
10402
|
readonly symbol: "ETH";
|
|
10989
10403
|
readonly decimals: 18;
|
|
10990
10404
|
};
|
|
10405
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
10991
10406
|
rpcUrls: {
|
|
10992
10407
|
readonly default: {
|
|
10993
10408
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -11009,6 +10424,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11009
10424
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
11010
10425
|
};
|
|
11011
10426
|
};
|
|
10427
|
+
blockTime: 250;
|
|
11012
10428
|
contracts: {
|
|
11013
10429
|
readonly multicall3: {
|
|
11014
10430
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11023,6 +10439,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11023
10439
|
readonly symbol: "ETH";
|
|
11024
10440
|
readonly decimals: 18;
|
|
11025
10441
|
};
|
|
10442
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11026
10443
|
rpcUrls: {
|
|
11027
10444
|
readonly default: {
|
|
11028
10445
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -11044,6 +10461,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11044
10461
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
11045
10462
|
};
|
|
11046
10463
|
};
|
|
10464
|
+
blockTime: 250;
|
|
11047
10465
|
contracts: {
|
|
11048
10466
|
readonly multicall3: {
|
|
11049
10467
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11058,6 +10476,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11058
10476
|
readonly symbol: "ETH";
|
|
11059
10477
|
readonly decimals: 18;
|
|
11060
10478
|
};
|
|
10479
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11061
10480
|
rpcUrls: {
|
|
11062
10481
|
readonly default: {
|
|
11063
10482
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -11069,7 +10488,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11069
10488
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
11070
10489
|
formatters?: undefined;
|
|
11071
10490
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11072
|
-
}, undefined, import('viem').PublicRpcSchema,
|
|
10491
|
+
}, undefined, import('viem').PublicRpcSchema, import('viem').PublicActions<HttpTransport, {
|
|
11073
10492
|
graphCliName: string;
|
|
11074
10493
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
11075
10494
|
blockExplorers: {
|
|
@@ -11079,13 +10498,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11079
10498
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
11080
10499
|
};
|
|
11081
10500
|
};
|
|
10501
|
+
blockTime: 12000;
|
|
11082
10502
|
contracts: {
|
|
11083
|
-
readonly ensRegistry: {
|
|
11084
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11085
|
-
};
|
|
11086
10503
|
readonly ensUniversalResolver: {
|
|
11087
|
-
readonly address: "
|
|
11088
|
-
readonly blockCreated:
|
|
10504
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10505
|
+
readonly blockCreated: 23085558;
|
|
11089
10506
|
};
|
|
11090
10507
|
readonly multicall3: {
|
|
11091
10508
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11100,6 +10517,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11100
10517
|
readonly symbol: "ETH";
|
|
11101
10518
|
readonly decimals: 18;
|
|
11102
10519
|
};
|
|
10520
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11103
10521
|
rpcUrls: {
|
|
11104
10522
|
readonly default: {
|
|
11105
10523
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -11121,17 +10539,15 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11121
10539
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
11122
10540
|
};
|
|
11123
10541
|
};
|
|
10542
|
+
blockTime?: number | undefined | undefined;
|
|
11124
10543
|
contracts: {
|
|
11125
10544
|
readonly multicall3: {
|
|
11126
10545
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
11127
10546
|
readonly blockCreated: 751532;
|
|
11128
10547
|
};
|
|
11129
|
-
readonly ensRegistry: {
|
|
11130
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11131
|
-
};
|
|
11132
10548
|
readonly ensUniversalResolver: {
|
|
11133
|
-
readonly address: "
|
|
11134
|
-
readonly blockCreated:
|
|
10549
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10550
|
+
readonly blockCreated: 8928790;
|
|
11135
10551
|
};
|
|
11136
10552
|
};
|
|
11137
10553
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -11142,6 +10558,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11142
10558
|
readonly symbol: "ETH";
|
|
11143
10559
|
readonly decimals: 18;
|
|
11144
10560
|
};
|
|
10561
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11145
10562
|
rpcUrls: {
|
|
11146
10563
|
readonly default: {
|
|
11147
10564
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -11163,6 +10580,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11163
10580
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
11164
10581
|
};
|
|
11165
10582
|
};
|
|
10583
|
+
blockTime: 250;
|
|
11166
10584
|
contracts: {
|
|
11167
10585
|
readonly multicall3: {
|
|
11168
10586
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11177,6 +10595,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11177
10595
|
readonly symbol: "ETH";
|
|
11178
10596
|
readonly decimals: 18;
|
|
11179
10597
|
};
|
|
10598
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11180
10599
|
rpcUrls: {
|
|
11181
10600
|
readonly default: {
|
|
11182
10601
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -11198,6 +10617,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11198
10617
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
11199
10618
|
};
|
|
11200
10619
|
};
|
|
10620
|
+
blockTime: 250;
|
|
11201
10621
|
contracts: {
|
|
11202
10622
|
readonly multicall3: {
|
|
11203
10623
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11212,6 +10632,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11212
10632
|
readonly symbol: "ETH";
|
|
11213
10633
|
readonly decimals: 18;
|
|
11214
10634
|
};
|
|
10635
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11215
10636
|
rpcUrls: {
|
|
11216
10637
|
readonly default: {
|
|
11217
10638
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -11223,13 +10644,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
11223
10644
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
11224
10645
|
formatters?: undefined;
|
|
11225
10646
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11226
|
-
}
|
|
11227
|
-
};
|
|
11228
|
-
export type PublicClient = ReturnType<typeof buildPublicClient>;
|
|
11229
|
-
export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
11230
|
-
infuraKey: z.ZodReadonly<z.ZodString>;
|
|
11231
|
-
}, {
|
|
11232
|
-
chain: z.ZodDefault<z.ZodOptional<z.ZodType<{
|
|
10647
|
+
}>>) => client) => import('viem').Client<HttpTransport, {
|
|
11233
10648
|
graphCliName: string;
|
|
11234
10649
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
11235
10650
|
blockExplorers: {
|
|
@@ -11239,13 +10654,11 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11239
10654
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
11240
10655
|
};
|
|
11241
10656
|
};
|
|
10657
|
+
blockTime: 12000;
|
|
11242
10658
|
contracts: {
|
|
11243
|
-
readonly ensRegistry: {
|
|
11244
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11245
|
-
};
|
|
11246
10659
|
readonly ensUniversalResolver: {
|
|
11247
|
-
readonly address: "
|
|
11248
|
-
readonly blockCreated:
|
|
10660
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10661
|
+
readonly blockCreated: 23085558;
|
|
11249
10662
|
};
|
|
11250
10663
|
readonly multicall3: {
|
|
11251
10664
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11260,6 +10673,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11260
10673
|
readonly symbol: "ETH";
|
|
11261
10674
|
readonly decimals: 18;
|
|
11262
10675
|
};
|
|
10676
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11263
10677
|
rpcUrls: {
|
|
11264
10678
|
readonly default: {
|
|
11265
10679
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -11281,17 +10695,15 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11281
10695
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
11282
10696
|
};
|
|
11283
10697
|
};
|
|
10698
|
+
blockTime?: number | undefined | undefined;
|
|
11284
10699
|
contracts: {
|
|
11285
10700
|
readonly multicall3: {
|
|
11286
10701
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
11287
10702
|
readonly blockCreated: 751532;
|
|
11288
10703
|
};
|
|
11289
|
-
readonly ensRegistry: {
|
|
11290
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11291
|
-
};
|
|
11292
10704
|
readonly ensUniversalResolver: {
|
|
11293
|
-
readonly address: "
|
|
11294
|
-
readonly blockCreated:
|
|
10705
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10706
|
+
readonly blockCreated: 8928790;
|
|
11295
10707
|
};
|
|
11296
10708
|
};
|
|
11297
10709
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -11302,6 +10714,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11302
10714
|
readonly symbol: "ETH";
|
|
11303
10715
|
readonly decimals: 18;
|
|
11304
10716
|
};
|
|
10717
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11305
10718
|
rpcUrls: {
|
|
11306
10719
|
readonly default: {
|
|
11307
10720
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -11323,6 +10736,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11323
10736
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
11324
10737
|
};
|
|
11325
10738
|
};
|
|
10739
|
+
blockTime: 250;
|
|
11326
10740
|
contracts: {
|
|
11327
10741
|
readonly multicall3: {
|
|
11328
10742
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11337,6 +10751,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11337
10751
|
readonly symbol: "ETH";
|
|
11338
10752
|
readonly decimals: 18;
|
|
11339
10753
|
};
|
|
10754
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11340
10755
|
rpcUrls: {
|
|
11341
10756
|
readonly default: {
|
|
11342
10757
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -11358,6 +10773,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11358
10773
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
11359
10774
|
};
|
|
11360
10775
|
};
|
|
10776
|
+
blockTime: 250;
|
|
11361
10777
|
contracts: {
|
|
11362
10778
|
readonly multicall3: {
|
|
11363
10779
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11372,6 +10788,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11372
10788
|
readonly symbol: "ETH";
|
|
11373
10789
|
readonly decimals: 18;
|
|
11374
10790
|
};
|
|
10791
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11375
10792
|
rpcUrls: {
|
|
11376
10793
|
readonly default: {
|
|
11377
10794
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -11383,7 +10800,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11383
10800
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
11384
10801
|
formatters?: undefined;
|
|
11385
10802
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11386
|
-
},
|
|
10803
|
+
}, undefined, import('viem').PublicRpcSchema, { [K in keyof client]: client[K]; } & import('viem').PublicActions<HttpTransport, {
|
|
11387
10804
|
graphCliName: string;
|
|
11388
10805
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
11389
10806
|
blockExplorers: {
|
|
@@ -11393,13 +10810,11 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11393
10810
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
11394
10811
|
};
|
|
11395
10812
|
};
|
|
10813
|
+
blockTime: 12000;
|
|
11396
10814
|
contracts: {
|
|
11397
|
-
readonly ensRegistry: {
|
|
11398
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11399
|
-
};
|
|
11400
10815
|
readonly ensUniversalResolver: {
|
|
11401
|
-
readonly address: "
|
|
11402
|
-
readonly blockCreated:
|
|
10816
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10817
|
+
readonly blockCreated: 23085558;
|
|
11403
10818
|
};
|
|
11404
10819
|
readonly multicall3: {
|
|
11405
10820
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11414,6 +10829,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11414
10829
|
readonly symbol: "ETH";
|
|
11415
10830
|
readonly decimals: 18;
|
|
11416
10831
|
};
|
|
10832
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11417
10833
|
rpcUrls: {
|
|
11418
10834
|
readonly default: {
|
|
11419
10835
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -11435,17 +10851,15 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11435
10851
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
11436
10852
|
};
|
|
11437
10853
|
};
|
|
10854
|
+
blockTime?: number | undefined | undefined;
|
|
11438
10855
|
contracts: {
|
|
11439
10856
|
readonly multicall3: {
|
|
11440
10857
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
11441
10858
|
readonly blockCreated: 751532;
|
|
11442
10859
|
};
|
|
11443
|
-
readonly ensRegistry: {
|
|
11444
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11445
|
-
};
|
|
11446
10860
|
readonly ensUniversalResolver: {
|
|
11447
|
-
readonly address: "
|
|
11448
|
-
readonly blockCreated:
|
|
10861
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10862
|
+
readonly blockCreated: 8928790;
|
|
11449
10863
|
};
|
|
11450
10864
|
};
|
|
11451
10865
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -11456,6 +10870,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11456
10870
|
readonly symbol: "ETH";
|
|
11457
10871
|
readonly decimals: 18;
|
|
11458
10872
|
};
|
|
10873
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11459
10874
|
rpcUrls: {
|
|
11460
10875
|
readonly default: {
|
|
11461
10876
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -11477,6 +10892,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11477
10892
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
11478
10893
|
};
|
|
11479
10894
|
};
|
|
10895
|
+
blockTime: 250;
|
|
11480
10896
|
contracts: {
|
|
11481
10897
|
readonly multicall3: {
|
|
11482
10898
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11491,6 +10907,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11491
10907
|
readonly symbol: "ETH";
|
|
11492
10908
|
readonly decimals: 18;
|
|
11493
10909
|
};
|
|
10910
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11494
10911
|
rpcUrls: {
|
|
11495
10912
|
readonly default: {
|
|
11496
10913
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -11512,6 +10929,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11512
10929
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
11513
10930
|
};
|
|
11514
10931
|
};
|
|
10932
|
+
blockTime: 250;
|
|
11515
10933
|
contracts: {
|
|
11516
10934
|
readonly multicall3: {
|
|
11517
10935
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11526,6 +10944,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11526
10944
|
readonly symbol: "ETH";
|
|
11527
10945
|
readonly decimals: 18;
|
|
11528
10946
|
};
|
|
10947
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11529
10948
|
rpcUrls: {
|
|
11530
10949
|
readonly default: {
|
|
11531
10950
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -11537,10 +10956,12 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11537
10956
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
11538
10957
|
formatters?: undefined;
|
|
11539
10958
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11540
|
-
}
|
|
11541
|
-
}
|
|
11542
|
-
|
|
11543
|
-
|
|
10959
|
+
}>>;
|
|
10960
|
+
};
|
|
10961
|
+
export type PublicClient = ReturnType<typeof buildPublicClient>;
|
|
10962
|
+
export declare const BuildClientArgs: z.ZodObject<{
|
|
10963
|
+
infuraKey: z.ZodReadonly<z.ZodString>;
|
|
10964
|
+
chain: z.ZodDefault<z.ZodOptional<z.ZodCustom<{
|
|
11544
10965
|
graphCliName: string;
|
|
11545
10966
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
11546
10967
|
blockExplorers: {
|
|
@@ -11550,13 +10971,11 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11550
10971
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
11551
10972
|
};
|
|
11552
10973
|
};
|
|
10974
|
+
blockTime: 12000;
|
|
11553
10975
|
contracts: {
|
|
11554
|
-
readonly ensRegistry: {
|
|
11555
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11556
|
-
};
|
|
11557
10976
|
readonly ensUniversalResolver: {
|
|
11558
|
-
readonly address: "
|
|
11559
|
-
readonly blockCreated:
|
|
10977
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
10978
|
+
readonly blockCreated: 23085558;
|
|
11560
10979
|
};
|
|
11561
10980
|
readonly multicall3: {
|
|
11562
10981
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11571,6 +10990,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11571
10990
|
readonly symbol: "ETH";
|
|
11572
10991
|
readonly decimals: 18;
|
|
11573
10992
|
};
|
|
10993
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11574
10994
|
rpcUrls: {
|
|
11575
10995
|
readonly default: {
|
|
11576
10996
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -11592,17 +11012,15 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11592
11012
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
11593
11013
|
};
|
|
11594
11014
|
};
|
|
11015
|
+
blockTime?: number | undefined | undefined;
|
|
11595
11016
|
contracts: {
|
|
11596
11017
|
readonly multicall3: {
|
|
11597
11018
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
11598
11019
|
readonly blockCreated: 751532;
|
|
11599
11020
|
};
|
|
11600
|
-
readonly ensRegistry: {
|
|
11601
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11602
|
-
};
|
|
11603
11021
|
readonly ensUniversalResolver: {
|
|
11604
|
-
readonly address: "
|
|
11605
|
-
readonly blockCreated:
|
|
11022
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
11023
|
+
readonly blockCreated: 8928790;
|
|
11606
11024
|
};
|
|
11607
11025
|
};
|
|
11608
11026
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -11613,6 +11031,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11613
11031
|
readonly symbol: "ETH";
|
|
11614
11032
|
readonly decimals: 18;
|
|
11615
11033
|
};
|
|
11034
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11616
11035
|
rpcUrls: {
|
|
11617
11036
|
readonly default: {
|
|
11618
11037
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -11634,6 +11053,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11634
11053
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
11635
11054
|
};
|
|
11636
11055
|
};
|
|
11056
|
+
blockTime: 250;
|
|
11637
11057
|
contracts: {
|
|
11638
11058
|
readonly multicall3: {
|
|
11639
11059
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11648,6 +11068,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11648
11068
|
readonly symbol: "ETH";
|
|
11649
11069
|
readonly decimals: 18;
|
|
11650
11070
|
};
|
|
11071
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11651
11072
|
rpcUrls: {
|
|
11652
11073
|
readonly default: {
|
|
11653
11074
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -11669,6 +11090,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11669
11090
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
11670
11091
|
};
|
|
11671
11092
|
};
|
|
11093
|
+
blockTime: 250;
|
|
11672
11094
|
contracts: {
|
|
11673
11095
|
readonly multicall3: {
|
|
11674
11096
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11683,6 +11105,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11683
11105
|
readonly symbol: "ETH";
|
|
11684
11106
|
readonly decimals: 18;
|
|
11685
11107
|
};
|
|
11108
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11686
11109
|
rpcUrls: {
|
|
11687
11110
|
readonly default: {
|
|
11688
11111
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -11694,10 +11117,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11694
11117
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
11695
11118
|
formatters?: undefined;
|
|
11696
11119
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11697
|
-
}
|
|
11698
|
-
}, {
|
|
11699
|
-
infuraKey: string;
|
|
11700
|
-
chain?: {
|
|
11120
|
+
}, {
|
|
11701
11121
|
graphCliName: string;
|
|
11702
11122
|
caip2Id: `eip155:${string}` | `eip155:${number}` | `osmosis:${string}` | `osmosis:${number}` | `arweave:${string}` | `arweave:${number}` | `antelope:${string}` | `antelope:${number}` | `bip122:${string}` | `bip122:${number}` | `cosmos:${string}` | `cosmos:${number}` | `gear:${string}` | `gear:${number}` | `near:${string}` | `near:${number}` | `beacon:${string}` | `beacon:${number}` | `solana:${string}` | `solana:${number}` | `starknet:${string}` | `starknet:${number}` | `stellar:${string}` | `stellar:${number}`;
|
|
11703
11123
|
blockExplorers: {
|
|
@@ -11707,13 +11127,11 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11707
11127
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
11708
11128
|
};
|
|
11709
11129
|
};
|
|
11130
|
+
blockTime: 12000;
|
|
11710
11131
|
contracts: {
|
|
11711
|
-
readonly ensRegistry: {
|
|
11712
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11713
|
-
};
|
|
11714
11132
|
readonly ensUniversalResolver: {
|
|
11715
|
-
readonly address: "
|
|
11716
|
-
readonly blockCreated:
|
|
11133
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
11134
|
+
readonly blockCreated: 23085558;
|
|
11717
11135
|
};
|
|
11718
11136
|
readonly multicall3: {
|
|
11719
11137
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11728,6 +11146,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11728
11146
|
readonly symbol: "ETH";
|
|
11729
11147
|
readonly decimals: 18;
|
|
11730
11148
|
};
|
|
11149
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11731
11150
|
rpcUrls: {
|
|
11732
11151
|
readonly default: {
|
|
11733
11152
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -11749,17 +11168,15 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11749
11168
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
11750
11169
|
};
|
|
11751
11170
|
};
|
|
11171
|
+
blockTime?: number | undefined | undefined;
|
|
11752
11172
|
contracts: {
|
|
11753
11173
|
readonly multicall3: {
|
|
11754
11174
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
11755
11175
|
readonly blockCreated: 751532;
|
|
11756
11176
|
};
|
|
11757
|
-
readonly ensRegistry: {
|
|
11758
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11759
|
-
};
|
|
11760
11177
|
readonly ensUniversalResolver: {
|
|
11761
|
-
readonly address: "
|
|
11762
|
-
readonly blockCreated:
|
|
11178
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
11179
|
+
readonly blockCreated: 8928790;
|
|
11763
11180
|
};
|
|
11764
11181
|
};
|
|
11765
11182
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -11770,6 +11187,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11770
11187
|
readonly symbol: "ETH";
|
|
11771
11188
|
readonly decimals: 18;
|
|
11772
11189
|
};
|
|
11190
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11773
11191
|
rpcUrls: {
|
|
11774
11192
|
readonly default: {
|
|
11775
11193
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -11791,6 +11209,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11791
11209
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
11792
11210
|
};
|
|
11793
11211
|
};
|
|
11212
|
+
blockTime: 250;
|
|
11794
11213
|
contracts: {
|
|
11795
11214
|
readonly multicall3: {
|
|
11796
11215
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11805,6 +11224,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11805
11224
|
readonly symbol: "ETH";
|
|
11806
11225
|
readonly decimals: 18;
|
|
11807
11226
|
};
|
|
11227
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11808
11228
|
rpcUrls: {
|
|
11809
11229
|
readonly default: {
|
|
11810
11230
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -11826,6 +11246,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11826
11246
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
11827
11247
|
};
|
|
11828
11248
|
};
|
|
11249
|
+
blockTime: 250;
|
|
11829
11250
|
contracts: {
|
|
11830
11251
|
readonly multicall3: {
|
|
11831
11252
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11840,6 +11261,7 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11840
11261
|
readonly symbol: "ETH";
|
|
11841
11262
|
readonly decimals: 18;
|
|
11842
11263
|
};
|
|
11264
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11843
11265
|
rpcUrls: {
|
|
11844
11266
|
readonly default: {
|
|
11845
11267
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -11851,8 +11273,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11851
11273
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
11852
11274
|
formatters?: undefined;
|
|
11853
11275
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11854
|
-
}
|
|
11855
|
-
}>;
|
|
11276
|
+
}>>>;
|
|
11277
|
+
}, z.core.$strip>;
|
|
11856
11278
|
export type BuildClientArgs = z.infer<typeof BuildClientArgs>;
|
|
11857
11279
|
export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
11858
11280
|
account: undefined;
|
|
@@ -11873,13 +11295,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11873
11295
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
11874
11296
|
};
|
|
11875
11297
|
};
|
|
11298
|
+
blockTime: 12000;
|
|
11876
11299
|
contracts: {
|
|
11877
|
-
readonly ensRegistry: {
|
|
11878
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11879
|
-
};
|
|
11880
11300
|
readonly ensUniversalResolver: {
|
|
11881
|
-
readonly address: "
|
|
11882
|
-
readonly blockCreated:
|
|
11301
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
11302
|
+
readonly blockCreated: 23085558;
|
|
11883
11303
|
};
|
|
11884
11304
|
readonly multicall3: {
|
|
11885
11305
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11894,6 +11314,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11894
11314
|
readonly symbol: "ETH";
|
|
11895
11315
|
readonly decimals: 18;
|
|
11896
11316
|
};
|
|
11317
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11897
11318
|
rpcUrls: {
|
|
11898
11319
|
readonly default: {
|
|
11899
11320
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -11915,17 +11336,15 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11915
11336
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
11916
11337
|
};
|
|
11917
11338
|
};
|
|
11339
|
+
blockTime?: number | undefined | undefined;
|
|
11918
11340
|
contracts: {
|
|
11919
11341
|
readonly multicall3: {
|
|
11920
11342
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
11921
11343
|
readonly blockCreated: 751532;
|
|
11922
11344
|
};
|
|
11923
|
-
readonly ensRegistry: {
|
|
11924
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
11925
|
-
};
|
|
11926
11345
|
readonly ensUniversalResolver: {
|
|
11927
|
-
readonly address: "
|
|
11928
|
-
readonly blockCreated:
|
|
11346
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
11347
|
+
readonly blockCreated: 8928790;
|
|
11929
11348
|
};
|
|
11930
11349
|
};
|
|
11931
11350
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -11936,6 +11355,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11936
11355
|
readonly symbol: "ETH";
|
|
11937
11356
|
readonly decimals: 18;
|
|
11938
11357
|
};
|
|
11358
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11939
11359
|
rpcUrls: {
|
|
11940
11360
|
readonly default: {
|
|
11941
11361
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -11957,6 +11377,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11957
11377
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
11958
11378
|
};
|
|
11959
11379
|
};
|
|
11380
|
+
blockTime: 250;
|
|
11960
11381
|
contracts: {
|
|
11961
11382
|
readonly multicall3: {
|
|
11962
11383
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -11971,6 +11392,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11971
11392
|
readonly symbol: "ETH";
|
|
11972
11393
|
readonly decimals: 18;
|
|
11973
11394
|
};
|
|
11395
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
11974
11396
|
rpcUrls: {
|
|
11975
11397
|
readonly default: {
|
|
11976
11398
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -11992,6 +11414,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11992
11414
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
11993
11415
|
};
|
|
11994
11416
|
};
|
|
11417
|
+
blockTime: 250;
|
|
11995
11418
|
contracts: {
|
|
11996
11419
|
readonly multicall3: {
|
|
11997
11420
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12006,6 +11429,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12006
11429
|
readonly symbol: "ETH";
|
|
12007
11430
|
readonly decimals: 18;
|
|
12008
11431
|
};
|
|
11432
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12009
11433
|
rpcUrls: {
|
|
12010
11434
|
readonly default: {
|
|
12011
11435
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -12018,6 +11442,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12018
11442
|
formatters?: undefined;
|
|
12019
11443
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12020
11444
|
};
|
|
11445
|
+
experimental_blockTag?: import('viem').BlockTag | undefined;
|
|
12021
11446
|
key: string;
|
|
12022
11447
|
name: string;
|
|
12023
11448
|
pollingInterval: number;
|
|
@@ -12320,6 +11745,10 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12320
11745
|
Method: "wallet_disconnect";
|
|
12321
11746
|
Parameters?: undefined;
|
|
12322
11747
|
ReturnType: void;
|
|
11748
|
+
}, {
|
|
11749
|
+
Method: "wallet_getAssets";
|
|
11750
|
+
Parameters?: [import('viem').WalletGetAssetsParameters];
|
|
11751
|
+
ReturnType: import('viem').WalletGetAssetsReturnType;
|
|
12323
11752
|
}, {
|
|
12324
11753
|
Method: "wallet_getCallsStatus";
|
|
12325
11754
|
Parameters?: [string];
|
|
@@ -12436,6 +11865,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12436
11865
|
cacheTime?: undefined;
|
|
12437
11866
|
ccipRead?: undefined;
|
|
12438
11867
|
chain?: undefined;
|
|
11868
|
+
experimental_blockTag?: undefined;
|
|
12439
11869
|
key?: undefined;
|
|
12440
11870
|
name?: undefined;
|
|
12441
11871
|
pollingInterval?: undefined;
|
|
@@ -12453,13 +11883,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12453
11883
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
12454
11884
|
};
|
|
12455
11885
|
};
|
|
11886
|
+
blockTime: 12000;
|
|
12456
11887
|
contracts: {
|
|
12457
|
-
readonly ensRegistry: {
|
|
12458
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
12459
|
-
};
|
|
12460
11888
|
readonly ensUniversalResolver: {
|
|
12461
|
-
readonly address: "
|
|
12462
|
-
readonly blockCreated:
|
|
11889
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
11890
|
+
readonly blockCreated: 23085558;
|
|
12463
11891
|
};
|
|
12464
11892
|
readonly multicall3: {
|
|
12465
11893
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12474,6 +11902,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12474
11902
|
readonly symbol: "ETH";
|
|
12475
11903
|
readonly decimals: 18;
|
|
12476
11904
|
};
|
|
11905
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12477
11906
|
rpcUrls: {
|
|
12478
11907
|
readonly default: {
|
|
12479
11908
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -12495,17 +11924,15 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12495
11924
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
12496
11925
|
};
|
|
12497
11926
|
};
|
|
11927
|
+
blockTime?: number | undefined | undefined;
|
|
12498
11928
|
contracts: {
|
|
12499
11929
|
readonly multicall3: {
|
|
12500
11930
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
12501
11931
|
readonly blockCreated: 751532;
|
|
12502
11932
|
};
|
|
12503
|
-
readonly ensRegistry: {
|
|
12504
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
12505
|
-
};
|
|
12506
11933
|
readonly ensUniversalResolver: {
|
|
12507
|
-
readonly address: "
|
|
12508
|
-
readonly blockCreated:
|
|
11934
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
11935
|
+
readonly blockCreated: 8928790;
|
|
12509
11936
|
};
|
|
12510
11937
|
};
|
|
12511
11938
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -12516,6 +11943,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12516
11943
|
readonly symbol: "ETH";
|
|
12517
11944
|
readonly decimals: 18;
|
|
12518
11945
|
};
|
|
11946
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12519
11947
|
rpcUrls: {
|
|
12520
11948
|
readonly default: {
|
|
12521
11949
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -12537,6 +11965,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12537
11965
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
12538
11966
|
};
|
|
12539
11967
|
};
|
|
11968
|
+
blockTime: 250;
|
|
12540
11969
|
contracts: {
|
|
12541
11970
|
readonly multicall3: {
|
|
12542
11971
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12551,6 +11980,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12551
11980
|
readonly symbol: "ETH";
|
|
12552
11981
|
readonly decimals: 18;
|
|
12553
11982
|
};
|
|
11983
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12554
11984
|
rpcUrls: {
|
|
12555
11985
|
readonly default: {
|
|
12556
11986
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -12572,6 +12002,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12572
12002
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
12573
12003
|
};
|
|
12574
12004
|
};
|
|
12005
|
+
blockTime: 250;
|
|
12575
12006
|
contracts: {
|
|
12576
12007
|
readonly multicall3: {
|
|
12577
12008
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12586,6 +12017,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12586
12017
|
readonly symbol: "ETH";
|
|
12587
12018
|
readonly decimals: 18;
|
|
12588
12019
|
};
|
|
12020
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12589
12021
|
rpcUrls: {
|
|
12590
12022
|
readonly default: {
|
|
12591
12023
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -12607,13 +12039,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12607
12039
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
12608
12040
|
};
|
|
12609
12041
|
};
|
|
12042
|
+
blockTime: 12000;
|
|
12610
12043
|
contracts: {
|
|
12611
|
-
readonly ensRegistry: {
|
|
12612
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
12613
|
-
};
|
|
12614
12044
|
readonly ensUniversalResolver: {
|
|
12615
|
-
readonly address: "
|
|
12616
|
-
readonly blockCreated:
|
|
12045
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
12046
|
+
readonly blockCreated: 23085558;
|
|
12617
12047
|
};
|
|
12618
12048
|
readonly multicall3: {
|
|
12619
12049
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12628,6 +12058,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12628
12058
|
readonly symbol: "ETH";
|
|
12629
12059
|
readonly decimals: 18;
|
|
12630
12060
|
};
|
|
12061
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12631
12062
|
rpcUrls: {
|
|
12632
12063
|
readonly default: {
|
|
12633
12064
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -12649,17 +12080,15 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12649
12080
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
12650
12081
|
};
|
|
12651
12082
|
};
|
|
12083
|
+
blockTime?: number | undefined | undefined;
|
|
12652
12084
|
contracts: {
|
|
12653
12085
|
readonly multicall3: {
|
|
12654
12086
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
12655
12087
|
readonly blockCreated: 751532;
|
|
12656
12088
|
};
|
|
12657
|
-
readonly ensRegistry: {
|
|
12658
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
12659
|
-
};
|
|
12660
12089
|
readonly ensUniversalResolver: {
|
|
12661
|
-
readonly address: "
|
|
12662
|
-
readonly blockCreated:
|
|
12090
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
12091
|
+
readonly blockCreated: 8928790;
|
|
12663
12092
|
};
|
|
12664
12093
|
};
|
|
12665
12094
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -12670,6 +12099,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12670
12099
|
readonly symbol: "ETH";
|
|
12671
12100
|
readonly decimals: 18;
|
|
12672
12101
|
};
|
|
12102
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12673
12103
|
rpcUrls: {
|
|
12674
12104
|
readonly default: {
|
|
12675
12105
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -12691,6 +12121,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12691
12121
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
12692
12122
|
};
|
|
12693
12123
|
};
|
|
12124
|
+
blockTime: 250;
|
|
12694
12125
|
contracts: {
|
|
12695
12126
|
readonly multicall3: {
|
|
12696
12127
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12705,6 +12136,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12705
12136
|
readonly symbol: "ETH";
|
|
12706
12137
|
readonly decimals: 18;
|
|
12707
12138
|
};
|
|
12139
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12708
12140
|
rpcUrls: {
|
|
12709
12141
|
readonly default: {
|
|
12710
12142
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -12726,6 +12158,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12726
12158
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
12727
12159
|
};
|
|
12728
12160
|
};
|
|
12161
|
+
blockTime: 250;
|
|
12729
12162
|
contracts: {
|
|
12730
12163
|
readonly multicall3: {
|
|
12731
12164
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12740,6 +12173,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12740
12173
|
readonly symbol: "ETH";
|
|
12741
12174
|
readonly decimals: 18;
|
|
12742
12175
|
};
|
|
12176
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12743
12177
|
rpcUrls: {
|
|
12744
12178
|
readonly default: {
|
|
12745
12179
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -12761,13 +12195,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12761
12195
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
12762
12196
|
};
|
|
12763
12197
|
};
|
|
12198
|
+
blockTime: 12000;
|
|
12764
12199
|
contracts: {
|
|
12765
|
-
readonly ensRegistry: {
|
|
12766
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
12767
|
-
};
|
|
12768
12200
|
readonly ensUniversalResolver: {
|
|
12769
|
-
readonly address: "
|
|
12770
|
-
readonly blockCreated:
|
|
12201
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
12202
|
+
readonly blockCreated: 23085558;
|
|
12771
12203
|
};
|
|
12772
12204
|
readonly multicall3: {
|
|
12773
12205
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12782,6 +12214,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12782
12214
|
readonly symbol: "ETH";
|
|
12783
12215
|
readonly decimals: 18;
|
|
12784
12216
|
};
|
|
12217
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12785
12218
|
rpcUrls: {
|
|
12786
12219
|
readonly default: {
|
|
12787
12220
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -12803,17 +12236,15 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12803
12236
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
12804
12237
|
};
|
|
12805
12238
|
};
|
|
12239
|
+
blockTime?: number | undefined | undefined;
|
|
12806
12240
|
contracts: {
|
|
12807
12241
|
readonly multicall3: {
|
|
12808
12242
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
12809
12243
|
readonly blockCreated: 751532;
|
|
12810
12244
|
};
|
|
12811
|
-
readonly ensRegistry: {
|
|
12812
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
12813
|
-
};
|
|
12814
12245
|
readonly ensUniversalResolver: {
|
|
12815
|
-
readonly address: "
|
|
12816
|
-
readonly blockCreated:
|
|
12246
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
12247
|
+
readonly blockCreated: 8928790;
|
|
12817
12248
|
};
|
|
12818
12249
|
};
|
|
12819
12250
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -12824,6 +12255,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12824
12255
|
readonly symbol: "ETH";
|
|
12825
12256
|
readonly decimals: 18;
|
|
12826
12257
|
};
|
|
12258
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12827
12259
|
rpcUrls: {
|
|
12828
12260
|
readonly default: {
|
|
12829
12261
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -12845,6 +12277,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12845
12277
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
12846
12278
|
};
|
|
12847
12279
|
};
|
|
12280
|
+
blockTime: 250;
|
|
12848
12281
|
contracts: {
|
|
12849
12282
|
readonly multicall3: {
|
|
12850
12283
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12859,6 +12292,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12859
12292
|
readonly symbol: "ETH";
|
|
12860
12293
|
readonly decimals: 18;
|
|
12861
12294
|
};
|
|
12295
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12862
12296
|
rpcUrls: {
|
|
12863
12297
|
readonly default: {
|
|
12864
12298
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -12880,6 +12314,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12880
12314
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
12881
12315
|
};
|
|
12882
12316
|
};
|
|
12317
|
+
blockTime: 250;
|
|
12883
12318
|
contracts: {
|
|
12884
12319
|
readonly multicall3: {
|
|
12885
12320
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12894,6 +12329,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12894
12329
|
readonly symbol: "ETH";
|
|
12895
12330
|
readonly decimals: 18;
|
|
12896
12331
|
};
|
|
12332
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12897
12333
|
rpcUrls: {
|
|
12898
12334
|
readonly default: {
|
|
12899
12335
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
@@ -12912,6 +12348,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12912
12348
|
cacheTime?: undefined;
|
|
12913
12349
|
ccipRead?: undefined;
|
|
12914
12350
|
chain?: undefined;
|
|
12351
|
+
experimental_blockTag?: undefined;
|
|
12915
12352
|
key?: undefined;
|
|
12916
12353
|
name?: undefined;
|
|
12917
12354
|
pollingInterval?: undefined;
|
|
@@ -12929,13 +12366,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12929
12366
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
12930
12367
|
};
|
|
12931
12368
|
};
|
|
12369
|
+
blockTime: 12000;
|
|
12932
12370
|
contracts: {
|
|
12933
|
-
readonly ensRegistry: {
|
|
12934
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
12935
|
-
};
|
|
12936
12371
|
readonly ensUniversalResolver: {
|
|
12937
|
-
readonly address: "
|
|
12938
|
-
readonly blockCreated:
|
|
12372
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
12373
|
+
readonly blockCreated: 23085558;
|
|
12939
12374
|
};
|
|
12940
12375
|
readonly multicall3: {
|
|
12941
12376
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -12950,6 +12385,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12950
12385
|
readonly symbol: "ETH";
|
|
12951
12386
|
readonly decimals: 18;
|
|
12952
12387
|
};
|
|
12388
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12953
12389
|
rpcUrls: {
|
|
12954
12390
|
readonly default: {
|
|
12955
12391
|
readonly http: readonly ["https://eth.merkle.io"];
|
|
@@ -12971,17 +12407,15 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12971
12407
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
12972
12408
|
};
|
|
12973
12409
|
};
|
|
12410
|
+
blockTime?: number | undefined | undefined;
|
|
12974
12411
|
contracts: {
|
|
12975
12412
|
readonly multicall3: {
|
|
12976
12413
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
12977
12414
|
readonly blockCreated: 751532;
|
|
12978
12415
|
};
|
|
12979
|
-
readonly ensRegistry: {
|
|
12980
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
12981
|
-
};
|
|
12982
12416
|
readonly ensUniversalResolver: {
|
|
12983
|
-
readonly address: "
|
|
12984
|
-
readonly blockCreated:
|
|
12417
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
12418
|
+
readonly blockCreated: 8928790;
|
|
12985
12419
|
};
|
|
12986
12420
|
};
|
|
12987
12421
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -12992,6 +12426,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12992
12426
|
readonly symbol: "ETH";
|
|
12993
12427
|
readonly decimals: 18;
|
|
12994
12428
|
};
|
|
12429
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
12995
12430
|
rpcUrls: {
|
|
12996
12431
|
readonly default: {
|
|
12997
12432
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
@@ -13013,6 +12448,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
13013
12448
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
13014
12449
|
};
|
|
13015
12450
|
};
|
|
12451
|
+
blockTime: 250;
|
|
13016
12452
|
contracts: {
|
|
13017
12453
|
readonly multicall3: {
|
|
13018
12454
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -13027,6 +12463,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
13027
12463
|
readonly symbol: "ETH";
|
|
13028
12464
|
readonly decimals: 18;
|
|
13029
12465
|
};
|
|
12466
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
13030
12467
|
rpcUrls: {
|
|
13031
12468
|
readonly default: {
|
|
13032
12469
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
@@ -13048,6 +12485,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
13048
12485
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
13049
12486
|
};
|
|
13050
12487
|
};
|
|
12488
|
+
blockTime: 250;
|
|
13051
12489
|
contracts: {
|
|
13052
12490
|
readonly multicall3: {
|
|
13053
12491
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -13062,6 +12500,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
13062
12500
|
readonly symbol: "ETH";
|
|
13063
12501
|
readonly decimals: 18;
|
|
13064
12502
|
};
|
|
12503
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
13065
12504
|
rpcUrls: {
|
|
13066
12505
|
readonly default: {
|
|
13067
12506
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|