@edgeandnode/graph-auth-kit 4.0.0-updating-switchNetwork-networkIcon-caip2id-1736157504931-9f70935711fd51ea0049941bc5f8b9d49a4064e4 → 4.0.0-updating-switchNetwork-networkIcon-caip2id-1736177902128-119dd54a8b60aa922ff26f0001db2a68313fae5a
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/{GraphAuthKitInner.context-CCYbq9tJ.js → GraphAuthKitInner.context-C3NbEh9a.js} +1 -1
- package/dist/client.d.ts +310 -22
- package/dist/client.d.ts.map +1 -1
- package/dist/constants.d.ts +18 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/ens/index.js +1 -1
- package/dist/index.js +5 -5
- package/dist/safe/index.js +1 -1
- package/dist/test-harness/index.js +1 -1
- package/dist/{useGraphAuthKitEnsNames-Dcd21fxr.js → useGraphAuthKitEnsNames-CDi6JfKh.js} +2 -2
- package/dist/{utils-CWqavpCw.js → utils-Blr97NTt.js} +5 -4
- package/dist/{utils-CNoLR21V.js → utils-C7kgcEdG.js} +2 -2
- package/package.json +7 -7
package/dist/client.d.ts
CHANGED
|
@@ -17,6 +17,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
17
17
|
infuraKey: z.ZodReadonly<z.ZodString>;
|
|
18
18
|
}, {
|
|
19
19
|
chain: z.ZodDefault<z.ZodOptional<z.ZodType<{
|
|
20
|
+
graphCliName: string;
|
|
21
|
+
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}`;
|
|
20
22
|
blockExplorers: {
|
|
21
23
|
readonly default: {
|
|
22
24
|
readonly name: "Etherscan";
|
|
@@ -56,6 +58,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
56
58
|
formatters?: undefined;
|
|
57
59
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
58
60
|
} | {
|
|
61
|
+
graphCliName: string;
|
|
62
|
+
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}`;
|
|
59
63
|
blockExplorers: {
|
|
60
64
|
readonly default: {
|
|
61
65
|
readonly name: "Etherscan";
|
|
@@ -95,6 +99,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
95
99
|
formatters?: undefined;
|
|
96
100
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
97
101
|
} | {
|
|
102
|
+
graphCliName: string;
|
|
103
|
+
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}`;
|
|
98
104
|
blockExplorers: {
|
|
99
105
|
readonly default: {
|
|
100
106
|
readonly name: "Arbiscan";
|
|
@@ -127,6 +133,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
127
133
|
formatters?: undefined;
|
|
128
134
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
129
135
|
} | {
|
|
136
|
+
graphCliName: string;
|
|
137
|
+
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}`;
|
|
130
138
|
blockExplorers: {
|
|
131
139
|
readonly default: {
|
|
132
140
|
readonly name: "Arbiscan";
|
|
@@ -159,6 +167,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
159
167
|
formatters?: undefined;
|
|
160
168
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
161
169
|
}, z.ZodTypeDef, {
|
|
170
|
+
graphCliName: string;
|
|
171
|
+
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}`;
|
|
162
172
|
blockExplorers: {
|
|
163
173
|
readonly default: {
|
|
164
174
|
readonly name: "Etherscan";
|
|
@@ -198,6 +208,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
198
208
|
formatters?: undefined;
|
|
199
209
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
200
210
|
} | {
|
|
211
|
+
graphCliName: string;
|
|
212
|
+
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}`;
|
|
201
213
|
blockExplorers: {
|
|
202
214
|
readonly default: {
|
|
203
215
|
readonly name: "Etherscan";
|
|
@@ -237,6 +249,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
237
249
|
formatters?: undefined;
|
|
238
250
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
239
251
|
} | {
|
|
252
|
+
graphCliName: string;
|
|
253
|
+
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}`;
|
|
240
254
|
blockExplorers: {
|
|
241
255
|
readonly default: {
|
|
242
256
|
readonly name: "Arbiscan";
|
|
@@ -269,6 +283,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
269
283
|
formatters?: undefined;
|
|
270
284
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
271
285
|
} | {
|
|
286
|
+
graphCliName: string;
|
|
287
|
+
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}`;
|
|
272
288
|
blockExplorers: {
|
|
273
289
|
readonly default: {
|
|
274
290
|
readonly name: "Arbiscan";
|
|
@@ -304,6 +320,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
304
320
|
}>, "strip", z.ZodTypeAny, {
|
|
305
321
|
infuraKey: string;
|
|
306
322
|
chain: {
|
|
323
|
+
graphCliName: string;
|
|
324
|
+
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}`;
|
|
307
325
|
blockExplorers: {
|
|
308
326
|
readonly default: {
|
|
309
327
|
readonly name: "Etherscan";
|
|
@@ -343,6 +361,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
343
361
|
formatters?: undefined;
|
|
344
362
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
345
363
|
} | {
|
|
364
|
+
graphCliName: string;
|
|
365
|
+
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}`;
|
|
346
366
|
blockExplorers: {
|
|
347
367
|
readonly default: {
|
|
348
368
|
readonly name: "Etherscan";
|
|
@@ -382,6 +402,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
382
402
|
formatters?: undefined;
|
|
383
403
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
384
404
|
} | {
|
|
405
|
+
graphCliName: string;
|
|
406
|
+
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}`;
|
|
385
407
|
blockExplorers: {
|
|
386
408
|
readonly default: {
|
|
387
409
|
readonly name: "Arbiscan";
|
|
@@ -414,6 +436,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
414
436
|
formatters?: undefined;
|
|
415
437
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
416
438
|
} | {
|
|
439
|
+
graphCliName: string;
|
|
440
|
+
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}`;
|
|
417
441
|
blockExplorers: {
|
|
418
442
|
readonly default: {
|
|
419
443
|
readonly name: "Arbiscan";
|
|
@@ -449,6 +473,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
449
473
|
}, {
|
|
450
474
|
infuraKey: string;
|
|
451
475
|
chain?: {
|
|
476
|
+
graphCliName: string;
|
|
477
|
+
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}`;
|
|
452
478
|
blockExplorers: {
|
|
453
479
|
readonly default: {
|
|
454
480
|
readonly name: "Etherscan";
|
|
@@ -488,6 +514,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
488
514
|
formatters?: undefined;
|
|
489
515
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
490
516
|
} | {
|
|
517
|
+
graphCliName: string;
|
|
518
|
+
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}`;
|
|
491
519
|
blockExplorers: {
|
|
492
520
|
readonly default: {
|
|
493
521
|
readonly name: "Etherscan";
|
|
@@ -527,6 +555,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
527
555
|
formatters?: undefined;
|
|
528
556
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
529
557
|
} | {
|
|
558
|
+
graphCliName: string;
|
|
559
|
+
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}`;
|
|
530
560
|
blockExplorers: {
|
|
531
561
|
readonly default: {
|
|
532
562
|
readonly name: "Arbiscan";
|
|
@@ -559,6 +589,8 @@ export declare const BuildPublicClientArgs: z.ZodObject<z.objectUtil.extendShape
|
|
|
559
589
|
formatters?: undefined;
|
|
560
590
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
561
591
|
} | {
|
|
592
|
+
graphCliName: string;
|
|
593
|
+
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}`;
|
|
562
594
|
blockExplorers: {
|
|
563
595
|
readonly default: {
|
|
564
596
|
readonly name: "Arbiscan";
|
|
@@ -604,6 +636,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
604
636
|
request?: (parameters: import('viem').CcipRequestParameters) => Promise<`0x${string}`>;
|
|
605
637
|
} | undefined;
|
|
606
638
|
chain: {
|
|
639
|
+
graphCliName: string;
|
|
640
|
+
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}`;
|
|
607
641
|
blockExplorers: {
|
|
608
642
|
readonly default: {
|
|
609
643
|
readonly name: "Etherscan";
|
|
@@ -643,6 +677,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
643
677
|
formatters?: undefined;
|
|
644
678
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
645
679
|
} | {
|
|
680
|
+
graphCliName: string;
|
|
681
|
+
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}`;
|
|
646
682
|
blockExplorers: {
|
|
647
683
|
readonly default: {
|
|
648
684
|
readonly name: "Etherscan";
|
|
@@ -682,6 +718,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
682
718
|
formatters?: undefined;
|
|
683
719
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
684
720
|
} | {
|
|
721
|
+
graphCliName: string;
|
|
722
|
+
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}`;
|
|
685
723
|
blockExplorers: {
|
|
686
724
|
readonly default: {
|
|
687
725
|
readonly name: "Arbiscan";
|
|
@@ -714,6 +752,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
714
752
|
formatters?: undefined;
|
|
715
753
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
716
754
|
} | {
|
|
755
|
+
graphCliName: string;
|
|
756
|
+
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}`;
|
|
717
757
|
blockExplorers: {
|
|
718
758
|
readonly default: {
|
|
719
759
|
readonly name: "Arbiscan";
|
|
@@ -757,6 +797,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
757
797
|
type: string;
|
|
758
798
|
uid: string;
|
|
759
799
|
call: (parameters: import('viem').CallParameters<{
|
|
800
|
+
graphCliName: string;
|
|
801
|
+
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}`;
|
|
760
802
|
blockExplorers: {
|
|
761
803
|
readonly default: {
|
|
762
804
|
readonly name: "Etherscan";
|
|
@@ -796,6 +838,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
796
838
|
formatters?: undefined;
|
|
797
839
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
798
840
|
} | {
|
|
841
|
+
graphCliName: string;
|
|
842
|
+
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}`;
|
|
799
843
|
blockExplorers: {
|
|
800
844
|
readonly default: {
|
|
801
845
|
readonly name: "Etherscan";
|
|
@@ -835,6 +879,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
835
879
|
formatters?: undefined;
|
|
836
880
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
837
881
|
} | {
|
|
882
|
+
graphCliName: string;
|
|
883
|
+
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}`;
|
|
838
884
|
blockExplorers: {
|
|
839
885
|
readonly default: {
|
|
840
886
|
readonly name: "Arbiscan";
|
|
@@ -867,6 +913,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
867
913
|
formatters?: undefined;
|
|
868
914
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
869
915
|
} | {
|
|
916
|
+
graphCliName: string;
|
|
917
|
+
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}`;
|
|
870
918
|
blockExplorers: {
|
|
871
919
|
readonly default: {
|
|
872
920
|
readonly name: "Arbiscan";
|
|
@@ -905,6 +953,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
905
953
|
createPendingTransactionFilter: () => Promise<import('viem').CreatePendingTransactionFilterReturnType>;
|
|
906
954
|
estimateContractGas: <chain extends import('viem').Chain | undefined, const abi extends import('abitype').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>>(args: import('viem').EstimateContractGasParameters<abi, functionName, args, chain>) => Promise<import('viem').EstimateContractGasReturnType>;
|
|
907
955
|
estimateGas: (args: import('viem').EstimateGasParameters<{
|
|
956
|
+
graphCliName: string;
|
|
957
|
+
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}`;
|
|
908
958
|
blockExplorers: {
|
|
909
959
|
readonly default: {
|
|
910
960
|
readonly name: "Etherscan";
|
|
@@ -944,6 +994,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
944
994
|
formatters?: undefined;
|
|
945
995
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
946
996
|
} | {
|
|
997
|
+
graphCliName: string;
|
|
998
|
+
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}`;
|
|
947
999
|
blockExplorers: {
|
|
948
1000
|
readonly default: {
|
|
949
1001
|
readonly name: "Etherscan";
|
|
@@ -983,6 +1035,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
983
1035
|
formatters?: undefined;
|
|
984
1036
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
985
1037
|
} | {
|
|
1038
|
+
graphCliName: string;
|
|
1039
|
+
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}`;
|
|
986
1040
|
blockExplorers: {
|
|
987
1041
|
readonly default: {
|
|
988
1042
|
readonly name: "Arbiscan";
|
|
@@ -1015,6 +1069,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1015
1069
|
formatters?: undefined;
|
|
1016
1070
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1017
1071
|
} | {
|
|
1072
|
+
graphCliName: string;
|
|
1073
|
+
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}`;
|
|
1018
1074
|
blockExplorers: {
|
|
1019
1075
|
readonly default: {
|
|
1020
1076
|
readonly name: "Arbiscan";
|
|
@@ -1077,12 +1133,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1077
1133
|
withdrawals?: import('viem').Withdrawal[] | undefined | undefined;
|
|
1078
1134
|
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1079
1135
|
transactions: includeTransactions extends true ? ({
|
|
1080
|
-
value: bigint;
|
|
1081
|
-
type: "legacy";
|
|
1082
1136
|
from: import('abitype').Address;
|
|
1083
1137
|
gas: bigint;
|
|
1084
1138
|
nonce: number;
|
|
1085
1139
|
to: import('abitype').Address | null;
|
|
1140
|
+
type: "legacy";
|
|
1141
|
+
value: bigint;
|
|
1086
1142
|
r: import('viem').Hex;
|
|
1087
1143
|
s: import('viem').Hex;
|
|
1088
1144
|
v: bigint;
|
|
@@ -1102,12 +1158,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1102
1158
|
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;
|
|
1103
1159
|
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;
|
|
1104
1160
|
} | {
|
|
1105
|
-
value: bigint;
|
|
1106
|
-
type: "eip2930";
|
|
1107
1161
|
from: import('abitype').Address;
|
|
1108
1162
|
gas: bigint;
|
|
1109
1163
|
nonce: number;
|
|
1110
1164
|
to: import('abitype').Address | null;
|
|
1165
|
+
type: "eip2930";
|
|
1166
|
+
value: bigint;
|
|
1111
1167
|
r: import('viem').Hex;
|
|
1112
1168
|
s: import('viem').Hex;
|
|
1113
1169
|
v: bigint;
|
|
@@ -1127,12 +1183,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1127
1183
|
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;
|
|
1128
1184
|
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;
|
|
1129
1185
|
} | {
|
|
1130
|
-
value: bigint;
|
|
1131
|
-
type: "eip1559";
|
|
1132
1186
|
from: import('abitype').Address;
|
|
1133
1187
|
gas: bigint;
|
|
1134
1188
|
nonce: number;
|
|
1135
1189
|
to: import('abitype').Address | null;
|
|
1190
|
+
type: "eip1559";
|
|
1191
|
+
value: bigint;
|
|
1136
1192
|
r: import('viem').Hex;
|
|
1137
1193
|
s: import('viem').Hex;
|
|
1138
1194
|
v: bigint;
|
|
@@ -1152,12 +1208,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1152
1208
|
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;
|
|
1153
1209
|
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;
|
|
1154
1210
|
} | {
|
|
1155
|
-
value: bigint;
|
|
1156
|
-
type: "eip4844";
|
|
1157
1211
|
from: import('abitype').Address;
|
|
1158
1212
|
gas: bigint;
|
|
1159
1213
|
nonce: number;
|
|
1160
1214
|
to: import('abitype').Address | null;
|
|
1215
|
+
type: "eip4844";
|
|
1216
|
+
value: bigint;
|
|
1161
1217
|
r: import('viem').Hex;
|
|
1162
1218
|
s: import('viem').Hex;
|
|
1163
1219
|
v: bigint;
|
|
@@ -1177,12 +1233,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1177
1233
|
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;
|
|
1178
1234
|
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;
|
|
1179
1235
|
} | {
|
|
1180
|
-
value: bigint;
|
|
1181
|
-
type: "eip7702";
|
|
1182
1236
|
from: import('abitype').Address;
|
|
1183
1237
|
gas: bigint;
|
|
1184
1238
|
nonce: number;
|
|
1185
1239
|
to: import('abitype').Address | null;
|
|
1240
|
+
type: "eip7702";
|
|
1241
|
+
value: bigint;
|
|
1186
1242
|
r: import('viem').Hex;
|
|
1187
1243
|
s: import('viem').Hex;
|
|
1188
1244
|
v: bigint;
|
|
@@ -1217,6 +1273,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1217
1273
|
getEnsText: (args: import('viem').GetEnsTextParameters) => Promise<import('viem').GetEnsTextReturnType>;
|
|
1218
1274
|
getFeeHistory: (args: import('viem').GetFeeHistoryParameters) => Promise<import('viem').GetFeeHistoryReturnType>;
|
|
1219
1275
|
estimateFeesPerGas: <chainOverride extends import('viem').Chain | undefined = undefined, type extends import('viem').FeeValuesType = "eip1559">(args?: import('viem').EstimateFeesPerGasParameters<{
|
|
1276
|
+
graphCliName: string;
|
|
1277
|
+
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}`;
|
|
1220
1278
|
blockExplorers: {
|
|
1221
1279
|
readonly default: {
|
|
1222
1280
|
readonly name: "Etherscan";
|
|
@@ -1256,6 +1314,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1256
1314
|
formatters?: undefined;
|
|
1257
1315
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1258
1316
|
} | {
|
|
1317
|
+
graphCliName: string;
|
|
1318
|
+
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}`;
|
|
1259
1319
|
blockExplorers: {
|
|
1260
1320
|
readonly default: {
|
|
1261
1321
|
readonly name: "Etherscan";
|
|
@@ -1295,6 +1355,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1295
1355
|
formatters?: undefined;
|
|
1296
1356
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1297
1357
|
} | {
|
|
1358
|
+
graphCliName: string;
|
|
1359
|
+
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}`;
|
|
1298
1360
|
blockExplorers: {
|
|
1299
1361
|
readonly default: {
|
|
1300
1362
|
readonly name: "Arbiscan";
|
|
@@ -1327,6 +1389,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1327
1389
|
formatters?: undefined;
|
|
1328
1390
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1329
1391
|
} | {
|
|
1392
|
+
graphCliName: string;
|
|
1393
|
+
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}`;
|
|
1330
1394
|
blockExplorers: {
|
|
1331
1395
|
readonly default: {
|
|
1332
1396
|
readonly name: "Arbiscan";
|
|
@@ -1369,12 +1433,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1369
1433
|
} | undefined) => Promise<import('viem').EstimateMaxPriorityFeePerGasReturnType>;
|
|
1370
1434
|
getStorageAt: (args: import('viem').GetStorageAtParameters) => Promise<import('viem').GetStorageAtReturnType>;
|
|
1371
1435
|
getTransaction: <blockTag extends import('viem').BlockTag = "latest">(args: import('viem').GetTransactionParameters<blockTag>) => Promise<{
|
|
1372
|
-
value: bigint;
|
|
1373
|
-
type: "legacy";
|
|
1374
1436
|
from: import('abitype').Address;
|
|
1375
1437
|
gas: bigint;
|
|
1376
1438
|
nonce: number;
|
|
1377
1439
|
to: import('abitype').Address | null;
|
|
1440
|
+
type: "legacy";
|
|
1441
|
+
value: bigint;
|
|
1378
1442
|
r: import('viem').Hex;
|
|
1379
1443
|
s: import('viem').Hex;
|
|
1380
1444
|
v: bigint;
|
|
@@ -1394,12 +1458,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1394
1458
|
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;
|
|
1395
1459
|
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;
|
|
1396
1460
|
} | {
|
|
1397
|
-
value: bigint;
|
|
1398
|
-
type: "eip2930";
|
|
1399
1461
|
from: import('abitype').Address;
|
|
1400
1462
|
gas: bigint;
|
|
1401
1463
|
nonce: number;
|
|
1402
1464
|
to: import('abitype').Address | null;
|
|
1465
|
+
type: "eip2930";
|
|
1466
|
+
value: bigint;
|
|
1403
1467
|
r: import('viem').Hex;
|
|
1404
1468
|
s: import('viem').Hex;
|
|
1405
1469
|
v: bigint;
|
|
@@ -1419,12 +1483,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1419
1483
|
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;
|
|
1420
1484
|
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;
|
|
1421
1485
|
} | {
|
|
1422
|
-
value: bigint;
|
|
1423
|
-
type: "eip1559";
|
|
1424
1486
|
from: import('abitype').Address;
|
|
1425
1487
|
gas: bigint;
|
|
1426
1488
|
nonce: number;
|
|
1427
1489
|
to: import('abitype').Address | null;
|
|
1490
|
+
type: "eip1559";
|
|
1491
|
+
value: bigint;
|
|
1428
1492
|
r: import('viem').Hex;
|
|
1429
1493
|
s: import('viem').Hex;
|
|
1430
1494
|
v: bigint;
|
|
@@ -1444,12 +1508,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1444
1508
|
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;
|
|
1445
1509
|
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;
|
|
1446
1510
|
} | {
|
|
1447
|
-
value: bigint;
|
|
1448
|
-
type: "eip4844";
|
|
1449
1511
|
from: import('abitype').Address;
|
|
1450
1512
|
gas: bigint;
|
|
1451
1513
|
nonce: number;
|
|
1452
1514
|
to: import('abitype').Address | null;
|
|
1515
|
+
type: "eip4844";
|
|
1516
|
+
value: bigint;
|
|
1453
1517
|
r: import('viem').Hex;
|
|
1454
1518
|
s: import('viem').Hex;
|
|
1455
1519
|
v: bigint;
|
|
@@ -1469,12 +1533,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1469
1533
|
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;
|
|
1470
1534
|
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;
|
|
1471
1535
|
} | {
|
|
1472
|
-
value: bigint;
|
|
1473
|
-
type: "eip7702";
|
|
1474
1536
|
from: import('abitype').Address;
|
|
1475
1537
|
gas: bigint;
|
|
1476
1538
|
nonce: number;
|
|
1477
1539
|
to: import('abitype').Address | null;
|
|
1540
|
+
type: "eip7702";
|
|
1541
|
+
value: bigint;
|
|
1478
1542
|
r: import('viem').Hex;
|
|
1479
1543
|
s: import('viem').Hex;
|
|
1480
1544
|
v: bigint;
|
|
@@ -1495,6 +1559,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1495
1559
|
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;
|
|
1496
1560
|
}>;
|
|
1497
1561
|
getTransactionConfirmations: (args: import('viem').GetTransactionConfirmationsParameters<{
|
|
1562
|
+
graphCliName: string;
|
|
1563
|
+
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}`;
|
|
1498
1564
|
blockExplorers: {
|
|
1499
1565
|
readonly default: {
|
|
1500
1566
|
readonly name: "Etherscan";
|
|
@@ -1534,6 +1600,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1534
1600
|
formatters?: undefined;
|
|
1535
1601
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1536
1602
|
} | {
|
|
1603
|
+
graphCliName: string;
|
|
1604
|
+
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}`;
|
|
1537
1605
|
blockExplorers: {
|
|
1538
1606
|
readonly default: {
|
|
1539
1607
|
readonly name: "Etherscan";
|
|
@@ -1573,6 +1641,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1573
1641
|
formatters?: undefined;
|
|
1574
1642
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1575
1643
|
} | {
|
|
1644
|
+
graphCliName: string;
|
|
1645
|
+
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}`;
|
|
1576
1646
|
blockExplorers: {
|
|
1577
1647
|
readonly default: {
|
|
1578
1648
|
readonly name: "Arbiscan";
|
|
@@ -1605,6 +1675,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1605
1675
|
formatters?: undefined;
|
|
1606
1676
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1607
1677
|
} | {
|
|
1678
|
+
graphCliName: string;
|
|
1679
|
+
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}`;
|
|
1608
1680
|
blockExplorers: {
|
|
1609
1681
|
readonly default: {
|
|
1610
1682
|
readonly name: "Arbiscan";
|
|
@@ -1641,6 +1713,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1641
1713
|
getTransactionReceipt: (args: import('viem').GetTransactionReceiptParameters) => Promise<import('viem').TransactionReceipt>;
|
|
1642
1714
|
multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import('viem').MulticallParameters<contracts, allowFailure>) => Promise<import('viem').MulticallReturnType<contracts, allowFailure>>;
|
|
1643
1715
|
prepareTransactionRequest: <const request extends import('viem').PrepareTransactionRequestRequest<{
|
|
1716
|
+
graphCliName: string;
|
|
1717
|
+
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}`;
|
|
1644
1718
|
blockExplorers: {
|
|
1645
1719
|
readonly default: {
|
|
1646
1720
|
readonly name: "Etherscan";
|
|
@@ -1680,6 +1754,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1680
1754
|
formatters?: undefined;
|
|
1681
1755
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1682
1756
|
} | {
|
|
1757
|
+
graphCliName: string;
|
|
1758
|
+
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}`;
|
|
1683
1759
|
blockExplorers: {
|
|
1684
1760
|
readonly default: {
|
|
1685
1761
|
readonly name: "Etherscan";
|
|
@@ -1719,6 +1795,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1719
1795
|
formatters?: undefined;
|
|
1720
1796
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1721
1797
|
} | {
|
|
1798
|
+
graphCliName: string;
|
|
1799
|
+
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}`;
|
|
1722
1800
|
blockExplorers: {
|
|
1723
1801
|
readonly default: {
|
|
1724
1802
|
readonly name: "Arbiscan";
|
|
@@ -1751,6 +1829,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1751
1829
|
formatters?: undefined;
|
|
1752
1830
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1753
1831
|
} | {
|
|
1832
|
+
graphCliName: string;
|
|
1833
|
+
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}`;
|
|
1754
1834
|
blockExplorers: {
|
|
1755
1835
|
readonly default: {
|
|
1756
1836
|
readonly name: "Arbiscan";
|
|
@@ -1783,6 +1863,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1783
1863
|
formatters?: undefined;
|
|
1784
1864
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1785
1865
|
}, chainOverride>, chainOverride extends import('viem').Chain | undefined = undefined, accountOverride extends import('viem').Account | import('abitype').Address | undefined = undefined>(args: import('viem').PrepareTransactionRequestParameters<{
|
|
1866
|
+
graphCliName: string;
|
|
1867
|
+
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}`;
|
|
1786
1868
|
blockExplorers: {
|
|
1787
1869
|
readonly default: {
|
|
1788
1870
|
readonly name: "Etherscan";
|
|
@@ -1822,6 +1904,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1822
1904
|
formatters?: undefined;
|
|
1823
1905
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1824
1906
|
} | {
|
|
1907
|
+
graphCliName: string;
|
|
1908
|
+
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}`;
|
|
1825
1909
|
blockExplorers: {
|
|
1826
1910
|
readonly default: {
|
|
1827
1911
|
readonly name: "Etherscan";
|
|
@@ -1861,6 +1945,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1861
1945
|
formatters?: undefined;
|
|
1862
1946
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1863
1947
|
} | {
|
|
1948
|
+
graphCliName: string;
|
|
1949
|
+
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}`;
|
|
1864
1950
|
blockExplorers: {
|
|
1865
1951
|
readonly default: {
|
|
1866
1952
|
readonly name: "Arbiscan";
|
|
@@ -1893,6 +1979,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1893
1979
|
formatters?: undefined;
|
|
1894
1980
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1895
1981
|
} | {
|
|
1982
|
+
graphCliName: string;
|
|
1983
|
+
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}`;
|
|
1896
1984
|
blockExplorers: {
|
|
1897
1985
|
readonly default: {
|
|
1898
1986
|
readonly name: "Arbiscan";
|
|
@@ -1925,6 +2013,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1925
2013
|
formatters?: undefined;
|
|
1926
2014
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1927
2015
|
}, import('viem').Account | undefined, chainOverride, accountOverride, request>) => Promise<import('viem').UnionRequiredBy<Extract<import('viem').UnionOmit<import('viem').ExtractChainFormatterParameters<import('viem').DeriveChain<{
|
|
2016
|
+
graphCliName: string;
|
|
2017
|
+
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}`;
|
|
1928
2018
|
blockExplorers: {
|
|
1929
2019
|
readonly default: {
|
|
1930
2020
|
readonly name: "Etherscan";
|
|
@@ -1964,6 +2054,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
1964
2054
|
formatters?: undefined;
|
|
1965
2055
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
1966
2056
|
} | {
|
|
2057
|
+
graphCliName: string;
|
|
2058
|
+
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}`;
|
|
1967
2059
|
blockExplorers: {
|
|
1968
2060
|
readonly default: {
|
|
1969
2061
|
readonly name: "Etherscan";
|
|
@@ -2003,6 +2095,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2003
2095
|
formatters?: undefined;
|
|
2004
2096
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2005
2097
|
} | {
|
|
2098
|
+
graphCliName: string;
|
|
2099
|
+
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}`;
|
|
2006
2100
|
blockExplorers: {
|
|
2007
2101
|
readonly default: {
|
|
2008
2102
|
readonly name: "Arbiscan";
|
|
@@ -2035,6 +2129,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2035
2129
|
formatters?: undefined;
|
|
2036
2130
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2037
2131
|
} | {
|
|
2132
|
+
graphCliName: string;
|
|
2133
|
+
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}`;
|
|
2038
2134
|
blockExplorers: {
|
|
2039
2135
|
readonly default: {
|
|
2040
2136
|
readonly name: "Arbiscan";
|
|
@@ -2067,6 +2163,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2067
2163
|
formatters?: undefined;
|
|
2068
2164
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2069
2165
|
}, chainOverride>, "transactionRequest", import('viem').TransactionRequest>, "from"> & (import('viem').DeriveChain<{
|
|
2166
|
+
graphCliName: string;
|
|
2167
|
+
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}`;
|
|
2070
2168
|
blockExplorers: {
|
|
2071
2169
|
readonly default: {
|
|
2072
2170
|
readonly name: "Etherscan";
|
|
@@ -2106,6 +2204,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2106
2204
|
formatters?: undefined;
|
|
2107
2205
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2108
2206
|
} | {
|
|
2207
|
+
graphCliName: string;
|
|
2208
|
+
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}`;
|
|
2109
2209
|
blockExplorers: {
|
|
2110
2210
|
readonly default: {
|
|
2111
2211
|
readonly name: "Etherscan";
|
|
@@ -2145,6 +2245,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2145
2245
|
formatters?: undefined;
|
|
2146
2246
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2147
2247
|
} | {
|
|
2248
|
+
graphCliName: string;
|
|
2249
|
+
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}`;
|
|
2148
2250
|
blockExplorers: {
|
|
2149
2251
|
readonly default: {
|
|
2150
2252
|
readonly name: "Arbiscan";
|
|
@@ -2177,6 +2279,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2177
2279
|
formatters?: undefined;
|
|
2178
2280
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2179
2281
|
} | {
|
|
2282
|
+
graphCliName: string;
|
|
2283
|
+
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}`;
|
|
2180
2284
|
blockExplorers: {
|
|
2181
2285
|
readonly default: {
|
|
2182
2286
|
readonly name: "Arbiscan";
|
|
@@ -2209,6 +2313,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2209
2313
|
formatters?: undefined;
|
|
2210
2314
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2211
2315
|
}, chainOverride> extends infer T_14 ? T_14 extends import('viem').DeriveChain<{
|
|
2316
|
+
graphCliName: string;
|
|
2317
|
+
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}`;
|
|
2212
2318
|
blockExplorers: {
|
|
2213
2319
|
readonly default: {
|
|
2214
2320
|
readonly name: "Etherscan";
|
|
@@ -2248,6 +2354,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2248
2354
|
formatters?: undefined;
|
|
2249
2355
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2250
2356
|
} | {
|
|
2357
|
+
graphCliName: string;
|
|
2358
|
+
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}`;
|
|
2251
2359
|
blockExplorers: {
|
|
2252
2360
|
readonly default: {
|
|
2253
2361
|
readonly name: "Etherscan";
|
|
@@ -2287,6 +2395,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2287
2395
|
formatters?: undefined;
|
|
2288
2396
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2289
2397
|
} | {
|
|
2398
|
+
graphCliName: string;
|
|
2399
|
+
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}`;
|
|
2290
2400
|
blockExplorers: {
|
|
2291
2401
|
readonly default: {
|
|
2292
2402
|
readonly name: "Arbiscan";
|
|
@@ -2319,6 +2429,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
2319
2429
|
formatters?: undefined;
|
|
2320
2430
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
2321
2431
|
} | {
|
|
2432
|
+
graphCliName: string;
|
|
2433
|
+
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}`;
|
|
2322
2434
|
blockExplorers: {
|
|
2323
2435
|
readonly default: {
|
|
2324
2436
|
readonly name: "Arbiscan";
|
|
@@ -5602,7 +5714,9 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5602
5714
|
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
5603
5715
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? import('viem').TransactionRequestEIP7702 : never : never : never)>> & {
|
|
5604
5716
|
chainId?: number | undefined;
|
|
5605
|
-
}, (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "
|
|
5717
|
+
}, (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") ? T_26 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (import('viem').UnionRequiredBy<Extract<import('viem').UnionOmit<import('viem').ExtractChainFormatterParameters<import('viem').DeriveChain<{
|
|
5718
|
+
graphCliName: string;
|
|
5719
|
+
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}`;
|
|
5606
5720
|
blockExplorers: {
|
|
5607
5721
|
readonly default: {
|
|
5608
5722
|
readonly name: "Etherscan";
|
|
@@ -5642,6 +5756,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5642
5756
|
formatters?: undefined;
|
|
5643
5757
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5644
5758
|
} | {
|
|
5759
|
+
graphCliName: string;
|
|
5760
|
+
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}`;
|
|
5645
5761
|
blockExplorers: {
|
|
5646
5762
|
readonly default: {
|
|
5647
5763
|
readonly name: "Etherscan";
|
|
@@ -5681,6 +5797,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5681
5797
|
formatters?: undefined;
|
|
5682
5798
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5683
5799
|
} | {
|
|
5800
|
+
graphCliName: string;
|
|
5801
|
+
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}`;
|
|
5684
5802
|
blockExplorers: {
|
|
5685
5803
|
readonly default: {
|
|
5686
5804
|
readonly name: "Arbiscan";
|
|
@@ -5713,6 +5831,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5713
5831
|
formatters?: undefined;
|
|
5714
5832
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5715
5833
|
} | {
|
|
5834
|
+
graphCliName: string;
|
|
5835
|
+
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}`;
|
|
5716
5836
|
blockExplorers: {
|
|
5717
5837
|
readonly default: {
|
|
5718
5838
|
readonly name: "Arbiscan";
|
|
@@ -5745,6 +5865,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5745
5865
|
formatters?: undefined;
|
|
5746
5866
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5747
5867
|
}, chainOverride>, "transactionRequest", import('viem').TransactionRequest>, "from"> & (import('viem').DeriveChain<{
|
|
5868
|
+
graphCliName: string;
|
|
5869
|
+
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}`;
|
|
5748
5870
|
blockExplorers: {
|
|
5749
5871
|
readonly default: {
|
|
5750
5872
|
readonly name: "Etherscan";
|
|
@@ -5784,6 +5906,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5784
5906
|
formatters?: undefined;
|
|
5785
5907
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5786
5908
|
} | {
|
|
5909
|
+
graphCliName: string;
|
|
5910
|
+
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}`;
|
|
5787
5911
|
blockExplorers: {
|
|
5788
5912
|
readonly default: {
|
|
5789
5913
|
readonly name: "Etherscan";
|
|
@@ -5823,6 +5947,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5823
5947
|
formatters?: undefined;
|
|
5824
5948
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5825
5949
|
} | {
|
|
5950
|
+
graphCliName: string;
|
|
5951
|
+
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}`;
|
|
5826
5952
|
blockExplorers: {
|
|
5827
5953
|
readonly default: {
|
|
5828
5954
|
readonly name: "Arbiscan";
|
|
@@ -5855,6 +5981,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5855
5981
|
formatters?: undefined;
|
|
5856
5982
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5857
5983
|
} | {
|
|
5984
|
+
graphCliName: string;
|
|
5985
|
+
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}`;
|
|
5858
5986
|
blockExplorers: {
|
|
5859
5987
|
readonly default: {
|
|
5860
5988
|
readonly name: "Arbiscan";
|
|
@@ -5887,6 +6015,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5887
6015
|
formatters?: undefined;
|
|
5888
6016
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5889
6017
|
}, chainOverride> extends infer T_1 ? T_1 extends import('viem').DeriveChain<{
|
|
6018
|
+
graphCliName: string;
|
|
6019
|
+
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}`;
|
|
5890
6020
|
blockExplorers: {
|
|
5891
6021
|
readonly default: {
|
|
5892
6022
|
readonly name: "Etherscan";
|
|
@@ -5926,6 +6056,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5926
6056
|
formatters?: undefined;
|
|
5927
6057
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5928
6058
|
} | {
|
|
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}`;
|
|
5929
6061
|
blockExplorers: {
|
|
5930
6062
|
readonly default: {
|
|
5931
6063
|
readonly name: "Etherscan";
|
|
@@ -5965,6 +6097,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5965
6097
|
formatters?: undefined;
|
|
5966
6098
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5967
6099
|
} | {
|
|
6100
|
+
graphCliName: string;
|
|
6101
|
+
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}`;
|
|
5968
6102
|
blockExplorers: {
|
|
5969
6103
|
readonly default: {
|
|
5970
6104
|
readonly name: "Arbiscan";
|
|
@@ -5997,6 +6131,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
5997
6131
|
formatters?: undefined;
|
|
5998
6132
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
5999
6133
|
} | {
|
|
6134
|
+
graphCliName: string;
|
|
6135
|
+
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}`;
|
|
6000
6136
|
blockExplorers: {
|
|
6001
6137
|
readonly default: {
|
|
6002
6138
|
readonly name: "Arbiscan";
|
|
@@ -9280,10 +9416,12 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9280
9416
|
authorizationList: import('viem').TransactionSerializableEIP7702["authorizationList"];
|
|
9281
9417
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? import('viem').TransactionRequestEIP7702 : never : never : never)>> & {
|
|
9282
9418
|
chainId?: number | undefined;
|
|
9283
|
-
}, (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "
|
|
9419
|
+
}, (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import('viem').PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "blobVersionedHashes" | "chainId" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K]; } : never>;
|
|
9284
9420
|
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>>;
|
|
9285
9421
|
sendRawTransaction: (args: import('viem').SendRawTransactionParameters) => Promise<import('viem').SendRawTransactionReturnType>;
|
|
9286
9422
|
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, {
|
|
9423
|
+
graphCliName: string;
|
|
9424
|
+
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}`;
|
|
9287
9425
|
blockExplorers: {
|
|
9288
9426
|
readonly default: {
|
|
9289
9427
|
readonly name: "Etherscan";
|
|
@@ -9323,6 +9461,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9323
9461
|
formatters?: undefined;
|
|
9324
9462
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9325
9463
|
} | {
|
|
9464
|
+
graphCliName: string;
|
|
9465
|
+
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}`;
|
|
9326
9466
|
blockExplorers: {
|
|
9327
9467
|
readonly default: {
|
|
9328
9468
|
readonly name: "Etherscan";
|
|
@@ -9362,6 +9502,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9362
9502
|
formatters?: undefined;
|
|
9363
9503
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9364
9504
|
} | {
|
|
9505
|
+
graphCliName: string;
|
|
9506
|
+
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}`;
|
|
9365
9507
|
blockExplorers: {
|
|
9366
9508
|
readonly default: {
|
|
9367
9509
|
readonly name: "Arbiscan";
|
|
@@ -9394,6 +9536,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9394
9536
|
formatters?: undefined;
|
|
9395
9537
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9396
9538
|
} | {
|
|
9539
|
+
graphCliName: string;
|
|
9540
|
+
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}`;
|
|
9397
9541
|
blockExplorers: {
|
|
9398
9542
|
readonly default: {
|
|
9399
9543
|
readonly name: "Arbiscan";
|
|
@@ -9426,6 +9570,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9426
9570
|
formatters?: undefined;
|
|
9427
9571
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9428
9572
|
}, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, {
|
|
9573
|
+
graphCliName: string;
|
|
9574
|
+
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}`;
|
|
9429
9575
|
blockExplorers: {
|
|
9430
9576
|
readonly default: {
|
|
9431
9577
|
readonly name: "Etherscan";
|
|
@@ -9465,6 +9611,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9465
9611
|
formatters?: undefined;
|
|
9466
9612
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9467
9613
|
} | {
|
|
9614
|
+
graphCliName: string;
|
|
9615
|
+
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}`;
|
|
9468
9616
|
blockExplorers: {
|
|
9469
9617
|
readonly default: {
|
|
9470
9618
|
readonly name: "Etherscan";
|
|
@@ -9504,6 +9652,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9504
9652
|
formatters?: undefined;
|
|
9505
9653
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9506
9654
|
} | {
|
|
9655
|
+
graphCliName: string;
|
|
9656
|
+
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}`;
|
|
9507
9657
|
blockExplorers: {
|
|
9508
9658
|
readonly default: {
|
|
9509
9659
|
readonly name: "Arbiscan";
|
|
@@ -9536,6 +9686,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9536
9686
|
formatters?: undefined;
|
|
9537
9687
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9538
9688
|
} | {
|
|
9689
|
+
graphCliName: string;
|
|
9690
|
+
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}`;
|
|
9539
9691
|
blockExplorers: {
|
|
9540
9692
|
readonly default: {
|
|
9541
9693
|
readonly name: "Arbiscan";
|
|
@@ -9583,6 +9735,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9583
9735
|
verifyTypedData: (args: import('viem').VerifyTypedDataActionParameters) => Promise<import('viem').VerifyTypedDataActionReturnType>;
|
|
9584
9736
|
uninstallFilter: (args: import('viem').UninstallFilterParameters) => Promise<import('viem').UninstallFilterReturnType>;
|
|
9585
9737
|
waitForTransactionReceipt: (args: import('viem').WaitForTransactionReceiptParameters<{
|
|
9738
|
+
graphCliName: string;
|
|
9739
|
+
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}`;
|
|
9586
9740
|
blockExplorers: {
|
|
9587
9741
|
readonly default: {
|
|
9588
9742
|
readonly name: "Etherscan";
|
|
@@ -9622,6 +9776,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9622
9776
|
formatters?: undefined;
|
|
9623
9777
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9624
9778
|
} | {
|
|
9779
|
+
graphCliName: string;
|
|
9780
|
+
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}`;
|
|
9625
9781
|
blockExplorers: {
|
|
9626
9782
|
readonly default: {
|
|
9627
9783
|
readonly name: "Etherscan";
|
|
@@ -9661,6 +9817,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9661
9817
|
formatters?: undefined;
|
|
9662
9818
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9663
9819
|
} | {
|
|
9820
|
+
graphCliName: string;
|
|
9821
|
+
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}`;
|
|
9664
9822
|
blockExplorers: {
|
|
9665
9823
|
readonly default: {
|
|
9666
9824
|
readonly name: "Arbiscan";
|
|
@@ -9693,6 +9851,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9693
9851
|
formatters?: undefined;
|
|
9694
9852
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9695
9853
|
} | {
|
|
9854
|
+
graphCliName: string;
|
|
9855
|
+
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}`;
|
|
9696
9856
|
blockExplorers: {
|
|
9697
9857
|
readonly default: {
|
|
9698
9858
|
readonly name: "Arbiscan";
|
|
@@ -9727,6 +9887,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9727
9887
|
}>) => Promise<import('viem').TransactionReceipt>;
|
|
9728
9888
|
watchBlockNumber: (args: import('viem').WatchBlockNumberParameters) => import('viem').WatchBlockNumberReturnType;
|
|
9729
9889
|
watchBlocks: <includeTransactions extends boolean = false, blockTag extends import('viem').BlockTag = "latest">(args: import('viem').WatchBlocksParameters<HttpTransport, {
|
|
9890
|
+
graphCliName: string;
|
|
9891
|
+
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}`;
|
|
9730
9892
|
blockExplorers: {
|
|
9731
9893
|
readonly default: {
|
|
9732
9894
|
readonly name: "Etherscan";
|
|
@@ -9766,6 +9928,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9766
9928
|
formatters?: undefined;
|
|
9767
9929
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9768
9930
|
} | {
|
|
9931
|
+
graphCliName: string;
|
|
9932
|
+
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}`;
|
|
9769
9933
|
blockExplorers: {
|
|
9770
9934
|
readonly default: {
|
|
9771
9935
|
readonly name: "Etherscan";
|
|
@@ -9805,6 +9969,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9805
9969
|
formatters?: undefined;
|
|
9806
9970
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9807
9971
|
} | {
|
|
9972
|
+
graphCliName: string;
|
|
9973
|
+
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}`;
|
|
9808
9974
|
blockExplorers: {
|
|
9809
9975
|
readonly default: {
|
|
9810
9976
|
readonly name: "Arbiscan";
|
|
@@ -9837,6 +10003,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9837
10003
|
formatters?: undefined;
|
|
9838
10004
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9839
10005
|
} | {
|
|
10006
|
+
graphCliName: string;
|
|
10007
|
+
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}`;
|
|
9840
10008
|
blockExplorers: {
|
|
9841
10009
|
readonly default: {
|
|
9842
10010
|
readonly name: "Arbiscan";
|
|
@@ -9887,6 +10055,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9887
10055
|
type?: undefined;
|
|
9888
10056
|
uid?: undefined;
|
|
9889
10057
|
} & import('viem').ExactPartial<Pick<import('viem').PublicActions<HttpTransport, {
|
|
10058
|
+
graphCliName: string;
|
|
10059
|
+
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}`;
|
|
9890
10060
|
blockExplorers: {
|
|
9891
10061
|
readonly default: {
|
|
9892
10062
|
readonly name: "Etherscan";
|
|
@@ -9926,6 +10096,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9926
10096
|
formatters?: undefined;
|
|
9927
10097
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9928
10098
|
} | {
|
|
10099
|
+
graphCliName: string;
|
|
10100
|
+
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}`;
|
|
9929
10101
|
blockExplorers: {
|
|
9930
10102
|
readonly default: {
|
|
9931
10103
|
readonly name: "Etherscan";
|
|
@@ -9965,6 +10137,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9965
10137
|
formatters?: undefined;
|
|
9966
10138
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9967
10139
|
} | {
|
|
10140
|
+
graphCliName: string;
|
|
10141
|
+
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}`;
|
|
9968
10142
|
blockExplorers: {
|
|
9969
10143
|
readonly default: {
|
|
9970
10144
|
readonly name: "Arbiscan";
|
|
@@ -9997,6 +10171,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
9997
10171
|
formatters?: undefined;
|
|
9998
10172
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
9999
10173
|
} | {
|
|
10174
|
+
graphCliName: string;
|
|
10175
|
+
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}`;
|
|
10000
10176
|
blockExplorers: {
|
|
10001
10177
|
readonly default: {
|
|
10002
10178
|
readonly name: "Arbiscan";
|
|
@@ -10029,6 +10205,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10029
10205
|
formatters?: undefined;
|
|
10030
10206
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10031
10207
|
}, 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<{
|
|
10208
|
+
graphCliName: string;
|
|
10209
|
+
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}`;
|
|
10032
10210
|
blockExplorers: {
|
|
10033
10211
|
readonly default: {
|
|
10034
10212
|
readonly name: "Etherscan";
|
|
@@ -10068,6 +10246,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10068
10246
|
formatters?: undefined;
|
|
10069
10247
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10070
10248
|
} | {
|
|
10249
|
+
graphCliName: string;
|
|
10250
|
+
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}`;
|
|
10071
10251
|
blockExplorers: {
|
|
10072
10252
|
readonly default: {
|
|
10073
10253
|
readonly name: "Etherscan";
|
|
@@ -10107,6 +10287,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10107
10287
|
formatters?: undefined;
|
|
10108
10288
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10109
10289
|
} | {
|
|
10290
|
+
graphCliName: string;
|
|
10291
|
+
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}`;
|
|
10110
10292
|
blockExplorers: {
|
|
10111
10293
|
readonly default: {
|
|
10112
10294
|
readonly name: "Arbiscan";
|
|
@@ -10139,6 +10321,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10139
10321
|
formatters?: undefined;
|
|
10140
10322
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10141
10323
|
} | {
|
|
10324
|
+
graphCliName: string;
|
|
10325
|
+
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}`;
|
|
10142
10326
|
blockExplorers: {
|
|
10143
10327
|
readonly default: {
|
|
10144
10328
|
readonly name: "Arbiscan";
|
|
@@ -10171,6 +10355,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10171
10355
|
formatters?: undefined;
|
|
10172
10356
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10173
10357
|
}, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import('viem').Client<HttpTransport, {
|
|
10358
|
+
graphCliName: string;
|
|
10359
|
+
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}`;
|
|
10174
10360
|
blockExplorers: {
|
|
10175
10361
|
readonly default: {
|
|
10176
10362
|
readonly name: "Etherscan";
|
|
@@ -10210,6 +10396,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10210
10396
|
formatters?: undefined;
|
|
10211
10397
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10212
10398
|
} | {
|
|
10399
|
+
graphCliName: string;
|
|
10400
|
+
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}`;
|
|
10213
10401
|
blockExplorers: {
|
|
10214
10402
|
readonly default: {
|
|
10215
10403
|
readonly name: "Etherscan";
|
|
@@ -10249,6 +10437,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10249
10437
|
formatters?: undefined;
|
|
10250
10438
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10251
10439
|
} | {
|
|
10440
|
+
graphCliName: string;
|
|
10441
|
+
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}`;
|
|
10252
10442
|
blockExplorers: {
|
|
10253
10443
|
readonly default: {
|
|
10254
10444
|
readonly name: "Arbiscan";
|
|
@@ -10281,6 +10471,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10281
10471
|
formatters?: undefined;
|
|
10282
10472
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10283
10473
|
} | {
|
|
10474
|
+
graphCliName: string;
|
|
10475
|
+
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}`;
|
|
10284
10476
|
blockExplorers: {
|
|
10285
10477
|
readonly default: {
|
|
10286
10478
|
readonly name: "Arbiscan";
|
|
@@ -10313,6 +10505,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10313
10505
|
formatters?: undefined;
|
|
10314
10506
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10315
10507
|
}, undefined, import('viem').PublicRpcSchema, import('viem').PublicActions<HttpTransport, {
|
|
10508
|
+
graphCliName: string;
|
|
10509
|
+
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}`;
|
|
10316
10510
|
blockExplorers: {
|
|
10317
10511
|
readonly default: {
|
|
10318
10512
|
readonly name: "Etherscan";
|
|
@@ -10352,6 +10546,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10352
10546
|
formatters?: undefined;
|
|
10353
10547
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10354
10548
|
} | {
|
|
10549
|
+
graphCliName: string;
|
|
10550
|
+
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}`;
|
|
10355
10551
|
blockExplorers: {
|
|
10356
10552
|
readonly default: {
|
|
10357
10553
|
readonly name: "Etherscan";
|
|
@@ -10391,6 +10587,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10391
10587
|
formatters?: undefined;
|
|
10392
10588
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10393
10589
|
} | {
|
|
10590
|
+
graphCliName: string;
|
|
10591
|
+
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}`;
|
|
10394
10592
|
blockExplorers: {
|
|
10395
10593
|
readonly default: {
|
|
10396
10594
|
readonly name: "Arbiscan";
|
|
@@ -10423,6 +10621,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10423
10621
|
formatters?: undefined;
|
|
10424
10622
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10425
10623
|
} | {
|
|
10624
|
+
graphCliName: string;
|
|
10625
|
+
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}`;
|
|
10426
10626
|
blockExplorers: {
|
|
10427
10627
|
readonly default: {
|
|
10428
10628
|
readonly name: "Arbiscan";
|
|
@@ -10455,6 +10655,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10455
10655
|
formatters?: undefined;
|
|
10456
10656
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10457
10657
|
}>>) => client) => import('viem').Client<HttpTransport, {
|
|
10658
|
+
graphCliName: string;
|
|
10659
|
+
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}`;
|
|
10458
10660
|
blockExplorers: {
|
|
10459
10661
|
readonly default: {
|
|
10460
10662
|
readonly name: "Etherscan";
|
|
@@ -10494,6 +10696,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10494
10696
|
formatters?: undefined;
|
|
10495
10697
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10496
10698
|
} | {
|
|
10699
|
+
graphCliName: string;
|
|
10700
|
+
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}`;
|
|
10497
10701
|
blockExplorers: {
|
|
10498
10702
|
readonly default: {
|
|
10499
10703
|
readonly name: "Etherscan";
|
|
@@ -10533,6 +10737,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10533
10737
|
formatters?: undefined;
|
|
10534
10738
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10535
10739
|
} | {
|
|
10740
|
+
graphCliName: string;
|
|
10741
|
+
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}`;
|
|
10536
10742
|
blockExplorers: {
|
|
10537
10743
|
readonly default: {
|
|
10538
10744
|
readonly name: "Arbiscan";
|
|
@@ -10565,6 +10771,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10565
10771
|
formatters?: undefined;
|
|
10566
10772
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10567
10773
|
} | {
|
|
10774
|
+
graphCliName: string;
|
|
10775
|
+
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}`;
|
|
10568
10776
|
blockExplorers: {
|
|
10569
10777
|
readonly default: {
|
|
10570
10778
|
readonly name: "Arbiscan";
|
|
@@ -10597,6 +10805,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10597
10805
|
formatters?: undefined;
|
|
10598
10806
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10599
10807
|
}, undefined, import('viem').PublicRpcSchema, { [K in keyof client]: client[K]; } & import('viem').PublicActions<HttpTransport, {
|
|
10808
|
+
graphCliName: string;
|
|
10809
|
+
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}`;
|
|
10600
10810
|
blockExplorers: {
|
|
10601
10811
|
readonly default: {
|
|
10602
10812
|
readonly name: "Etherscan";
|
|
@@ -10636,6 +10846,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10636
10846
|
formatters?: undefined;
|
|
10637
10847
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10638
10848
|
} | {
|
|
10849
|
+
graphCliName: string;
|
|
10850
|
+
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}`;
|
|
10639
10851
|
blockExplorers: {
|
|
10640
10852
|
readonly default: {
|
|
10641
10853
|
readonly name: "Etherscan";
|
|
@@ -10675,6 +10887,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10675
10887
|
formatters?: undefined;
|
|
10676
10888
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10677
10889
|
} | {
|
|
10890
|
+
graphCliName: string;
|
|
10891
|
+
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}`;
|
|
10678
10892
|
blockExplorers: {
|
|
10679
10893
|
readonly default: {
|
|
10680
10894
|
readonly name: "Arbiscan";
|
|
@@ -10707,6 +10921,8 @@ export declare function buildPublicClient({ chain, infuraKey }: BuildPublicClien
|
|
|
10707
10921
|
formatters?: undefined;
|
|
10708
10922
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10709
10923
|
} | {
|
|
10924
|
+
graphCliName: string;
|
|
10925
|
+
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}`;
|
|
10710
10926
|
blockExplorers: {
|
|
10711
10927
|
readonly default: {
|
|
10712
10928
|
readonly name: "Arbiscan";
|
|
@@ -10745,6 +10961,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10745
10961
|
infuraKey: z.ZodReadonly<z.ZodString>;
|
|
10746
10962
|
}, {
|
|
10747
10963
|
chain: z.ZodDefault<z.ZodOptional<z.ZodType<{
|
|
10964
|
+
graphCliName: string;
|
|
10965
|
+
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}`;
|
|
10748
10966
|
blockExplorers: {
|
|
10749
10967
|
readonly default: {
|
|
10750
10968
|
readonly name: "Etherscan";
|
|
@@ -10784,6 +11002,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10784
11002
|
formatters?: undefined;
|
|
10785
11003
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10786
11004
|
} | {
|
|
11005
|
+
graphCliName: string;
|
|
11006
|
+
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}`;
|
|
10787
11007
|
blockExplorers: {
|
|
10788
11008
|
readonly default: {
|
|
10789
11009
|
readonly name: "Etherscan";
|
|
@@ -10823,6 +11043,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10823
11043
|
formatters?: undefined;
|
|
10824
11044
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10825
11045
|
} | {
|
|
11046
|
+
graphCliName: string;
|
|
11047
|
+
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}`;
|
|
10826
11048
|
blockExplorers: {
|
|
10827
11049
|
readonly default: {
|
|
10828
11050
|
readonly name: "Arbiscan";
|
|
@@ -10855,6 +11077,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10855
11077
|
formatters?: undefined;
|
|
10856
11078
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10857
11079
|
} | {
|
|
11080
|
+
graphCliName: string;
|
|
11081
|
+
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}`;
|
|
10858
11082
|
blockExplorers: {
|
|
10859
11083
|
readonly default: {
|
|
10860
11084
|
readonly name: "Arbiscan";
|
|
@@ -10887,6 +11111,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10887
11111
|
formatters?: undefined;
|
|
10888
11112
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10889
11113
|
}, z.ZodTypeDef, {
|
|
11114
|
+
graphCliName: string;
|
|
11115
|
+
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}`;
|
|
10890
11116
|
blockExplorers: {
|
|
10891
11117
|
readonly default: {
|
|
10892
11118
|
readonly name: "Etherscan";
|
|
@@ -10926,6 +11152,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10926
11152
|
formatters?: undefined;
|
|
10927
11153
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10928
11154
|
} | {
|
|
11155
|
+
graphCliName: string;
|
|
11156
|
+
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}`;
|
|
10929
11157
|
blockExplorers: {
|
|
10930
11158
|
readonly default: {
|
|
10931
11159
|
readonly name: "Etherscan";
|
|
@@ -10965,6 +11193,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10965
11193
|
formatters?: undefined;
|
|
10966
11194
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10967
11195
|
} | {
|
|
11196
|
+
graphCliName: string;
|
|
11197
|
+
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}`;
|
|
10968
11198
|
blockExplorers: {
|
|
10969
11199
|
readonly default: {
|
|
10970
11200
|
readonly name: "Arbiscan";
|
|
@@ -10997,6 +11227,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10997
11227
|
formatters?: undefined;
|
|
10998
11228
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
10999
11229
|
} | {
|
|
11230
|
+
graphCliName: string;
|
|
11231
|
+
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}`;
|
|
11000
11232
|
blockExplorers: {
|
|
11001
11233
|
readonly default: {
|
|
11002
11234
|
readonly name: "Arbiscan";
|
|
@@ -11032,6 +11264,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11032
11264
|
}>, "strip", z.ZodTypeAny, {
|
|
11033
11265
|
infuraKey: string;
|
|
11034
11266
|
chain: {
|
|
11267
|
+
graphCliName: string;
|
|
11268
|
+
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}`;
|
|
11035
11269
|
blockExplorers: {
|
|
11036
11270
|
readonly default: {
|
|
11037
11271
|
readonly name: "Etherscan";
|
|
@@ -11071,6 +11305,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11071
11305
|
formatters?: undefined;
|
|
11072
11306
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11073
11307
|
} | {
|
|
11308
|
+
graphCliName: string;
|
|
11309
|
+
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}`;
|
|
11074
11310
|
blockExplorers: {
|
|
11075
11311
|
readonly default: {
|
|
11076
11312
|
readonly name: "Etherscan";
|
|
@@ -11110,6 +11346,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11110
11346
|
formatters?: undefined;
|
|
11111
11347
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11112
11348
|
} | {
|
|
11349
|
+
graphCliName: string;
|
|
11350
|
+
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}`;
|
|
11113
11351
|
blockExplorers: {
|
|
11114
11352
|
readonly default: {
|
|
11115
11353
|
readonly name: "Arbiscan";
|
|
@@ -11142,6 +11380,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11142
11380
|
formatters?: undefined;
|
|
11143
11381
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11144
11382
|
} | {
|
|
11383
|
+
graphCliName: string;
|
|
11384
|
+
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}`;
|
|
11145
11385
|
blockExplorers: {
|
|
11146
11386
|
readonly default: {
|
|
11147
11387
|
readonly name: "Arbiscan";
|
|
@@ -11177,6 +11417,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11177
11417
|
}, {
|
|
11178
11418
|
infuraKey: string;
|
|
11179
11419
|
chain?: {
|
|
11420
|
+
graphCliName: string;
|
|
11421
|
+
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}`;
|
|
11180
11422
|
blockExplorers: {
|
|
11181
11423
|
readonly default: {
|
|
11182
11424
|
readonly name: "Etherscan";
|
|
@@ -11216,6 +11458,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11216
11458
|
formatters?: undefined;
|
|
11217
11459
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11218
11460
|
} | {
|
|
11461
|
+
graphCliName: string;
|
|
11462
|
+
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}`;
|
|
11219
11463
|
blockExplorers: {
|
|
11220
11464
|
readonly default: {
|
|
11221
11465
|
readonly name: "Etherscan";
|
|
@@ -11255,6 +11499,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11255
11499
|
formatters?: undefined;
|
|
11256
11500
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11257
11501
|
} | {
|
|
11502
|
+
graphCliName: string;
|
|
11503
|
+
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}`;
|
|
11258
11504
|
blockExplorers: {
|
|
11259
11505
|
readonly default: {
|
|
11260
11506
|
readonly name: "Arbiscan";
|
|
@@ -11287,6 +11533,8 @@ export declare const BuildClientArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11287
11533
|
formatters?: undefined;
|
|
11288
11534
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11289
11535
|
} | {
|
|
11536
|
+
graphCliName: string;
|
|
11537
|
+
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}`;
|
|
11290
11538
|
blockExplorers: {
|
|
11291
11539
|
readonly default: {
|
|
11292
11540
|
readonly name: "Arbiscan";
|
|
@@ -11331,6 +11579,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11331
11579
|
request?: (parameters: import('viem').CcipRequestParameters) => Promise<`0x${string}`>;
|
|
11332
11580
|
} | undefined;
|
|
11333
11581
|
chain: {
|
|
11582
|
+
graphCliName: string;
|
|
11583
|
+
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}`;
|
|
11334
11584
|
blockExplorers: {
|
|
11335
11585
|
readonly default: {
|
|
11336
11586
|
readonly name: "Etherscan";
|
|
@@ -11370,6 +11620,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11370
11620
|
formatters?: undefined;
|
|
11371
11621
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11372
11622
|
} | {
|
|
11623
|
+
graphCliName: string;
|
|
11624
|
+
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}`;
|
|
11373
11625
|
blockExplorers: {
|
|
11374
11626
|
readonly default: {
|
|
11375
11627
|
readonly name: "Etherscan";
|
|
@@ -11409,6 +11661,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11409
11661
|
formatters?: undefined;
|
|
11410
11662
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11411
11663
|
} | {
|
|
11664
|
+
graphCliName: string;
|
|
11665
|
+
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}`;
|
|
11412
11666
|
blockExplorers: {
|
|
11413
11667
|
readonly default: {
|
|
11414
11668
|
readonly name: "Arbiscan";
|
|
@@ -11441,6 +11695,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11441
11695
|
formatters?: undefined;
|
|
11442
11696
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11443
11697
|
} | {
|
|
11698
|
+
graphCliName: string;
|
|
11699
|
+
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}`;
|
|
11444
11700
|
blockExplorers: {
|
|
11445
11701
|
readonly default: {
|
|
11446
11702
|
readonly name: "Arbiscan";
|
|
@@ -11824,6 +12080,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11824
12080
|
type?: undefined;
|
|
11825
12081
|
uid?: undefined;
|
|
11826
12082
|
} & import('viem').ExactPartial<Pick<import('viem').PublicActions<HttpTransport, {
|
|
12083
|
+
graphCliName: string;
|
|
12084
|
+
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}`;
|
|
11827
12085
|
blockExplorers: {
|
|
11828
12086
|
readonly default: {
|
|
11829
12087
|
readonly name: "Etherscan";
|
|
@@ -11863,6 +12121,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11863
12121
|
formatters?: undefined;
|
|
11864
12122
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11865
12123
|
} | {
|
|
12124
|
+
graphCliName: string;
|
|
12125
|
+
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}`;
|
|
11866
12126
|
blockExplorers: {
|
|
11867
12127
|
readonly default: {
|
|
11868
12128
|
readonly name: "Etherscan";
|
|
@@ -11902,6 +12162,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11902
12162
|
formatters?: undefined;
|
|
11903
12163
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11904
12164
|
} | {
|
|
12165
|
+
graphCliName: string;
|
|
12166
|
+
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}`;
|
|
11905
12167
|
blockExplorers: {
|
|
11906
12168
|
readonly default: {
|
|
11907
12169
|
readonly name: "Arbiscan";
|
|
@@ -11934,6 +12196,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11934
12196
|
formatters?: undefined;
|
|
11935
12197
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11936
12198
|
} | {
|
|
12199
|
+
graphCliName: string;
|
|
12200
|
+
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}`;
|
|
11937
12201
|
blockExplorers: {
|
|
11938
12202
|
readonly default: {
|
|
11939
12203
|
readonly name: "Arbiscan";
|
|
@@ -11966,6 +12230,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
11966
12230
|
formatters?: undefined;
|
|
11967
12231
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
11968
12232
|
}, 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<{
|
|
12233
|
+
graphCliName: string;
|
|
12234
|
+
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}`;
|
|
11969
12235
|
blockExplorers: {
|
|
11970
12236
|
readonly default: {
|
|
11971
12237
|
readonly name: "Etherscan";
|
|
@@ -12005,6 +12271,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12005
12271
|
formatters?: undefined;
|
|
12006
12272
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12007
12273
|
} | {
|
|
12274
|
+
graphCliName: string;
|
|
12275
|
+
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}`;
|
|
12008
12276
|
blockExplorers: {
|
|
12009
12277
|
readonly default: {
|
|
12010
12278
|
readonly name: "Etherscan";
|
|
@@ -12044,6 +12312,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12044
12312
|
formatters?: undefined;
|
|
12045
12313
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12046
12314
|
} | {
|
|
12315
|
+
graphCliName: string;
|
|
12316
|
+
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}`;
|
|
12047
12317
|
blockExplorers: {
|
|
12048
12318
|
readonly default: {
|
|
12049
12319
|
readonly name: "Arbiscan";
|
|
@@ -12076,6 +12346,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12076
12346
|
formatters?: undefined;
|
|
12077
12347
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12078
12348
|
} | {
|
|
12349
|
+
graphCliName: string;
|
|
12350
|
+
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}`;
|
|
12079
12351
|
blockExplorers: {
|
|
12080
12352
|
readonly default: {
|
|
12081
12353
|
readonly name: "Arbiscan";
|
|
@@ -12108,6 +12380,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12108
12380
|
formatters?: undefined;
|
|
12109
12381
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12110
12382
|
}, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import('viem').Client<HttpTransport, {
|
|
12383
|
+
graphCliName: string;
|
|
12384
|
+
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}`;
|
|
12111
12385
|
blockExplorers: {
|
|
12112
12386
|
readonly default: {
|
|
12113
12387
|
readonly name: "Etherscan";
|
|
@@ -12147,6 +12421,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12147
12421
|
formatters?: undefined;
|
|
12148
12422
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12149
12423
|
} | {
|
|
12424
|
+
graphCliName: string;
|
|
12425
|
+
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}`;
|
|
12150
12426
|
blockExplorers: {
|
|
12151
12427
|
readonly default: {
|
|
12152
12428
|
readonly name: "Etherscan";
|
|
@@ -12186,6 +12462,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12186
12462
|
formatters?: undefined;
|
|
12187
12463
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12188
12464
|
} | {
|
|
12465
|
+
graphCliName: string;
|
|
12466
|
+
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}`;
|
|
12189
12467
|
blockExplorers: {
|
|
12190
12468
|
readonly default: {
|
|
12191
12469
|
readonly name: "Arbiscan";
|
|
@@ -12218,6 +12496,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12218
12496
|
formatters?: undefined;
|
|
12219
12497
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12220
12498
|
} | {
|
|
12499
|
+
graphCliName: string;
|
|
12500
|
+
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}`;
|
|
12221
12501
|
blockExplorers: {
|
|
12222
12502
|
readonly default: {
|
|
12223
12503
|
readonly name: "Arbiscan";
|
|
@@ -12264,6 +12544,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12264
12544
|
type?: undefined;
|
|
12265
12545
|
uid?: undefined;
|
|
12266
12546
|
} | undefined>) => client) => import('viem').Client<HttpTransport, {
|
|
12547
|
+
graphCliName: string;
|
|
12548
|
+
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}`;
|
|
12267
12549
|
blockExplorers: {
|
|
12268
12550
|
readonly default: {
|
|
12269
12551
|
readonly name: "Etherscan";
|
|
@@ -12303,6 +12585,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12303
12585
|
formatters?: undefined;
|
|
12304
12586
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12305
12587
|
} | {
|
|
12588
|
+
graphCliName: string;
|
|
12589
|
+
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}`;
|
|
12306
12590
|
blockExplorers: {
|
|
12307
12591
|
readonly default: {
|
|
12308
12592
|
readonly name: "Etherscan";
|
|
@@ -12342,6 +12626,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12342
12626
|
formatters?: undefined;
|
|
12343
12627
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12344
12628
|
} | {
|
|
12629
|
+
graphCliName: string;
|
|
12630
|
+
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}`;
|
|
12345
12631
|
blockExplorers: {
|
|
12346
12632
|
readonly default: {
|
|
12347
12633
|
readonly name: "Arbiscan";
|
|
@@ -12374,6 +12660,8 @@ export declare function buildClient({ chain, infuraKey }: BuildClientArgs): {
|
|
|
12374
12660
|
formatters?: undefined;
|
|
12375
12661
|
serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
|
|
12376
12662
|
} | {
|
|
12663
|
+
graphCliName: string;
|
|
12664
|
+
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}`;
|
|
12377
12665
|
blockExplorers: {
|
|
12378
12666
|
readonly default: {
|
|
12379
12667
|
readonly name: "Arbiscan";
|