@edgeandnode/graph-auth-kit 7.5.0-icon-to-addon-1758045648781-317ba1a140fbfa3ba04cadaaa1befd7b3d0151b5 → 7.5.0-icon-to-addon-1758730267023-bafbd042ea0e11dee4b46dbb9237c2e9173b980f
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-B2jD5URF.js → GraphAuthKitInner.context-4tahCZlU.js} +4 -4
- package/dist/client.d.ts +636 -1480
- package/dist/client.d.ts.map +1 -1
- package/dist/constants.d.ts +10 -22
- package/dist/constants.d.ts.map +1 -1
- package/dist/ens/index.js +1 -1
- package/dist/{hooks-BoW9sCzH.js → hooks-CW9U91xq.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 +8 -95
- package/dist/test-harness/utils.d.ts.map +1 -1
- package/dist/types.d.ts +4 -23
- package/dist/types.d.ts.map +1 -1
- package/dist/{useGraphAuthKitEnsNames-BdmeO9s9.js → useGraphAuthKitEnsNames-DSfxgVd2.js} +2 -2
- package/dist/{useWaitForSafeTransaction-Dp9F1uEs.js → useWaitForSafeTransaction-qzXyQLlA.js} +2 -2
- package/dist/{utils-mZHxBBOb.js → utils-DhU0bGPc.js} +1 -1
- package/package.json +22 -22
package/dist/client.d.ts
CHANGED
|
@@ -2,21 +2,13 @@ import { HttpTransport } from 'viem';
|
|
|
2
2
|
import { z } from 'zod';
|
|
3
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
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,14 +18,11 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
26
18
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
27
19
|
};
|
|
28
20
|
};
|
|
29
|
-
blockTime
|
|
21
|
+
blockTime: 12000;
|
|
30
22
|
contracts: {
|
|
31
|
-
readonly ensRegistry: {
|
|
32
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
33
|
-
};
|
|
34
23
|
readonly ensUniversalResolver: {
|
|
35
|
-
readonly address: "
|
|
36
|
-
readonly blockCreated:
|
|
24
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
25
|
+
readonly blockCreated: 23085558;
|
|
37
26
|
};
|
|
38
27
|
readonly multicall3: {
|
|
39
28
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -76,12 +65,9 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
76
65
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
77
66
|
readonly blockCreated: 751532;
|
|
78
67
|
};
|
|
79
|
-
readonly ensRegistry: {
|
|
80
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
81
|
-
};
|
|
82
68
|
readonly ensUniversalResolver: {
|
|
83
|
-
readonly address: "
|
|
84
|
-
readonly blockCreated:
|
|
69
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
70
|
+
readonly blockCreated: 8928790;
|
|
85
71
|
};
|
|
86
72
|
};
|
|
87
73
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -178,7 +164,7 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
178
164
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
179
165
|
formatters?: undefined;
|
|
180
166
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
181
|
-
},
|
|
167
|
+
}, {
|
|
182
168
|
graphCliName: string;
|
|
183
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}`;
|
|
184
170
|
blockExplorers: {
|
|
@@ -188,14 +174,11 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
188
174
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
189
175
|
};
|
|
190
176
|
};
|
|
191
|
-
blockTime
|
|
177
|
+
blockTime: 12000;
|
|
192
178
|
contracts: {
|
|
193
|
-
readonly ensRegistry: {
|
|
194
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
195
|
-
};
|
|
196
179
|
readonly ensUniversalResolver: {
|
|
197
|
-
readonly address: "
|
|
198
|
-
readonly blockCreated:
|
|
180
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
181
|
+
readonly blockCreated: 23085558;
|
|
199
182
|
};
|
|
200
183
|
readonly multicall3: {
|
|
201
184
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -238,12 +221,9 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
238
221
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
239
222
|
readonly blockCreated: 751532;
|
|
240
223
|
};
|
|
241
|
-
readonly ensRegistry: {
|
|
242
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
243
|
-
};
|
|
244
224
|
readonly ensUniversalResolver: {
|
|
245
|
-
readonly address: "
|
|
246
|
-
readonly blockCreated:
|
|
225
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
226
|
+
readonly blockCreated: 8928790;
|
|
247
227
|
};
|
|
248
228
|
};
|
|
249
229
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -341,8 +321,18 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
341
321
|
formatters?: undefined;
|
|
342
322
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
343
323
|
}>>>;
|
|
344
|
-
},
|
|
345
|
-
|
|
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;
|
|
346
336
|
chain: {
|
|
347
337
|
graphCliName: string;
|
|
348
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}`;
|
|
@@ -353,14 +343,11 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
353
343
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
354
344
|
};
|
|
355
345
|
};
|
|
356
|
-
blockTime
|
|
346
|
+
blockTime: 12000;
|
|
357
347
|
contracts: {
|
|
358
|
-
readonly ensRegistry: {
|
|
359
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
360
|
-
};
|
|
361
348
|
readonly ensUniversalResolver: {
|
|
362
|
-
readonly address: "
|
|
363
|
-
readonly blockCreated:
|
|
349
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
350
|
+
readonly blockCreated: 23085558;
|
|
364
351
|
};
|
|
365
352
|
readonly multicall3: {
|
|
366
353
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -403,12 +390,9 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
403
390
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
404
391
|
readonly blockCreated: 751532;
|
|
405
392
|
};
|
|
406
|
-
readonly ensRegistry: {
|
|
407
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
408
|
-
};
|
|
409
393
|
readonly ensUniversalResolver: {
|
|
410
|
-
readonly address: "
|
|
411
|
-
readonly blockCreated:
|
|
394
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
395
|
+
readonly blockCreated: 8928790;
|
|
412
396
|
};
|
|
413
397
|
};
|
|
414
398
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -506,9 +490,18 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
506
490
|
formatters?: undefined;
|
|
507
491
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
508
492
|
};
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
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<{
|
|
512
505
|
graphCliName: string;
|
|
513
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}`;
|
|
514
507
|
blockExplorers: {
|
|
@@ -518,14 +511,11 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
518
511
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
519
512
|
};
|
|
520
513
|
};
|
|
521
|
-
blockTime
|
|
514
|
+
blockTime: 12000;
|
|
522
515
|
contracts: {
|
|
523
|
-
readonly ensRegistry: {
|
|
524
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
525
|
-
};
|
|
526
516
|
readonly ensUniversalResolver: {
|
|
527
|
-
readonly address: "
|
|
528
|
-
readonly blockCreated:
|
|
517
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
518
|
+
readonly blockCreated: 23085558;
|
|
529
519
|
};
|
|
530
520
|
readonly multicall3: {
|
|
531
521
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -568,12 +558,9 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
568
558
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
569
559
|
readonly blockCreated: 751532;
|
|
570
560
|
};
|
|
571
|
-
readonly ensRegistry: {
|
|
572
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
573
|
-
};
|
|
574
561
|
readonly ensUniversalResolver: {
|
|
575
|
-
readonly address: "
|
|
576
|
-
readonly blockCreated:
|
|
562
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
563
|
+
readonly blockCreated: 8928790;
|
|
577
564
|
};
|
|
578
565
|
};
|
|
579
566
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -670,20 +657,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<{
|
|
|
670
657
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
671
658
|
formatters?: undefined;
|
|
672
659
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
export type BuildPublicClientArgs = z.infer<typeof BuildPublicClientArgs>;
|
|
676
|
-
export declare function isBuildPublicClientArgs(args: any): args is BuildClientArgs;
|
|
677
|
-
export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClientArgs): {
|
|
678
|
-
account: undefined;
|
|
679
|
-
batch?: {
|
|
680
|
-
multicall?: boolean | import('viem').Prettify<import('viem').MulticallBatchOptions> | undefined;
|
|
681
|
-
} | undefined;
|
|
682
|
-
cacheTime: number;
|
|
683
|
-
ccipRead?: false | {
|
|
684
|
-
request?: (parameters: import('viem').CcipRequestParameters) => Promise<`0x${string}`>;
|
|
685
|
-
} | undefined;
|
|
686
|
-
chain: {
|
|
660
|
+
}>) => Promise<import('viem').CallReturnType>;
|
|
661
|
+
createAccessList: (parameters: import('viem').CreateAccessListParameters<{
|
|
687
662
|
graphCliName: string;
|
|
688
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}`;
|
|
689
664
|
blockExplorers: {
|
|
@@ -693,14 +668,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
693
668
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
694
669
|
};
|
|
695
670
|
};
|
|
696
|
-
blockTime
|
|
671
|
+
blockTime: 12000;
|
|
697
672
|
contracts: {
|
|
698
|
-
readonly ensRegistry: {
|
|
699
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
700
|
-
};
|
|
701
673
|
readonly ensUniversalResolver: {
|
|
702
|
-
readonly address: "
|
|
703
|
-
readonly blockCreated:
|
|
674
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
675
|
+
readonly blockCreated: 23085558;
|
|
704
676
|
};
|
|
705
677
|
readonly multicall3: {
|
|
706
678
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -743,12 +715,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
743
715
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
744
716
|
readonly blockCreated: 751532;
|
|
745
717
|
};
|
|
746
|
-
readonly ensRegistry: {
|
|
747
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
748
|
-
};
|
|
749
718
|
readonly ensUniversalResolver: {
|
|
750
|
-
readonly address: "
|
|
751
|
-
readonly blockCreated:
|
|
719
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
720
|
+
readonly blockCreated: 8928790;
|
|
752
721
|
};
|
|
753
722
|
};
|
|
754
723
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -845,19 +814,16 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
845
814
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
846
815
|
formatters?: undefined;
|
|
847
816
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
848
|
-
}
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
type: string;
|
|
859
|
-
uid: string;
|
|
860
|
-
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('viem').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('viem').AbiEvent | undefined = undefined, const abiEvents extends readonly import('viem').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('viem').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('viem').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<{
|
|
861
827
|
graphCliName: string;
|
|
862
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}`;
|
|
863
829
|
blockExplorers: {
|
|
@@ -867,14 +833,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
867
833
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
868
834
|
};
|
|
869
835
|
};
|
|
870
|
-
blockTime
|
|
836
|
+
blockTime: 12000;
|
|
871
837
|
contracts: {
|
|
872
|
-
readonly ensRegistry: {
|
|
873
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
874
|
-
};
|
|
875
838
|
readonly ensUniversalResolver: {
|
|
876
|
-
readonly address: "
|
|
877
|
-
readonly blockCreated:
|
|
839
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
840
|
+
readonly blockCreated: 23085558;
|
|
878
841
|
};
|
|
879
842
|
readonly multicall3: {
|
|
880
843
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -917,12 +880,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
917
880
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
918
881
|
readonly blockCreated: 751532;
|
|
919
882
|
};
|
|
920
|
-
readonly ensRegistry: {
|
|
921
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
922
|
-
};
|
|
923
883
|
readonly ensUniversalResolver: {
|
|
924
|
-
readonly address: "
|
|
925
|
-
readonly blockCreated:
|
|
884
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
885
|
+
readonly blockCreated: 8928790;
|
|
926
886
|
};
|
|
927
887
|
};
|
|
928
888
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1019,8 +979,177 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1019
979
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1020
980
|
formatters?: undefined;
|
|
1021
981
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1022
|
-
}>) => Promise<import('viem').
|
|
1023
|
-
|
|
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('viem').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('viem').Address;
|
|
1014
|
+
gas: bigint;
|
|
1015
|
+
nonce: number;
|
|
1016
|
+
to: import('viem').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('viem').Address;
|
|
1039
|
+
gas: bigint;
|
|
1040
|
+
nonce: number;
|
|
1041
|
+
to: import('viem').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('viem').Address;
|
|
1064
|
+
gas: bigint;
|
|
1065
|
+
nonce: number;
|
|
1066
|
+
to: import('viem').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('viem').Address;
|
|
1089
|
+
gas: bigint;
|
|
1090
|
+
nonce: number;
|
|
1091
|
+
to: import('viem').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('viem').Address;
|
|
1114
|
+
gas: bigint;
|
|
1115
|
+
nonce: number;
|
|
1116
|
+
to: import('viem').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('viem').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<{
|
|
1024
1153
|
graphCliName: string;
|
|
1025
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}`;
|
|
1026
1155
|
blockExplorers: {
|
|
@@ -1030,14 +1159,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1030
1159
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1031
1160
|
};
|
|
1032
1161
|
};
|
|
1033
|
-
blockTime
|
|
1162
|
+
blockTime: 12000;
|
|
1034
1163
|
contracts: {
|
|
1035
|
-
readonly ensRegistry: {
|
|
1036
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1037
|
-
};
|
|
1038
1164
|
readonly ensUniversalResolver: {
|
|
1039
|
-
readonly address: "
|
|
1040
|
-
readonly blockCreated:
|
|
1165
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1166
|
+
readonly blockCreated: 23085558;
|
|
1041
1167
|
};
|
|
1042
1168
|
readonly multicall3: {
|
|
1043
1169
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1080,12 +1206,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1080
1206
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1081
1207
|
readonly blockCreated: 751532;
|
|
1082
1208
|
};
|
|
1083
|
-
readonly ensRegistry: {
|
|
1084
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1085
|
-
};
|
|
1086
1209
|
readonly ensUniversalResolver: {
|
|
1087
|
-
readonly address: "
|
|
1088
|
-
readonly blockCreated:
|
|
1210
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1211
|
+
readonly blockCreated: 8928790;
|
|
1089
1212
|
};
|
|
1090
1213
|
};
|
|
1091
1214
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1182,33 +1305,157 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1182
1305
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1183
1306
|
formatters?: undefined;
|
|
1184
1307
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1185
|
-
}>) => Promise<
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1308
|
+
}, chainOverride, type> | undefined) => Promise<import('viem').EstimateFeesPerGasReturnType<type>>;
|
|
1309
|
+
getFilterChanges: <filterType extends import('viem').FilterType, const abi extends import('viem').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('viem').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('viem').AbiEvent | undefined = undefined, const abiEvents extends readonly import('viem').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('viem').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('viem').Address;
|
|
1320
|
+
gas: bigint;
|
|
1321
|
+
nonce: number;
|
|
1322
|
+
to: import('viem').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('viem').Address;
|
|
1345
|
+
gas: bigint;
|
|
1346
|
+
nonce: number;
|
|
1347
|
+
to: import('viem').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('viem').Address;
|
|
1370
|
+
gas: bigint;
|
|
1371
|
+
nonce: number;
|
|
1372
|
+
to: import('viem').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('viem').Address;
|
|
1395
|
+
gas: bigint;
|
|
1396
|
+
nonce: number;
|
|
1397
|
+
to: import('viem').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('viem').Address;
|
|
1420
|
+
gas: bigint;
|
|
1421
|
+
nonce: number;
|
|
1422
|
+
to: import('viem').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<{
|
|
1445
|
+
graphCliName: string;
|
|
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}`;
|
|
1447
|
+
blockExplorers: {
|
|
1448
|
+
readonly default: {
|
|
1449
|
+
readonly name: "Etherscan";
|
|
1450
|
+
readonly url: "https://etherscan.io";
|
|
1451
|
+
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1452
|
+
};
|
|
1203
1453
|
};
|
|
1204
|
-
blockTime
|
|
1454
|
+
blockTime: 12000;
|
|
1205
1455
|
contracts: {
|
|
1206
|
-
readonly ensRegistry: {
|
|
1207
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1208
|
-
};
|
|
1209
1456
|
readonly ensUniversalResolver: {
|
|
1210
|
-
readonly address: "
|
|
1211
|
-
readonly blockCreated:
|
|
1457
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1458
|
+
readonly blockCreated: 23085558;
|
|
1212
1459
|
};
|
|
1213
1460
|
readonly multicall3: {
|
|
1214
1461
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1251,12 +1498,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1251
1498
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1252
1499
|
readonly blockCreated: 751532;
|
|
1253
1500
|
};
|
|
1254
|
-
readonly ensRegistry: {
|
|
1255
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1256
|
-
};
|
|
1257
1501
|
readonly ensUniversalResolver: {
|
|
1258
|
-
readonly address: "
|
|
1259
|
-
readonly blockCreated:
|
|
1502
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1503
|
+
readonly blockCreated: 8928790;
|
|
1260
1504
|
};
|
|
1261
1505
|
};
|
|
1262
1506
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1353,177 +1597,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1353
1597
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1354
1598
|
formatters?: undefined;
|
|
1355
1599
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1356
|
-
}>) => Promise<import('viem').
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
1362
|
-
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
1363
|
-
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
1364
|
-
baseFeePerGas: bigint | null;
|
|
1365
|
-
blobGasUsed: bigint;
|
|
1366
|
-
difficulty: bigint;
|
|
1367
|
-
excessBlobGas: bigint;
|
|
1368
|
-
extraData: import('viem').Hex;
|
|
1369
|
-
gasLimit: bigint;
|
|
1370
|
-
gasUsed: bigint;
|
|
1371
|
-
miner: import('abitype').Address;
|
|
1372
|
-
mixHash: import('viem').Hash;
|
|
1373
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1374
|
-
parentHash: import('viem').Hash;
|
|
1375
|
-
receiptsRoot: import('viem').Hex;
|
|
1376
|
-
sealFields: import('viem').Hex[];
|
|
1377
|
-
sha3Uncles: import('viem').Hash;
|
|
1378
|
-
size: bigint;
|
|
1379
|
-
stateRoot: import('viem').Hash;
|
|
1380
|
-
timestamp: bigint;
|
|
1381
|
-
totalDifficulty: bigint | null;
|
|
1382
|
-
transactionsRoot: import('viem').Hash;
|
|
1383
|
-
uncles: import('viem').Hash[];
|
|
1384
|
-
withdrawals?: import('viem').Withdrawal[] | undefined | undefined;
|
|
1385
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1386
|
-
transactions: includeTransactions extends true ? ({
|
|
1387
|
-
from: import('abitype').Address;
|
|
1388
|
-
gas: bigint;
|
|
1389
|
-
nonce: number;
|
|
1390
|
-
to: import('abitype').Address | null;
|
|
1391
|
-
type: "legacy";
|
|
1392
|
-
value: bigint;
|
|
1393
|
-
r: import('viem').Hex;
|
|
1394
|
-
s: import('viem').Hex;
|
|
1395
|
-
v: bigint;
|
|
1396
|
-
yParity?: undefined | undefined;
|
|
1397
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1398
|
-
gasPrice: bigint;
|
|
1399
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1400
|
-
maxFeePerGas?: undefined | undefined;
|
|
1401
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1402
|
-
chainId?: number | undefined;
|
|
1403
|
-
accessList?: undefined | undefined;
|
|
1404
|
-
authorizationList?: undefined | undefined;
|
|
1405
|
-
hash: import('viem').Hash;
|
|
1406
|
-
input: import('viem').Hex;
|
|
1407
|
-
typeHex: import('viem').Hex | null;
|
|
1408
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
1409
|
-
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;
|
|
1410
|
-
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;
|
|
1411
|
-
} | {
|
|
1412
|
-
from: import('abitype').Address;
|
|
1413
|
-
gas: bigint;
|
|
1414
|
-
nonce: number;
|
|
1415
|
-
to: import('abitype').Address | null;
|
|
1416
|
-
type: "eip2930";
|
|
1417
|
-
value: bigint;
|
|
1418
|
-
r: import('viem').Hex;
|
|
1419
|
-
s: import('viem').Hex;
|
|
1420
|
-
v: bigint;
|
|
1421
|
-
yParity: number;
|
|
1422
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1423
|
-
gasPrice: bigint;
|
|
1424
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1425
|
-
maxFeePerGas?: undefined | undefined;
|
|
1426
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1427
|
-
chainId: number;
|
|
1428
|
-
accessList: import('viem').AccessList;
|
|
1429
|
-
authorizationList?: undefined | undefined;
|
|
1430
|
-
hash: import('viem').Hash;
|
|
1431
|
-
input: import('viem').Hex;
|
|
1432
|
-
typeHex: import('viem').Hex | null;
|
|
1433
|
-
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;
|
|
1434
|
-
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;
|
|
1435
|
-
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;
|
|
1436
|
-
} | {
|
|
1437
|
-
from: import('abitype').Address;
|
|
1438
|
-
gas: bigint;
|
|
1439
|
-
nonce: number;
|
|
1440
|
-
to: import('abitype').Address | null;
|
|
1441
|
-
type: "eip1559";
|
|
1442
|
-
value: bigint;
|
|
1443
|
-
r: import('viem').Hex;
|
|
1444
|
-
s: import('viem').Hex;
|
|
1445
|
-
v: bigint;
|
|
1446
|
-
yParity: number;
|
|
1447
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1448
|
-
gasPrice?: undefined | undefined;
|
|
1449
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1450
|
-
maxFeePerGas: bigint;
|
|
1451
|
-
maxPriorityFeePerGas: bigint;
|
|
1452
|
-
chainId: number;
|
|
1453
|
-
accessList: import('viem').AccessList;
|
|
1454
|
-
authorizationList?: undefined | undefined;
|
|
1455
|
-
hash: import('viem').Hash;
|
|
1456
|
-
input: import('viem').Hex;
|
|
1457
|
-
typeHex: import('viem').Hex | null;
|
|
1458
|
-
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;
|
|
1459
|
-
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;
|
|
1460
|
-
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;
|
|
1461
|
-
} | {
|
|
1462
|
-
from: import('abitype').Address;
|
|
1463
|
-
gas: bigint;
|
|
1464
|
-
nonce: number;
|
|
1465
|
-
to: import('abitype').Address | null;
|
|
1466
|
-
type: "eip4844";
|
|
1467
|
-
value: bigint;
|
|
1468
|
-
r: import('viem').Hex;
|
|
1469
|
-
s: import('viem').Hex;
|
|
1470
|
-
v: bigint;
|
|
1471
|
-
yParity: number;
|
|
1472
|
-
blobVersionedHashes: readonly import('viem').Hex[];
|
|
1473
|
-
gasPrice?: undefined | undefined;
|
|
1474
|
-
maxFeePerBlobGas: bigint;
|
|
1475
|
-
maxFeePerGas: bigint;
|
|
1476
|
-
maxPriorityFeePerGas: bigint;
|
|
1477
|
-
chainId: number;
|
|
1478
|
-
accessList: import('viem').AccessList;
|
|
1479
|
-
authorizationList?: undefined | undefined;
|
|
1480
|
-
hash: import('viem').Hash;
|
|
1481
|
-
input: import('viem').Hex;
|
|
1482
|
-
typeHex: import('viem').Hex | null;
|
|
1483
|
-
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;
|
|
1484
|
-
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;
|
|
1485
|
-
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;
|
|
1486
|
-
} | {
|
|
1487
|
-
from: import('abitype').Address;
|
|
1488
|
-
gas: bigint;
|
|
1489
|
-
nonce: number;
|
|
1490
|
-
to: import('abitype').Address | null;
|
|
1491
|
-
type: "eip7702";
|
|
1492
|
-
value: bigint;
|
|
1493
|
-
r: import('viem').Hex;
|
|
1494
|
-
s: import('viem').Hex;
|
|
1495
|
-
v: bigint;
|
|
1496
|
-
yParity: number;
|
|
1497
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1498
|
-
gasPrice?: undefined | undefined;
|
|
1499
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1500
|
-
maxFeePerGas: bigint;
|
|
1501
|
-
maxPriorityFeePerGas: bigint;
|
|
1502
|
-
chainId: number;
|
|
1503
|
-
accessList: import('viem').AccessList;
|
|
1504
|
-
authorizationList: import('viem').SignedAuthorizationList;
|
|
1505
|
-
hash: import('viem').Hash;
|
|
1506
|
-
input: import('viem').Hex;
|
|
1507
|
-
typeHex: import('viem').Hex | null;
|
|
1508
|
-
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;
|
|
1509
|
-
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;
|
|
1510
|
-
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;
|
|
1511
|
-
})[] : `0x${string}`[];
|
|
1512
|
-
}>;
|
|
1513
|
-
getBlockNumber: (args?: import('viem').GetBlockNumberParameters | undefined) => Promise<import('viem').GetBlockNumberReturnType>;
|
|
1514
|
-
getBlockTransactionCount: (args?: import('viem').GetBlockTransactionCountParameters | undefined) => Promise<import('viem').GetBlockTransactionCountReturnType>;
|
|
1515
|
-
getBytecode: (args: import('viem').GetBytecodeParameters) => Promise<import('viem').GetBytecodeReturnType>;
|
|
1516
|
-
getChainId: () => Promise<import('viem').GetChainIdReturnType>;
|
|
1517
|
-
getCode: (args: import('viem').GetBytecodeParameters) => Promise<import('viem').GetBytecodeReturnType>;
|
|
1518
|
-
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>>;
|
|
1519
|
-
getEip712Domain: (args: import('viem').GetEip712DomainParameters) => Promise<import('viem').GetEip712DomainReturnType>;
|
|
1520
|
-
getEnsAddress: (args: import('viem').GetEnsAddressParameters) => Promise<import('viem').GetEnsAddressReturnType>;
|
|
1521
|
-
getEnsAvatar: (args: import('viem').GetEnsAvatarParameters) => Promise<import('viem').GetEnsAvatarReturnType>;
|
|
1522
|
-
getEnsName: (args: import('viem').GetEnsNameParameters) => Promise<import('viem').GetEnsNameReturnType>;
|
|
1523
|
-
getEnsResolver: (args: import('viem').GetEnsResolverParameters) => Promise<import('viem').GetEnsResolverReturnType>;
|
|
1524
|
-
getEnsText: (args: import('viem').GetEnsTextParameters) => Promise<import('viem').GetEnsTextReturnType>;
|
|
1525
|
-
getFeeHistory: (args: import('viem').GetFeeHistoryParameters) => Promise<import('viem').GetFeeHistoryReturnType>;
|
|
1526
|
-
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<{
|
|
1527
1605
|
graphCliName: string;
|
|
1528
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}`;
|
|
1529
1607
|
blockExplorers: {
|
|
@@ -1533,14 +1611,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1533
1611
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1534
1612
|
};
|
|
1535
1613
|
};
|
|
1536
|
-
blockTime
|
|
1614
|
+
blockTime: 12000;
|
|
1537
1615
|
contracts: {
|
|
1538
|
-
readonly ensRegistry: {
|
|
1539
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1540
|
-
};
|
|
1541
1616
|
readonly ensUniversalResolver: {
|
|
1542
|
-
readonly address: "
|
|
1543
|
-
readonly blockCreated:
|
|
1617
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1618
|
+
readonly blockCreated: 23085558;
|
|
1544
1619
|
};
|
|
1545
1620
|
readonly multicall3: {
|
|
1546
1621
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1583,12 +1658,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1583
1658
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1584
1659
|
readonly blockCreated: 751532;
|
|
1585
1660
|
};
|
|
1586
|
-
readonly ensRegistry: {
|
|
1587
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1588
|
-
};
|
|
1589
1661
|
readonly ensUniversalResolver: {
|
|
1590
|
-
readonly address: "
|
|
1591
|
-
readonly blockCreated:
|
|
1662
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1663
|
+
readonly blockCreated: 8928790;
|
|
1592
1664
|
};
|
|
1593
1665
|
};
|
|
1594
1666
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1685,143 +1757,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1685
1757
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1686
1758
|
formatters?: undefined;
|
|
1687
1759
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1688
|
-
}, chainOverride
|
|
1689
|
-
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>>;
|
|
1690
|
-
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>>;
|
|
1691
|
-
getGasPrice: () => Promise<import('viem').GetGasPriceReturnType>;
|
|
1692
|
-
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>>;
|
|
1693
|
-
getProof: (args: import('viem').GetProofParameters) => Promise<import('viem').GetProofReturnType>;
|
|
1694
|
-
estimateMaxPriorityFeePerGas: <chainOverride extends import('viem').Chain | undefined = undefined>(args?: {
|
|
1695
|
-
chain?: chainOverride | null | undefined;
|
|
1696
|
-
} | undefined) => Promise<import('viem').EstimateMaxPriorityFeePerGasReturnType>;
|
|
1697
|
-
getStorageAt: (args: import('viem').GetStorageAtParameters) => Promise<import('viem').GetStorageAtReturnType>;
|
|
1698
|
-
getTransaction: <blockTag extends import('viem').BlockTag = "latest">(args: import('viem').GetTransactionParameters<blockTag>) => Promise<{
|
|
1699
|
-
from: import('abitype').Address;
|
|
1700
|
-
gas: bigint;
|
|
1701
|
-
nonce: number;
|
|
1702
|
-
to: import('abitype').Address | null;
|
|
1703
|
-
type: "legacy";
|
|
1704
|
-
value: bigint;
|
|
1705
|
-
r: import('viem').Hex;
|
|
1706
|
-
s: import('viem').Hex;
|
|
1707
|
-
v: bigint;
|
|
1708
|
-
yParity?: undefined | undefined;
|
|
1709
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1710
|
-
gasPrice: bigint;
|
|
1711
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1712
|
-
maxFeePerGas?: undefined | undefined;
|
|
1713
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1714
|
-
chainId?: number | undefined;
|
|
1715
|
-
accessList?: undefined | undefined;
|
|
1716
|
-
authorizationList?: undefined | undefined;
|
|
1717
|
-
hash: import('viem').Hash;
|
|
1718
|
-
input: import('viem').Hex;
|
|
1719
|
-
typeHex: import('viem').Hex | null;
|
|
1720
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
1721
|
-
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;
|
|
1722
|
-
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;
|
|
1723
|
-
} | {
|
|
1724
|
-
from: import('abitype').Address;
|
|
1725
|
-
gas: bigint;
|
|
1726
|
-
nonce: number;
|
|
1727
|
-
to: import('abitype').Address | null;
|
|
1728
|
-
type: "eip2930";
|
|
1729
|
-
value: bigint;
|
|
1730
|
-
r: import('viem').Hex;
|
|
1731
|
-
s: import('viem').Hex;
|
|
1732
|
-
v: bigint;
|
|
1733
|
-
yParity: number;
|
|
1734
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1735
|
-
gasPrice: bigint;
|
|
1736
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1737
|
-
maxFeePerGas?: undefined | undefined;
|
|
1738
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1739
|
-
chainId: number;
|
|
1740
|
-
accessList: import('viem').AccessList;
|
|
1741
|
-
authorizationList?: undefined | undefined;
|
|
1742
|
-
hash: import('viem').Hash;
|
|
1743
|
-
input: import('viem').Hex;
|
|
1744
|
-
typeHex: import('viem').Hex | null;
|
|
1745
|
-
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;
|
|
1746
|
-
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;
|
|
1747
|
-
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;
|
|
1748
|
-
} | {
|
|
1749
|
-
from: import('abitype').Address;
|
|
1750
|
-
gas: bigint;
|
|
1751
|
-
nonce: number;
|
|
1752
|
-
to: import('abitype').Address | null;
|
|
1753
|
-
type: "eip1559";
|
|
1754
|
-
value: bigint;
|
|
1755
|
-
r: import('viem').Hex;
|
|
1756
|
-
s: import('viem').Hex;
|
|
1757
|
-
v: bigint;
|
|
1758
|
-
yParity: number;
|
|
1759
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1760
|
-
gasPrice?: undefined | undefined;
|
|
1761
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1762
|
-
maxFeePerGas: bigint;
|
|
1763
|
-
maxPriorityFeePerGas: bigint;
|
|
1764
|
-
chainId: number;
|
|
1765
|
-
accessList: import('viem').AccessList;
|
|
1766
|
-
authorizationList?: undefined | undefined;
|
|
1767
|
-
hash: import('viem').Hash;
|
|
1768
|
-
input: import('viem').Hex;
|
|
1769
|
-
typeHex: import('viem').Hex | null;
|
|
1770
|
-
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;
|
|
1771
|
-
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;
|
|
1772
|
-
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;
|
|
1773
|
-
} | {
|
|
1774
|
-
from: import('abitype').Address;
|
|
1775
|
-
gas: bigint;
|
|
1776
|
-
nonce: number;
|
|
1777
|
-
to: import('abitype').Address | null;
|
|
1778
|
-
type: "eip4844";
|
|
1779
|
-
value: bigint;
|
|
1780
|
-
r: import('viem').Hex;
|
|
1781
|
-
s: import('viem').Hex;
|
|
1782
|
-
v: bigint;
|
|
1783
|
-
yParity: number;
|
|
1784
|
-
blobVersionedHashes: readonly import('viem').Hex[];
|
|
1785
|
-
gasPrice?: undefined | undefined;
|
|
1786
|
-
maxFeePerBlobGas: bigint;
|
|
1787
|
-
maxFeePerGas: bigint;
|
|
1788
|
-
maxPriorityFeePerGas: bigint;
|
|
1789
|
-
chainId: number;
|
|
1790
|
-
accessList: import('viem').AccessList;
|
|
1791
|
-
authorizationList?: undefined | undefined;
|
|
1792
|
-
hash: import('viem').Hash;
|
|
1793
|
-
input: import('viem').Hex;
|
|
1794
|
-
typeHex: import('viem').Hex | null;
|
|
1795
|
-
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;
|
|
1796
|
-
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;
|
|
1797
|
-
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;
|
|
1798
|
-
} | {
|
|
1799
|
-
from: import('abitype').Address;
|
|
1800
|
-
gas: bigint;
|
|
1801
|
-
nonce: number;
|
|
1802
|
-
to: import('abitype').Address | null;
|
|
1803
|
-
type: "eip7702";
|
|
1804
|
-
value: bigint;
|
|
1805
|
-
r: import('viem').Hex;
|
|
1806
|
-
s: import('viem').Hex;
|
|
1807
|
-
v: bigint;
|
|
1808
|
-
yParity: number;
|
|
1809
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1810
|
-
gasPrice?: undefined | undefined;
|
|
1811
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1812
|
-
maxFeePerGas: bigint;
|
|
1813
|
-
maxPriorityFeePerGas: bigint;
|
|
1814
|
-
chainId: number;
|
|
1815
|
-
accessList: import('viem').AccessList;
|
|
1816
|
-
authorizationList: import('viem').SignedAuthorizationList;
|
|
1817
|
-
hash: import('viem').Hash;
|
|
1818
|
-
input: import('viem').Hex;
|
|
1819
|
-
typeHex: import('viem').Hex | null;
|
|
1820
|
-
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;
|
|
1821
|
-
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;
|
|
1822
|
-
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;
|
|
1823
|
-
}>;
|
|
1824
|
-
getTransactionConfirmations: (args: import('viem').GetTransactionConfirmationsParameters<{
|
|
1760
|
+
}, chainOverride>, chainOverride extends import('viem').Chain | undefined = undefined, accountOverride extends import('viem').Account | import('viem').Address | undefined = undefined>(args: import('viem').PrepareTransactionRequestParameters<{
|
|
1825
1761
|
graphCliName: string;
|
|
1826
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}`;
|
|
1827
1763
|
blockExplorers: {
|
|
@@ -1831,14 +1767,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1831
1767
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1832
1768
|
};
|
|
1833
1769
|
};
|
|
1834
|
-
blockTime
|
|
1770
|
+
blockTime: 12000;
|
|
1835
1771
|
contracts: {
|
|
1836
|
-
readonly ensRegistry: {
|
|
1837
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1838
|
-
};
|
|
1839
1772
|
readonly ensUniversalResolver: {
|
|
1840
|
-
readonly address: "
|
|
1841
|
-
readonly blockCreated:
|
|
1773
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1774
|
+
readonly blockCreated: 23085558;
|
|
1842
1775
|
};
|
|
1843
1776
|
readonly multicall3: {
|
|
1844
1777
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -1881,12 +1814,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1881
1814
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1882
1815
|
readonly blockCreated: 751532;
|
|
1883
1816
|
};
|
|
1884
|
-
readonly ensRegistry: {
|
|
1885
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1886
|
-
};
|
|
1887
1817
|
readonly ensUniversalResolver: {
|
|
1888
|
-
readonly address: "
|
|
1889
|
-
readonly blockCreated:
|
|
1818
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1819
|
+
readonly blockCreated: 8928790;
|
|
1890
1820
|
};
|
|
1891
1821
|
};
|
|
1892
1822
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -1983,11 +1913,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1983
1913
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
1984
1914
|
formatters?: undefined;
|
|
1985
1915
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1986
|
-
}>) => Promise<import('viem').
|
|
1987
|
-
getTransactionCount: (args: import('viem').GetTransactionCountParameters) => Promise<import('viem').GetTransactionCountReturnType>;
|
|
1988
|
-
getTransactionReceipt: (args: import('viem').GetTransactionReceiptParameters) => Promise<import('viem').TransactionReceipt>;
|
|
1989
|
-
multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import('viem').MulticallParameters<contracts, allowFailure>) => Promise<import('viem').MulticallReturnType<contracts, allowFailure>>;
|
|
1990
|
-
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<{
|
|
1991
1917
|
graphCliName: string;
|
|
1992
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}`;
|
|
1993
1919
|
blockExplorers: {
|
|
@@ -1997,14 +1923,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1997
1923
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1998
1924
|
};
|
|
1999
1925
|
};
|
|
2000
|
-
blockTime
|
|
1926
|
+
blockTime: 12000;
|
|
2001
1927
|
contracts: {
|
|
2002
|
-
readonly ensRegistry: {
|
|
2003
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2004
|
-
};
|
|
2005
1928
|
readonly ensUniversalResolver: {
|
|
2006
|
-
readonly address: "
|
|
2007
|
-
readonly blockCreated:
|
|
1929
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1930
|
+
readonly blockCreated: 23085558;
|
|
2008
1931
|
};
|
|
2009
1932
|
readonly multicall3: {
|
|
2010
1933
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2047,12 +1970,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2047
1970
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2048
1971
|
readonly blockCreated: 751532;
|
|
2049
1972
|
};
|
|
2050
|
-
readonly ensRegistry: {
|
|
2051
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2052
|
-
};
|
|
2053
1973
|
readonly ensUniversalResolver: {
|
|
2054
|
-
readonly address: "
|
|
2055
|
-
readonly blockCreated:
|
|
1974
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
1975
|
+
readonly blockCreated: 8928790;
|
|
2056
1976
|
};
|
|
2057
1977
|
};
|
|
2058
1978
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -2149,7 +2069,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2149
2069
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2150
2070
|
formatters?: undefined;
|
|
2151
2071
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2152
|
-
}, chainOverride>,
|
|
2072
|
+
}, chainOverride>, "transactionRequest", import('viem').TransactionRequest>, "from"> & (import('viem').DeriveChain<{
|
|
2153
2073
|
graphCliName: string;
|
|
2154
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}`;
|
|
2155
2075
|
blockExplorers: {
|
|
@@ -2159,14 +2079,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2159
2079
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
2160
2080
|
};
|
|
2161
2081
|
};
|
|
2162
|
-
blockTime
|
|
2082
|
+
blockTime: 12000;
|
|
2163
2083
|
contracts: {
|
|
2164
|
-
readonly ensRegistry: {
|
|
2165
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2166
|
-
};
|
|
2167
2084
|
readonly ensUniversalResolver: {
|
|
2168
|
-
readonly address: "
|
|
2169
|
-
readonly blockCreated:
|
|
2085
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2086
|
+
readonly blockCreated: 23085558;
|
|
2170
2087
|
};
|
|
2171
2088
|
readonly multicall3: {
|
|
2172
2089
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2209,12 +2126,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2209
2126
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2210
2127
|
readonly blockCreated: 751532;
|
|
2211
2128
|
};
|
|
2212
|
-
readonly ensRegistry: {
|
|
2213
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2214
|
-
};
|
|
2215
2129
|
readonly ensUniversalResolver: {
|
|
2216
|
-
readonly address: "
|
|
2217
|
-
readonly blockCreated:
|
|
2130
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2131
|
+
readonly blockCreated: 8928790;
|
|
2218
2132
|
};
|
|
2219
2133
|
};
|
|
2220
2134
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -2311,7 +2225,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2311
2225
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2312
2226
|
formatters?: undefined;
|
|
2313
2227
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2314
|
-
},
|
|
2228
|
+
}, chainOverride> extends infer T_1 ? T_1 extends import('viem').DeriveChain<{
|
|
2315
2229
|
graphCliName: string;
|
|
2316
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}`;
|
|
2317
2231
|
blockExplorers: {
|
|
@@ -2321,14 +2235,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2321
2235
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
2322
2236
|
};
|
|
2323
2237
|
};
|
|
2324
|
-
blockTime
|
|
2238
|
+
blockTime: 12000;
|
|
2325
2239
|
contracts: {
|
|
2326
|
-
readonly ensRegistry: {
|
|
2327
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2328
|
-
};
|
|
2329
2240
|
readonly ensUniversalResolver: {
|
|
2330
|
-
readonly address: "
|
|
2331
|
-
readonly blockCreated:
|
|
2241
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2242
|
+
readonly blockCreated: 23085558;
|
|
2332
2243
|
};
|
|
2333
2244
|
readonly multicall3: {
|
|
2334
2245
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -2371,336 +2282,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2371
2282
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2372
2283
|
readonly blockCreated: 751532;
|
|
2373
2284
|
};
|
|
2374
|
-
readonly ensRegistry: {
|
|
2375
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2376
|
-
};
|
|
2377
2285
|
readonly ensUniversalResolver: {
|
|
2378
|
-
readonly address: "
|
|
2379
|
-
readonly blockCreated:
|
|
2380
|
-
};
|
|
2381
|
-
};
|
|
2382
|
-
ensTlds?: readonly string[] | undefined;
|
|
2383
|
-
id: 11155111;
|
|
2384
|
-
name: "Sepolia";
|
|
2385
|
-
nativeCurrency: {
|
|
2386
|
-
readonly name: "Sepolia Ether";
|
|
2387
|
-
readonly symbol: "ETH";
|
|
2388
|
-
readonly decimals: 18;
|
|
2389
|
-
};
|
|
2390
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2391
|
-
rpcUrls: {
|
|
2392
|
-
readonly default: {
|
|
2393
|
-
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
2394
|
-
};
|
|
2395
|
-
};
|
|
2396
|
-
sourceId?: number | undefined | undefined;
|
|
2397
|
-
testnet: true;
|
|
2398
|
-
custom?: Record<string, unknown> | undefined;
|
|
2399
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2400
|
-
formatters?: undefined;
|
|
2401
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2402
|
-
} | {
|
|
2403
|
-
graphCliName: string;
|
|
2404
|
-
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}`;
|
|
2405
|
-
blockExplorers: {
|
|
2406
|
-
readonly default: {
|
|
2407
|
-
readonly name: "Arbiscan";
|
|
2408
|
-
readonly url: "https://arbiscan.io";
|
|
2409
|
-
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2410
|
-
};
|
|
2411
|
-
};
|
|
2412
|
-
blockTime: 250;
|
|
2413
|
-
contracts: {
|
|
2414
|
-
readonly multicall3: {
|
|
2415
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2416
|
-
readonly blockCreated: 7654707;
|
|
2417
|
-
};
|
|
2418
|
-
};
|
|
2419
|
-
ensTlds?: readonly string[] | undefined;
|
|
2420
|
-
id: 42161;
|
|
2421
|
-
name: "Arbitrum One";
|
|
2422
|
-
nativeCurrency: {
|
|
2423
|
-
readonly name: "Ether";
|
|
2424
|
-
readonly symbol: "ETH";
|
|
2425
|
-
readonly decimals: 18;
|
|
2426
|
-
};
|
|
2427
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2428
|
-
rpcUrls: {
|
|
2429
|
-
readonly default: {
|
|
2430
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
2431
|
-
};
|
|
2432
|
-
};
|
|
2433
|
-
sourceId?: number | undefined | undefined;
|
|
2434
|
-
testnet?: boolean | undefined | undefined;
|
|
2435
|
-
custom?: Record<string, unknown> | undefined;
|
|
2436
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2437
|
-
formatters?: undefined;
|
|
2438
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2439
|
-
} | {
|
|
2440
|
-
graphCliName: string;
|
|
2441
|
-
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}`;
|
|
2442
|
-
blockExplorers: {
|
|
2443
|
-
readonly default: {
|
|
2444
|
-
readonly name: "Arbiscan";
|
|
2445
|
-
readonly url: "https://sepolia.arbiscan.io";
|
|
2446
|
-
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2447
|
-
};
|
|
2448
|
-
};
|
|
2449
|
-
blockTime: 250;
|
|
2450
|
-
contracts: {
|
|
2451
|
-
readonly multicall3: {
|
|
2452
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2453
|
-
readonly blockCreated: 81930;
|
|
2454
|
-
};
|
|
2455
|
-
};
|
|
2456
|
-
ensTlds?: readonly string[] | undefined;
|
|
2457
|
-
id: 421614;
|
|
2458
|
-
name: "Arbitrum Sepolia";
|
|
2459
|
-
nativeCurrency: {
|
|
2460
|
-
readonly name: "Arbitrum Sepolia Ether";
|
|
2461
|
-
readonly symbol: "ETH";
|
|
2462
|
-
readonly decimals: 18;
|
|
2463
|
-
};
|
|
2464
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2465
|
-
rpcUrls: {
|
|
2466
|
-
readonly default: {
|
|
2467
|
-
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2468
|
-
};
|
|
2469
|
-
};
|
|
2470
|
-
sourceId?: number | undefined | undefined;
|
|
2471
|
-
testnet: true;
|
|
2472
|
-
custom?: Record<string, unknown> | undefined;
|
|
2473
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2474
|
-
formatters?: undefined;
|
|
2475
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2476
|
-
}, chainOverride>, "transactionRequest", import('viem').TransactionRequest>, "from"> & (import('viem').DeriveChain<{
|
|
2477
|
-
graphCliName: string;
|
|
2478
|
-
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}`;
|
|
2479
|
-
blockExplorers: {
|
|
2480
|
-
readonly default: {
|
|
2481
|
-
readonly name: "Etherscan";
|
|
2482
|
-
readonly url: "https://etherscan.io";
|
|
2483
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
2484
|
-
};
|
|
2485
|
-
};
|
|
2486
|
-
blockTime?: number | undefined | undefined;
|
|
2487
|
-
contracts: {
|
|
2488
|
-
readonly ensRegistry: {
|
|
2489
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2490
|
-
};
|
|
2491
|
-
readonly ensUniversalResolver: {
|
|
2492
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
2493
|
-
readonly blockCreated: 19258213;
|
|
2494
|
-
};
|
|
2495
|
-
readonly multicall3: {
|
|
2496
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2497
|
-
readonly blockCreated: 14353601;
|
|
2498
|
-
};
|
|
2499
|
-
};
|
|
2500
|
-
ensTlds?: readonly string[] | undefined;
|
|
2501
|
-
id: 1;
|
|
2502
|
-
name: "Ethereum";
|
|
2503
|
-
nativeCurrency: {
|
|
2504
|
-
readonly name: "Ether";
|
|
2505
|
-
readonly symbol: "ETH";
|
|
2506
|
-
readonly decimals: 18;
|
|
2507
|
-
};
|
|
2508
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2509
|
-
rpcUrls: {
|
|
2510
|
-
readonly default: {
|
|
2511
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
2512
|
-
};
|
|
2513
|
-
};
|
|
2514
|
-
sourceId?: number | undefined | undefined;
|
|
2515
|
-
testnet?: boolean | undefined | undefined;
|
|
2516
|
-
custom?: Record<string, unknown> | undefined;
|
|
2517
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2518
|
-
formatters?: undefined;
|
|
2519
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2520
|
-
} | {
|
|
2521
|
-
graphCliName: string;
|
|
2522
|
-
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}`;
|
|
2523
|
-
blockExplorers: {
|
|
2524
|
-
readonly default: {
|
|
2525
|
-
readonly name: "Etherscan";
|
|
2526
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
2527
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
2528
|
-
};
|
|
2529
|
-
};
|
|
2530
|
-
blockTime?: number | undefined | undefined;
|
|
2531
|
-
contracts: {
|
|
2532
|
-
readonly multicall3: {
|
|
2533
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2534
|
-
readonly blockCreated: 751532;
|
|
2535
|
-
};
|
|
2536
|
-
readonly ensRegistry: {
|
|
2537
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2538
|
-
};
|
|
2539
|
-
readonly ensUniversalResolver: {
|
|
2540
|
-
readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
|
|
2541
|
-
readonly blockCreated: 5317080;
|
|
2542
|
-
};
|
|
2543
|
-
};
|
|
2544
|
-
ensTlds?: readonly string[] | undefined;
|
|
2545
|
-
id: 11155111;
|
|
2546
|
-
name: "Sepolia";
|
|
2547
|
-
nativeCurrency: {
|
|
2548
|
-
readonly name: "Sepolia Ether";
|
|
2549
|
-
readonly symbol: "ETH";
|
|
2550
|
-
readonly decimals: 18;
|
|
2551
|
-
};
|
|
2552
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2553
|
-
rpcUrls: {
|
|
2554
|
-
readonly default: {
|
|
2555
|
-
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
2556
|
-
};
|
|
2557
|
-
};
|
|
2558
|
-
sourceId?: number | undefined | undefined;
|
|
2559
|
-
testnet: true;
|
|
2560
|
-
custom?: Record<string, unknown> | undefined;
|
|
2561
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2562
|
-
formatters?: undefined;
|
|
2563
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2564
|
-
} | {
|
|
2565
|
-
graphCliName: string;
|
|
2566
|
-
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}`;
|
|
2567
|
-
blockExplorers: {
|
|
2568
|
-
readonly default: {
|
|
2569
|
-
readonly name: "Arbiscan";
|
|
2570
|
-
readonly url: "https://arbiscan.io";
|
|
2571
|
-
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2572
|
-
};
|
|
2573
|
-
};
|
|
2574
|
-
blockTime: 250;
|
|
2575
|
-
contracts: {
|
|
2576
|
-
readonly multicall3: {
|
|
2577
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2578
|
-
readonly blockCreated: 7654707;
|
|
2579
|
-
};
|
|
2580
|
-
};
|
|
2581
|
-
ensTlds?: readonly string[] | undefined;
|
|
2582
|
-
id: 42161;
|
|
2583
|
-
name: "Arbitrum One";
|
|
2584
|
-
nativeCurrency: {
|
|
2585
|
-
readonly name: "Ether";
|
|
2586
|
-
readonly symbol: "ETH";
|
|
2587
|
-
readonly decimals: 18;
|
|
2588
|
-
};
|
|
2589
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2590
|
-
rpcUrls: {
|
|
2591
|
-
readonly default: {
|
|
2592
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
2593
|
-
};
|
|
2594
|
-
};
|
|
2595
|
-
sourceId?: number | undefined | undefined;
|
|
2596
|
-
testnet?: boolean | undefined | undefined;
|
|
2597
|
-
custom?: Record<string, unknown> | undefined;
|
|
2598
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2599
|
-
formatters?: undefined;
|
|
2600
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2601
|
-
} | {
|
|
2602
|
-
graphCliName: string;
|
|
2603
|
-
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}`;
|
|
2604
|
-
blockExplorers: {
|
|
2605
|
-
readonly default: {
|
|
2606
|
-
readonly name: "Arbiscan";
|
|
2607
|
-
readonly url: "https://sepolia.arbiscan.io";
|
|
2608
|
-
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2609
|
-
};
|
|
2610
|
-
};
|
|
2611
|
-
blockTime: 250;
|
|
2612
|
-
contracts: {
|
|
2613
|
-
readonly multicall3: {
|
|
2614
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2615
|
-
readonly blockCreated: 81930;
|
|
2616
|
-
};
|
|
2617
|
-
};
|
|
2618
|
-
ensTlds?: readonly string[] | undefined;
|
|
2619
|
-
id: 421614;
|
|
2620
|
-
name: "Arbitrum Sepolia";
|
|
2621
|
-
nativeCurrency: {
|
|
2622
|
-
readonly name: "Arbitrum Sepolia Ether";
|
|
2623
|
-
readonly symbol: "ETH";
|
|
2624
|
-
readonly decimals: 18;
|
|
2625
|
-
};
|
|
2626
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2627
|
-
rpcUrls: {
|
|
2628
|
-
readonly default: {
|
|
2629
|
-
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2630
|
-
};
|
|
2631
|
-
};
|
|
2632
|
-
sourceId?: number | undefined | undefined;
|
|
2633
|
-
testnet: true;
|
|
2634
|
-
custom?: Record<string, unknown> | undefined;
|
|
2635
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2636
|
-
formatters?: undefined;
|
|
2637
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2638
|
-
}, chainOverride> extends infer T_1 ? T_1 extends import('viem').DeriveChain<{
|
|
2639
|
-
graphCliName: string;
|
|
2640
|
-
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}`;
|
|
2641
|
-
blockExplorers: {
|
|
2642
|
-
readonly default: {
|
|
2643
|
-
readonly name: "Etherscan";
|
|
2644
|
-
readonly url: "https://etherscan.io";
|
|
2645
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
2646
|
-
};
|
|
2647
|
-
};
|
|
2648
|
-
blockTime?: number | undefined | undefined;
|
|
2649
|
-
contracts: {
|
|
2650
|
-
readonly ensRegistry: {
|
|
2651
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2652
|
-
};
|
|
2653
|
-
readonly ensUniversalResolver: {
|
|
2654
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
2655
|
-
readonly blockCreated: 19258213;
|
|
2656
|
-
};
|
|
2657
|
-
readonly multicall3: {
|
|
2658
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2659
|
-
readonly blockCreated: 14353601;
|
|
2660
|
-
};
|
|
2661
|
-
};
|
|
2662
|
-
ensTlds?: readonly string[] | undefined;
|
|
2663
|
-
id: 1;
|
|
2664
|
-
name: "Ethereum";
|
|
2665
|
-
nativeCurrency: {
|
|
2666
|
-
readonly name: "Ether";
|
|
2667
|
-
readonly symbol: "ETH";
|
|
2668
|
-
readonly decimals: 18;
|
|
2669
|
-
};
|
|
2670
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2671
|
-
rpcUrls: {
|
|
2672
|
-
readonly default: {
|
|
2673
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
2674
|
-
};
|
|
2675
|
-
};
|
|
2676
|
-
sourceId?: number | undefined | undefined;
|
|
2677
|
-
testnet?: boolean | undefined | undefined;
|
|
2678
|
-
custom?: Record<string, unknown> | undefined;
|
|
2679
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
2680
|
-
formatters?: undefined;
|
|
2681
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2682
|
-
} | {
|
|
2683
|
-
graphCliName: string;
|
|
2684
|
-
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}`;
|
|
2685
|
-
blockExplorers: {
|
|
2686
|
-
readonly default: {
|
|
2687
|
-
readonly name: "Etherscan";
|
|
2688
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
2689
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
2690
|
-
};
|
|
2691
|
-
};
|
|
2692
|
-
blockTime?: number | undefined | undefined;
|
|
2693
|
-
contracts: {
|
|
2694
|
-
readonly multicall3: {
|
|
2695
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2696
|
-
readonly blockCreated: 751532;
|
|
2697
|
-
};
|
|
2698
|
-
readonly ensRegistry: {
|
|
2699
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
2700
|
-
};
|
|
2701
|
-
readonly ensUniversalResolver: {
|
|
2702
|
-
readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
|
|
2703
|
-
readonly blockCreated: 5317080;
|
|
2286
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2287
|
+
readonly blockCreated: 8928790;
|
|
2704
2288
|
};
|
|
2705
2289
|
};
|
|
2706
2290
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -2803,7 +2387,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2803
2387
|
chain?: undefined;
|
|
2804
2388
|
} : never : never) & (import('viem').DeriveAccount<import('viem').Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import('viem').DeriveAccount<import('viem').Account | undefined, accountOverride> ? T_2 extends import('viem').Account ? {
|
|
2805
2389
|
account: T_2;
|
|
2806
|
-
from: import('
|
|
2390
|
+
from: import('viem').Address;
|
|
2807
2391
|
} : {
|
|
2808
2392
|
account?: undefined;
|
|
2809
2393
|
from?: undefined;
|
|
@@ -6019,382 +5603,43 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6019
5603
|
maxFeePerGas?: bigint | undefined;
|
|
6020
5604
|
maxPriorityFeePerGas?: bigint | undefined;
|
|
6021
5605
|
sidecars?: false | readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
6022
|
-
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
6023
|
-
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
6024
|
-
} | {
|
|
6025
|
-
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
6026
|
-
} | {
|
|
6027
|
-
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
6028
|
-
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
6029
|
-
accessList?: import('viem').AccessList | undefined;
|
|
6030
|
-
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
6031
|
-
blobs?: undefined | undefined;
|
|
6032
|
-
blobVersionedHashes?: undefined | undefined;
|
|
6033
|
-
gasPrice?: undefined | undefined;
|
|
6034
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
6035
|
-
maxFeePerGas?: bigint | undefined;
|
|
6036
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
6037
|
-
sidecars?: undefined | undefined;
|
|
6038
|
-
} | {
|
|
6039
|
-
accessList?: import('viem').AccessList | undefined;
|
|
6040
|
-
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
6041
|
-
blobs?: undefined | undefined;
|
|
6042
|
-
blobVersionedHashes?: undefined | undefined;
|
|
6043
|
-
gasPrice?: undefined | undefined;
|
|
6044
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
6045
|
-
maxFeePerGas?: bigint | undefined;
|
|
6046
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
6047
|
-
sidecars?: undefined | undefined;
|
|
6048
|
-
}) & {
|
|
6049
|
-
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
6050
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? import('viem').TransactionRequestEIP7702 : never : never : never)>> & {
|
|
6051
|
-
chainId?: number | undefined;
|
|
6052
|
-
}, (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">) extends infer T ? { [K in keyof T]: T[K]; } : never>;
|
|
6053
|
-
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>>;
|
|
6054
|
-
sendRawTransaction: (args: import('viem').SendRawTransactionParameters) => Promise<import('viem').SendRawTransactionReturnType>;
|
|
6055
|
-
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
6056
|
-
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
6057
|
-
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
6058
|
-
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, {
|
|
6059
|
-
graphCliName: string;
|
|
6060
|
-
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}`;
|
|
6061
|
-
blockExplorers: {
|
|
6062
|
-
readonly default: {
|
|
6063
|
-
readonly name: "Etherscan";
|
|
6064
|
-
readonly url: "https://etherscan.io";
|
|
6065
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
6066
|
-
};
|
|
6067
|
-
};
|
|
6068
|
-
blockTime?: number | undefined | undefined;
|
|
6069
|
-
contracts: {
|
|
6070
|
-
readonly ensRegistry: {
|
|
6071
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6072
|
-
};
|
|
6073
|
-
readonly ensUniversalResolver: {
|
|
6074
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
6075
|
-
readonly blockCreated: 19258213;
|
|
6076
|
-
};
|
|
6077
|
-
readonly multicall3: {
|
|
6078
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6079
|
-
readonly blockCreated: 14353601;
|
|
6080
|
-
};
|
|
6081
|
-
};
|
|
6082
|
-
ensTlds?: readonly string[] | undefined;
|
|
6083
|
-
id: 1;
|
|
6084
|
-
name: "Ethereum";
|
|
6085
|
-
nativeCurrency: {
|
|
6086
|
-
readonly name: "Ether";
|
|
6087
|
-
readonly symbol: "ETH";
|
|
6088
|
-
readonly decimals: 18;
|
|
6089
|
-
};
|
|
6090
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6091
|
-
rpcUrls: {
|
|
6092
|
-
readonly default: {
|
|
6093
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
6094
|
-
};
|
|
6095
|
-
};
|
|
6096
|
-
sourceId?: number | undefined | undefined;
|
|
6097
|
-
testnet?: boolean | undefined | undefined;
|
|
6098
|
-
custom?: Record<string, unknown> | undefined;
|
|
6099
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6100
|
-
formatters?: undefined;
|
|
6101
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6102
|
-
} | {
|
|
6103
|
-
graphCliName: string;
|
|
6104
|
-
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}`;
|
|
6105
|
-
blockExplorers: {
|
|
6106
|
-
readonly default: {
|
|
6107
|
-
readonly name: "Etherscan";
|
|
6108
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
6109
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
6110
|
-
};
|
|
6111
|
-
};
|
|
6112
|
-
blockTime?: number | undefined | undefined;
|
|
6113
|
-
contracts: {
|
|
6114
|
-
readonly multicall3: {
|
|
6115
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6116
|
-
readonly blockCreated: 751532;
|
|
6117
|
-
};
|
|
6118
|
-
readonly ensRegistry: {
|
|
6119
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6120
|
-
};
|
|
6121
|
-
readonly ensUniversalResolver: {
|
|
6122
|
-
readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
|
|
6123
|
-
readonly blockCreated: 5317080;
|
|
6124
|
-
};
|
|
6125
|
-
};
|
|
6126
|
-
ensTlds?: readonly string[] | undefined;
|
|
6127
|
-
id: 11155111;
|
|
6128
|
-
name: "Sepolia";
|
|
6129
|
-
nativeCurrency: {
|
|
6130
|
-
readonly name: "Sepolia Ether";
|
|
6131
|
-
readonly symbol: "ETH";
|
|
6132
|
-
readonly decimals: 18;
|
|
6133
|
-
};
|
|
6134
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6135
|
-
rpcUrls: {
|
|
6136
|
-
readonly default: {
|
|
6137
|
-
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
6138
|
-
};
|
|
6139
|
-
};
|
|
6140
|
-
sourceId?: number | undefined | undefined;
|
|
6141
|
-
testnet: true;
|
|
6142
|
-
custom?: Record<string, unknown> | undefined;
|
|
6143
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6144
|
-
formatters?: undefined;
|
|
6145
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6146
|
-
} | {
|
|
6147
|
-
graphCliName: string;
|
|
6148
|
-
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}`;
|
|
6149
|
-
blockExplorers: {
|
|
6150
|
-
readonly default: {
|
|
6151
|
-
readonly name: "Arbiscan";
|
|
6152
|
-
readonly url: "https://arbiscan.io";
|
|
6153
|
-
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
6154
|
-
};
|
|
6155
|
-
};
|
|
6156
|
-
blockTime: 250;
|
|
6157
|
-
contracts: {
|
|
6158
|
-
readonly multicall3: {
|
|
6159
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6160
|
-
readonly blockCreated: 7654707;
|
|
6161
|
-
};
|
|
6162
|
-
};
|
|
6163
|
-
ensTlds?: readonly string[] | undefined;
|
|
6164
|
-
id: 42161;
|
|
6165
|
-
name: "Arbitrum One";
|
|
6166
|
-
nativeCurrency: {
|
|
6167
|
-
readonly name: "Ether";
|
|
6168
|
-
readonly symbol: "ETH";
|
|
6169
|
-
readonly decimals: 18;
|
|
6170
|
-
};
|
|
6171
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6172
|
-
rpcUrls: {
|
|
6173
|
-
readonly default: {
|
|
6174
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
6175
|
-
};
|
|
6176
|
-
};
|
|
6177
|
-
sourceId?: number | undefined | undefined;
|
|
6178
|
-
testnet?: boolean | undefined | undefined;
|
|
6179
|
-
custom?: Record<string, unknown> | undefined;
|
|
6180
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6181
|
-
formatters?: undefined;
|
|
6182
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6183
|
-
} | {
|
|
6184
|
-
graphCliName: string;
|
|
6185
|
-
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}`;
|
|
6186
|
-
blockExplorers: {
|
|
6187
|
-
readonly default: {
|
|
6188
|
-
readonly name: "Arbiscan";
|
|
6189
|
-
readonly url: "https://sepolia.arbiscan.io";
|
|
6190
|
-
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
6191
|
-
};
|
|
6192
|
-
};
|
|
6193
|
-
blockTime: 250;
|
|
6194
|
-
contracts: {
|
|
6195
|
-
readonly multicall3: {
|
|
6196
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6197
|
-
readonly blockCreated: 81930;
|
|
6198
|
-
};
|
|
6199
|
-
};
|
|
6200
|
-
ensTlds?: readonly string[] | undefined;
|
|
6201
|
-
id: 421614;
|
|
6202
|
-
name: "Arbitrum Sepolia";
|
|
6203
|
-
nativeCurrency: {
|
|
6204
|
-
readonly name: "Arbitrum Sepolia Ether";
|
|
6205
|
-
readonly symbol: "ETH";
|
|
6206
|
-
readonly decimals: 18;
|
|
6207
|
-
};
|
|
6208
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6209
|
-
rpcUrls: {
|
|
6210
|
-
readonly default: {
|
|
6211
|
-
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
6212
|
-
};
|
|
6213
|
-
};
|
|
6214
|
-
sourceId?: number | undefined | undefined;
|
|
6215
|
-
testnet: true;
|
|
6216
|
-
custom?: Record<string, unknown> | undefined;
|
|
6217
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6218
|
-
formatters?: undefined;
|
|
6219
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6220
|
-
}, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, {
|
|
6221
|
-
graphCliName: string;
|
|
6222
|
-
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}`;
|
|
6223
|
-
blockExplorers: {
|
|
6224
|
-
readonly default: {
|
|
6225
|
-
readonly name: "Etherscan";
|
|
6226
|
-
readonly url: "https://etherscan.io";
|
|
6227
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
6228
|
-
};
|
|
6229
|
-
};
|
|
6230
|
-
blockTime?: number | undefined | undefined;
|
|
6231
|
-
contracts: {
|
|
6232
|
-
readonly ensRegistry: {
|
|
6233
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6234
|
-
};
|
|
6235
|
-
readonly ensUniversalResolver: {
|
|
6236
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
6237
|
-
readonly blockCreated: 19258213;
|
|
6238
|
-
};
|
|
6239
|
-
readonly multicall3: {
|
|
6240
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6241
|
-
readonly blockCreated: 14353601;
|
|
6242
|
-
};
|
|
6243
|
-
};
|
|
6244
|
-
ensTlds?: readonly string[] | undefined;
|
|
6245
|
-
id: 1;
|
|
6246
|
-
name: "Ethereum";
|
|
6247
|
-
nativeCurrency: {
|
|
6248
|
-
readonly name: "Ether";
|
|
6249
|
-
readonly symbol: "ETH";
|
|
6250
|
-
readonly decimals: 18;
|
|
6251
|
-
};
|
|
6252
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6253
|
-
rpcUrls: {
|
|
6254
|
-
readonly default: {
|
|
6255
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
6256
|
-
};
|
|
6257
|
-
};
|
|
6258
|
-
sourceId?: number | undefined | undefined;
|
|
6259
|
-
testnet?: boolean | undefined | undefined;
|
|
6260
|
-
custom?: Record<string, unknown> | undefined;
|
|
6261
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6262
|
-
formatters?: undefined;
|
|
6263
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6264
|
-
} | {
|
|
6265
|
-
graphCliName: string;
|
|
6266
|
-
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}`;
|
|
6267
|
-
blockExplorers: {
|
|
6268
|
-
readonly default: {
|
|
6269
|
-
readonly name: "Etherscan";
|
|
6270
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
6271
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
6272
|
-
};
|
|
6273
|
-
};
|
|
6274
|
-
blockTime?: number | undefined | undefined;
|
|
6275
|
-
contracts: {
|
|
6276
|
-
readonly multicall3: {
|
|
6277
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6278
|
-
readonly blockCreated: 751532;
|
|
6279
|
-
};
|
|
6280
|
-
readonly ensRegistry: {
|
|
6281
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6282
|
-
};
|
|
6283
|
-
readonly ensUniversalResolver: {
|
|
6284
|
-
readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
|
|
6285
|
-
readonly blockCreated: 5317080;
|
|
6286
|
-
};
|
|
6287
|
-
};
|
|
6288
|
-
ensTlds?: readonly string[] | undefined;
|
|
6289
|
-
id: 11155111;
|
|
6290
|
-
name: "Sepolia";
|
|
6291
|
-
nativeCurrency: {
|
|
6292
|
-
readonly name: "Sepolia Ether";
|
|
6293
|
-
readonly symbol: "ETH";
|
|
6294
|
-
readonly decimals: 18;
|
|
6295
|
-
};
|
|
6296
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6297
|
-
rpcUrls: {
|
|
6298
|
-
readonly default: {
|
|
6299
|
-
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
6300
|
-
};
|
|
6301
|
-
};
|
|
6302
|
-
sourceId?: number | undefined | undefined;
|
|
6303
|
-
testnet: true;
|
|
6304
|
-
custom?: Record<string, unknown> | undefined;
|
|
6305
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6306
|
-
formatters?: undefined;
|
|
6307
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5606
|
+
}) & (import('viem').ExactPartial<import('viem').FeeValuesEIP4844> & import('viem').OneOf<{
|
|
5607
|
+
blobs: import('viem').TransactionSerializableEIP4844["blobs"];
|
|
6308
5608
|
} | {
|
|
6309
|
-
|
|
6310
|
-
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}`;
|
|
6311
|
-
blockExplorers: {
|
|
6312
|
-
readonly default: {
|
|
6313
|
-
readonly name: "Arbiscan";
|
|
6314
|
-
readonly url: "https://arbiscan.io";
|
|
6315
|
-
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
6316
|
-
};
|
|
6317
|
-
};
|
|
6318
|
-
blockTime: 250;
|
|
6319
|
-
contracts: {
|
|
6320
|
-
readonly multicall3: {
|
|
6321
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6322
|
-
readonly blockCreated: 7654707;
|
|
6323
|
-
};
|
|
6324
|
-
};
|
|
6325
|
-
ensTlds?: readonly string[] | undefined;
|
|
6326
|
-
id: 42161;
|
|
6327
|
-
name: "Arbitrum One";
|
|
6328
|
-
nativeCurrency: {
|
|
6329
|
-
readonly name: "Ether";
|
|
6330
|
-
readonly symbol: "ETH";
|
|
6331
|
-
readonly decimals: 18;
|
|
6332
|
-
};
|
|
6333
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
6334
|
-
rpcUrls: {
|
|
6335
|
-
readonly default: {
|
|
6336
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
6337
|
-
};
|
|
6338
|
-
};
|
|
6339
|
-
sourceId?: number | undefined | undefined;
|
|
6340
|
-
testnet?: boolean | undefined | undefined;
|
|
6341
|
-
custom?: Record<string, unknown> | undefined;
|
|
6342
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6343
|
-
formatters?: undefined;
|
|
6344
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5609
|
+
blobVersionedHashes: import('viem').TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
6345
5610
|
} | {
|
|
6346
|
-
|
|
6347
|
-
|
|
6348
|
-
|
|
6349
|
-
|
|
6350
|
-
|
|
6351
|
-
|
|
6352
|
-
|
|
6353
|
-
|
|
6354
|
-
|
|
6355
|
-
|
|
6356
|
-
|
|
6357
|
-
|
|
6358
|
-
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
|
|
6362
|
-
|
|
6363
|
-
|
|
6364
|
-
|
|
6365
|
-
|
|
6366
|
-
|
|
6367
|
-
|
|
6368
|
-
|
|
6369
|
-
|
|
6370
|
-
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
|
|
6374
|
-
|
|
6375
|
-
|
|
6376
|
-
|
|
6377
|
-
|
|
6378
|
-
custom?: Record<string, unknown> | undefined;
|
|
6379
|
-
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6380
|
-
formatters?: undefined;
|
|
6381
|
-
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6382
|
-
}, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
6383
|
-
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
6384
|
-
verifySiweMessage: (args: {
|
|
6385
|
-
blockNumber?: bigint | undefined | undefined;
|
|
6386
|
-
blockTag?: import('viem').BlockTag | undefined;
|
|
6387
|
-
nonce?: string | undefined | undefined;
|
|
6388
|
-
address?: string | undefined;
|
|
6389
|
-
domain?: string | undefined | undefined;
|
|
6390
|
-
scheme?: string | undefined | undefined;
|
|
6391
|
-
time?: Date | undefined;
|
|
6392
|
-
message: string;
|
|
6393
|
-
signature: import('viem').Hex;
|
|
6394
|
-
}) => Promise<boolean>;
|
|
6395
|
-
verifyTypedData: (args: import('viem').VerifyTypedDataActionParameters) => Promise<import('viem').VerifyTypedDataActionReturnType>;
|
|
6396
|
-
uninstallFilter: (args: import('viem').UninstallFilterParameters) => Promise<import('viem').UninstallFilterReturnType>;
|
|
6397
|
-
waitForTransactionReceipt: (args: import('viem').WaitForTransactionReceiptParameters<{
|
|
5611
|
+
sidecars: import('viem').TransactionSerializableEIP4844["sidecars"];
|
|
5612
|
+
}, import('viem').TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
5613
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5614
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5615
|
+
blobs?: undefined | undefined;
|
|
5616
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5617
|
+
gasPrice?: undefined | undefined;
|
|
5618
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5619
|
+
maxFeePerGas?: bigint | undefined;
|
|
5620
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5621
|
+
sidecars?: undefined | undefined;
|
|
5622
|
+
} | {
|
|
5623
|
+
accessList?: import('viem').AccessList | undefined;
|
|
5624
|
+
authorizationList?: import('viem').SignedAuthorizationList | undefined;
|
|
5625
|
+
blobs?: undefined | undefined;
|
|
5626
|
+
blobVersionedHashes?: undefined | undefined;
|
|
5627
|
+
gasPrice?: undefined | undefined;
|
|
5628
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
5629
|
+
maxFeePerGas?: bigint | undefined;
|
|
5630
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
5631
|
+
sidecars?: undefined | undefined;
|
|
5632
|
+
}) & {
|
|
5633
|
+
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5634
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? import('viem').TransactionRequestEIP7702 : never : never : never)>> & {
|
|
5635
|
+
chainId?: number | undefined;
|
|
5636
|
+
}, (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">) extends infer T ? { [K in keyof T]: T[K]; } : never>;
|
|
5637
|
+
readContract: <const abi extends import('viem').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>>;
|
|
5638
|
+
sendRawTransaction: (args: import('viem').SendRawTransactionParameters) => Promise<import('viem').SendRawTransactionReturnType>;
|
|
5639
|
+
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
5640
|
+
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
5641
|
+
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
5642
|
+
simulateContract: <const abi extends import('viem').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('viem').Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, {
|
|
6398
5643
|
graphCliName: string;
|
|
6399
5644
|
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}`;
|
|
6400
5645
|
blockExplorers: {
|
|
@@ -6404,14 +5649,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6404
5649
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
6405
5650
|
};
|
|
6406
5651
|
};
|
|
6407
|
-
blockTime
|
|
5652
|
+
blockTime: 12000;
|
|
6408
5653
|
contracts: {
|
|
6409
|
-
readonly ensRegistry: {
|
|
6410
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6411
|
-
};
|
|
6412
5654
|
readonly ensUniversalResolver: {
|
|
6413
|
-
readonly address: "
|
|
6414
|
-
readonly blockCreated:
|
|
5655
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5656
|
+
readonly blockCreated: 23085558;
|
|
6415
5657
|
};
|
|
6416
5658
|
readonly multicall3: {
|
|
6417
5659
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6454,12 +5696,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6454
5696
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6455
5697
|
readonly blockCreated: 751532;
|
|
6456
5698
|
};
|
|
6457
|
-
readonly ensRegistry: {
|
|
6458
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6459
|
-
};
|
|
6460
5699
|
readonly ensUniversalResolver: {
|
|
6461
|
-
readonly address: "
|
|
6462
|
-
readonly blockCreated:
|
|
5700
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5701
|
+
readonly blockCreated: 8928790;
|
|
6463
5702
|
};
|
|
6464
5703
|
};
|
|
6465
5704
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -6556,9 +5795,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6556
5795
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6557
5796
|
formatters?: undefined;
|
|
6558
5797
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6559
|
-
}>) => Promise<import('viem').
|
|
6560
|
-
watchBlockNumber: (args: import('viem').WatchBlockNumberParameters) => import('viem').WatchBlockNumberReturnType;
|
|
6561
|
-
watchBlocks: <includeTransactions extends boolean = false, blockTag extends import('viem').BlockTag = "latest">(args: import('viem').WatchBlocksParameters<HttpTransport, {
|
|
5798
|
+
}, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, {
|
|
6562
5799
|
graphCliName: string;
|
|
6563
5800
|
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}`;
|
|
6564
5801
|
blockExplorers: {
|
|
@@ -6568,14 +5805,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6568
5805
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
6569
5806
|
};
|
|
6570
5807
|
};
|
|
6571
|
-
blockTime
|
|
5808
|
+
blockTime: 12000;
|
|
6572
5809
|
contracts: {
|
|
6573
|
-
readonly ensRegistry: {
|
|
6574
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6575
|
-
};
|
|
6576
5810
|
readonly ensUniversalResolver: {
|
|
6577
|
-
readonly address: "
|
|
6578
|
-
readonly blockCreated:
|
|
5811
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5812
|
+
readonly blockCreated: 23085558;
|
|
6579
5813
|
};
|
|
6580
5814
|
readonly multicall3: {
|
|
6581
5815
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6618,12 +5852,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6618
5852
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6619
5853
|
readonly blockCreated: 751532;
|
|
6620
5854
|
};
|
|
6621
|
-
readonly ensRegistry: {
|
|
6622
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6623
|
-
};
|
|
6624
5855
|
readonly ensUniversalResolver: {
|
|
6625
|
-
readonly address: "
|
|
6626
|
-
readonly blockCreated:
|
|
5856
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5857
|
+
readonly blockCreated: 8928790;
|
|
6627
5858
|
};
|
|
6628
5859
|
};
|
|
6629
5860
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -6720,26 +5951,23 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6720
5951
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6721
5952
|
formatters?: undefined;
|
|
6722
5953
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6723
|
-
},
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
|
|
6734
|
-
|
|
6735
|
-
|
|
6736
|
-
|
|
6737
|
-
|
|
6738
|
-
|
|
6739
|
-
|
|
6740
|
-
type?: undefined;
|
|
6741
|
-
uid?: undefined;
|
|
6742
|
-
} & import('viem').ExactPartial<Pick<import('viem').PublicActions<HttpTransport, {
|
|
5954
|
+
}, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
5955
|
+
verifyHash: (args: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>;
|
|
5956
|
+
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
5957
|
+
verifySiweMessage: (args: {
|
|
5958
|
+
blockNumber?: bigint | undefined | undefined;
|
|
5959
|
+
blockTag?: import('viem').BlockTag | undefined;
|
|
5960
|
+
nonce?: string | undefined | undefined;
|
|
5961
|
+
address?: `0x${string}` | undefined;
|
|
5962
|
+
domain?: string | undefined | undefined;
|
|
5963
|
+
scheme?: string | undefined | undefined;
|
|
5964
|
+
time?: Date | undefined;
|
|
5965
|
+
message: string;
|
|
5966
|
+
signature: import('viem').Hex;
|
|
5967
|
+
}) => Promise<boolean>;
|
|
5968
|
+
verifyTypedData: (args: import('viem').VerifyTypedDataActionParameters) => Promise<import('viem').VerifyTypedDataActionReturnType>;
|
|
5969
|
+
uninstallFilter: (args: import('viem').UninstallFilterParameters) => Promise<import('viem').UninstallFilterReturnType>;
|
|
5970
|
+
waitForTransactionReceipt: (args: import('viem').WaitForTransactionReceiptParameters<{
|
|
6743
5971
|
graphCliName: string;
|
|
6744
5972
|
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}`;
|
|
6745
5973
|
blockExplorers: {
|
|
@@ -6749,14 +5977,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6749
5977
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
6750
5978
|
};
|
|
6751
5979
|
};
|
|
6752
|
-
blockTime
|
|
5980
|
+
blockTime: 12000;
|
|
6753
5981
|
contracts: {
|
|
6754
|
-
readonly ensRegistry: {
|
|
6755
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6756
|
-
};
|
|
6757
5982
|
readonly ensUniversalResolver: {
|
|
6758
|
-
readonly address: "
|
|
6759
|
-
readonly blockCreated:
|
|
5983
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
5984
|
+
readonly blockCreated: 23085558;
|
|
6760
5985
|
};
|
|
6761
5986
|
readonly multicall3: {
|
|
6762
5987
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6799,12 +6024,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6799
6024
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6800
6025
|
readonly blockCreated: 751532;
|
|
6801
6026
|
};
|
|
6802
|
-
readonly ensRegistry: {
|
|
6803
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6804
|
-
};
|
|
6805
6027
|
readonly ensUniversalResolver: {
|
|
6806
|
-
readonly address: "
|
|
6807
|
-
readonly blockCreated:
|
|
6028
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6029
|
+
readonly blockCreated: 8928790;
|
|
6808
6030
|
};
|
|
6809
6031
|
};
|
|
6810
6032
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -6901,7 +6123,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6901
6123
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
6902
6124
|
formatters?: undefined;
|
|
6903
6125
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
6904
|
-
}
|
|
6126
|
+
}>) => Promise<import('viem').TransactionReceipt>;
|
|
6127
|
+
watchBlockNumber: (args: import('viem').WatchBlockNumberParameters) => import('viem').WatchBlockNumberReturnType;
|
|
6128
|
+
watchBlocks: <includeTransactions extends boolean = false, blockTag extends import('viem').BlockTag = "latest">(args: import('viem').WatchBlocksParameters<HttpTransport, {
|
|
6905
6129
|
graphCliName: string;
|
|
6906
6130
|
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}`;
|
|
6907
6131
|
blockExplorers: {
|
|
@@ -6911,14 +6135,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6911
6135
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
6912
6136
|
};
|
|
6913
6137
|
};
|
|
6914
|
-
blockTime
|
|
6138
|
+
blockTime: 12000;
|
|
6915
6139
|
contracts: {
|
|
6916
|
-
readonly ensRegistry: {
|
|
6917
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6918
|
-
};
|
|
6919
6140
|
readonly ensUniversalResolver: {
|
|
6920
|
-
readonly address: "
|
|
6921
|
-
readonly blockCreated:
|
|
6141
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6142
|
+
readonly blockCreated: 23085558;
|
|
6922
6143
|
};
|
|
6923
6144
|
readonly multicall3: {
|
|
6924
6145
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -6961,12 +6182,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
6961
6182
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
6962
6183
|
readonly blockCreated: 751532;
|
|
6963
6184
|
};
|
|
6964
|
-
readonly ensRegistry: {
|
|
6965
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
6966
|
-
};
|
|
6967
6185
|
readonly ensUniversalResolver: {
|
|
6968
|
-
readonly address: "
|
|
6969
|
-
readonly blockCreated:
|
|
6186
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6187
|
+
readonly blockCreated: 8928790;
|
|
6970
6188
|
};
|
|
6971
6189
|
};
|
|
6972
6190
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -7063,7 +6281,26 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7063
6281
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
7064
6282
|
formatters?: undefined;
|
|
7065
6283
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
7066
|
-
},
|
|
6284
|
+
}, includeTransactions, blockTag>) => import('viem').WatchBlocksReturnType;
|
|
6285
|
+
watchContractEvent: <const abi extends import('viem').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;
|
|
6286
|
+
watchEvent: <const abiEvent extends import('viem').AbiEvent | undefined = undefined, const abiEvents extends readonly import('viem').AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import('viem').AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined>(args: import('viem').WatchEventParameters<abiEvent, abiEvents, strict, HttpTransport>) => import('viem').WatchEventReturnType;
|
|
6287
|
+
watchPendingTransactions: (args: import('viem').WatchPendingTransactionsParameters<HttpTransport>) => import('viem').WatchPendingTransactionsReturnType;
|
|
6288
|
+
extend: <const client extends {
|
|
6289
|
+
[x: string]: unknown;
|
|
6290
|
+
account?: undefined;
|
|
6291
|
+
batch?: undefined;
|
|
6292
|
+
cacheTime?: undefined;
|
|
6293
|
+
ccipRead?: undefined;
|
|
6294
|
+
chain?: undefined;
|
|
6295
|
+
experimental_blockTag?: undefined;
|
|
6296
|
+
key?: undefined;
|
|
6297
|
+
name?: undefined;
|
|
6298
|
+
pollingInterval?: undefined;
|
|
6299
|
+
request?: undefined;
|
|
6300
|
+
transport?: undefined;
|
|
6301
|
+
type?: undefined;
|
|
6302
|
+
uid?: undefined;
|
|
6303
|
+
} & import('viem').ExactPartial<Pick<import('viem').PublicActions<HttpTransport, {
|
|
7067
6304
|
graphCliName: string;
|
|
7068
6305
|
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}`;
|
|
7069
6306
|
blockExplorers: {
|
|
@@ -7073,14 +6310,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7073
6310
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
7074
6311
|
};
|
|
7075
6312
|
};
|
|
7076
|
-
blockTime
|
|
6313
|
+
blockTime: 12000;
|
|
7077
6314
|
contracts: {
|
|
7078
|
-
readonly ensRegistry: {
|
|
7079
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7080
|
-
};
|
|
7081
6315
|
readonly ensUniversalResolver: {
|
|
7082
|
-
readonly address: "
|
|
7083
|
-
readonly blockCreated:
|
|
6316
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6317
|
+
readonly blockCreated: 23085558;
|
|
7084
6318
|
};
|
|
7085
6319
|
readonly multicall3: {
|
|
7086
6320
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -7123,12 +6357,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7123
6357
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
7124
6358
|
readonly blockCreated: 751532;
|
|
7125
6359
|
};
|
|
7126
|
-
readonly ensRegistry: {
|
|
7127
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7128
|
-
};
|
|
7129
6360
|
readonly ensUniversalResolver: {
|
|
7130
|
-
readonly address: "
|
|
7131
|
-
readonly blockCreated:
|
|
6361
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6362
|
+
readonly blockCreated: 8928790;
|
|
7132
6363
|
};
|
|
7133
6364
|
};
|
|
7134
6365
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -7225,7 +6456,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7225
6456
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
7226
6457
|
formatters?: undefined;
|
|
7227
6458
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
7228
|
-
}, undefined
|
|
6459
|
+
}, 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<{
|
|
7229
6460
|
graphCliName: string;
|
|
7230
6461
|
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}`;
|
|
7231
6462
|
blockExplorers: {
|
|
@@ -7235,14 +6466,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7235
6466
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
7236
6467
|
};
|
|
7237
6468
|
};
|
|
7238
|
-
blockTime
|
|
6469
|
+
blockTime: 12000;
|
|
7239
6470
|
contracts: {
|
|
7240
|
-
readonly ensRegistry: {
|
|
7241
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7242
|
-
};
|
|
7243
6471
|
readonly ensUniversalResolver: {
|
|
7244
|
-
readonly address: "
|
|
7245
|
-
readonly blockCreated:
|
|
6472
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6473
|
+
readonly blockCreated: 23085558;
|
|
7246
6474
|
};
|
|
7247
6475
|
readonly multicall3: {
|
|
7248
6476
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -7285,12 +6513,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7285
6513
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
7286
6514
|
readonly blockCreated: 751532;
|
|
7287
6515
|
};
|
|
7288
|
-
readonly ensRegistry: {
|
|
7289
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7290
|
-
};
|
|
7291
6516
|
readonly ensUniversalResolver: {
|
|
7292
|
-
readonly address: "
|
|
7293
|
-
readonly blockCreated:
|
|
6517
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6518
|
+
readonly blockCreated: 8928790;
|
|
7294
6519
|
};
|
|
7295
6520
|
};
|
|
7296
6521
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -7387,7 +6612,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7387
6612
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
7388
6613
|
formatters?: undefined;
|
|
7389
6614
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
7390
|
-
}
|
|
6615
|
+
}, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import('viem').Client<HttpTransport, {
|
|
7391
6616
|
graphCliName: string;
|
|
7392
6617
|
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}`;
|
|
7393
6618
|
blockExplorers: {
|
|
@@ -7397,14 +6622,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7397
6622
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
7398
6623
|
};
|
|
7399
6624
|
};
|
|
7400
|
-
blockTime
|
|
6625
|
+
blockTime: 12000;
|
|
7401
6626
|
contracts: {
|
|
7402
|
-
readonly ensRegistry: {
|
|
7403
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7404
|
-
};
|
|
7405
6627
|
readonly ensUniversalResolver: {
|
|
7406
|
-
readonly address: "
|
|
7407
|
-
readonly blockCreated:
|
|
6628
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6629
|
+
readonly blockCreated: 23085558;
|
|
7408
6630
|
};
|
|
7409
6631
|
readonly multicall3: {
|
|
7410
6632
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -7447,12 +6669,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7447
6669
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
7448
6670
|
readonly blockCreated: 751532;
|
|
7449
6671
|
};
|
|
7450
|
-
readonly ensRegistry: {
|
|
7451
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7452
|
-
};
|
|
7453
6672
|
readonly ensUniversalResolver: {
|
|
7454
|
-
readonly address: "
|
|
7455
|
-
readonly blockCreated:
|
|
6673
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6674
|
+
readonly blockCreated: 8928790;
|
|
7456
6675
|
};
|
|
7457
6676
|
};
|
|
7458
6677
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -7549,7 +6768,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7549
6768
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
7550
6769
|
formatters?: undefined;
|
|
7551
6770
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
7552
|
-
}, undefined, import('viem').PublicRpcSchema,
|
|
6771
|
+
}, undefined, import('viem').PublicRpcSchema, import('viem').PublicActions<HttpTransport, {
|
|
7553
6772
|
graphCliName: string;
|
|
7554
6773
|
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}`;
|
|
7555
6774
|
blockExplorers: {
|
|
@@ -7559,14 +6778,11 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7559
6778
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
7560
6779
|
};
|
|
7561
6780
|
};
|
|
7562
|
-
blockTime
|
|
6781
|
+
blockTime: 12000;
|
|
7563
6782
|
contracts: {
|
|
7564
|
-
readonly ensRegistry: {
|
|
7565
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7566
|
-
};
|
|
7567
6783
|
readonly ensUniversalResolver: {
|
|
7568
|
-
readonly address: "
|
|
7569
|
-
readonly blockCreated:
|
|
6784
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6785
|
+
readonly blockCreated: 23085558;
|
|
7570
6786
|
};
|
|
7571
6787
|
readonly multicall3: {
|
|
7572
6788
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -7609,12 +6825,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7609
6825
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
7610
6826
|
readonly blockCreated: 751532;
|
|
7611
6827
|
};
|
|
7612
|
-
readonly ensRegistry: {
|
|
7613
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7614
|
-
};
|
|
7615
6828
|
readonly ensUniversalResolver: {
|
|
7616
|
-
readonly address: "
|
|
7617
|
-
readonly blockCreated:
|
|
6829
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6830
|
+
readonly blockCreated: 8928790;
|
|
7618
6831
|
};
|
|
7619
6832
|
};
|
|
7620
6833
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -7711,13 +6924,7 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
7711
6924
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
7712
6925
|
formatters?: undefined;
|
|
7713
6926
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
7714
|
-
}
|
|
7715
|
-
};
|
|
7716
|
-
export type PublicClient = ReturnType<typeof buildPublicClient>;
|
|
7717
|
-
export declare const BuildClientArgs: z.ZodObject<{
|
|
7718
|
-
infuraKey: z.ZodReadonly<z.ZodString>;
|
|
7719
|
-
} & {
|
|
7720
|
-
chain: z.ZodDefault<z.ZodOptional<z.ZodType<{
|
|
6927
|
+
}>>) => client) => import('viem').Client<HttpTransport, {
|
|
7721
6928
|
graphCliName: string;
|
|
7722
6929
|
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}`;
|
|
7723
6930
|
blockExplorers: {
|
|
@@ -7727,14 +6934,11 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
7727
6934
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
7728
6935
|
};
|
|
7729
6936
|
};
|
|
7730
|
-
blockTime
|
|
6937
|
+
blockTime: 12000;
|
|
7731
6938
|
contracts: {
|
|
7732
|
-
readonly ensRegistry: {
|
|
7733
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7734
|
-
};
|
|
7735
6939
|
readonly ensUniversalResolver: {
|
|
7736
|
-
readonly address: "
|
|
7737
|
-
readonly blockCreated:
|
|
6940
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6941
|
+
readonly blockCreated: 23085558;
|
|
7738
6942
|
};
|
|
7739
6943
|
readonly multicall3: {
|
|
7740
6944
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -7777,12 +6981,9 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
7777
6981
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
7778
6982
|
readonly blockCreated: 751532;
|
|
7779
6983
|
};
|
|
7780
|
-
readonly ensRegistry: {
|
|
7781
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7782
|
-
};
|
|
7783
6984
|
readonly ensUniversalResolver: {
|
|
7784
|
-
readonly address: "
|
|
7785
|
-
readonly blockCreated:
|
|
6985
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
6986
|
+
readonly blockCreated: 8928790;
|
|
7786
6987
|
};
|
|
7787
6988
|
};
|
|
7788
6989
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -7879,7 +7080,7 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
7879
7080
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
7880
7081
|
formatters?: undefined;
|
|
7881
7082
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
7882
|
-
},
|
|
7083
|
+
}, undefined, import('viem').PublicRpcSchema, { [K in keyof client]: client[K]; } & import('viem').PublicActions<HttpTransport, {
|
|
7883
7084
|
graphCliName: string;
|
|
7884
7085
|
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}`;
|
|
7885
7086
|
blockExplorers: {
|
|
@@ -7889,14 +7090,11 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
7889
7090
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
7890
7091
|
};
|
|
7891
7092
|
};
|
|
7892
|
-
blockTime
|
|
7093
|
+
blockTime: 12000;
|
|
7893
7094
|
contracts: {
|
|
7894
|
-
readonly ensRegistry: {
|
|
7895
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7896
|
-
};
|
|
7897
7095
|
readonly ensUniversalResolver: {
|
|
7898
|
-
readonly address: "
|
|
7899
|
-
readonly blockCreated:
|
|
7096
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
7097
|
+
readonly blockCreated: 23085558;
|
|
7900
7098
|
};
|
|
7901
7099
|
readonly multicall3: {
|
|
7902
7100
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -7939,12 +7137,9 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
7939
7137
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
7940
7138
|
readonly blockCreated: 751532;
|
|
7941
7139
|
};
|
|
7942
|
-
readonly ensRegistry: {
|
|
7943
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
7944
|
-
};
|
|
7945
7140
|
readonly ensUniversalResolver: {
|
|
7946
|
-
readonly address: "
|
|
7947
|
-
readonly blockCreated:
|
|
7141
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
7142
|
+
readonly blockCreated: 8928790;
|
|
7948
7143
|
};
|
|
7949
7144
|
};
|
|
7950
7145
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -8041,10 +7236,12 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
8041
7236
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
8042
7237
|
formatters?: undefined;
|
|
8043
7238
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
8044
|
-
}
|
|
8045
|
-
}
|
|
8046
|
-
|
|
8047
|
-
|
|
7239
|
+
}>>;
|
|
7240
|
+
};
|
|
7241
|
+
export type PublicClient = ReturnType<typeof buildPublicClient>;
|
|
7242
|
+
export declare const BuildClientArgs: z.ZodObject<{
|
|
7243
|
+
infuraKey: z.ZodReadonly<z.ZodString>;
|
|
7244
|
+
chain: z.ZodDefault<z.ZodOptional<z.ZodCustom<{
|
|
8048
7245
|
graphCliName: string;
|
|
8049
7246
|
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}`;
|
|
8050
7247
|
blockExplorers: {
|
|
@@ -8054,14 +7251,11 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
8054
7251
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
8055
7252
|
};
|
|
8056
7253
|
};
|
|
8057
|
-
blockTime
|
|
7254
|
+
blockTime: 12000;
|
|
8058
7255
|
contracts: {
|
|
8059
|
-
readonly ensRegistry: {
|
|
8060
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
8061
|
-
};
|
|
8062
7256
|
readonly ensUniversalResolver: {
|
|
8063
|
-
readonly address: "
|
|
8064
|
-
readonly blockCreated:
|
|
7257
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
7258
|
+
readonly blockCreated: 23085558;
|
|
8065
7259
|
};
|
|
8066
7260
|
readonly multicall3: {
|
|
8067
7261
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -8104,12 +7298,9 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
8104
7298
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
8105
7299
|
readonly blockCreated: 751532;
|
|
8106
7300
|
};
|
|
8107
|
-
readonly ensRegistry: {
|
|
8108
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
8109
|
-
};
|
|
8110
7301
|
readonly ensUniversalResolver: {
|
|
8111
|
-
readonly address: "
|
|
8112
|
-
readonly blockCreated:
|
|
7302
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
7303
|
+
readonly blockCreated: 8928790;
|
|
8113
7304
|
};
|
|
8114
7305
|
};
|
|
8115
7306
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -8206,10 +7397,7 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
8206
7397
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
8207
7398
|
formatters?: undefined;
|
|
8208
7399
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
8209
|
-
}
|
|
8210
|
-
}, {
|
|
8211
|
-
infuraKey: string;
|
|
8212
|
-
chain?: {
|
|
7400
|
+
}, {
|
|
8213
7401
|
graphCliName: string;
|
|
8214
7402
|
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}`;
|
|
8215
7403
|
blockExplorers: {
|
|
@@ -8219,14 +7407,11 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
8219
7407
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
8220
7408
|
};
|
|
8221
7409
|
};
|
|
8222
|
-
blockTime
|
|
7410
|
+
blockTime: 12000;
|
|
8223
7411
|
contracts: {
|
|
8224
|
-
readonly ensRegistry: {
|
|
8225
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
8226
|
-
};
|
|
8227
7412
|
readonly ensUniversalResolver: {
|
|
8228
|
-
readonly address: "
|
|
8229
|
-
readonly blockCreated:
|
|
7413
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
7414
|
+
readonly blockCreated: 23085558;
|
|
8230
7415
|
};
|
|
8231
7416
|
readonly multicall3: {
|
|
8232
7417
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -8269,12 +7454,9 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
8269
7454
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
8270
7455
|
readonly blockCreated: 751532;
|
|
8271
7456
|
};
|
|
8272
|
-
readonly ensRegistry: {
|
|
8273
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
8274
|
-
};
|
|
8275
7457
|
readonly ensUniversalResolver: {
|
|
8276
|
-
readonly address: "
|
|
8277
|
-
readonly blockCreated:
|
|
7458
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
7459
|
+
readonly blockCreated: 8928790;
|
|
8278
7460
|
};
|
|
8279
7461
|
};
|
|
8280
7462
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -8371,8 +7553,8 @@ export declare const BuildClientArgs: z.ZodObject<{
|
|
|
8371
7553
|
fees?: import('viem').ChainFees<undefined> | undefined;
|
|
8372
7554
|
formatters?: undefined;
|
|
8373
7555
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
8374
|
-
}
|
|
8375
|
-
}>;
|
|
7556
|
+
}>>>;
|
|
7557
|
+
}, z.core.$strip>;
|
|
8376
7558
|
export type BuildClientArgs = z.infer<typeof BuildClientArgs>;
|
|
8377
7559
|
export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
8378
7560
|
account: undefined;
|
|
@@ -8393,14 +7575,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8393
7575
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
8394
7576
|
};
|
|
8395
7577
|
};
|
|
8396
|
-
blockTime
|
|
7578
|
+
blockTime: 12000;
|
|
8397
7579
|
contracts: {
|
|
8398
|
-
readonly ensRegistry: {
|
|
8399
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
8400
|
-
};
|
|
8401
7580
|
readonly ensUniversalResolver: {
|
|
8402
|
-
readonly address: "
|
|
8403
|
-
readonly blockCreated:
|
|
7581
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
7582
|
+
readonly blockCreated: 23085558;
|
|
8404
7583
|
};
|
|
8405
7584
|
readonly multicall3: {
|
|
8406
7585
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -8443,12 +7622,9 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8443
7622
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
8444
7623
|
readonly blockCreated: 751532;
|
|
8445
7624
|
};
|
|
8446
|
-
readonly ensRegistry: {
|
|
8447
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
8448
|
-
};
|
|
8449
7625
|
readonly ensUniversalResolver: {
|
|
8450
|
-
readonly address: "
|
|
8451
|
-
readonly blockCreated:
|
|
7626
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
7627
|
+
readonly blockCreated: 8928790;
|
|
8452
7628
|
};
|
|
8453
7629
|
};
|
|
8454
7630
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -8596,7 +7772,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8596
7772
|
}, {
|
|
8597
7773
|
Method: "eth_coinbase";
|
|
8598
7774
|
Parameters?: undefined;
|
|
8599
|
-
ReturnType: import('
|
|
7775
|
+
ReturnType: import('viem').Address;
|
|
8600
7776
|
}, {
|
|
8601
7777
|
Method: "eth_estimateGas";
|
|
8602
7778
|
Parameters: [transaction: import('viem').RpcTransactionRequest] | [transaction: import('viem').RpcTransactionRequest, block: import('viem').RpcBlockNumber | import('viem').BlockTag] | [transaction: import('viem').RpcTransactionRequest, block: import('viem').RpcBlockNumber | import('viem').BlockTag, stateOverride: import('viem').RpcStateOverride];
|
|
@@ -8611,7 +7787,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8611
7787
|
ReturnType: import('viem').Quantity;
|
|
8612
7788
|
}, {
|
|
8613
7789
|
Method: "eth_getBalance";
|
|
8614
|
-
Parameters: [address: import('
|
|
7790
|
+
Parameters: [address: import('viem').Address, block: import('viem').RpcBlockNumber | import('viem').BlockTag | import('viem').RpcBlockIdentifier];
|
|
8615
7791
|
ReturnType: import('viem').Quantity;
|
|
8616
7792
|
}, {
|
|
8617
7793
|
Method: "eth_getBlockByHash";
|
|
@@ -8631,7 +7807,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8631
7807
|
ReturnType: import('viem').Quantity;
|
|
8632
7808
|
}, {
|
|
8633
7809
|
Method: "eth_getCode";
|
|
8634
|
-
Parameters: [address: import('
|
|
7810
|
+
Parameters: [address: import('viem').Address, block: import('viem').RpcBlockNumber | import('viem').BlockTag | import('viem').RpcBlockIdentifier];
|
|
8635
7811
|
ReturnType: import('viem').Hex;
|
|
8636
7812
|
}, {
|
|
8637
7813
|
Method: "eth_getFilterChanges";
|
|
@@ -8644,7 +7820,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8644
7820
|
}, {
|
|
8645
7821
|
Method: "eth_getLogs";
|
|
8646
7822
|
Parameters: [{
|
|
8647
|
-
address?: import('
|
|
7823
|
+
address?: import('viem').Address | import('viem').Address[] | undefined;
|
|
8648
7824
|
topics?: import('viem').LogTopic[] | undefined;
|
|
8649
7825
|
} & ({
|
|
8650
7826
|
fromBlock?: import('viem').RpcBlockNumber | import('viem').BlockTag | undefined;
|
|
@@ -8658,11 +7834,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8658
7834
|
ReturnType: import('viem').RpcLog[];
|
|
8659
7835
|
}, {
|
|
8660
7836
|
Method: "eth_getProof";
|
|
8661
|
-
Parameters: [address: import('
|
|
7837
|
+
Parameters: [address: import('viem').Address, storageKeys: import('viem').Hash[], block: import('viem').RpcBlockNumber | import('viem').BlockTag];
|
|
8662
7838
|
ReturnType: import('viem').RpcProof;
|
|
8663
7839
|
}, {
|
|
8664
7840
|
Method: "eth_getStorageAt";
|
|
8665
|
-
Parameters: [address: import('
|
|
7841
|
+
Parameters: [address: import('viem').Address, index: import('viem').Quantity, block: import('viem').RpcBlockNumber | import('viem').BlockTag | import('viem').RpcBlockIdentifier];
|
|
8666
7842
|
ReturnType: import('viem').Hex;
|
|
8667
7843
|
}, {
|
|
8668
7844
|
Method: "eth_getTransactionByBlockHashAndIndex";
|
|
@@ -8678,7 +7854,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8678
7854
|
ReturnType: import('viem').RpcTransaction | null;
|
|
8679
7855
|
}, {
|
|
8680
7856
|
Method: "eth_getTransactionCount";
|
|
8681
|
-
Parameters: [address: import('
|
|
7857
|
+
Parameters: [address: import('viem').Address, block: import('viem').RpcBlockNumber | import('viem').BlockTag | import('viem').RpcBlockIdentifier];
|
|
8682
7858
|
ReturnType: import('viem').Quantity;
|
|
8683
7859
|
}, {
|
|
8684
7860
|
Method: "eth_getTransactionReceipt";
|
|
@@ -8713,7 +7889,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8713
7889
|
Parameters: [filter: {
|
|
8714
7890
|
fromBlock?: import('viem').RpcBlockNumber | import('viem').BlockTag | undefined;
|
|
8715
7891
|
toBlock?: import('viem').RpcBlockNumber | import('viem').BlockTag | undefined;
|
|
8716
|
-
address?: import('
|
|
7892
|
+
address?: import('viem').Address | import('viem').Address[] | undefined;
|
|
8717
7893
|
topics?: import('viem').LogTopic[] | undefined;
|
|
8718
7894
|
}];
|
|
8719
7895
|
ReturnType: import('viem').Quantity;
|
|
@@ -8761,7 +7937,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8761
7937
|
}, {
|
|
8762
7938
|
Method: "eth_accounts";
|
|
8763
7939
|
Parameters?: undefined;
|
|
8764
|
-
ReturnType: import('
|
|
7940
|
+
ReturnType: import('viem').Address[];
|
|
8765
7941
|
}, {
|
|
8766
7942
|
Method: "eth_chainId";
|
|
8767
7943
|
Parameters?: undefined;
|
|
@@ -8773,7 +7949,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8773
7949
|
}, {
|
|
8774
7950
|
Method: "eth_requestAccounts";
|
|
8775
7951
|
Parameters?: undefined;
|
|
8776
|
-
ReturnType: import('
|
|
7952
|
+
ReturnType: import('viem').Address[];
|
|
8777
7953
|
}, {
|
|
8778
7954
|
Method: "eth_sendTransaction";
|
|
8779
7955
|
Parameters: [transaction: import('viem').RpcTransactionRequest];
|
|
@@ -8784,7 +7960,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8784
7960
|
ReturnType: import('viem').Hash;
|
|
8785
7961
|
}, {
|
|
8786
7962
|
Method: "eth_sign";
|
|
8787
|
-
Parameters: [address: import('
|
|
7963
|
+
Parameters: [address: import('viem').Address, data: import('viem').Hex];
|
|
8788
7964
|
ReturnType: import('viem').Hex;
|
|
8789
7965
|
}, {
|
|
8790
7966
|
Method: "eth_signTransaction";
|
|
@@ -8792,7 +7968,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8792
7968
|
ReturnType: import('viem').Hex;
|
|
8793
7969
|
}, {
|
|
8794
7970
|
Method: "eth_signTypedData_v4";
|
|
8795
|
-
Parameters: [address: import('
|
|
7971
|
+
Parameters: [address: import('viem').Address, message: string];
|
|
8796
7972
|
ReturnType: import('viem').Hex;
|
|
8797
7973
|
}, {
|
|
8798
7974
|
Method: "eth_syncing";
|
|
@@ -8800,7 +7976,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8800
7976
|
ReturnType: import('viem').NetworkSync | false;
|
|
8801
7977
|
}, {
|
|
8802
7978
|
Method: "personal_sign";
|
|
8803
|
-
Parameters: [data: import('viem').Hex, address: import('
|
|
7979
|
+
Parameters: [data: import('viem').Hex, address: import('viem').Address];
|
|
8804
7980
|
ReturnType: import('viem').Hex;
|
|
8805
7981
|
}, {
|
|
8806
7982
|
Method: "wallet_addEthereumChain";
|
|
@@ -8816,21 +7992,21 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8816
7992
|
}[];
|
|
8817
7993
|
type: "create";
|
|
8818
7994
|
} | {
|
|
8819
|
-
address: import('
|
|
7995
|
+
address: import('viem').Address;
|
|
8820
7996
|
chainId?: number | undefined;
|
|
8821
7997
|
type: "deployed";
|
|
8822
7998
|
} | {
|
|
8823
|
-
address: import('
|
|
7999
|
+
address: import('viem').Address;
|
|
8824
8000
|
chainId?: number | undefined;
|
|
8825
|
-
factory: import('
|
|
8001
|
+
factory: import('viem').Address;
|
|
8826
8002
|
factoryData: import('viem').Hex;
|
|
8827
8003
|
type: "undeployed";
|
|
8828
8004
|
}>;
|
|
8829
8005
|
version: string;
|
|
8830
8006
|
}];
|
|
8831
8007
|
ReturnType: {
|
|
8832
|
-
address: import('
|
|
8833
|
-
factory?: import('
|
|
8008
|
+
address: import('viem').Address;
|
|
8009
|
+
factory?: import('viem').Address | undefined;
|
|
8834
8010
|
factoryData?: import('viem').Hex | undefined;
|
|
8835
8011
|
};
|
|
8836
8012
|
}, {
|
|
@@ -8841,7 +8017,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8841
8017
|
}];
|
|
8842
8018
|
ReturnType: {
|
|
8843
8019
|
accounts: readonly {
|
|
8844
|
-
address: import('
|
|
8020
|
+
address: import('viem').Address;
|
|
8845
8021
|
capabilities?: import('viem').Capabilities | undefined;
|
|
8846
8022
|
}[];
|
|
8847
8023
|
};
|
|
@@ -8849,13 +8025,17 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8849
8025
|
Method: "wallet_disconnect";
|
|
8850
8026
|
Parameters?: undefined;
|
|
8851
8027
|
ReturnType: void;
|
|
8028
|
+
}, {
|
|
8029
|
+
Method: "wallet_getAssets";
|
|
8030
|
+
Parameters?: [import('viem').WalletGetAssetsParameters];
|
|
8031
|
+
ReturnType: import('viem').WalletGetAssetsReturnType;
|
|
8852
8032
|
}, {
|
|
8853
8033
|
Method: "wallet_getCallsStatus";
|
|
8854
8034
|
Parameters?: [string];
|
|
8855
8035
|
ReturnType: import('viem').WalletGetCallsStatusReturnType;
|
|
8856
8036
|
}, {
|
|
8857
8037
|
Method: "wallet_getCapabilities";
|
|
8858
|
-
Parameters?: readonly [] | readonly [import('
|
|
8038
|
+
Parameters?: readonly [] | readonly [import('viem').Address | undefined] | readonly [import('viem').Address | undefined, readonly import('viem').Hex[] | undefined] | undefined;
|
|
8859
8039
|
ReturnType: import('viem').Prettify<import('viem').WalletCapabilitiesRecord>;
|
|
8860
8040
|
}, {
|
|
8861
8041
|
Method: "wallet_getPermissions";
|
|
@@ -8905,7 +8085,7 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8905
8085
|
ReturnType: import('viem').Hex;
|
|
8906
8086
|
}, {
|
|
8907
8087
|
Method: "eth_estimateUserOperationGas";
|
|
8908
|
-
Parameters: [userOperation: import('viem').RpcUserOperation, entrypoint: import('
|
|
8088
|
+
Parameters: [userOperation: import('viem').RpcUserOperation, entrypoint: import('viem').Address] | [userOperation: import('viem').RpcUserOperation, entrypoint: import('viem').Address, stateOverrideSet: import('viem').RpcStateOverride];
|
|
8909
8089
|
ReturnType: import('viem').RpcEstimateUserOperationGasReturnType;
|
|
8910
8090
|
}, {
|
|
8911
8091
|
Method: "eth_getUserOperationByHash";
|
|
@@ -8917,19 +8097,19 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8917
8097
|
ReturnType: import('viem').RpcUserOperationReceipt | null;
|
|
8918
8098
|
}, {
|
|
8919
8099
|
Method: "eth_sendUserOperation";
|
|
8920
|
-
Parameters: [userOperation: import('viem').RpcUserOperation, entrypoint: import('
|
|
8100
|
+
Parameters: [userOperation: import('viem').RpcUserOperation, entrypoint: import('viem').Address];
|
|
8921
8101
|
ReturnType: import('viem').Hash;
|
|
8922
8102
|
}, {
|
|
8923
8103
|
Method: "eth_supportedEntryPoints";
|
|
8924
8104
|
Parameters?: undefined;
|
|
8925
|
-
ReturnType: readonly import('
|
|
8105
|
+
ReturnType: readonly import('viem').Address[];
|
|
8926
8106
|
}, {
|
|
8927
8107
|
Method: "pm_getPaymasterStubData";
|
|
8928
|
-
Parameters?: [userOperation: import('viem').OneOf<import('viem').PartialBy<Pick<import('viem').RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit"> | import('viem').PartialBy<Pick<import('viem').RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit">>, entrypoint: import('
|
|
8108
|
+
Parameters?: [userOperation: import('viem').OneOf<import('viem').PartialBy<Pick<import('viem').RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit"> | import('viem').PartialBy<Pick<import('viem').RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "preVerificationGas" | "verificationGasLimit">>, entrypoint: import('viem').Address, chainId: import('viem').Hex, context: unknown];
|
|
8929
8109
|
ReturnType: import('viem').OneOf<{
|
|
8930
8110
|
paymasterAndData: import('viem').Hex;
|
|
8931
8111
|
} | {
|
|
8932
|
-
paymaster: import('
|
|
8112
|
+
paymaster: import('viem').Address;
|
|
8933
8113
|
paymasterData: import('viem').Hex;
|
|
8934
8114
|
paymasterVerificationGasLimit: import('viem').Hex;
|
|
8935
8115
|
paymasterPostOpGasLimit: import('viem').Hex;
|
|
@@ -8942,11 +8122,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8942
8122
|
};
|
|
8943
8123
|
}, {
|
|
8944
8124
|
Method: "pm_getPaymasterData";
|
|
8945
|
-
Parameters?: [userOperation: Pick<import('viem').RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit"> | Pick<import('viem').RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, entrypoint: import('
|
|
8125
|
+
Parameters?: [userOperation: Pick<import('viem').RpcUserOperation<"0.6">, "callData" | "callGasLimit" | "initCode" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit"> | Pick<import('viem').RpcUserOperation<"0.7">, "callData" | "callGasLimit" | "factory" | "factoryData" | "maxFeePerGas" | "maxPriorityFeePerGas" | "nonce" | "sender" | "preVerificationGas" | "verificationGasLimit">, entrypoint: import('viem').Address, chainId: import('viem').Hex, context: unknown];
|
|
8946
8126
|
ReturnType: import('viem').OneOf<{
|
|
8947
8127
|
paymasterAndData: import('viem').Hex;
|
|
8948
8128
|
} | {
|
|
8949
|
-
paymaster: import('
|
|
8129
|
+
paymaster: import('viem').Address;
|
|
8950
8130
|
paymasterData: import('viem').Hex;
|
|
8951
8131
|
paymasterVerificationGasLimit: import('viem').Hex;
|
|
8952
8132
|
paymasterPostOpGasLimit: import('viem').Hex;
|
|
@@ -8983,14 +8163,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
8983
8163
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
8984
8164
|
};
|
|
8985
8165
|
};
|
|
8986
|
-
blockTime
|
|
8166
|
+
blockTime: 12000;
|
|
8987
8167
|
contracts: {
|
|
8988
|
-
readonly ensRegistry: {
|
|
8989
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
8990
|
-
};
|
|
8991
8168
|
readonly ensUniversalResolver: {
|
|
8992
|
-
readonly address: "
|
|
8993
|
-
readonly blockCreated:
|
|
8169
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
8170
|
+
readonly blockCreated: 23085558;
|
|
8994
8171
|
};
|
|
8995
8172
|
readonly multicall3: {
|
|
8996
8173
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -9033,12 +8210,9 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9033
8210
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9034
8211
|
readonly blockCreated: 751532;
|
|
9035
8212
|
};
|
|
9036
|
-
readonly ensRegistry: {
|
|
9037
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9038
|
-
};
|
|
9039
8213
|
readonly ensUniversalResolver: {
|
|
9040
|
-
readonly address: "
|
|
9041
|
-
readonly blockCreated:
|
|
8214
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
8215
|
+
readonly blockCreated: 8928790;
|
|
9042
8216
|
};
|
|
9043
8217
|
};
|
|
9044
8218
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -9145,14 +8319,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9145
8319
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
9146
8320
|
};
|
|
9147
8321
|
};
|
|
9148
|
-
blockTime
|
|
8322
|
+
blockTime: 12000;
|
|
9149
8323
|
contracts: {
|
|
9150
|
-
readonly ensRegistry: {
|
|
9151
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9152
|
-
};
|
|
9153
8324
|
readonly ensUniversalResolver: {
|
|
9154
|
-
readonly address: "
|
|
9155
|
-
readonly blockCreated:
|
|
8325
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
8326
|
+
readonly blockCreated: 23085558;
|
|
9156
8327
|
};
|
|
9157
8328
|
readonly multicall3: {
|
|
9158
8329
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -9195,12 +8366,9 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9195
8366
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9196
8367
|
readonly blockCreated: 751532;
|
|
9197
8368
|
};
|
|
9198
|
-
readonly ensRegistry: {
|
|
9199
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9200
|
-
};
|
|
9201
8369
|
readonly ensUniversalResolver: {
|
|
9202
|
-
readonly address: "
|
|
9203
|
-
readonly blockCreated:
|
|
8370
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
8371
|
+
readonly blockCreated: 8928790;
|
|
9204
8372
|
};
|
|
9205
8373
|
};
|
|
9206
8374
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -9307,14 +8475,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9307
8475
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
9308
8476
|
};
|
|
9309
8477
|
};
|
|
9310
|
-
blockTime
|
|
8478
|
+
blockTime: 12000;
|
|
9311
8479
|
contracts: {
|
|
9312
|
-
readonly ensRegistry: {
|
|
9313
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9314
|
-
};
|
|
9315
8480
|
readonly ensUniversalResolver: {
|
|
9316
|
-
readonly address: "
|
|
9317
|
-
readonly blockCreated:
|
|
8481
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
8482
|
+
readonly blockCreated: 23085558;
|
|
9318
8483
|
};
|
|
9319
8484
|
readonly multicall3: {
|
|
9320
8485
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -9357,12 +8522,9 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9357
8522
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9358
8523
|
readonly blockCreated: 751532;
|
|
9359
8524
|
};
|
|
9360
|
-
readonly ensRegistry: {
|
|
9361
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9362
|
-
};
|
|
9363
8525
|
readonly ensUniversalResolver: {
|
|
9364
|
-
readonly address: "
|
|
9365
|
-
readonly blockCreated:
|
|
8526
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
8527
|
+
readonly blockCreated: 8928790;
|
|
9366
8528
|
};
|
|
9367
8529
|
};
|
|
9368
8530
|
ensTlds?: readonly string[] | undefined;
|
|
@@ -9484,14 +8646,11 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9484
8646
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
9485
8647
|
};
|
|
9486
8648
|
};
|
|
9487
|
-
blockTime
|
|
8649
|
+
blockTime: 12000;
|
|
9488
8650
|
contracts: {
|
|
9489
|
-
readonly ensRegistry: {
|
|
9490
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9491
|
-
};
|
|
9492
8651
|
readonly ensUniversalResolver: {
|
|
9493
|
-
readonly address: "
|
|
9494
|
-
readonly blockCreated:
|
|
8652
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
8653
|
+
readonly blockCreated: 23085558;
|
|
9495
8654
|
};
|
|
9496
8655
|
readonly multicall3: {
|
|
9497
8656
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -9534,12 +8693,9 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
9534
8693
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
9535
8694
|
readonly blockCreated: 751532;
|
|
9536
8695
|
};
|
|
9537
|
-
readonly ensRegistry: {
|
|
9538
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
9539
|
-
};
|
|
9540
8696
|
readonly ensUniversalResolver: {
|
|
9541
|
-
readonly address: "
|
|
9542
|
-
readonly blockCreated:
|
|
8697
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
8698
|
+
readonly blockCreated: 8928790;
|
|
9543
8699
|
};
|
|
9544
8700
|
};
|
|
9545
8701
|
ensTlds?: readonly string[] | undefined;
|