@bgd-labs/toolbox 0.0.14 → 0.0.16
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/{index-CswOipNa.d.mts → index-CoGUyq9j.d.mts} +392 -3792
- package/dist/{index-CswOipNa.d.ts → index-CoGUyq9j.d.ts} +392 -3792
- package/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +22171 -21642
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22282 -21759
- package/dist/index.mjs.map +1 -1
- package/dist/node.d.mts +2 -3
- package/dist/node.d.ts +2 -3
- package/dist/node.js +22170 -21641
- package/dist/node.js.map +1 -1
- package/dist/node.mjs +22282 -21759
- package/dist/node.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as viem from 'viem';
|
|
2
|
-
import { Address, Client, GetContractReturnType, Hex, TestClient, WalletClient, HttpTransportConfig, ClientConfig, AbiEvent, GetLogsReturnType, Account, HttpTransport, Chain, TransactionRequest, Log, Abi } from 'viem';
|
|
2
|
+
import { Address, Client, GetContractReturnType, Hex, TestClient, WalletClient, HttpTransportConfig, ClientConfig, AbiEvent, GetLogsReturnType, Account, HttpTransport, Chain as Chain$1, TransactionRequest, Log, Abi } from 'viem';
|
|
3
3
|
import { IPayloadsControllerCore_ABI, IGovernanceCore_ABI } from '@bgd-labs/aave-address-book/abis';
|
|
4
|
-
import
|
|
5
|
-
import * as viem_chains from 'viem/chains';
|
|
4
|
+
import { Chain } from 'viem/chains';
|
|
6
5
|
import { EventSource } from 'eventsource';
|
|
7
6
|
|
|
8
7
|
/**
|
|
@@ -180,22 +179,79 @@ declare function rayToWad(a: bigint): bigint;
|
|
|
180
179
|
declare function wadToRay(a: bigint): bigint;
|
|
181
180
|
declare function wadDiv(a: bigint, b: bigint): bigint;
|
|
182
181
|
|
|
182
|
+
/**
|
|
183
|
+
* Fetch all pool addresses that are considered immutable
|
|
184
|
+
* @returns
|
|
185
|
+
*/
|
|
186
|
+
declare function fetchImmutablePoolAddresses(client: Client, poolAddressesProvider: Address): Promise<{
|
|
187
|
+
pool: `0x${string}`;
|
|
188
|
+
configurator: `0x${string}`;
|
|
189
|
+
oracle: `0x${string}`;
|
|
190
|
+
aclAdmin: `0x${string}`;
|
|
191
|
+
incentivesController: `0x${string}`;
|
|
192
|
+
emissionManager: `0x${string}`;
|
|
193
|
+
}>;
|
|
194
|
+
/**
|
|
195
|
+
* Fetch all pool addresses that are considered mutable
|
|
196
|
+
* @returns
|
|
197
|
+
*/
|
|
198
|
+
declare function fetchMutablePoolAddresses(client: Client, poolAddressesProvider: Address): Promise<{
|
|
199
|
+
oracleSentinel: `0x${string}`;
|
|
200
|
+
aclAdmin: `0x${string}`;
|
|
201
|
+
pdp: `0x${string}`;
|
|
202
|
+
}>;
|
|
183
203
|
/**
|
|
184
204
|
* Returns all the addresses from the PoolAddressesProvider that can be considered immutable.
|
|
185
205
|
* @param client
|
|
186
206
|
* @param poolAddressesProvider
|
|
187
207
|
*/
|
|
188
208
|
declare function fetchPoolAddresses(client: Client, poolAddressesProvider: Address): Promise<{
|
|
189
|
-
pool: `0x${string}`;
|
|
190
|
-
configurator: `0x${string}`;
|
|
191
|
-
oracle: `0x${string}`;
|
|
192
209
|
oracleSentinel: `0x${string}`;
|
|
193
210
|
aclAdmin: `0x${string}`;
|
|
194
|
-
aclManager: `0x${string}`;
|
|
195
211
|
pdp: `0x${string}`;
|
|
212
|
+
pool: `0x${string}`;
|
|
213
|
+
configurator: `0x${string}`;
|
|
214
|
+
oracle: `0x${string}`;
|
|
196
215
|
incentivesController: `0x${string}`;
|
|
197
216
|
emissionManager: `0x${string}`;
|
|
198
217
|
}>;
|
|
218
|
+
declare function getReserveTokens(client: Client, pool: Address): Promise<{
|
|
219
|
+
reserve: `0x${string}`;
|
|
220
|
+
aToken: `0x${string}`;
|
|
221
|
+
variableDebtToken: `0x${string}`;
|
|
222
|
+
symbol: string;
|
|
223
|
+
}[]>;
|
|
224
|
+
/**
|
|
225
|
+
* Returns all the reserves of a pool with the aToken/vToken and the decoded reserve configuration.
|
|
226
|
+
* @param client
|
|
227
|
+
* @param pool
|
|
228
|
+
* @returns
|
|
229
|
+
*/
|
|
230
|
+
declare function getReserveConfigurations(client: Client, pool: Address, reserves: {
|
|
231
|
+
reserve: Address;
|
|
232
|
+
}[]): Promise<{
|
|
233
|
+
reserves: {
|
|
234
|
+
ltv: number;
|
|
235
|
+
liquidationThreshold: number;
|
|
236
|
+
liquidationBonus: number;
|
|
237
|
+
decimals: number;
|
|
238
|
+
active: boolean;
|
|
239
|
+
frozen: boolean;
|
|
240
|
+
borrowingEnabled: boolean;
|
|
241
|
+
paused: boolean;
|
|
242
|
+
borrowingInIsolation: boolean;
|
|
243
|
+
siloedBorrowingEnabled: boolean;
|
|
244
|
+
flashloaningEnabled: boolean;
|
|
245
|
+
reserveFactor: bigint;
|
|
246
|
+
borrowCap: bigint;
|
|
247
|
+
supplyCap: bigint;
|
|
248
|
+
liquidationProtocolFee: number;
|
|
249
|
+
unbackedMintCap: bigint;
|
|
250
|
+
debtCeiling: bigint;
|
|
251
|
+
virtualAccountingEnabled: boolean;
|
|
252
|
+
reserve: Address;
|
|
253
|
+
}[];
|
|
254
|
+
}>;
|
|
199
255
|
|
|
200
256
|
declare enum PayloadState {
|
|
201
257
|
None = 0,
|
|
@@ -434,3776 +490,7 @@ declare const ChainId: {
|
|
|
434
490
|
readonly ink: 57073;
|
|
435
491
|
readonly soneium: 1868;
|
|
436
492
|
};
|
|
437
|
-
declare const ChainList:
|
|
438
|
-
1: {
|
|
439
|
-
blockExplorers: {
|
|
440
|
-
readonly default: {
|
|
441
|
-
readonly name: "Etherscan";
|
|
442
|
-
readonly url: "https://etherscan.io";
|
|
443
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
444
|
-
};
|
|
445
|
-
};
|
|
446
|
-
contracts: {
|
|
447
|
-
readonly ensRegistry: {
|
|
448
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
449
|
-
};
|
|
450
|
-
readonly ensUniversalResolver: {
|
|
451
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
452
|
-
readonly blockCreated: 19258213;
|
|
453
|
-
};
|
|
454
|
-
readonly multicall3: {
|
|
455
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
456
|
-
readonly blockCreated: 14353601;
|
|
457
|
-
};
|
|
458
|
-
};
|
|
459
|
-
id: 1;
|
|
460
|
-
name: "Ethereum";
|
|
461
|
-
nativeCurrency: {
|
|
462
|
-
readonly name: "Ether";
|
|
463
|
-
readonly symbol: "ETH";
|
|
464
|
-
readonly decimals: 18;
|
|
465
|
-
};
|
|
466
|
-
rpcUrls: {
|
|
467
|
-
readonly default: {
|
|
468
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
469
|
-
};
|
|
470
|
-
};
|
|
471
|
-
sourceId?: number | undefined | undefined;
|
|
472
|
-
testnet?: boolean | undefined | undefined;
|
|
473
|
-
custom?: Record<string, unknown> | undefined;
|
|
474
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
475
|
-
formatters?: undefined;
|
|
476
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
477
|
-
};
|
|
478
|
-
137: {
|
|
479
|
-
blockExplorers: {
|
|
480
|
-
readonly default: {
|
|
481
|
-
readonly name: "PolygonScan";
|
|
482
|
-
readonly url: "https://polygonscan.com";
|
|
483
|
-
readonly apiUrl: "https://api.polygonscan.com/api";
|
|
484
|
-
};
|
|
485
|
-
};
|
|
486
|
-
contracts: {
|
|
487
|
-
readonly multicall3: {
|
|
488
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
489
|
-
readonly blockCreated: 25770160;
|
|
490
|
-
};
|
|
491
|
-
};
|
|
492
|
-
id: 137;
|
|
493
|
-
name: "Polygon";
|
|
494
|
-
nativeCurrency: {
|
|
495
|
-
readonly name: "POL";
|
|
496
|
-
readonly symbol: "POL";
|
|
497
|
-
readonly decimals: 18;
|
|
498
|
-
};
|
|
499
|
-
rpcUrls: {
|
|
500
|
-
readonly default: {
|
|
501
|
-
readonly http: readonly ["https://polygon-rpc.com"];
|
|
502
|
-
};
|
|
503
|
-
};
|
|
504
|
-
sourceId?: number | undefined | undefined;
|
|
505
|
-
testnet?: boolean | undefined | undefined;
|
|
506
|
-
custom?: Record<string, unknown> | undefined;
|
|
507
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
508
|
-
formatters?: undefined;
|
|
509
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
510
|
-
};
|
|
511
|
-
80002: {
|
|
512
|
-
blockExplorers: {
|
|
513
|
-
readonly default: {
|
|
514
|
-
readonly name: "PolygonScan";
|
|
515
|
-
readonly url: "https://amoy.polygonscan.com";
|
|
516
|
-
readonly apiUrl: "https://api-amoy.polygonscan.com/api";
|
|
517
|
-
};
|
|
518
|
-
};
|
|
519
|
-
contracts: {
|
|
520
|
-
readonly multicall3: {
|
|
521
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
522
|
-
readonly blockCreated: 3127388;
|
|
523
|
-
};
|
|
524
|
-
};
|
|
525
|
-
id: 80002;
|
|
526
|
-
name: "Polygon Amoy";
|
|
527
|
-
nativeCurrency: {
|
|
528
|
-
readonly name: "POL";
|
|
529
|
-
readonly symbol: "POL";
|
|
530
|
-
readonly decimals: 18;
|
|
531
|
-
};
|
|
532
|
-
rpcUrls: {
|
|
533
|
-
readonly default: {
|
|
534
|
-
readonly http: readonly ["https://rpc-amoy.polygon.technology"];
|
|
535
|
-
};
|
|
536
|
-
};
|
|
537
|
-
sourceId?: number | undefined | undefined;
|
|
538
|
-
testnet: true;
|
|
539
|
-
custom?: Record<string, unknown> | undefined;
|
|
540
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
541
|
-
formatters?: undefined;
|
|
542
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
543
|
-
};
|
|
544
|
-
43114: {
|
|
545
|
-
blockExplorers: {
|
|
546
|
-
readonly default: {
|
|
547
|
-
readonly name: "SnowTrace";
|
|
548
|
-
readonly url: "https://snowtrace.io";
|
|
549
|
-
readonly apiUrl: "https://api.snowtrace.io";
|
|
550
|
-
};
|
|
551
|
-
};
|
|
552
|
-
contracts: {
|
|
553
|
-
readonly multicall3: {
|
|
554
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
555
|
-
readonly blockCreated: 11907934;
|
|
556
|
-
};
|
|
557
|
-
};
|
|
558
|
-
id: 43114;
|
|
559
|
-
name: "Avalanche";
|
|
560
|
-
nativeCurrency: {
|
|
561
|
-
readonly decimals: 18;
|
|
562
|
-
readonly name: "Avalanche";
|
|
563
|
-
readonly symbol: "AVAX";
|
|
564
|
-
};
|
|
565
|
-
rpcUrls: {
|
|
566
|
-
readonly default: {
|
|
567
|
-
readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
|
|
568
|
-
};
|
|
569
|
-
};
|
|
570
|
-
sourceId?: number | undefined | undefined;
|
|
571
|
-
testnet?: boolean | undefined | undefined;
|
|
572
|
-
custom?: Record<string, unknown> | undefined;
|
|
573
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
574
|
-
formatters?: undefined;
|
|
575
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
576
|
-
};
|
|
577
|
-
43113: {
|
|
578
|
-
blockExplorers: {
|
|
579
|
-
readonly default: {
|
|
580
|
-
readonly name: "SnowTrace";
|
|
581
|
-
readonly url: "https://testnet.snowtrace.io";
|
|
582
|
-
readonly apiUrl: "https://api-testnet.snowtrace.io";
|
|
583
|
-
};
|
|
584
|
-
};
|
|
585
|
-
contracts: {
|
|
586
|
-
readonly multicall3: {
|
|
587
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
588
|
-
readonly blockCreated: 7096959;
|
|
589
|
-
};
|
|
590
|
-
};
|
|
591
|
-
id: 43113;
|
|
592
|
-
name: "Avalanche Fuji";
|
|
593
|
-
nativeCurrency: {
|
|
594
|
-
readonly decimals: 18;
|
|
595
|
-
readonly name: "Avalanche Fuji";
|
|
596
|
-
readonly symbol: "AVAX";
|
|
597
|
-
};
|
|
598
|
-
rpcUrls: {
|
|
599
|
-
readonly default: {
|
|
600
|
-
readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
|
|
601
|
-
};
|
|
602
|
-
};
|
|
603
|
-
sourceId?: number | undefined | undefined;
|
|
604
|
-
testnet: true;
|
|
605
|
-
custom?: Record<string, unknown> | undefined;
|
|
606
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
607
|
-
formatters?: undefined;
|
|
608
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
609
|
-
};
|
|
610
|
-
42161: {
|
|
611
|
-
blockExplorers: {
|
|
612
|
-
readonly default: {
|
|
613
|
-
readonly name: "Arbiscan";
|
|
614
|
-
readonly url: "https://arbiscan.io";
|
|
615
|
-
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
616
|
-
};
|
|
617
|
-
};
|
|
618
|
-
contracts: {
|
|
619
|
-
readonly multicall3: {
|
|
620
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
621
|
-
readonly blockCreated: 7654707;
|
|
622
|
-
};
|
|
623
|
-
};
|
|
624
|
-
id: 42161;
|
|
625
|
-
name: "Arbitrum One";
|
|
626
|
-
nativeCurrency: {
|
|
627
|
-
readonly name: "Ether";
|
|
628
|
-
readonly symbol: "ETH";
|
|
629
|
-
readonly decimals: 18;
|
|
630
|
-
};
|
|
631
|
-
rpcUrls: {
|
|
632
|
-
readonly default: {
|
|
633
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
634
|
-
};
|
|
635
|
-
};
|
|
636
|
-
sourceId?: number | undefined | undefined;
|
|
637
|
-
testnet?: boolean | undefined | undefined;
|
|
638
|
-
custom?: Record<string, unknown> | undefined;
|
|
639
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
640
|
-
formatters?: undefined;
|
|
641
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
642
|
-
};
|
|
643
|
-
421614: {
|
|
644
|
-
blockExplorers: {
|
|
645
|
-
readonly default: {
|
|
646
|
-
readonly name: "Arbiscan";
|
|
647
|
-
readonly url: "https://sepolia.arbiscan.io";
|
|
648
|
-
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
649
|
-
};
|
|
650
|
-
};
|
|
651
|
-
contracts: {
|
|
652
|
-
readonly multicall3: {
|
|
653
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
654
|
-
readonly blockCreated: 81930;
|
|
655
|
-
};
|
|
656
|
-
};
|
|
657
|
-
id: 421614;
|
|
658
|
-
name: "Arbitrum Sepolia";
|
|
659
|
-
nativeCurrency: {
|
|
660
|
-
readonly name: "Arbitrum Sepolia Ether";
|
|
661
|
-
readonly symbol: "ETH";
|
|
662
|
-
readonly decimals: 18;
|
|
663
|
-
};
|
|
664
|
-
rpcUrls: {
|
|
665
|
-
readonly default: {
|
|
666
|
-
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
667
|
-
};
|
|
668
|
-
};
|
|
669
|
-
sourceId?: number | undefined | undefined;
|
|
670
|
-
testnet: true;
|
|
671
|
-
custom?: Record<string, unknown> | undefined;
|
|
672
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
673
|
-
formatters?: undefined;
|
|
674
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
675
|
-
};
|
|
676
|
-
250: {
|
|
677
|
-
blockExplorers: {
|
|
678
|
-
readonly default: {
|
|
679
|
-
readonly name: "FTMScan";
|
|
680
|
-
readonly url: "https://ftmscan.com";
|
|
681
|
-
readonly apiUrl: "https://api.ftmscan.com/api";
|
|
682
|
-
};
|
|
683
|
-
};
|
|
684
|
-
contracts: {
|
|
685
|
-
readonly multicall3: {
|
|
686
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
687
|
-
readonly blockCreated: 33001987;
|
|
688
|
-
};
|
|
689
|
-
};
|
|
690
|
-
id: 250;
|
|
691
|
-
name: "Fantom";
|
|
692
|
-
nativeCurrency: {
|
|
693
|
-
readonly decimals: 18;
|
|
694
|
-
readonly name: "Fantom";
|
|
695
|
-
readonly symbol: "FTM";
|
|
696
|
-
};
|
|
697
|
-
rpcUrls: {
|
|
698
|
-
readonly default: {
|
|
699
|
-
readonly http: readonly ["https://250.rpc.thirdweb.com"];
|
|
700
|
-
};
|
|
701
|
-
};
|
|
702
|
-
sourceId?: number | undefined | undefined;
|
|
703
|
-
testnet?: boolean | undefined | undefined;
|
|
704
|
-
custom?: Record<string, unknown> | undefined;
|
|
705
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
706
|
-
formatters?: undefined;
|
|
707
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
708
|
-
};
|
|
709
|
-
4002: {
|
|
710
|
-
blockExplorers: {
|
|
711
|
-
readonly default: {
|
|
712
|
-
readonly name: "FTMScan";
|
|
713
|
-
readonly url: "https://testnet.ftmscan.com";
|
|
714
|
-
readonly apiUrl: "https://testnet.ftmscan.com/api";
|
|
715
|
-
};
|
|
716
|
-
};
|
|
717
|
-
contracts: {
|
|
718
|
-
readonly multicall3: {
|
|
719
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
720
|
-
readonly blockCreated: 8328688;
|
|
721
|
-
};
|
|
722
|
-
};
|
|
723
|
-
id: 4002;
|
|
724
|
-
name: "Fantom Testnet";
|
|
725
|
-
nativeCurrency: {
|
|
726
|
-
readonly decimals: 18;
|
|
727
|
-
readonly name: "Fantom";
|
|
728
|
-
readonly symbol: "FTM";
|
|
729
|
-
};
|
|
730
|
-
rpcUrls: {
|
|
731
|
-
readonly default: {
|
|
732
|
-
readonly http: readonly ["https://rpc.testnet.fantom.network"];
|
|
733
|
-
};
|
|
734
|
-
};
|
|
735
|
-
sourceId?: number | undefined | undefined;
|
|
736
|
-
testnet: true;
|
|
737
|
-
custom?: Record<string, unknown> | undefined;
|
|
738
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
739
|
-
formatters?: undefined;
|
|
740
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
741
|
-
};
|
|
742
|
-
10: {
|
|
743
|
-
blockExplorers: {
|
|
744
|
-
readonly default: {
|
|
745
|
-
readonly name: "Optimism Explorer";
|
|
746
|
-
readonly url: "https://optimistic.etherscan.io";
|
|
747
|
-
readonly apiUrl: "https://api-optimistic.etherscan.io/api";
|
|
748
|
-
};
|
|
749
|
-
};
|
|
750
|
-
contracts: {
|
|
751
|
-
readonly disputeGameFactory: {
|
|
752
|
-
readonly 1: {
|
|
753
|
-
readonly address: "0xe5965Ab5962eDc7477C8520243A95517CD252fA9";
|
|
754
|
-
};
|
|
755
|
-
};
|
|
756
|
-
readonly l2OutputOracle: {
|
|
757
|
-
readonly 1: {
|
|
758
|
-
readonly address: "0xdfe97868233d1aa22e815a266982f2cf17685a27";
|
|
759
|
-
};
|
|
760
|
-
};
|
|
761
|
-
readonly multicall3: {
|
|
762
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
763
|
-
readonly blockCreated: 4286263;
|
|
764
|
-
};
|
|
765
|
-
readonly portal: {
|
|
766
|
-
readonly 1: {
|
|
767
|
-
readonly address: "0xbEb5Fc579115071764c7423A4f12eDde41f106Ed";
|
|
768
|
-
};
|
|
769
|
-
};
|
|
770
|
-
readonly l1StandardBridge: {
|
|
771
|
-
readonly 1: {
|
|
772
|
-
readonly address: "0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1";
|
|
773
|
-
};
|
|
774
|
-
};
|
|
775
|
-
readonly gasPriceOracle: {
|
|
776
|
-
readonly address: "0x420000000000000000000000000000000000000F";
|
|
777
|
-
};
|
|
778
|
-
readonly l1Block: {
|
|
779
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
780
|
-
};
|
|
781
|
-
readonly l2CrossDomainMessenger: {
|
|
782
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
783
|
-
};
|
|
784
|
-
readonly l2Erc721Bridge: {
|
|
785
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
786
|
-
};
|
|
787
|
-
readonly l2StandardBridge: {
|
|
788
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
789
|
-
};
|
|
790
|
-
readonly l2ToL1MessagePasser: {
|
|
791
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
792
|
-
};
|
|
793
|
-
};
|
|
794
|
-
id: 10;
|
|
795
|
-
name: "OP Mainnet";
|
|
796
|
-
nativeCurrency: {
|
|
797
|
-
readonly name: "Ether";
|
|
798
|
-
readonly symbol: "ETH";
|
|
799
|
-
readonly decimals: 18;
|
|
800
|
-
};
|
|
801
|
-
rpcUrls: {
|
|
802
|
-
readonly default: {
|
|
803
|
-
readonly http: readonly ["https://mainnet.optimism.io"];
|
|
804
|
-
};
|
|
805
|
-
};
|
|
806
|
-
sourceId: 1;
|
|
807
|
-
testnet?: boolean | undefined | undefined;
|
|
808
|
-
custom?: Record<string, unknown> | undefined;
|
|
809
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
810
|
-
formatters: {
|
|
811
|
-
readonly block: {
|
|
812
|
-
exclude: [] | undefined;
|
|
813
|
-
format: (args: viem_chains.OpStackRpcBlock) => {
|
|
814
|
-
baseFeePerGas: bigint | null;
|
|
815
|
-
blobGasUsed: bigint;
|
|
816
|
-
difficulty: bigint;
|
|
817
|
-
excessBlobGas: bigint;
|
|
818
|
-
extraData: viem.Hex;
|
|
819
|
-
gasLimit: bigint;
|
|
820
|
-
gasUsed: bigint;
|
|
821
|
-
hash: `0x${string}` | null;
|
|
822
|
-
logsBloom: `0x${string}` | null;
|
|
823
|
-
miner: viem.Address;
|
|
824
|
-
mixHash: viem.Hash;
|
|
825
|
-
nonce: `0x${string}` | null;
|
|
826
|
-
number: bigint | null;
|
|
827
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
828
|
-
parentHash: viem.Hash;
|
|
829
|
-
receiptsRoot: viem.Hex;
|
|
830
|
-
sealFields: viem.Hex[];
|
|
831
|
-
sha3Uncles: viem.Hash;
|
|
832
|
-
size: bigint;
|
|
833
|
-
stateRoot: viem.Hash;
|
|
834
|
-
timestamp: bigint;
|
|
835
|
-
totalDifficulty: bigint | null;
|
|
836
|
-
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
837
|
-
transactionsRoot: viem.Hash;
|
|
838
|
-
uncles: viem.Hash[];
|
|
839
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
840
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
841
|
-
} & {};
|
|
842
|
-
type: "block";
|
|
843
|
-
};
|
|
844
|
-
readonly transaction: {
|
|
845
|
-
exclude: [] | undefined;
|
|
846
|
-
format: (args: viem_chains.OpStackRpcTransaction) => ({
|
|
847
|
-
blockHash: `0x${string}` | null;
|
|
848
|
-
blockNumber: bigint | null;
|
|
849
|
-
from: viem.Address;
|
|
850
|
-
gas: bigint;
|
|
851
|
-
hash: viem.Hash;
|
|
852
|
-
input: viem.Hex;
|
|
853
|
-
nonce: number;
|
|
854
|
-
r: viem.Hex;
|
|
855
|
-
s: viem.Hex;
|
|
856
|
-
to: viem.Address | null;
|
|
857
|
-
transactionIndex: number | null;
|
|
858
|
-
typeHex: viem.Hex | null;
|
|
859
|
-
v: bigint;
|
|
860
|
-
value: bigint;
|
|
861
|
-
yParity: number;
|
|
862
|
-
gasPrice?: undefined | undefined;
|
|
863
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
864
|
-
maxFeePerGas: bigint;
|
|
865
|
-
maxPriorityFeePerGas: bigint;
|
|
866
|
-
isSystemTx?: boolean;
|
|
867
|
-
mint?: bigint | undefined | undefined;
|
|
868
|
-
sourceHash: viem.Hex;
|
|
869
|
-
type: "deposit";
|
|
870
|
-
} | {
|
|
871
|
-
r: viem.Hex;
|
|
872
|
-
s: viem.Hex;
|
|
873
|
-
v: bigint;
|
|
874
|
-
to: viem.Address | null;
|
|
875
|
-
from: viem.Address;
|
|
876
|
-
gas: bigint;
|
|
877
|
-
nonce: number;
|
|
878
|
-
value: bigint;
|
|
879
|
-
blockHash: `0x${string}` | null;
|
|
880
|
-
blockNumber: bigint | null;
|
|
881
|
-
hash: viem.Hash;
|
|
882
|
-
input: viem.Hex;
|
|
883
|
-
transactionIndex: number | null;
|
|
884
|
-
typeHex: viem.Hex | null;
|
|
885
|
-
accessList?: undefined | undefined;
|
|
886
|
-
authorizationList?: undefined | undefined;
|
|
887
|
-
blobVersionedHashes?: undefined | undefined;
|
|
888
|
-
chainId?: number | undefined;
|
|
889
|
-
yParity?: undefined | undefined;
|
|
890
|
-
type: "legacy";
|
|
891
|
-
gasPrice: bigint;
|
|
892
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
893
|
-
maxFeePerGas?: undefined | undefined;
|
|
894
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
895
|
-
isSystemTx?: undefined | undefined;
|
|
896
|
-
mint?: undefined | undefined;
|
|
897
|
-
sourceHash?: undefined | undefined;
|
|
898
|
-
} | {
|
|
899
|
-
blockHash: `0x${string}` | null;
|
|
900
|
-
blockNumber: bigint | null;
|
|
901
|
-
from: viem.Address;
|
|
902
|
-
gas: bigint;
|
|
903
|
-
hash: viem.Hash;
|
|
904
|
-
input: viem.Hex;
|
|
905
|
-
nonce: number;
|
|
906
|
-
r: viem.Hex;
|
|
907
|
-
s: viem.Hex;
|
|
908
|
-
to: viem.Address | null;
|
|
909
|
-
transactionIndex: number | null;
|
|
910
|
-
typeHex: viem.Hex | null;
|
|
911
|
-
v: bigint;
|
|
912
|
-
value: bigint;
|
|
913
|
-
yParity: number;
|
|
914
|
-
accessList: viem.AccessList;
|
|
915
|
-
authorizationList?: undefined | undefined;
|
|
916
|
-
blobVersionedHashes?: undefined | undefined;
|
|
917
|
-
chainId: number;
|
|
918
|
-
type: "eip2930";
|
|
919
|
-
gasPrice: bigint;
|
|
920
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
921
|
-
maxFeePerGas?: undefined | undefined;
|
|
922
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
923
|
-
isSystemTx?: undefined | undefined;
|
|
924
|
-
mint?: undefined | undefined;
|
|
925
|
-
sourceHash?: undefined | undefined;
|
|
926
|
-
} | {
|
|
927
|
-
blockHash: `0x${string}` | null;
|
|
928
|
-
blockNumber: bigint | null;
|
|
929
|
-
from: viem.Address;
|
|
930
|
-
gas: bigint;
|
|
931
|
-
hash: viem.Hash;
|
|
932
|
-
input: viem.Hex;
|
|
933
|
-
nonce: number;
|
|
934
|
-
r: viem.Hex;
|
|
935
|
-
s: viem.Hex;
|
|
936
|
-
to: viem.Address | null;
|
|
937
|
-
transactionIndex: number | null;
|
|
938
|
-
typeHex: viem.Hex | null;
|
|
939
|
-
v: bigint;
|
|
940
|
-
value: bigint;
|
|
941
|
-
yParity: number;
|
|
942
|
-
accessList: viem.AccessList;
|
|
943
|
-
authorizationList?: undefined | undefined;
|
|
944
|
-
blobVersionedHashes?: undefined | undefined;
|
|
945
|
-
chainId: number;
|
|
946
|
-
type: "eip1559";
|
|
947
|
-
gasPrice?: undefined | undefined;
|
|
948
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
949
|
-
maxFeePerGas: bigint;
|
|
950
|
-
maxPriorityFeePerGas: bigint;
|
|
951
|
-
isSystemTx?: undefined | undefined;
|
|
952
|
-
mint?: undefined | undefined;
|
|
953
|
-
sourceHash?: undefined | undefined;
|
|
954
|
-
} | {
|
|
955
|
-
blockHash: `0x${string}` | null;
|
|
956
|
-
blockNumber: bigint | null;
|
|
957
|
-
from: viem.Address;
|
|
958
|
-
gas: bigint;
|
|
959
|
-
hash: viem.Hash;
|
|
960
|
-
input: viem.Hex;
|
|
961
|
-
nonce: number;
|
|
962
|
-
r: viem.Hex;
|
|
963
|
-
s: viem.Hex;
|
|
964
|
-
to: viem.Address | null;
|
|
965
|
-
transactionIndex: number | null;
|
|
966
|
-
typeHex: viem.Hex | null;
|
|
967
|
-
v: bigint;
|
|
968
|
-
value: bigint;
|
|
969
|
-
yParity: number;
|
|
970
|
-
accessList: viem.AccessList;
|
|
971
|
-
authorizationList?: undefined | undefined;
|
|
972
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
973
|
-
chainId: number;
|
|
974
|
-
type: "eip4844";
|
|
975
|
-
gasPrice?: undefined | undefined;
|
|
976
|
-
maxFeePerBlobGas: bigint;
|
|
977
|
-
maxFeePerGas: bigint;
|
|
978
|
-
maxPriorityFeePerGas: bigint;
|
|
979
|
-
isSystemTx?: undefined | undefined;
|
|
980
|
-
mint?: undefined | undefined;
|
|
981
|
-
sourceHash?: undefined | undefined;
|
|
982
|
-
} | {
|
|
983
|
-
blockHash: `0x${string}` | null;
|
|
984
|
-
blockNumber: bigint | null;
|
|
985
|
-
from: viem.Address;
|
|
986
|
-
gas: bigint;
|
|
987
|
-
hash: viem.Hash;
|
|
988
|
-
input: viem.Hex;
|
|
989
|
-
nonce: number;
|
|
990
|
-
r: viem.Hex;
|
|
991
|
-
s: viem.Hex;
|
|
992
|
-
to: viem.Address | null;
|
|
993
|
-
transactionIndex: number | null;
|
|
994
|
-
typeHex: viem.Hex | null;
|
|
995
|
-
v: bigint;
|
|
996
|
-
value: bigint;
|
|
997
|
-
yParity: number;
|
|
998
|
-
accessList: viem.AccessList;
|
|
999
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
1000
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1001
|
-
chainId: number;
|
|
1002
|
-
type: "eip7702";
|
|
1003
|
-
gasPrice?: undefined | undefined;
|
|
1004
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1005
|
-
maxFeePerGas: bigint;
|
|
1006
|
-
maxPriorityFeePerGas: bigint;
|
|
1007
|
-
isSystemTx?: undefined | undefined;
|
|
1008
|
-
mint?: undefined | undefined;
|
|
1009
|
-
sourceHash?: undefined | undefined;
|
|
1010
|
-
}) & {};
|
|
1011
|
-
type: "transaction";
|
|
1012
|
-
};
|
|
1013
|
-
readonly transactionReceipt: {
|
|
1014
|
-
exclude: [] | undefined;
|
|
1015
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt) => {
|
|
1016
|
-
blobGasPrice?: bigint | undefined;
|
|
1017
|
-
blobGasUsed?: bigint | undefined;
|
|
1018
|
-
blockHash: viem.Hash;
|
|
1019
|
-
blockNumber: bigint;
|
|
1020
|
-
contractAddress: viem.Address | null | undefined;
|
|
1021
|
-
cumulativeGasUsed: bigint;
|
|
1022
|
-
effectiveGasPrice: bigint;
|
|
1023
|
-
from: viem.Address;
|
|
1024
|
-
gasUsed: bigint;
|
|
1025
|
-
logs: viem.Log<bigint, number, false>[];
|
|
1026
|
-
logsBloom: viem.Hex;
|
|
1027
|
-
root?: `0x${string}` | undefined;
|
|
1028
|
-
status: "success" | "reverted";
|
|
1029
|
-
to: viem.Address | null;
|
|
1030
|
-
transactionHash: viem.Hash;
|
|
1031
|
-
transactionIndex: number;
|
|
1032
|
-
type: viem.TransactionType;
|
|
1033
|
-
l1GasPrice: bigint | null;
|
|
1034
|
-
l1GasUsed: bigint | null;
|
|
1035
|
-
l1Fee: bigint | null;
|
|
1036
|
-
l1FeeScalar: number | null;
|
|
1037
|
-
} & {};
|
|
1038
|
-
type: "transactionReceipt";
|
|
1039
|
-
};
|
|
1040
|
-
};
|
|
1041
|
-
serializers: {
|
|
1042
|
-
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
1043
|
-
};
|
|
1044
|
-
};
|
|
1045
|
-
11155420: {
|
|
1046
|
-
blockExplorers: {
|
|
1047
|
-
readonly default: {
|
|
1048
|
-
readonly name: "Blockscout";
|
|
1049
|
-
readonly url: "https://optimism-sepolia.blockscout.com";
|
|
1050
|
-
readonly apiUrl: "https://optimism-sepolia.blockscout.com/api";
|
|
1051
|
-
};
|
|
1052
|
-
};
|
|
1053
|
-
contracts: {
|
|
1054
|
-
readonly disputeGameFactory: {
|
|
1055
|
-
readonly 11155111: {
|
|
1056
|
-
readonly address: "0x05F9613aDB30026FFd634f38e5C4dFd30a197Fa1";
|
|
1057
|
-
};
|
|
1058
|
-
};
|
|
1059
|
-
readonly l2OutputOracle: {
|
|
1060
|
-
readonly 11155111: {
|
|
1061
|
-
readonly address: "0x90E9c4f8a994a250F6aEfd61CAFb4F2e895D458F";
|
|
1062
|
-
};
|
|
1063
|
-
};
|
|
1064
|
-
readonly multicall3: {
|
|
1065
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1066
|
-
readonly blockCreated: 1620204;
|
|
1067
|
-
};
|
|
1068
|
-
readonly portal: {
|
|
1069
|
-
readonly 11155111: {
|
|
1070
|
-
readonly address: "0x16Fc5058F25648194471939df75CF27A2fdC48BC";
|
|
1071
|
-
};
|
|
1072
|
-
};
|
|
1073
|
-
readonly l1StandardBridge: {
|
|
1074
|
-
readonly 11155111: {
|
|
1075
|
-
readonly address: "0xFBb0621E0B23b5478B630BD55a5f21f67730B0F1";
|
|
1076
|
-
};
|
|
1077
|
-
};
|
|
1078
|
-
readonly gasPriceOracle: {
|
|
1079
|
-
readonly address: "0x420000000000000000000000000000000000000F";
|
|
1080
|
-
};
|
|
1081
|
-
readonly l1Block: {
|
|
1082
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
1083
|
-
};
|
|
1084
|
-
readonly l2CrossDomainMessenger: {
|
|
1085
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
1086
|
-
};
|
|
1087
|
-
readonly l2Erc721Bridge: {
|
|
1088
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
1089
|
-
};
|
|
1090
|
-
readonly l2StandardBridge: {
|
|
1091
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
1092
|
-
};
|
|
1093
|
-
readonly l2ToL1MessagePasser: {
|
|
1094
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
1095
|
-
};
|
|
1096
|
-
};
|
|
1097
|
-
id: 11155420;
|
|
1098
|
-
name: "OP Sepolia";
|
|
1099
|
-
nativeCurrency: {
|
|
1100
|
-
readonly name: "Sepolia Ether";
|
|
1101
|
-
readonly symbol: "ETH";
|
|
1102
|
-
readonly decimals: 18;
|
|
1103
|
-
};
|
|
1104
|
-
rpcUrls: {
|
|
1105
|
-
readonly default: {
|
|
1106
|
-
readonly http: readonly ["https://sepolia.optimism.io"];
|
|
1107
|
-
};
|
|
1108
|
-
};
|
|
1109
|
-
sourceId: 11155111;
|
|
1110
|
-
testnet: true;
|
|
1111
|
-
custom?: Record<string, unknown> | undefined;
|
|
1112
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1113
|
-
formatters: {
|
|
1114
|
-
readonly block: {
|
|
1115
|
-
exclude: [] | undefined;
|
|
1116
|
-
format: (args: viem_chains.OpStackRpcBlock) => {
|
|
1117
|
-
baseFeePerGas: bigint | null;
|
|
1118
|
-
blobGasUsed: bigint;
|
|
1119
|
-
difficulty: bigint;
|
|
1120
|
-
excessBlobGas: bigint;
|
|
1121
|
-
extraData: viem.Hex;
|
|
1122
|
-
gasLimit: bigint;
|
|
1123
|
-
gasUsed: bigint;
|
|
1124
|
-
hash: `0x${string}` | null;
|
|
1125
|
-
logsBloom: `0x${string}` | null;
|
|
1126
|
-
miner: viem.Address;
|
|
1127
|
-
mixHash: viem.Hash;
|
|
1128
|
-
nonce: `0x${string}` | null;
|
|
1129
|
-
number: bigint | null;
|
|
1130
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1131
|
-
parentHash: viem.Hash;
|
|
1132
|
-
receiptsRoot: viem.Hex;
|
|
1133
|
-
sealFields: viem.Hex[];
|
|
1134
|
-
sha3Uncles: viem.Hash;
|
|
1135
|
-
size: bigint;
|
|
1136
|
-
stateRoot: viem.Hash;
|
|
1137
|
-
timestamp: bigint;
|
|
1138
|
-
totalDifficulty: bigint | null;
|
|
1139
|
-
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
1140
|
-
transactionsRoot: viem.Hash;
|
|
1141
|
-
uncles: viem.Hash[];
|
|
1142
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
1143
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1144
|
-
} & {};
|
|
1145
|
-
type: "block";
|
|
1146
|
-
};
|
|
1147
|
-
readonly transaction: {
|
|
1148
|
-
exclude: [] | undefined;
|
|
1149
|
-
format: (args: viem_chains.OpStackRpcTransaction) => ({
|
|
1150
|
-
blockHash: `0x${string}` | null;
|
|
1151
|
-
blockNumber: bigint | null;
|
|
1152
|
-
from: viem.Address;
|
|
1153
|
-
gas: bigint;
|
|
1154
|
-
hash: viem.Hash;
|
|
1155
|
-
input: viem.Hex;
|
|
1156
|
-
nonce: number;
|
|
1157
|
-
r: viem.Hex;
|
|
1158
|
-
s: viem.Hex;
|
|
1159
|
-
to: viem.Address | null;
|
|
1160
|
-
transactionIndex: number | null;
|
|
1161
|
-
typeHex: viem.Hex | null;
|
|
1162
|
-
v: bigint;
|
|
1163
|
-
value: bigint;
|
|
1164
|
-
yParity: number;
|
|
1165
|
-
gasPrice?: undefined | undefined;
|
|
1166
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1167
|
-
maxFeePerGas: bigint;
|
|
1168
|
-
maxPriorityFeePerGas: bigint;
|
|
1169
|
-
isSystemTx?: boolean;
|
|
1170
|
-
mint?: bigint | undefined | undefined;
|
|
1171
|
-
sourceHash: viem.Hex;
|
|
1172
|
-
type: "deposit";
|
|
1173
|
-
} | {
|
|
1174
|
-
r: viem.Hex;
|
|
1175
|
-
s: viem.Hex;
|
|
1176
|
-
v: bigint;
|
|
1177
|
-
to: viem.Address | null;
|
|
1178
|
-
from: viem.Address;
|
|
1179
|
-
gas: bigint;
|
|
1180
|
-
nonce: number;
|
|
1181
|
-
value: bigint;
|
|
1182
|
-
blockHash: `0x${string}` | null;
|
|
1183
|
-
blockNumber: bigint | null;
|
|
1184
|
-
hash: viem.Hash;
|
|
1185
|
-
input: viem.Hex;
|
|
1186
|
-
transactionIndex: number | null;
|
|
1187
|
-
typeHex: viem.Hex | null;
|
|
1188
|
-
accessList?: undefined | undefined;
|
|
1189
|
-
authorizationList?: undefined | undefined;
|
|
1190
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1191
|
-
chainId?: number | undefined;
|
|
1192
|
-
yParity?: undefined | undefined;
|
|
1193
|
-
type: "legacy";
|
|
1194
|
-
gasPrice: bigint;
|
|
1195
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1196
|
-
maxFeePerGas?: undefined | undefined;
|
|
1197
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1198
|
-
isSystemTx?: undefined | undefined;
|
|
1199
|
-
mint?: undefined | undefined;
|
|
1200
|
-
sourceHash?: undefined | undefined;
|
|
1201
|
-
} | {
|
|
1202
|
-
blockHash: `0x${string}` | null;
|
|
1203
|
-
blockNumber: bigint | null;
|
|
1204
|
-
from: viem.Address;
|
|
1205
|
-
gas: bigint;
|
|
1206
|
-
hash: viem.Hash;
|
|
1207
|
-
input: viem.Hex;
|
|
1208
|
-
nonce: number;
|
|
1209
|
-
r: viem.Hex;
|
|
1210
|
-
s: viem.Hex;
|
|
1211
|
-
to: viem.Address | null;
|
|
1212
|
-
transactionIndex: number | null;
|
|
1213
|
-
typeHex: viem.Hex | null;
|
|
1214
|
-
v: bigint;
|
|
1215
|
-
value: bigint;
|
|
1216
|
-
yParity: number;
|
|
1217
|
-
accessList: viem.AccessList;
|
|
1218
|
-
authorizationList?: undefined | undefined;
|
|
1219
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1220
|
-
chainId: number;
|
|
1221
|
-
type: "eip2930";
|
|
1222
|
-
gasPrice: bigint;
|
|
1223
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1224
|
-
maxFeePerGas?: undefined | undefined;
|
|
1225
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1226
|
-
isSystemTx?: undefined | undefined;
|
|
1227
|
-
mint?: undefined | undefined;
|
|
1228
|
-
sourceHash?: undefined | undefined;
|
|
1229
|
-
} | {
|
|
1230
|
-
blockHash: `0x${string}` | null;
|
|
1231
|
-
blockNumber: bigint | null;
|
|
1232
|
-
from: viem.Address;
|
|
1233
|
-
gas: bigint;
|
|
1234
|
-
hash: viem.Hash;
|
|
1235
|
-
input: viem.Hex;
|
|
1236
|
-
nonce: number;
|
|
1237
|
-
r: viem.Hex;
|
|
1238
|
-
s: viem.Hex;
|
|
1239
|
-
to: viem.Address | null;
|
|
1240
|
-
transactionIndex: number | null;
|
|
1241
|
-
typeHex: viem.Hex | null;
|
|
1242
|
-
v: bigint;
|
|
1243
|
-
value: bigint;
|
|
1244
|
-
yParity: number;
|
|
1245
|
-
accessList: viem.AccessList;
|
|
1246
|
-
authorizationList?: undefined | undefined;
|
|
1247
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1248
|
-
chainId: number;
|
|
1249
|
-
type: "eip1559";
|
|
1250
|
-
gasPrice?: undefined | undefined;
|
|
1251
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1252
|
-
maxFeePerGas: bigint;
|
|
1253
|
-
maxPriorityFeePerGas: bigint;
|
|
1254
|
-
isSystemTx?: undefined | undefined;
|
|
1255
|
-
mint?: undefined | undefined;
|
|
1256
|
-
sourceHash?: undefined | undefined;
|
|
1257
|
-
} | {
|
|
1258
|
-
blockHash: `0x${string}` | null;
|
|
1259
|
-
blockNumber: bigint | null;
|
|
1260
|
-
from: viem.Address;
|
|
1261
|
-
gas: bigint;
|
|
1262
|
-
hash: viem.Hash;
|
|
1263
|
-
input: viem.Hex;
|
|
1264
|
-
nonce: number;
|
|
1265
|
-
r: viem.Hex;
|
|
1266
|
-
s: viem.Hex;
|
|
1267
|
-
to: viem.Address | null;
|
|
1268
|
-
transactionIndex: number | null;
|
|
1269
|
-
typeHex: viem.Hex | null;
|
|
1270
|
-
v: bigint;
|
|
1271
|
-
value: bigint;
|
|
1272
|
-
yParity: number;
|
|
1273
|
-
accessList: viem.AccessList;
|
|
1274
|
-
authorizationList?: undefined | undefined;
|
|
1275
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
1276
|
-
chainId: number;
|
|
1277
|
-
type: "eip4844";
|
|
1278
|
-
gasPrice?: undefined | undefined;
|
|
1279
|
-
maxFeePerBlobGas: bigint;
|
|
1280
|
-
maxFeePerGas: bigint;
|
|
1281
|
-
maxPriorityFeePerGas: bigint;
|
|
1282
|
-
isSystemTx?: undefined | undefined;
|
|
1283
|
-
mint?: undefined | undefined;
|
|
1284
|
-
sourceHash?: undefined | undefined;
|
|
1285
|
-
} | {
|
|
1286
|
-
blockHash: `0x${string}` | null;
|
|
1287
|
-
blockNumber: bigint | null;
|
|
1288
|
-
from: viem.Address;
|
|
1289
|
-
gas: bigint;
|
|
1290
|
-
hash: viem.Hash;
|
|
1291
|
-
input: viem.Hex;
|
|
1292
|
-
nonce: number;
|
|
1293
|
-
r: viem.Hex;
|
|
1294
|
-
s: viem.Hex;
|
|
1295
|
-
to: viem.Address | null;
|
|
1296
|
-
transactionIndex: number | null;
|
|
1297
|
-
typeHex: viem.Hex | null;
|
|
1298
|
-
v: bigint;
|
|
1299
|
-
value: bigint;
|
|
1300
|
-
yParity: number;
|
|
1301
|
-
accessList: viem.AccessList;
|
|
1302
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
1303
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1304
|
-
chainId: number;
|
|
1305
|
-
type: "eip7702";
|
|
1306
|
-
gasPrice?: undefined | undefined;
|
|
1307
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1308
|
-
maxFeePerGas: bigint;
|
|
1309
|
-
maxPriorityFeePerGas: bigint;
|
|
1310
|
-
isSystemTx?: undefined | undefined;
|
|
1311
|
-
mint?: undefined | undefined;
|
|
1312
|
-
sourceHash?: undefined | undefined;
|
|
1313
|
-
}) & {};
|
|
1314
|
-
type: "transaction";
|
|
1315
|
-
};
|
|
1316
|
-
readonly transactionReceipt: {
|
|
1317
|
-
exclude: [] | undefined;
|
|
1318
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt) => {
|
|
1319
|
-
blobGasPrice?: bigint | undefined;
|
|
1320
|
-
blobGasUsed?: bigint | undefined;
|
|
1321
|
-
blockHash: viem.Hash;
|
|
1322
|
-
blockNumber: bigint;
|
|
1323
|
-
contractAddress: viem.Address | null | undefined;
|
|
1324
|
-
cumulativeGasUsed: bigint;
|
|
1325
|
-
effectiveGasPrice: bigint;
|
|
1326
|
-
from: viem.Address;
|
|
1327
|
-
gasUsed: bigint;
|
|
1328
|
-
logs: viem.Log<bigint, number, false>[];
|
|
1329
|
-
logsBloom: viem.Hex;
|
|
1330
|
-
root?: `0x${string}` | undefined;
|
|
1331
|
-
status: "success" | "reverted";
|
|
1332
|
-
to: viem.Address | null;
|
|
1333
|
-
transactionHash: viem.Hash;
|
|
1334
|
-
transactionIndex: number;
|
|
1335
|
-
type: viem.TransactionType;
|
|
1336
|
-
l1GasPrice: bigint | null;
|
|
1337
|
-
l1GasUsed: bigint | null;
|
|
1338
|
-
l1Fee: bigint | null;
|
|
1339
|
-
l1FeeScalar: number | null;
|
|
1340
|
-
} & {};
|
|
1341
|
-
type: "transactionReceipt";
|
|
1342
|
-
};
|
|
1343
|
-
};
|
|
1344
|
-
serializers: {
|
|
1345
|
-
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
1346
|
-
};
|
|
1347
|
-
};
|
|
1348
|
-
1666600000: {
|
|
1349
|
-
blockExplorers: {
|
|
1350
|
-
readonly default: {
|
|
1351
|
-
readonly name: "Harmony Explorer";
|
|
1352
|
-
readonly url: "https://explorer.harmony.one";
|
|
1353
|
-
};
|
|
1354
|
-
};
|
|
1355
|
-
contracts: {
|
|
1356
|
-
readonly multicall3: {
|
|
1357
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1358
|
-
readonly blockCreated: 24185753;
|
|
1359
|
-
};
|
|
1360
|
-
};
|
|
1361
|
-
id: 1666600000;
|
|
1362
|
-
name: "Harmony One";
|
|
1363
|
-
nativeCurrency: {
|
|
1364
|
-
readonly name: "Harmony";
|
|
1365
|
-
readonly symbol: "ONE";
|
|
1366
|
-
readonly decimals: 18;
|
|
1367
|
-
};
|
|
1368
|
-
rpcUrls: {
|
|
1369
|
-
readonly default: {
|
|
1370
|
-
readonly http: readonly ["https://1666600000.rpc.thirdweb.com"];
|
|
1371
|
-
};
|
|
1372
|
-
};
|
|
1373
|
-
sourceId?: number | undefined | undefined;
|
|
1374
|
-
testnet?: boolean | undefined | undefined;
|
|
1375
|
-
custom?: Record<string, unknown> | undefined;
|
|
1376
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1377
|
-
formatters?: undefined;
|
|
1378
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1379
|
-
};
|
|
1380
|
-
11155111: {
|
|
1381
|
-
blockExplorers: {
|
|
1382
|
-
readonly default: {
|
|
1383
|
-
readonly name: "Etherscan";
|
|
1384
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
1385
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
1386
|
-
};
|
|
1387
|
-
};
|
|
1388
|
-
contracts: {
|
|
1389
|
-
readonly multicall3: {
|
|
1390
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1391
|
-
readonly blockCreated: 751532;
|
|
1392
|
-
};
|
|
1393
|
-
readonly ensRegistry: {
|
|
1394
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
1395
|
-
};
|
|
1396
|
-
readonly ensUniversalResolver: {
|
|
1397
|
-
readonly address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC";
|
|
1398
|
-
readonly blockCreated: 5317080;
|
|
1399
|
-
};
|
|
1400
|
-
};
|
|
1401
|
-
id: 11155111;
|
|
1402
|
-
name: "Sepolia";
|
|
1403
|
-
nativeCurrency: {
|
|
1404
|
-
readonly name: "Sepolia Ether";
|
|
1405
|
-
readonly symbol: "ETH";
|
|
1406
|
-
readonly decimals: 18;
|
|
1407
|
-
};
|
|
1408
|
-
rpcUrls: {
|
|
1409
|
-
readonly default: {
|
|
1410
|
-
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
1411
|
-
};
|
|
1412
|
-
};
|
|
1413
|
-
sourceId?: number | undefined | undefined;
|
|
1414
|
-
testnet: true;
|
|
1415
|
-
custom?: Record<string, unknown> | undefined;
|
|
1416
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1417
|
-
formatters?: undefined;
|
|
1418
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1419
|
-
};
|
|
1420
|
-
534352: {
|
|
1421
|
-
blockExplorers: {
|
|
1422
|
-
readonly default: {
|
|
1423
|
-
readonly name: "Scrollscan";
|
|
1424
|
-
readonly url: "https://scrollscan.com";
|
|
1425
|
-
readonly apiUrl: "https://api.scrollscan.com/api";
|
|
1426
|
-
};
|
|
1427
|
-
};
|
|
1428
|
-
contracts: {
|
|
1429
|
-
readonly multicall3: {
|
|
1430
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1431
|
-
readonly blockCreated: 14;
|
|
1432
|
-
};
|
|
1433
|
-
};
|
|
1434
|
-
id: 534352;
|
|
1435
|
-
name: "Scroll";
|
|
1436
|
-
nativeCurrency: {
|
|
1437
|
-
readonly name: "Ether";
|
|
1438
|
-
readonly symbol: "ETH";
|
|
1439
|
-
readonly decimals: 18;
|
|
1440
|
-
};
|
|
1441
|
-
rpcUrls: {
|
|
1442
|
-
readonly default: {
|
|
1443
|
-
readonly http: readonly ["https://rpc.scroll.io"];
|
|
1444
|
-
readonly webSocket: readonly ["wss://wss-rpc.scroll.io/ws"];
|
|
1445
|
-
};
|
|
1446
|
-
};
|
|
1447
|
-
sourceId?: number | undefined | undefined;
|
|
1448
|
-
testnet: false;
|
|
1449
|
-
custom?: Record<string, unknown> | undefined;
|
|
1450
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1451
|
-
formatters?: undefined;
|
|
1452
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1453
|
-
};
|
|
1454
|
-
534351: {
|
|
1455
|
-
blockExplorers: {
|
|
1456
|
-
readonly default: {
|
|
1457
|
-
readonly name: "Scrollscan";
|
|
1458
|
-
readonly url: "https://sepolia.scrollscan.com";
|
|
1459
|
-
readonly apiUrl: "https://api-sepolia.scrollscan.com/api";
|
|
1460
|
-
};
|
|
1461
|
-
};
|
|
1462
|
-
contracts: {
|
|
1463
|
-
readonly multicall3: {
|
|
1464
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1465
|
-
readonly blockCreated: 9473;
|
|
1466
|
-
};
|
|
1467
|
-
};
|
|
1468
|
-
id: 534351;
|
|
1469
|
-
name: "Scroll Sepolia";
|
|
1470
|
-
nativeCurrency: {
|
|
1471
|
-
readonly name: "Ether";
|
|
1472
|
-
readonly symbol: "ETH";
|
|
1473
|
-
readonly decimals: 18;
|
|
1474
|
-
};
|
|
1475
|
-
rpcUrls: {
|
|
1476
|
-
readonly default: {
|
|
1477
|
-
readonly http: readonly ["https://sepolia-rpc.scroll.io"];
|
|
1478
|
-
};
|
|
1479
|
-
};
|
|
1480
|
-
sourceId?: number | undefined | undefined;
|
|
1481
|
-
testnet: true;
|
|
1482
|
-
custom?: Record<string, unknown> | undefined;
|
|
1483
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1484
|
-
formatters?: undefined;
|
|
1485
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1486
|
-
};
|
|
1487
|
-
146: {
|
|
1488
|
-
blockExplorers: {
|
|
1489
|
-
readonly default: {
|
|
1490
|
-
readonly name: "Sonic Explorer";
|
|
1491
|
-
readonly url: "https://sonicscan.org";
|
|
1492
|
-
};
|
|
1493
|
-
};
|
|
1494
|
-
contracts: {
|
|
1495
|
-
readonly multicall3: {
|
|
1496
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1497
|
-
readonly blockCreated: 60;
|
|
1498
|
-
};
|
|
1499
|
-
};
|
|
1500
|
-
id: 146;
|
|
1501
|
-
name: "Sonic";
|
|
1502
|
-
nativeCurrency: {
|
|
1503
|
-
readonly decimals: 18;
|
|
1504
|
-
readonly name: "Sonic";
|
|
1505
|
-
readonly symbol: "S";
|
|
1506
|
-
};
|
|
1507
|
-
rpcUrls: {
|
|
1508
|
-
readonly default: {
|
|
1509
|
-
readonly http: readonly ["https://rpc.soniclabs.com"];
|
|
1510
|
-
};
|
|
1511
|
-
};
|
|
1512
|
-
sourceId?: number | undefined | undefined;
|
|
1513
|
-
testnet: false;
|
|
1514
|
-
custom?: Record<string, unknown> | undefined;
|
|
1515
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1516
|
-
formatters?: undefined;
|
|
1517
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1518
|
-
};
|
|
1519
|
-
5000: {
|
|
1520
|
-
blockExplorers: {
|
|
1521
|
-
readonly default: {
|
|
1522
|
-
readonly name: "Mantle Explorer";
|
|
1523
|
-
readonly url: "https://mantlescan.xyz/";
|
|
1524
|
-
readonly apiUrl: "https://api.mantlescan.xyz/api";
|
|
1525
|
-
};
|
|
1526
|
-
};
|
|
1527
|
-
contracts: {
|
|
1528
|
-
readonly multicall3: {
|
|
1529
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1530
|
-
readonly blockCreated: 304717;
|
|
1531
|
-
};
|
|
1532
|
-
};
|
|
1533
|
-
id: 5000;
|
|
1534
|
-
name: "Mantle";
|
|
1535
|
-
nativeCurrency: {
|
|
1536
|
-
readonly decimals: 18;
|
|
1537
|
-
readonly name: "MNT";
|
|
1538
|
-
readonly symbol: "MNT";
|
|
1539
|
-
};
|
|
1540
|
-
rpcUrls: {
|
|
1541
|
-
readonly default: {
|
|
1542
|
-
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
1543
|
-
};
|
|
1544
|
-
};
|
|
1545
|
-
sourceId?: number | undefined | undefined;
|
|
1546
|
-
testnet?: boolean | undefined | undefined;
|
|
1547
|
-
custom?: Record<string, unknown> | undefined;
|
|
1548
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1549
|
-
formatters?: undefined;
|
|
1550
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1551
|
-
};
|
|
1552
|
-
1088: {
|
|
1553
|
-
blockExplorers: {
|
|
1554
|
-
readonly default: {
|
|
1555
|
-
readonly name: "Metis Explorer";
|
|
1556
|
-
readonly url: "https://explorer.metis.io";
|
|
1557
|
-
readonly apiUrl: "https://api.routescan.io/v2/network/mainnet/evm/1088/etherscan/api";
|
|
1558
|
-
};
|
|
1559
|
-
};
|
|
1560
|
-
contracts: {
|
|
1561
|
-
readonly multicall3: {
|
|
1562
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1563
|
-
readonly blockCreated: 2338552;
|
|
1564
|
-
};
|
|
1565
|
-
};
|
|
1566
|
-
id: 1088;
|
|
1567
|
-
name: "Metis";
|
|
1568
|
-
nativeCurrency: {
|
|
1569
|
-
readonly decimals: 18;
|
|
1570
|
-
readonly name: "Metis";
|
|
1571
|
-
readonly symbol: "METIS";
|
|
1572
|
-
};
|
|
1573
|
-
rpcUrls: {
|
|
1574
|
-
readonly default: {
|
|
1575
|
-
readonly http: readonly ["https://metis.rpc.hypersync.xyz", "https://metis-pokt.nodies.app", "https://api.blockeden.xyz/metis/67nCBdZQSH9z3YqDDjdm", "https://metis-andromeda.rpc.thirdweb.com", "https://metis-andromeda.gateway.tenderly.co", "https://metis.api.onfinality.io/public", "wss://metis-rpc.publicnode.com", "https://andromeda.metis.io/?owner=1088", "wss://metis.drpc.org", "https://metis-mainnet.public.blastapi.io"];
|
|
1576
|
-
};
|
|
1577
|
-
};
|
|
1578
|
-
sourceId?: number | undefined | undefined;
|
|
1579
|
-
testnet?: boolean | undefined | undefined;
|
|
1580
|
-
custom?: Record<string, unknown> | undefined;
|
|
1581
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1582
|
-
formatters?: undefined;
|
|
1583
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1584
|
-
};
|
|
1585
|
-
8453: {
|
|
1586
|
-
blockExplorers: {
|
|
1587
|
-
readonly default: {
|
|
1588
|
-
readonly name: "Basescan";
|
|
1589
|
-
readonly url: "https://basescan.org";
|
|
1590
|
-
readonly apiUrl: "https://api.basescan.org/api";
|
|
1591
|
-
};
|
|
1592
|
-
};
|
|
1593
|
-
contracts: {
|
|
1594
|
-
readonly disputeGameFactory: {
|
|
1595
|
-
readonly 1: {
|
|
1596
|
-
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
1597
|
-
};
|
|
1598
|
-
};
|
|
1599
|
-
readonly l2OutputOracle: {
|
|
1600
|
-
readonly 1: {
|
|
1601
|
-
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
1602
|
-
};
|
|
1603
|
-
};
|
|
1604
|
-
readonly multicall3: {
|
|
1605
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1606
|
-
readonly blockCreated: 5022;
|
|
1607
|
-
};
|
|
1608
|
-
readonly portal: {
|
|
1609
|
-
readonly 1: {
|
|
1610
|
-
readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
|
|
1611
|
-
readonly blockCreated: 17482143;
|
|
1612
|
-
};
|
|
1613
|
-
};
|
|
1614
|
-
readonly l1StandardBridge: {
|
|
1615
|
-
readonly 1: {
|
|
1616
|
-
readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
|
|
1617
|
-
readonly blockCreated: 17482143;
|
|
1618
|
-
};
|
|
1619
|
-
};
|
|
1620
|
-
readonly gasPriceOracle: {
|
|
1621
|
-
readonly address: "0x420000000000000000000000000000000000000F";
|
|
1622
|
-
};
|
|
1623
|
-
readonly l1Block: {
|
|
1624
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
1625
|
-
};
|
|
1626
|
-
readonly l2CrossDomainMessenger: {
|
|
1627
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
1628
|
-
};
|
|
1629
|
-
readonly l2Erc721Bridge: {
|
|
1630
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
1631
|
-
};
|
|
1632
|
-
readonly l2StandardBridge: {
|
|
1633
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
1634
|
-
};
|
|
1635
|
-
readonly l2ToL1MessagePasser: {
|
|
1636
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
1637
|
-
};
|
|
1638
|
-
};
|
|
1639
|
-
id: 8453;
|
|
1640
|
-
name: "Base";
|
|
1641
|
-
nativeCurrency: {
|
|
1642
|
-
readonly name: "Ether";
|
|
1643
|
-
readonly symbol: "ETH";
|
|
1644
|
-
readonly decimals: 18;
|
|
1645
|
-
};
|
|
1646
|
-
rpcUrls: {
|
|
1647
|
-
readonly default: {
|
|
1648
|
-
readonly http: readonly ["https://mainnet.base.org"];
|
|
1649
|
-
};
|
|
1650
|
-
};
|
|
1651
|
-
sourceId: 1;
|
|
1652
|
-
testnet?: boolean | undefined | undefined;
|
|
1653
|
-
custom?: Record<string, unknown> | undefined;
|
|
1654
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1655
|
-
formatters: {
|
|
1656
|
-
readonly block: {
|
|
1657
|
-
exclude: [] | undefined;
|
|
1658
|
-
format: (args: viem_chains.OpStackRpcBlock) => {
|
|
1659
|
-
baseFeePerGas: bigint | null;
|
|
1660
|
-
blobGasUsed: bigint;
|
|
1661
|
-
difficulty: bigint;
|
|
1662
|
-
excessBlobGas: bigint;
|
|
1663
|
-
extraData: viem.Hex;
|
|
1664
|
-
gasLimit: bigint;
|
|
1665
|
-
gasUsed: bigint;
|
|
1666
|
-
hash: `0x${string}` | null;
|
|
1667
|
-
logsBloom: `0x${string}` | null;
|
|
1668
|
-
miner: viem.Address;
|
|
1669
|
-
mixHash: viem.Hash;
|
|
1670
|
-
nonce: `0x${string}` | null;
|
|
1671
|
-
number: bigint | null;
|
|
1672
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1673
|
-
parentHash: viem.Hash;
|
|
1674
|
-
receiptsRoot: viem.Hex;
|
|
1675
|
-
sealFields: viem.Hex[];
|
|
1676
|
-
sha3Uncles: viem.Hash;
|
|
1677
|
-
size: bigint;
|
|
1678
|
-
stateRoot: viem.Hash;
|
|
1679
|
-
timestamp: bigint;
|
|
1680
|
-
totalDifficulty: bigint | null;
|
|
1681
|
-
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
1682
|
-
transactionsRoot: viem.Hash;
|
|
1683
|
-
uncles: viem.Hash[];
|
|
1684
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
1685
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1686
|
-
} & {};
|
|
1687
|
-
type: "block";
|
|
1688
|
-
};
|
|
1689
|
-
readonly transaction: {
|
|
1690
|
-
exclude: [] | undefined;
|
|
1691
|
-
format: (args: viem_chains.OpStackRpcTransaction) => ({
|
|
1692
|
-
blockHash: `0x${string}` | null;
|
|
1693
|
-
blockNumber: bigint | null;
|
|
1694
|
-
from: viem.Address;
|
|
1695
|
-
gas: bigint;
|
|
1696
|
-
hash: viem.Hash;
|
|
1697
|
-
input: viem.Hex;
|
|
1698
|
-
nonce: number;
|
|
1699
|
-
r: viem.Hex;
|
|
1700
|
-
s: viem.Hex;
|
|
1701
|
-
to: viem.Address | null;
|
|
1702
|
-
transactionIndex: number | null;
|
|
1703
|
-
typeHex: viem.Hex | null;
|
|
1704
|
-
v: bigint;
|
|
1705
|
-
value: bigint;
|
|
1706
|
-
yParity: number;
|
|
1707
|
-
gasPrice?: undefined | undefined;
|
|
1708
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1709
|
-
maxFeePerGas: bigint;
|
|
1710
|
-
maxPriorityFeePerGas: bigint;
|
|
1711
|
-
isSystemTx?: boolean;
|
|
1712
|
-
mint?: bigint | undefined | undefined;
|
|
1713
|
-
sourceHash: viem.Hex;
|
|
1714
|
-
type: "deposit";
|
|
1715
|
-
} | {
|
|
1716
|
-
r: viem.Hex;
|
|
1717
|
-
s: viem.Hex;
|
|
1718
|
-
v: bigint;
|
|
1719
|
-
to: viem.Address | null;
|
|
1720
|
-
from: viem.Address;
|
|
1721
|
-
gas: bigint;
|
|
1722
|
-
nonce: number;
|
|
1723
|
-
value: bigint;
|
|
1724
|
-
blockHash: `0x${string}` | null;
|
|
1725
|
-
blockNumber: bigint | null;
|
|
1726
|
-
hash: viem.Hash;
|
|
1727
|
-
input: viem.Hex;
|
|
1728
|
-
transactionIndex: number | null;
|
|
1729
|
-
typeHex: viem.Hex | null;
|
|
1730
|
-
accessList?: undefined | undefined;
|
|
1731
|
-
authorizationList?: undefined | undefined;
|
|
1732
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1733
|
-
chainId?: number | undefined;
|
|
1734
|
-
yParity?: undefined | undefined;
|
|
1735
|
-
type: "legacy";
|
|
1736
|
-
gasPrice: bigint;
|
|
1737
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1738
|
-
maxFeePerGas?: undefined | undefined;
|
|
1739
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1740
|
-
isSystemTx?: undefined | undefined;
|
|
1741
|
-
mint?: undefined | undefined;
|
|
1742
|
-
sourceHash?: undefined | undefined;
|
|
1743
|
-
} | {
|
|
1744
|
-
blockHash: `0x${string}` | null;
|
|
1745
|
-
blockNumber: bigint | null;
|
|
1746
|
-
from: viem.Address;
|
|
1747
|
-
gas: bigint;
|
|
1748
|
-
hash: viem.Hash;
|
|
1749
|
-
input: viem.Hex;
|
|
1750
|
-
nonce: number;
|
|
1751
|
-
r: viem.Hex;
|
|
1752
|
-
s: viem.Hex;
|
|
1753
|
-
to: viem.Address | null;
|
|
1754
|
-
transactionIndex: number | null;
|
|
1755
|
-
typeHex: viem.Hex | null;
|
|
1756
|
-
v: bigint;
|
|
1757
|
-
value: bigint;
|
|
1758
|
-
yParity: number;
|
|
1759
|
-
accessList: viem.AccessList;
|
|
1760
|
-
authorizationList?: undefined | undefined;
|
|
1761
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1762
|
-
chainId: number;
|
|
1763
|
-
type: "eip2930";
|
|
1764
|
-
gasPrice: bigint;
|
|
1765
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1766
|
-
maxFeePerGas?: undefined | undefined;
|
|
1767
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1768
|
-
isSystemTx?: undefined | undefined;
|
|
1769
|
-
mint?: undefined | undefined;
|
|
1770
|
-
sourceHash?: undefined | undefined;
|
|
1771
|
-
} | {
|
|
1772
|
-
blockHash: `0x${string}` | null;
|
|
1773
|
-
blockNumber: bigint | null;
|
|
1774
|
-
from: viem.Address;
|
|
1775
|
-
gas: bigint;
|
|
1776
|
-
hash: viem.Hash;
|
|
1777
|
-
input: viem.Hex;
|
|
1778
|
-
nonce: number;
|
|
1779
|
-
r: viem.Hex;
|
|
1780
|
-
s: viem.Hex;
|
|
1781
|
-
to: viem.Address | null;
|
|
1782
|
-
transactionIndex: number | null;
|
|
1783
|
-
typeHex: viem.Hex | null;
|
|
1784
|
-
v: bigint;
|
|
1785
|
-
value: bigint;
|
|
1786
|
-
yParity: number;
|
|
1787
|
-
accessList: viem.AccessList;
|
|
1788
|
-
authorizationList?: undefined | undefined;
|
|
1789
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1790
|
-
chainId: number;
|
|
1791
|
-
type: "eip1559";
|
|
1792
|
-
gasPrice?: undefined | undefined;
|
|
1793
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1794
|
-
maxFeePerGas: bigint;
|
|
1795
|
-
maxPriorityFeePerGas: bigint;
|
|
1796
|
-
isSystemTx?: undefined | undefined;
|
|
1797
|
-
mint?: undefined | undefined;
|
|
1798
|
-
sourceHash?: undefined | undefined;
|
|
1799
|
-
} | {
|
|
1800
|
-
blockHash: `0x${string}` | null;
|
|
1801
|
-
blockNumber: bigint | null;
|
|
1802
|
-
from: viem.Address;
|
|
1803
|
-
gas: bigint;
|
|
1804
|
-
hash: viem.Hash;
|
|
1805
|
-
input: viem.Hex;
|
|
1806
|
-
nonce: number;
|
|
1807
|
-
r: viem.Hex;
|
|
1808
|
-
s: viem.Hex;
|
|
1809
|
-
to: viem.Address | null;
|
|
1810
|
-
transactionIndex: number | null;
|
|
1811
|
-
typeHex: viem.Hex | null;
|
|
1812
|
-
v: bigint;
|
|
1813
|
-
value: bigint;
|
|
1814
|
-
yParity: number;
|
|
1815
|
-
accessList: viem.AccessList;
|
|
1816
|
-
authorizationList?: undefined | undefined;
|
|
1817
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
1818
|
-
chainId: number;
|
|
1819
|
-
type: "eip4844";
|
|
1820
|
-
gasPrice?: undefined | undefined;
|
|
1821
|
-
maxFeePerBlobGas: bigint;
|
|
1822
|
-
maxFeePerGas: bigint;
|
|
1823
|
-
maxPriorityFeePerGas: bigint;
|
|
1824
|
-
isSystemTx?: undefined | undefined;
|
|
1825
|
-
mint?: undefined | undefined;
|
|
1826
|
-
sourceHash?: undefined | undefined;
|
|
1827
|
-
} | {
|
|
1828
|
-
blockHash: `0x${string}` | null;
|
|
1829
|
-
blockNumber: bigint | null;
|
|
1830
|
-
from: viem.Address;
|
|
1831
|
-
gas: bigint;
|
|
1832
|
-
hash: viem.Hash;
|
|
1833
|
-
input: viem.Hex;
|
|
1834
|
-
nonce: number;
|
|
1835
|
-
r: viem.Hex;
|
|
1836
|
-
s: viem.Hex;
|
|
1837
|
-
to: viem.Address | null;
|
|
1838
|
-
transactionIndex: number | null;
|
|
1839
|
-
typeHex: viem.Hex | null;
|
|
1840
|
-
v: bigint;
|
|
1841
|
-
value: bigint;
|
|
1842
|
-
yParity: number;
|
|
1843
|
-
accessList: viem.AccessList;
|
|
1844
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
1845
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1846
|
-
chainId: number;
|
|
1847
|
-
type: "eip7702";
|
|
1848
|
-
gasPrice?: undefined | undefined;
|
|
1849
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1850
|
-
maxFeePerGas: bigint;
|
|
1851
|
-
maxPriorityFeePerGas: bigint;
|
|
1852
|
-
isSystemTx?: undefined | undefined;
|
|
1853
|
-
mint?: undefined | undefined;
|
|
1854
|
-
sourceHash?: undefined | undefined;
|
|
1855
|
-
}) & {};
|
|
1856
|
-
type: "transaction";
|
|
1857
|
-
};
|
|
1858
|
-
readonly transactionReceipt: {
|
|
1859
|
-
exclude: [] | undefined;
|
|
1860
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt) => {
|
|
1861
|
-
blobGasPrice?: bigint | undefined;
|
|
1862
|
-
blobGasUsed?: bigint | undefined;
|
|
1863
|
-
blockHash: viem.Hash;
|
|
1864
|
-
blockNumber: bigint;
|
|
1865
|
-
contractAddress: viem.Address | null | undefined;
|
|
1866
|
-
cumulativeGasUsed: bigint;
|
|
1867
|
-
effectiveGasPrice: bigint;
|
|
1868
|
-
from: viem.Address;
|
|
1869
|
-
gasUsed: bigint;
|
|
1870
|
-
logs: viem.Log<bigint, number, false>[];
|
|
1871
|
-
logsBloom: viem.Hex;
|
|
1872
|
-
root?: `0x${string}` | undefined;
|
|
1873
|
-
status: "success" | "reverted";
|
|
1874
|
-
to: viem.Address | null;
|
|
1875
|
-
transactionHash: viem.Hash;
|
|
1876
|
-
transactionIndex: number;
|
|
1877
|
-
type: viem.TransactionType;
|
|
1878
|
-
l1GasPrice: bigint | null;
|
|
1879
|
-
l1GasUsed: bigint | null;
|
|
1880
|
-
l1Fee: bigint | null;
|
|
1881
|
-
l1FeeScalar: number | null;
|
|
1882
|
-
} & {};
|
|
1883
|
-
type: "transactionReceipt";
|
|
1884
|
-
};
|
|
1885
|
-
};
|
|
1886
|
-
serializers: {
|
|
1887
|
-
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
1888
|
-
};
|
|
1889
|
-
};
|
|
1890
|
-
84532: {
|
|
1891
|
-
blockExplorers: {
|
|
1892
|
-
readonly default: {
|
|
1893
|
-
readonly name: "Basescan";
|
|
1894
|
-
readonly url: "https://sepolia.basescan.org";
|
|
1895
|
-
readonly apiUrl: "https://api-sepolia.basescan.org/api";
|
|
1896
|
-
};
|
|
1897
|
-
};
|
|
1898
|
-
contracts: {
|
|
1899
|
-
readonly disputeGameFactory: {
|
|
1900
|
-
readonly 11155111: {
|
|
1901
|
-
readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
|
|
1902
|
-
};
|
|
1903
|
-
};
|
|
1904
|
-
readonly l2OutputOracle: {
|
|
1905
|
-
readonly 11155111: {
|
|
1906
|
-
readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
|
|
1907
|
-
};
|
|
1908
|
-
};
|
|
1909
|
-
readonly portal: {
|
|
1910
|
-
readonly 11155111: {
|
|
1911
|
-
readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
|
|
1912
|
-
readonly blockCreated: 4446677;
|
|
1913
|
-
};
|
|
1914
|
-
};
|
|
1915
|
-
readonly l1StandardBridge: {
|
|
1916
|
-
readonly 11155111: {
|
|
1917
|
-
readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
|
|
1918
|
-
readonly blockCreated: 4446677;
|
|
1919
|
-
};
|
|
1920
|
-
};
|
|
1921
|
-
readonly multicall3: {
|
|
1922
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1923
|
-
readonly blockCreated: 1059647;
|
|
1924
|
-
};
|
|
1925
|
-
readonly gasPriceOracle: {
|
|
1926
|
-
readonly address: "0x420000000000000000000000000000000000000F";
|
|
1927
|
-
};
|
|
1928
|
-
readonly l1Block: {
|
|
1929
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
1930
|
-
};
|
|
1931
|
-
readonly l2CrossDomainMessenger: {
|
|
1932
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
1933
|
-
};
|
|
1934
|
-
readonly l2Erc721Bridge: {
|
|
1935
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
1936
|
-
};
|
|
1937
|
-
readonly l2StandardBridge: {
|
|
1938
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
1939
|
-
};
|
|
1940
|
-
readonly l2ToL1MessagePasser: {
|
|
1941
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
1942
|
-
};
|
|
1943
|
-
};
|
|
1944
|
-
id: 84532;
|
|
1945
|
-
name: "Base Sepolia";
|
|
1946
|
-
nativeCurrency: {
|
|
1947
|
-
readonly name: "Sepolia Ether";
|
|
1948
|
-
readonly symbol: "ETH";
|
|
1949
|
-
readonly decimals: 18;
|
|
1950
|
-
};
|
|
1951
|
-
rpcUrls: {
|
|
1952
|
-
readonly default: {
|
|
1953
|
-
readonly http: readonly ["https://sepolia.base.org"];
|
|
1954
|
-
};
|
|
1955
|
-
};
|
|
1956
|
-
sourceId: 11155111;
|
|
1957
|
-
testnet: true;
|
|
1958
|
-
custom?: Record<string, unknown> | undefined;
|
|
1959
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1960
|
-
formatters: {
|
|
1961
|
-
readonly block: {
|
|
1962
|
-
exclude: [] | undefined;
|
|
1963
|
-
format: (args: viem_chains.OpStackRpcBlock) => {
|
|
1964
|
-
baseFeePerGas: bigint | null;
|
|
1965
|
-
blobGasUsed: bigint;
|
|
1966
|
-
difficulty: bigint;
|
|
1967
|
-
excessBlobGas: bigint;
|
|
1968
|
-
extraData: viem.Hex;
|
|
1969
|
-
gasLimit: bigint;
|
|
1970
|
-
gasUsed: bigint;
|
|
1971
|
-
hash: `0x${string}` | null;
|
|
1972
|
-
logsBloom: `0x${string}` | null;
|
|
1973
|
-
miner: viem.Address;
|
|
1974
|
-
mixHash: viem.Hash;
|
|
1975
|
-
nonce: `0x${string}` | null;
|
|
1976
|
-
number: bigint | null;
|
|
1977
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1978
|
-
parentHash: viem.Hash;
|
|
1979
|
-
receiptsRoot: viem.Hex;
|
|
1980
|
-
sealFields: viem.Hex[];
|
|
1981
|
-
sha3Uncles: viem.Hash;
|
|
1982
|
-
size: bigint;
|
|
1983
|
-
stateRoot: viem.Hash;
|
|
1984
|
-
timestamp: bigint;
|
|
1985
|
-
totalDifficulty: bigint | null;
|
|
1986
|
-
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
1987
|
-
transactionsRoot: viem.Hash;
|
|
1988
|
-
uncles: viem.Hash[];
|
|
1989
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
1990
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1991
|
-
} & {};
|
|
1992
|
-
type: "block";
|
|
1993
|
-
};
|
|
1994
|
-
readonly transaction: {
|
|
1995
|
-
exclude: [] | undefined;
|
|
1996
|
-
format: (args: viem_chains.OpStackRpcTransaction) => ({
|
|
1997
|
-
blockHash: `0x${string}` | null;
|
|
1998
|
-
blockNumber: bigint | null;
|
|
1999
|
-
from: viem.Address;
|
|
2000
|
-
gas: bigint;
|
|
2001
|
-
hash: viem.Hash;
|
|
2002
|
-
input: viem.Hex;
|
|
2003
|
-
nonce: number;
|
|
2004
|
-
r: viem.Hex;
|
|
2005
|
-
s: viem.Hex;
|
|
2006
|
-
to: viem.Address | null;
|
|
2007
|
-
transactionIndex: number | null;
|
|
2008
|
-
typeHex: viem.Hex | null;
|
|
2009
|
-
v: bigint;
|
|
2010
|
-
value: bigint;
|
|
2011
|
-
yParity: number;
|
|
2012
|
-
gasPrice?: undefined | undefined;
|
|
2013
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2014
|
-
maxFeePerGas: bigint;
|
|
2015
|
-
maxPriorityFeePerGas: bigint;
|
|
2016
|
-
isSystemTx?: boolean;
|
|
2017
|
-
mint?: bigint | undefined | undefined;
|
|
2018
|
-
sourceHash: viem.Hex;
|
|
2019
|
-
type: "deposit";
|
|
2020
|
-
} | {
|
|
2021
|
-
r: viem.Hex;
|
|
2022
|
-
s: viem.Hex;
|
|
2023
|
-
v: bigint;
|
|
2024
|
-
to: viem.Address | null;
|
|
2025
|
-
from: viem.Address;
|
|
2026
|
-
gas: bigint;
|
|
2027
|
-
nonce: number;
|
|
2028
|
-
value: bigint;
|
|
2029
|
-
blockHash: `0x${string}` | null;
|
|
2030
|
-
blockNumber: bigint | null;
|
|
2031
|
-
hash: viem.Hash;
|
|
2032
|
-
input: viem.Hex;
|
|
2033
|
-
transactionIndex: number | null;
|
|
2034
|
-
typeHex: viem.Hex | null;
|
|
2035
|
-
accessList?: undefined | undefined;
|
|
2036
|
-
authorizationList?: undefined | undefined;
|
|
2037
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2038
|
-
chainId?: number | undefined;
|
|
2039
|
-
yParity?: undefined | undefined;
|
|
2040
|
-
type: "legacy";
|
|
2041
|
-
gasPrice: bigint;
|
|
2042
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2043
|
-
maxFeePerGas?: undefined | undefined;
|
|
2044
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2045
|
-
isSystemTx?: undefined | undefined;
|
|
2046
|
-
mint?: undefined | undefined;
|
|
2047
|
-
sourceHash?: undefined | undefined;
|
|
2048
|
-
} | {
|
|
2049
|
-
blockHash: `0x${string}` | null;
|
|
2050
|
-
blockNumber: bigint | null;
|
|
2051
|
-
from: viem.Address;
|
|
2052
|
-
gas: bigint;
|
|
2053
|
-
hash: viem.Hash;
|
|
2054
|
-
input: viem.Hex;
|
|
2055
|
-
nonce: number;
|
|
2056
|
-
r: viem.Hex;
|
|
2057
|
-
s: viem.Hex;
|
|
2058
|
-
to: viem.Address | null;
|
|
2059
|
-
transactionIndex: number | null;
|
|
2060
|
-
typeHex: viem.Hex | null;
|
|
2061
|
-
v: bigint;
|
|
2062
|
-
value: bigint;
|
|
2063
|
-
yParity: number;
|
|
2064
|
-
accessList: viem.AccessList;
|
|
2065
|
-
authorizationList?: undefined | undefined;
|
|
2066
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2067
|
-
chainId: number;
|
|
2068
|
-
type: "eip2930";
|
|
2069
|
-
gasPrice: bigint;
|
|
2070
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2071
|
-
maxFeePerGas?: undefined | undefined;
|
|
2072
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2073
|
-
isSystemTx?: undefined | undefined;
|
|
2074
|
-
mint?: undefined | undefined;
|
|
2075
|
-
sourceHash?: undefined | undefined;
|
|
2076
|
-
} | {
|
|
2077
|
-
blockHash: `0x${string}` | null;
|
|
2078
|
-
blockNumber: bigint | null;
|
|
2079
|
-
from: viem.Address;
|
|
2080
|
-
gas: bigint;
|
|
2081
|
-
hash: viem.Hash;
|
|
2082
|
-
input: viem.Hex;
|
|
2083
|
-
nonce: number;
|
|
2084
|
-
r: viem.Hex;
|
|
2085
|
-
s: viem.Hex;
|
|
2086
|
-
to: viem.Address | null;
|
|
2087
|
-
transactionIndex: number | null;
|
|
2088
|
-
typeHex: viem.Hex | null;
|
|
2089
|
-
v: bigint;
|
|
2090
|
-
value: bigint;
|
|
2091
|
-
yParity: number;
|
|
2092
|
-
accessList: viem.AccessList;
|
|
2093
|
-
authorizationList?: undefined | undefined;
|
|
2094
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2095
|
-
chainId: number;
|
|
2096
|
-
type: "eip1559";
|
|
2097
|
-
gasPrice?: undefined | undefined;
|
|
2098
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2099
|
-
maxFeePerGas: bigint;
|
|
2100
|
-
maxPriorityFeePerGas: bigint;
|
|
2101
|
-
isSystemTx?: undefined | undefined;
|
|
2102
|
-
mint?: undefined | undefined;
|
|
2103
|
-
sourceHash?: undefined | undefined;
|
|
2104
|
-
} | {
|
|
2105
|
-
blockHash: `0x${string}` | null;
|
|
2106
|
-
blockNumber: bigint | null;
|
|
2107
|
-
from: viem.Address;
|
|
2108
|
-
gas: bigint;
|
|
2109
|
-
hash: viem.Hash;
|
|
2110
|
-
input: viem.Hex;
|
|
2111
|
-
nonce: number;
|
|
2112
|
-
r: viem.Hex;
|
|
2113
|
-
s: viem.Hex;
|
|
2114
|
-
to: viem.Address | null;
|
|
2115
|
-
transactionIndex: number | null;
|
|
2116
|
-
typeHex: viem.Hex | null;
|
|
2117
|
-
v: bigint;
|
|
2118
|
-
value: bigint;
|
|
2119
|
-
yParity: number;
|
|
2120
|
-
accessList: viem.AccessList;
|
|
2121
|
-
authorizationList?: undefined | undefined;
|
|
2122
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
2123
|
-
chainId: number;
|
|
2124
|
-
type: "eip4844";
|
|
2125
|
-
gasPrice?: undefined | undefined;
|
|
2126
|
-
maxFeePerBlobGas: bigint;
|
|
2127
|
-
maxFeePerGas: bigint;
|
|
2128
|
-
maxPriorityFeePerGas: bigint;
|
|
2129
|
-
isSystemTx?: undefined | undefined;
|
|
2130
|
-
mint?: undefined | undefined;
|
|
2131
|
-
sourceHash?: undefined | undefined;
|
|
2132
|
-
} | {
|
|
2133
|
-
blockHash: `0x${string}` | null;
|
|
2134
|
-
blockNumber: bigint | null;
|
|
2135
|
-
from: viem.Address;
|
|
2136
|
-
gas: bigint;
|
|
2137
|
-
hash: viem.Hash;
|
|
2138
|
-
input: viem.Hex;
|
|
2139
|
-
nonce: number;
|
|
2140
|
-
r: viem.Hex;
|
|
2141
|
-
s: viem.Hex;
|
|
2142
|
-
to: viem.Address | null;
|
|
2143
|
-
transactionIndex: number | null;
|
|
2144
|
-
typeHex: viem.Hex | null;
|
|
2145
|
-
v: bigint;
|
|
2146
|
-
value: bigint;
|
|
2147
|
-
yParity: number;
|
|
2148
|
-
accessList: viem.AccessList;
|
|
2149
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
2150
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2151
|
-
chainId: number;
|
|
2152
|
-
type: "eip7702";
|
|
2153
|
-
gasPrice?: undefined | undefined;
|
|
2154
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2155
|
-
maxFeePerGas: bigint;
|
|
2156
|
-
maxPriorityFeePerGas: bigint;
|
|
2157
|
-
isSystemTx?: undefined | undefined;
|
|
2158
|
-
mint?: undefined | undefined;
|
|
2159
|
-
sourceHash?: undefined | undefined;
|
|
2160
|
-
}) & {};
|
|
2161
|
-
type: "transaction";
|
|
2162
|
-
};
|
|
2163
|
-
readonly transactionReceipt: {
|
|
2164
|
-
exclude: [] | undefined;
|
|
2165
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt) => {
|
|
2166
|
-
blobGasPrice?: bigint | undefined;
|
|
2167
|
-
blobGasUsed?: bigint | undefined;
|
|
2168
|
-
blockHash: viem.Hash;
|
|
2169
|
-
blockNumber: bigint;
|
|
2170
|
-
contractAddress: viem.Address | null | undefined;
|
|
2171
|
-
cumulativeGasUsed: bigint;
|
|
2172
|
-
effectiveGasPrice: bigint;
|
|
2173
|
-
from: viem.Address;
|
|
2174
|
-
gasUsed: bigint;
|
|
2175
|
-
logs: viem.Log<bigint, number, false>[];
|
|
2176
|
-
logsBloom: viem.Hex;
|
|
2177
|
-
root?: `0x${string}` | undefined;
|
|
2178
|
-
status: "success" | "reverted";
|
|
2179
|
-
to: viem.Address | null;
|
|
2180
|
-
transactionHash: viem.Hash;
|
|
2181
|
-
transactionIndex: number;
|
|
2182
|
-
type: viem.TransactionType;
|
|
2183
|
-
l1GasPrice: bigint | null;
|
|
2184
|
-
l1GasUsed: bigint | null;
|
|
2185
|
-
l1Fee: bigint | null;
|
|
2186
|
-
l1FeeScalar: number | null;
|
|
2187
|
-
} & {};
|
|
2188
|
-
type: "transactionReceipt";
|
|
2189
|
-
};
|
|
2190
|
-
};
|
|
2191
|
-
serializers: {
|
|
2192
|
-
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
2193
|
-
};
|
|
2194
|
-
readonly network: "base-sepolia";
|
|
2195
|
-
};
|
|
2196
|
-
56: {
|
|
2197
|
-
blockExplorers: {
|
|
2198
|
-
readonly default: {
|
|
2199
|
-
readonly name: "BscScan";
|
|
2200
|
-
readonly url: "https://bscscan.com";
|
|
2201
|
-
readonly apiUrl: "https://api.bscscan.com/api";
|
|
2202
|
-
};
|
|
2203
|
-
};
|
|
2204
|
-
contracts: {
|
|
2205
|
-
readonly multicall3: {
|
|
2206
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2207
|
-
readonly blockCreated: 15921452;
|
|
2208
|
-
};
|
|
2209
|
-
};
|
|
2210
|
-
id: 56;
|
|
2211
|
-
name: "BNB Smart Chain";
|
|
2212
|
-
nativeCurrency: {
|
|
2213
|
-
readonly decimals: 18;
|
|
2214
|
-
readonly name: "BNB";
|
|
2215
|
-
readonly symbol: "BNB";
|
|
2216
|
-
};
|
|
2217
|
-
rpcUrls: {
|
|
2218
|
-
readonly default: {
|
|
2219
|
-
readonly http: readonly ["https://56.rpc.thirdweb.com"];
|
|
2220
|
-
};
|
|
2221
|
-
};
|
|
2222
|
-
sourceId?: number | undefined | undefined;
|
|
2223
|
-
testnet?: boolean | undefined | undefined;
|
|
2224
|
-
custom?: Record<string, unknown> | undefined;
|
|
2225
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
2226
|
-
formatters?: undefined;
|
|
2227
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
2228
|
-
};
|
|
2229
|
-
100: {
|
|
2230
|
-
blockExplorers: {
|
|
2231
|
-
readonly default: {
|
|
2232
|
-
readonly name: "Gnosisscan";
|
|
2233
|
-
readonly url: "https://gnosisscan.io";
|
|
2234
|
-
readonly apiUrl: "https://api.gnosisscan.io/api";
|
|
2235
|
-
};
|
|
2236
|
-
};
|
|
2237
|
-
contracts: {
|
|
2238
|
-
readonly multicall3: {
|
|
2239
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2240
|
-
readonly blockCreated: 21022491;
|
|
2241
|
-
};
|
|
2242
|
-
};
|
|
2243
|
-
id: 100;
|
|
2244
|
-
name: "Gnosis";
|
|
2245
|
-
nativeCurrency: {
|
|
2246
|
-
readonly decimals: 18;
|
|
2247
|
-
readonly name: "xDAI";
|
|
2248
|
-
readonly symbol: "XDAI";
|
|
2249
|
-
};
|
|
2250
|
-
rpcUrls: {
|
|
2251
|
-
readonly default: {
|
|
2252
|
-
readonly http: readonly ["https://rpc.gnosischain.com"];
|
|
2253
|
-
readonly webSocket: readonly ["wss://rpc.gnosischain.com/wss"];
|
|
2254
|
-
};
|
|
2255
|
-
};
|
|
2256
|
-
sourceId?: number | undefined | undefined;
|
|
2257
|
-
testnet?: boolean | undefined | undefined;
|
|
2258
|
-
custom?: Record<string, unknown> | undefined;
|
|
2259
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
2260
|
-
formatters?: undefined;
|
|
2261
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
2262
|
-
};
|
|
2263
|
-
1101: {
|
|
2264
|
-
blockExplorers: {
|
|
2265
|
-
readonly default: {
|
|
2266
|
-
readonly name: "PolygonScan";
|
|
2267
|
-
readonly url: "https://zkevm.polygonscan.com";
|
|
2268
|
-
readonly apiUrl: "https://api-zkevm.polygonscan.com/api";
|
|
2269
|
-
};
|
|
2270
|
-
};
|
|
2271
|
-
contracts: {
|
|
2272
|
-
readonly multicall3: {
|
|
2273
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2274
|
-
readonly blockCreated: 57746;
|
|
2275
|
-
};
|
|
2276
|
-
};
|
|
2277
|
-
id: 1101;
|
|
2278
|
-
name: "Polygon zkEVM";
|
|
2279
|
-
nativeCurrency: {
|
|
2280
|
-
readonly name: "Ether";
|
|
2281
|
-
readonly symbol: "ETH";
|
|
2282
|
-
readonly decimals: 18;
|
|
2283
|
-
};
|
|
2284
|
-
rpcUrls: {
|
|
2285
|
-
readonly default: {
|
|
2286
|
-
readonly http: readonly ["https://zkevm-rpc.com"];
|
|
2287
|
-
};
|
|
2288
|
-
};
|
|
2289
|
-
sourceId?: number | undefined | undefined;
|
|
2290
|
-
testnet?: boolean | undefined | undefined;
|
|
2291
|
-
custom?: Record<string, unknown> | undefined;
|
|
2292
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
2293
|
-
formatters?: undefined;
|
|
2294
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
2295
|
-
};
|
|
2296
|
-
42220: {
|
|
2297
|
-
blockExplorers: {
|
|
2298
|
-
readonly default: {
|
|
2299
|
-
readonly name: "Celo Explorer";
|
|
2300
|
-
readonly url: "https://celoscan.io";
|
|
2301
|
-
readonly apiUrl: "https://api.celoscan.io/api";
|
|
2302
|
-
};
|
|
2303
|
-
};
|
|
2304
|
-
contracts: {
|
|
2305
|
-
readonly multicall3: {
|
|
2306
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
2307
|
-
readonly blockCreated: 13112599;
|
|
2308
|
-
};
|
|
2309
|
-
};
|
|
2310
|
-
id: 42220;
|
|
2311
|
-
name: "Celo";
|
|
2312
|
-
nativeCurrency: {
|
|
2313
|
-
readonly decimals: 18;
|
|
2314
|
-
readonly name: "CELO";
|
|
2315
|
-
readonly symbol: "CELO";
|
|
2316
|
-
};
|
|
2317
|
-
rpcUrls: {
|
|
2318
|
-
readonly default: {
|
|
2319
|
-
readonly http: readonly ["https://forno.celo.org"];
|
|
2320
|
-
};
|
|
2321
|
-
};
|
|
2322
|
-
sourceId?: number | undefined | undefined;
|
|
2323
|
-
testnet: false;
|
|
2324
|
-
custom?: Record<string, unknown> | undefined;
|
|
2325
|
-
fees: viem.ChainFees<{
|
|
2326
|
-
readonly block: {
|
|
2327
|
-
exclude: [] | undefined;
|
|
2328
|
-
format: (args: viem_chains.CeloRpcBlock) => {
|
|
2329
|
-
baseFeePerGas: bigint | null;
|
|
2330
|
-
blobGasUsed: bigint;
|
|
2331
|
-
difficulty: bigint | undefined;
|
|
2332
|
-
excessBlobGas: bigint;
|
|
2333
|
-
extraData: viem.Hex;
|
|
2334
|
-
gasLimit: bigint | undefined;
|
|
2335
|
-
gasUsed: bigint;
|
|
2336
|
-
hash: `0x${string}` | null;
|
|
2337
|
-
logsBloom: `0x${string}` | null;
|
|
2338
|
-
miner: viem.Address;
|
|
2339
|
-
nonce: bigint | null | undefined;
|
|
2340
|
-
number: bigint | null;
|
|
2341
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
2342
|
-
parentHash: viem.Hash;
|
|
2343
|
-
receiptsRoot: viem.Hex;
|
|
2344
|
-
sealFields: viem.Hex[];
|
|
2345
|
-
sha3Uncles: viem.Hash;
|
|
2346
|
-
size: bigint;
|
|
2347
|
-
stateRoot: viem.Hash;
|
|
2348
|
-
timestamp: bigint;
|
|
2349
|
-
totalDifficulty: bigint | null;
|
|
2350
|
-
transactions: `0x${string}`[] | viem_chains.CeloTransaction<boolean>[];
|
|
2351
|
-
transactionsRoot: viem.Hash;
|
|
2352
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
2353
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2354
|
-
mixHash?: undefined | undefined;
|
|
2355
|
-
randomness?: {
|
|
2356
|
-
committed: viem.Hex;
|
|
2357
|
-
revealed: viem.Hex;
|
|
2358
|
-
} | undefined | undefined;
|
|
2359
|
-
uncles?: undefined | undefined;
|
|
2360
|
-
} & {};
|
|
2361
|
-
type: "block";
|
|
2362
|
-
};
|
|
2363
|
-
readonly transaction: {
|
|
2364
|
-
exclude: [] | undefined;
|
|
2365
|
-
format: (args: viem_chains.CeloRpcTransaction) => ({
|
|
2366
|
-
r: viem.Hex;
|
|
2367
|
-
s: viem.Hex;
|
|
2368
|
-
v: bigint;
|
|
2369
|
-
to: viem.Address | null;
|
|
2370
|
-
from: viem.Address;
|
|
2371
|
-
gas: bigint;
|
|
2372
|
-
nonce: number;
|
|
2373
|
-
value: bigint;
|
|
2374
|
-
blockHash: `0x${string}` | null;
|
|
2375
|
-
blockNumber: bigint | null;
|
|
2376
|
-
hash: viem.Hash;
|
|
2377
|
-
input: viem.Hex;
|
|
2378
|
-
transactionIndex: number | null;
|
|
2379
|
-
typeHex: viem.Hex | null;
|
|
2380
|
-
accessList?: undefined | undefined;
|
|
2381
|
-
authorizationList?: undefined | undefined;
|
|
2382
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2383
|
-
chainId?: number | undefined;
|
|
2384
|
-
yParity?: undefined | undefined;
|
|
2385
|
-
type: "legacy";
|
|
2386
|
-
gasPrice: bigint;
|
|
2387
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2388
|
-
maxFeePerGas?: undefined | undefined;
|
|
2389
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2390
|
-
feeCurrency: viem.Address | null;
|
|
2391
|
-
mint?: undefined;
|
|
2392
|
-
isSystemTx?: undefined;
|
|
2393
|
-
sourceHash?: undefined;
|
|
2394
|
-
gatewayFee?: undefined;
|
|
2395
|
-
gatewayFeeRecipient?: undefined;
|
|
2396
|
-
} | {
|
|
2397
|
-
blockHash: `0x${string}` | null;
|
|
2398
|
-
blockNumber: bigint | null;
|
|
2399
|
-
from: viem.Address;
|
|
2400
|
-
gas: bigint;
|
|
2401
|
-
hash: viem.Hash;
|
|
2402
|
-
input: viem.Hex;
|
|
2403
|
-
nonce: number;
|
|
2404
|
-
r: viem.Hex;
|
|
2405
|
-
s: viem.Hex;
|
|
2406
|
-
to: viem.Address | null;
|
|
2407
|
-
transactionIndex: number | null;
|
|
2408
|
-
typeHex: viem.Hex | null;
|
|
2409
|
-
v: bigint;
|
|
2410
|
-
value: bigint;
|
|
2411
|
-
yParity: number;
|
|
2412
|
-
accessList: viem.AccessList;
|
|
2413
|
-
authorizationList?: undefined | undefined;
|
|
2414
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2415
|
-
chainId: number;
|
|
2416
|
-
type: "eip2930";
|
|
2417
|
-
gasPrice: bigint;
|
|
2418
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2419
|
-
maxFeePerGas?: undefined | undefined;
|
|
2420
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2421
|
-
feeCurrency: viem.Address | null;
|
|
2422
|
-
mint?: undefined;
|
|
2423
|
-
isSystemTx?: undefined;
|
|
2424
|
-
sourceHash?: undefined;
|
|
2425
|
-
gatewayFee?: undefined;
|
|
2426
|
-
gatewayFeeRecipient?: undefined;
|
|
2427
|
-
} | {
|
|
2428
|
-
blockHash: `0x${string}` | null;
|
|
2429
|
-
blockNumber: bigint | null;
|
|
2430
|
-
from: viem.Address;
|
|
2431
|
-
gas: bigint;
|
|
2432
|
-
hash: viem.Hash;
|
|
2433
|
-
input: viem.Hex;
|
|
2434
|
-
nonce: number;
|
|
2435
|
-
r: viem.Hex;
|
|
2436
|
-
s: viem.Hex;
|
|
2437
|
-
to: viem.Address | null;
|
|
2438
|
-
transactionIndex: number | null;
|
|
2439
|
-
typeHex: viem.Hex | null;
|
|
2440
|
-
v: bigint;
|
|
2441
|
-
value: bigint;
|
|
2442
|
-
yParity: number;
|
|
2443
|
-
accessList: viem.AccessList;
|
|
2444
|
-
authorizationList?: undefined | undefined;
|
|
2445
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2446
|
-
chainId: number;
|
|
2447
|
-
type: "eip1559";
|
|
2448
|
-
gasPrice?: undefined | undefined;
|
|
2449
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2450
|
-
maxFeePerGas: bigint;
|
|
2451
|
-
maxPriorityFeePerGas: bigint;
|
|
2452
|
-
feeCurrency: viem.Address | null;
|
|
2453
|
-
mint?: undefined;
|
|
2454
|
-
isSystemTx?: undefined;
|
|
2455
|
-
sourceHash?: undefined;
|
|
2456
|
-
gatewayFee?: undefined;
|
|
2457
|
-
gatewayFeeRecipient?: undefined;
|
|
2458
|
-
} | {
|
|
2459
|
-
blockHash: `0x${string}` | null;
|
|
2460
|
-
blockNumber: bigint | null;
|
|
2461
|
-
from: viem.Address;
|
|
2462
|
-
gas: bigint;
|
|
2463
|
-
hash: viem.Hash;
|
|
2464
|
-
input: viem.Hex;
|
|
2465
|
-
nonce: number;
|
|
2466
|
-
r: viem.Hex;
|
|
2467
|
-
s: viem.Hex;
|
|
2468
|
-
to: viem.Address | null;
|
|
2469
|
-
transactionIndex: number | null;
|
|
2470
|
-
typeHex: viem.Hex | null;
|
|
2471
|
-
v: bigint;
|
|
2472
|
-
value: bigint;
|
|
2473
|
-
yParity: number;
|
|
2474
|
-
accessList: viem.AccessList;
|
|
2475
|
-
authorizationList?: undefined | undefined;
|
|
2476
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
2477
|
-
chainId: number;
|
|
2478
|
-
type: "eip4844";
|
|
2479
|
-
gasPrice?: undefined | undefined;
|
|
2480
|
-
maxFeePerBlobGas: bigint;
|
|
2481
|
-
maxFeePerGas: bigint;
|
|
2482
|
-
maxPriorityFeePerGas: bigint;
|
|
2483
|
-
feeCurrency: viem.Address | null;
|
|
2484
|
-
mint?: undefined;
|
|
2485
|
-
isSystemTx?: undefined;
|
|
2486
|
-
sourceHash?: undefined;
|
|
2487
|
-
gatewayFee?: undefined;
|
|
2488
|
-
gatewayFeeRecipient?: undefined;
|
|
2489
|
-
} | {
|
|
2490
|
-
blockHash: `0x${string}` | null;
|
|
2491
|
-
blockNumber: bigint | null;
|
|
2492
|
-
from: viem.Address;
|
|
2493
|
-
gas: bigint;
|
|
2494
|
-
hash: viem.Hash;
|
|
2495
|
-
input: viem.Hex;
|
|
2496
|
-
nonce: number;
|
|
2497
|
-
r: viem.Hex;
|
|
2498
|
-
s: viem.Hex;
|
|
2499
|
-
to: viem.Address | null;
|
|
2500
|
-
transactionIndex: number | null;
|
|
2501
|
-
typeHex: viem.Hex | null;
|
|
2502
|
-
v: bigint;
|
|
2503
|
-
value: bigint;
|
|
2504
|
-
yParity: number;
|
|
2505
|
-
accessList: viem.AccessList;
|
|
2506
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
2507
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2508
|
-
chainId: number;
|
|
2509
|
-
type: "eip7702";
|
|
2510
|
-
gasPrice?: undefined | undefined;
|
|
2511
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2512
|
-
maxFeePerGas: bigint;
|
|
2513
|
-
maxPriorityFeePerGas: bigint;
|
|
2514
|
-
feeCurrency: viem.Address | null;
|
|
2515
|
-
mint?: undefined;
|
|
2516
|
-
isSystemTx?: undefined;
|
|
2517
|
-
sourceHash?: undefined;
|
|
2518
|
-
gatewayFee?: undefined;
|
|
2519
|
-
gatewayFeeRecipient?: undefined;
|
|
2520
|
-
} | {
|
|
2521
|
-
blockHash: `0x${string}` | null;
|
|
2522
|
-
blockNumber: bigint | null;
|
|
2523
|
-
from: viem.Address;
|
|
2524
|
-
gas: bigint;
|
|
2525
|
-
hash: viem.Hash;
|
|
2526
|
-
input: viem.Hex;
|
|
2527
|
-
nonce: number;
|
|
2528
|
-
r: viem.Hex;
|
|
2529
|
-
s: viem.Hex;
|
|
2530
|
-
to: viem.Address | null;
|
|
2531
|
-
transactionIndex: number | null;
|
|
2532
|
-
typeHex: viem.Hex | null;
|
|
2533
|
-
v: bigint;
|
|
2534
|
-
value: bigint;
|
|
2535
|
-
yParity: number;
|
|
2536
|
-
gasPrice?: undefined | undefined;
|
|
2537
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2538
|
-
maxFeePerGas: bigint;
|
|
2539
|
-
maxPriorityFeePerGas: bigint;
|
|
2540
|
-
accessList: viem.AccessList;
|
|
2541
|
-
chainId: number;
|
|
2542
|
-
feeCurrency: viem.Address | null;
|
|
2543
|
-
gatewayFee: bigint | null;
|
|
2544
|
-
gatewayFeeRecipient: viem.Address | null;
|
|
2545
|
-
type: "cip42";
|
|
2546
|
-
authorizationList?: undefined;
|
|
2547
|
-
blobVersionedHashes?: undefined;
|
|
2548
|
-
mint?: undefined;
|
|
2549
|
-
isSystemTx?: undefined;
|
|
2550
|
-
sourceHash?: undefined;
|
|
2551
|
-
} | {
|
|
2552
|
-
blockHash: `0x${string}` | null;
|
|
2553
|
-
blockNumber: bigint | null;
|
|
2554
|
-
from: viem.Address;
|
|
2555
|
-
gas: bigint;
|
|
2556
|
-
hash: viem.Hash;
|
|
2557
|
-
input: viem.Hex;
|
|
2558
|
-
nonce: number;
|
|
2559
|
-
r: viem.Hex;
|
|
2560
|
-
s: viem.Hex;
|
|
2561
|
-
to: viem.Address | null;
|
|
2562
|
-
transactionIndex: number | null;
|
|
2563
|
-
typeHex: viem.Hex | null;
|
|
2564
|
-
v: bigint;
|
|
2565
|
-
value: bigint;
|
|
2566
|
-
yParity: number;
|
|
2567
|
-
gasPrice?: undefined | undefined;
|
|
2568
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2569
|
-
maxFeePerGas: bigint;
|
|
2570
|
-
maxPriorityFeePerGas: bigint;
|
|
2571
|
-
accessList: viem.AccessList;
|
|
2572
|
-
chainId: number;
|
|
2573
|
-
feeCurrency: viem.Address | null;
|
|
2574
|
-
type: "cip64";
|
|
2575
|
-
authorizationList?: undefined;
|
|
2576
|
-
blobVersionedHashes?: undefined;
|
|
2577
|
-
mint?: undefined;
|
|
2578
|
-
isSystemTx?: undefined;
|
|
2579
|
-
sourceHash?: undefined;
|
|
2580
|
-
gatewayFee?: undefined;
|
|
2581
|
-
gatewayFeeRecipient?: undefined;
|
|
2582
|
-
} | {
|
|
2583
|
-
blockHash: `0x${string}` | null;
|
|
2584
|
-
blockNumber: bigint | null;
|
|
2585
|
-
from: viem.Address;
|
|
2586
|
-
gas: bigint;
|
|
2587
|
-
hash: viem.Hash;
|
|
2588
|
-
input: viem.Hex;
|
|
2589
|
-
nonce: number;
|
|
2590
|
-
r: viem.Hex;
|
|
2591
|
-
s: viem.Hex;
|
|
2592
|
-
to: viem.Address | null;
|
|
2593
|
-
transactionIndex: number | null;
|
|
2594
|
-
typeHex: viem.Hex | null;
|
|
2595
|
-
v: bigint;
|
|
2596
|
-
value: bigint;
|
|
2597
|
-
yParity: number;
|
|
2598
|
-
gasPrice?: undefined | undefined;
|
|
2599
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2600
|
-
maxFeePerGas: bigint;
|
|
2601
|
-
maxPriorityFeePerGas: bigint;
|
|
2602
|
-
isSystemTx?: boolean;
|
|
2603
|
-
mint?: bigint | undefined | undefined;
|
|
2604
|
-
sourceHash: viem.Hex;
|
|
2605
|
-
type: "deposit";
|
|
2606
|
-
accessList?: undefined;
|
|
2607
|
-
authorizationList?: undefined;
|
|
2608
|
-
blobVersionedHashes?: undefined;
|
|
2609
|
-
chainId?: undefined;
|
|
2610
|
-
feeCurrency?: undefined;
|
|
2611
|
-
gatewayFee?: undefined;
|
|
2612
|
-
gatewayFeeRecipient?: undefined;
|
|
2613
|
-
}) & {};
|
|
2614
|
-
type: "transaction";
|
|
2615
|
-
};
|
|
2616
|
-
readonly transactionRequest: {
|
|
2617
|
-
exclude: [] | undefined;
|
|
2618
|
-
format: (args: viem_chains.CeloTransactionRequest) => ({
|
|
2619
|
-
data?: `0x${string}` | undefined;
|
|
2620
|
-
from?: `0x${string}` | undefined;
|
|
2621
|
-
gas?: `0x${string}` | undefined;
|
|
2622
|
-
nonce?: `0x${string}` | undefined;
|
|
2623
|
-
to?: `0x${string}` | null | undefined;
|
|
2624
|
-
type?: "0x0" | undefined;
|
|
2625
|
-
value?: `0x${string}` | undefined;
|
|
2626
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2627
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2628
|
-
maxFeePerGas?: undefined | undefined;
|
|
2629
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2630
|
-
blobs?: undefined;
|
|
2631
|
-
accessList?: undefined;
|
|
2632
|
-
authorizationList?: undefined;
|
|
2633
|
-
blobVersionedHashes?: undefined;
|
|
2634
|
-
kzg?: undefined;
|
|
2635
|
-
sidecars?: undefined;
|
|
2636
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
2637
|
-
} | {
|
|
2638
|
-
data?: `0x${string}` | undefined;
|
|
2639
|
-
from?: `0x${string}` | undefined;
|
|
2640
|
-
gas?: `0x${string}` | undefined;
|
|
2641
|
-
nonce?: `0x${string}` | undefined;
|
|
2642
|
-
to?: `0x${string}` | null | undefined;
|
|
2643
|
-
type?: "0x1" | undefined;
|
|
2644
|
-
value?: `0x${string}` | undefined;
|
|
2645
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2646
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2647
|
-
maxFeePerGas?: undefined | undefined;
|
|
2648
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2649
|
-
accessList?: viem.AccessList | undefined;
|
|
2650
|
-
blobs?: undefined;
|
|
2651
|
-
authorizationList?: undefined;
|
|
2652
|
-
blobVersionedHashes?: undefined;
|
|
2653
|
-
kzg?: undefined;
|
|
2654
|
-
sidecars?: undefined;
|
|
2655
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
2656
|
-
} | {
|
|
2657
|
-
data?: `0x${string}` | undefined;
|
|
2658
|
-
from?: `0x${string}` | undefined;
|
|
2659
|
-
gas?: `0x${string}` | undefined;
|
|
2660
|
-
nonce?: `0x${string}` | undefined;
|
|
2661
|
-
to?: `0x${string}` | null | undefined;
|
|
2662
|
-
type?: "0x2" | undefined;
|
|
2663
|
-
value?: `0x${string}` | undefined;
|
|
2664
|
-
gasPrice?: undefined | undefined;
|
|
2665
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2666
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2667
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2668
|
-
accessList?: viem.AccessList | undefined;
|
|
2669
|
-
blobs?: undefined;
|
|
2670
|
-
authorizationList?: undefined;
|
|
2671
|
-
blobVersionedHashes?: undefined;
|
|
2672
|
-
kzg?: undefined;
|
|
2673
|
-
sidecars?: undefined;
|
|
2674
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
2675
|
-
} | {
|
|
2676
|
-
type?: "0x3" | undefined;
|
|
2677
|
-
data?: `0x${string}` | undefined;
|
|
2678
|
-
from?: `0x${string}` | undefined;
|
|
2679
|
-
gas?: `0x${string}` | undefined;
|
|
2680
|
-
nonce?: `0x${string}` | undefined;
|
|
2681
|
-
value?: `0x${string}` | undefined;
|
|
2682
|
-
to: `0x${string}` | null;
|
|
2683
|
-
gasPrice?: undefined | undefined;
|
|
2684
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2685
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2686
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
2687
|
-
accessList?: viem.AccessList | undefined;
|
|
2688
|
-
blobs: readonly viem.Hex[] | readonly viem.ByteArray[];
|
|
2689
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2690
|
-
kzg?: viem.Kzg | undefined;
|
|
2691
|
-
sidecars?: readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
|
|
2692
|
-
authorizationList?: undefined;
|
|
2693
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
2694
|
-
} | {
|
|
2695
|
-
type?: "0x4" | undefined;
|
|
2696
|
-
gasPrice?: undefined | undefined;
|
|
2697
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2698
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2699
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2700
|
-
to?: `0x${string}` | null | undefined;
|
|
2701
|
-
data?: `0x${string}` | undefined;
|
|
2702
|
-
from?: `0x${string}` | undefined;
|
|
2703
|
-
gas?: `0x${string}` | undefined;
|
|
2704
|
-
nonce?: `0x${string}` | undefined;
|
|
2705
|
-
value?: `0x${string}` | undefined;
|
|
2706
|
-
accessList?: viem.AccessList | undefined;
|
|
2707
|
-
authorizationList?: viem.RpcAuthorizationList | undefined;
|
|
2708
|
-
blobs?: undefined;
|
|
2709
|
-
blobVersionedHashes?: undefined;
|
|
2710
|
-
kzg?: undefined;
|
|
2711
|
-
sidecars?: undefined;
|
|
2712
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
2713
|
-
} | {
|
|
2714
|
-
data?: `0x${string}` | undefined;
|
|
2715
|
-
from?: `0x${string}` | undefined;
|
|
2716
|
-
gas?: `0x${string}` | undefined;
|
|
2717
|
-
nonce?: `0x${string}` | undefined;
|
|
2718
|
-
to?: `0x${string}` | null | undefined;
|
|
2719
|
-
type?: "0x7b" | undefined;
|
|
2720
|
-
value?: `0x${string}` | undefined;
|
|
2721
|
-
accessList?: viem.AccessList | undefined;
|
|
2722
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
2723
|
-
gasPrice?: undefined | undefined;
|
|
2724
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2725
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
2726
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2727
|
-
blobs?: undefined;
|
|
2728
|
-
authorizationList?: undefined;
|
|
2729
|
-
blobVersionedHashes?: undefined;
|
|
2730
|
-
kzg?: undefined;
|
|
2731
|
-
sidecars?: undefined;
|
|
2732
|
-
}) & {};
|
|
2733
|
-
type: "transactionRequest";
|
|
2734
|
-
};
|
|
2735
|
-
}>;
|
|
2736
|
-
formatters: {
|
|
2737
|
-
readonly block: {
|
|
2738
|
-
exclude: [] | undefined;
|
|
2739
|
-
format: (args: viem_chains.CeloRpcBlock) => {
|
|
2740
|
-
baseFeePerGas: bigint | null;
|
|
2741
|
-
blobGasUsed: bigint;
|
|
2742
|
-
difficulty: bigint | undefined;
|
|
2743
|
-
excessBlobGas: bigint;
|
|
2744
|
-
extraData: viem.Hex;
|
|
2745
|
-
gasLimit: bigint | undefined;
|
|
2746
|
-
gasUsed: bigint;
|
|
2747
|
-
hash: `0x${string}` | null;
|
|
2748
|
-
logsBloom: `0x${string}` | null;
|
|
2749
|
-
miner: viem.Address;
|
|
2750
|
-
nonce: bigint | null | undefined;
|
|
2751
|
-
number: bigint | null;
|
|
2752
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
2753
|
-
parentHash: viem.Hash;
|
|
2754
|
-
receiptsRoot: viem.Hex;
|
|
2755
|
-
sealFields: viem.Hex[];
|
|
2756
|
-
sha3Uncles: viem.Hash;
|
|
2757
|
-
size: bigint;
|
|
2758
|
-
stateRoot: viem.Hash;
|
|
2759
|
-
timestamp: bigint;
|
|
2760
|
-
totalDifficulty: bigint | null;
|
|
2761
|
-
transactions: `0x${string}`[] | viem_chains.CeloTransaction<boolean>[];
|
|
2762
|
-
transactionsRoot: viem.Hash;
|
|
2763
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
2764
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2765
|
-
mixHash?: undefined | undefined;
|
|
2766
|
-
randomness?: {
|
|
2767
|
-
committed: viem.Hex;
|
|
2768
|
-
revealed: viem.Hex;
|
|
2769
|
-
} | undefined | undefined;
|
|
2770
|
-
uncles?: undefined | undefined;
|
|
2771
|
-
} & {};
|
|
2772
|
-
type: "block";
|
|
2773
|
-
};
|
|
2774
|
-
readonly transaction: {
|
|
2775
|
-
exclude: [] | undefined;
|
|
2776
|
-
format: (args: viem_chains.CeloRpcTransaction) => ({
|
|
2777
|
-
r: viem.Hex;
|
|
2778
|
-
s: viem.Hex;
|
|
2779
|
-
v: bigint;
|
|
2780
|
-
to: viem.Address | null;
|
|
2781
|
-
from: viem.Address;
|
|
2782
|
-
gas: bigint;
|
|
2783
|
-
nonce: number;
|
|
2784
|
-
value: bigint;
|
|
2785
|
-
blockHash: `0x${string}` | null;
|
|
2786
|
-
blockNumber: bigint | null;
|
|
2787
|
-
hash: viem.Hash;
|
|
2788
|
-
input: viem.Hex;
|
|
2789
|
-
transactionIndex: number | null;
|
|
2790
|
-
typeHex: viem.Hex | null;
|
|
2791
|
-
accessList?: undefined | undefined;
|
|
2792
|
-
authorizationList?: undefined | undefined;
|
|
2793
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2794
|
-
chainId?: number | undefined;
|
|
2795
|
-
yParity?: undefined | undefined;
|
|
2796
|
-
type: "legacy";
|
|
2797
|
-
gasPrice: bigint;
|
|
2798
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2799
|
-
maxFeePerGas?: undefined | undefined;
|
|
2800
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2801
|
-
feeCurrency: viem.Address | null;
|
|
2802
|
-
mint?: undefined;
|
|
2803
|
-
isSystemTx?: undefined;
|
|
2804
|
-
sourceHash?: undefined;
|
|
2805
|
-
gatewayFee?: undefined;
|
|
2806
|
-
gatewayFeeRecipient?: undefined;
|
|
2807
|
-
} | {
|
|
2808
|
-
blockHash: `0x${string}` | null;
|
|
2809
|
-
blockNumber: bigint | null;
|
|
2810
|
-
from: viem.Address;
|
|
2811
|
-
gas: bigint;
|
|
2812
|
-
hash: viem.Hash;
|
|
2813
|
-
input: viem.Hex;
|
|
2814
|
-
nonce: number;
|
|
2815
|
-
r: viem.Hex;
|
|
2816
|
-
s: viem.Hex;
|
|
2817
|
-
to: viem.Address | null;
|
|
2818
|
-
transactionIndex: number | null;
|
|
2819
|
-
typeHex: viem.Hex | null;
|
|
2820
|
-
v: bigint;
|
|
2821
|
-
value: bigint;
|
|
2822
|
-
yParity: number;
|
|
2823
|
-
accessList: viem.AccessList;
|
|
2824
|
-
authorizationList?: undefined | undefined;
|
|
2825
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2826
|
-
chainId: number;
|
|
2827
|
-
type: "eip2930";
|
|
2828
|
-
gasPrice: bigint;
|
|
2829
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2830
|
-
maxFeePerGas?: undefined | undefined;
|
|
2831
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2832
|
-
feeCurrency: viem.Address | null;
|
|
2833
|
-
mint?: undefined;
|
|
2834
|
-
isSystemTx?: undefined;
|
|
2835
|
-
sourceHash?: undefined;
|
|
2836
|
-
gatewayFee?: undefined;
|
|
2837
|
-
gatewayFeeRecipient?: undefined;
|
|
2838
|
-
} | {
|
|
2839
|
-
blockHash: `0x${string}` | null;
|
|
2840
|
-
blockNumber: bigint | null;
|
|
2841
|
-
from: viem.Address;
|
|
2842
|
-
gas: bigint;
|
|
2843
|
-
hash: viem.Hash;
|
|
2844
|
-
input: viem.Hex;
|
|
2845
|
-
nonce: number;
|
|
2846
|
-
r: viem.Hex;
|
|
2847
|
-
s: viem.Hex;
|
|
2848
|
-
to: viem.Address | null;
|
|
2849
|
-
transactionIndex: number | null;
|
|
2850
|
-
typeHex: viem.Hex | null;
|
|
2851
|
-
v: bigint;
|
|
2852
|
-
value: bigint;
|
|
2853
|
-
yParity: number;
|
|
2854
|
-
accessList: viem.AccessList;
|
|
2855
|
-
authorizationList?: undefined | undefined;
|
|
2856
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2857
|
-
chainId: number;
|
|
2858
|
-
type: "eip1559";
|
|
2859
|
-
gasPrice?: undefined | undefined;
|
|
2860
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2861
|
-
maxFeePerGas: bigint;
|
|
2862
|
-
maxPriorityFeePerGas: bigint;
|
|
2863
|
-
feeCurrency: viem.Address | null;
|
|
2864
|
-
mint?: undefined;
|
|
2865
|
-
isSystemTx?: undefined;
|
|
2866
|
-
sourceHash?: undefined;
|
|
2867
|
-
gatewayFee?: undefined;
|
|
2868
|
-
gatewayFeeRecipient?: undefined;
|
|
2869
|
-
} | {
|
|
2870
|
-
blockHash: `0x${string}` | null;
|
|
2871
|
-
blockNumber: bigint | null;
|
|
2872
|
-
from: viem.Address;
|
|
2873
|
-
gas: bigint;
|
|
2874
|
-
hash: viem.Hash;
|
|
2875
|
-
input: viem.Hex;
|
|
2876
|
-
nonce: number;
|
|
2877
|
-
r: viem.Hex;
|
|
2878
|
-
s: viem.Hex;
|
|
2879
|
-
to: viem.Address | null;
|
|
2880
|
-
transactionIndex: number | null;
|
|
2881
|
-
typeHex: viem.Hex | null;
|
|
2882
|
-
v: bigint;
|
|
2883
|
-
value: bigint;
|
|
2884
|
-
yParity: number;
|
|
2885
|
-
accessList: viem.AccessList;
|
|
2886
|
-
authorizationList?: undefined | undefined;
|
|
2887
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
2888
|
-
chainId: number;
|
|
2889
|
-
type: "eip4844";
|
|
2890
|
-
gasPrice?: undefined | undefined;
|
|
2891
|
-
maxFeePerBlobGas: bigint;
|
|
2892
|
-
maxFeePerGas: bigint;
|
|
2893
|
-
maxPriorityFeePerGas: bigint;
|
|
2894
|
-
feeCurrency: viem.Address | null;
|
|
2895
|
-
mint?: undefined;
|
|
2896
|
-
isSystemTx?: undefined;
|
|
2897
|
-
sourceHash?: undefined;
|
|
2898
|
-
gatewayFee?: undefined;
|
|
2899
|
-
gatewayFeeRecipient?: undefined;
|
|
2900
|
-
} | {
|
|
2901
|
-
blockHash: `0x${string}` | null;
|
|
2902
|
-
blockNumber: bigint | null;
|
|
2903
|
-
from: viem.Address;
|
|
2904
|
-
gas: bigint;
|
|
2905
|
-
hash: viem.Hash;
|
|
2906
|
-
input: viem.Hex;
|
|
2907
|
-
nonce: number;
|
|
2908
|
-
r: viem.Hex;
|
|
2909
|
-
s: viem.Hex;
|
|
2910
|
-
to: viem.Address | null;
|
|
2911
|
-
transactionIndex: number | null;
|
|
2912
|
-
typeHex: viem.Hex | null;
|
|
2913
|
-
v: bigint;
|
|
2914
|
-
value: bigint;
|
|
2915
|
-
yParity: number;
|
|
2916
|
-
accessList: viem.AccessList;
|
|
2917
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
2918
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2919
|
-
chainId: number;
|
|
2920
|
-
type: "eip7702";
|
|
2921
|
-
gasPrice?: undefined | undefined;
|
|
2922
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2923
|
-
maxFeePerGas: bigint;
|
|
2924
|
-
maxPriorityFeePerGas: bigint;
|
|
2925
|
-
feeCurrency: viem.Address | null;
|
|
2926
|
-
mint?: undefined;
|
|
2927
|
-
isSystemTx?: undefined;
|
|
2928
|
-
sourceHash?: undefined;
|
|
2929
|
-
gatewayFee?: undefined;
|
|
2930
|
-
gatewayFeeRecipient?: undefined;
|
|
2931
|
-
} | {
|
|
2932
|
-
blockHash: `0x${string}` | null;
|
|
2933
|
-
blockNumber: bigint | null;
|
|
2934
|
-
from: viem.Address;
|
|
2935
|
-
gas: bigint;
|
|
2936
|
-
hash: viem.Hash;
|
|
2937
|
-
input: viem.Hex;
|
|
2938
|
-
nonce: number;
|
|
2939
|
-
r: viem.Hex;
|
|
2940
|
-
s: viem.Hex;
|
|
2941
|
-
to: viem.Address | null;
|
|
2942
|
-
transactionIndex: number | null;
|
|
2943
|
-
typeHex: viem.Hex | null;
|
|
2944
|
-
v: bigint;
|
|
2945
|
-
value: bigint;
|
|
2946
|
-
yParity: number;
|
|
2947
|
-
gasPrice?: undefined | undefined;
|
|
2948
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2949
|
-
maxFeePerGas: bigint;
|
|
2950
|
-
maxPriorityFeePerGas: bigint;
|
|
2951
|
-
accessList: viem.AccessList;
|
|
2952
|
-
chainId: number;
|
|
2953
|
-
feeCurrency: viem.Address | null;
|
|
2954
|
-
gatewayFee: bigint | null;
|
|
2955
|
-
gatewayFeeRecipient: viem.Address | null;
|
|
2956
|
-
type: "cip42";
|
|
2957
|
-
authorizationList?: undefined;
|
|
2958
|
-
blobVersionedHashes?: undefined;
|
|
2959
|
-
mint?: undefined;
|
|
2960
|
-
isSystemTx?: undefined;
|
|
2961
|
-
sourceHash?: undefined;
|
|
2962
|
-
} | {
|
|
2963
|
-
blockHash: `0x${string}` | null;
|
|
2964
|
-
blockNumber: bigint | null;
|
|
2965
|
-
from: viem.Address;
|
|
2966
|
-
gas: bigint;
|
|
2967
|
-
hash: viem.Hash;
|
|
2968
|
-
input: viem.Hex;
|
|
2969
|
-
nonce: number;
|
|
2970
|
-
r: viem.Hex;
|
|
2971
|
-
s: viem.Hex;
|
|
2972
|
-
to: viem.Address | null;
|
|
2973
|
-
transactionIndex: number | null;
|
|
2974
|
-
typeHex: viem.Hex | null;
|
|
2975
|
-
v: bigint;
|
|
2976
|
-
value: bigint;
|
|
2977
|
-
yParity: number;
|
|
2978
|
-
gasPrice?: undefined | undefined;
|
|
2979
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2980
|
-
maxFeePerGas: bigint;
|
|
2981
|
-
maxPriorityFeePerGas: bigint;
|
|
2982
|
-
accessList: viem.AccessList;
|
|
2983
|
-
chainId: number;
|
|
2984
|
-
feeCurrency: viem.Address | null;
|
|
2985
|
-
type: "cip64";
|
|
2986
|
-
authorizationList?: undefined;
|
|
2987
|
-
blobVersionedHashes?: undefined;
|
|
2988
|
-
mint?: undefined;
|
|
2989
|
-
isSystemTx?: undefined;
|
|
2990
|
-
sourceHash?: undefined;
|
|
2991
|
-
gatewayFee?: undefined;
|
|
2992
|
-
gatewayFeeRecipient?: undefined;
|
|
2993
|
-
} | {
|
|
2994
|
-
blockHash: `0x${string}` | null;
|
|
2995
|
-
blockNumber: bigint | null;
|
|
2996
|
-
from: viem.Address;
|
|
2997
|
-
gas: bigint;
|
|
2998
|
-
hash: viem.Hash;
|
|
2999
|
-
input: viem.Hex;
|
|
3000
|
-
nonce: number;
|
|
3001
|
-
r: viem.Hex;
|
|
3002
|
-
s: viem.Hex;
|
|
3003
|
-
to: viem.Address | null;
|
|
3004
|
-
transactionIndex: number | null;
|
|
3005
|
-
typeHex: viem.Hex | null;
|
|
3006
|
-
v: bigint;
|
|
3007
|
-
value: bigint;
|
|
3008
|
-
yParity: number;
|
|
3009
|
-
gasPrice?: undefined | undefined;
|
|
3010
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3011
|
-
maxFeePerGas: bigint;
|
|
3012
|
-
maxPriorityFeePerGas: bigint;
|
|
3013
|
-
isSystemTx?: boolean;
|
|
3014
|
-
mint?: bigint | undefined | undefined;
|
|
3015
|
-
sourceHash: viem.Hex;
|
|
3016
|
-
type: "deposit";
|
|
3017
|
-
accessList?: undefined;
|
|
3018
|
-
authorizationList?: undefined;
|
|
3019
|
-
blobVersionedHashes?: undefined;
|
|
3020
|
-
chainId?: undefined;
|
|
3021
|
-
feeCurrency?: undefined;
|
|
3022
|
-
gatewayFee?: undefined;
|
|
3023
|
-
gatewayFeeRecipient?: undefined;
|
|
3024
|
-
}) & {};
|
|
3025
|
-
type: "transaction";
|
|
3026
|
-
};
|
|
3027
|
-
readonly transactionRequest: {
|
|
3028
|
-
exclude: [] | undefined;
|
|
3029
|
-
format: (args: viem_chains.CeloTransactionRequest) => ({
|
|
3030
|
-
data?: `0x${string}` | undefined;
|
|
3031
|
-
from?: `0x${string}` | undefined;
|
|
3032
|
-
gas?: `0x${string}` | undefined;
|
|
3033
|
-
nonce?: `0x${string}` | undefined;
|
|
3034
|
-
to?: `0x${string}` | null | undefined;
|
|
3035
|
-
type?: "0x0" | undefined;
|
|
3036
|
-
value?: `0x${string}` | undefined;
|
|
3037
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3038
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3039
|
-
maxFeePerGas?: undefined | undefined;
|
|
3040
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3041
|
-
blobs?: undefined;
|
|
3042
|
-
accessList?: undefined;
|
|
3043
|
-
authorizationList?: undefined;
|
|
3044
|
-
blobVersionedHashes?: undefined;
|
|
3045
|
-
kzg?: undefined;
|
|
3046
|
-
sidecars?: undefined;
|
|
3047
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
3048
|
-
} | {
|
|
3049
|
-
data?: `0x${string}` | undefined;
|
|
3050
|
-
from?: `0x${string}` | undefined;
|
|
3051
|
-
gas?: `0x${string}` | undefined;
|
|
3052
|
-
nonce?: `0x${string}` | undefined;
|
|
3053
|
-
to?: `0x${string}` | null | undefined;
|
|
3054
|
-
type?: "0x1" | undefined;
|
|
3055
|
-
value?: `0x${string}` | undefined;
|
|
3056
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3057
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3058
|
-
maxFeePerGas?: undefined | undefined;
|
|
3059
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3060
|
-
accessList?: viem.AccessList | undefined;
|
|
3061
|
-
blobs?: undefined;
|
|
3062
|
-
authorizationList?: undefined;
|
|
3063
|
-
blobVersionedHashes?: undefined;
|
|
3064
|
-
kzg?: undefined;
|
|
3065
|
-
sidecars?: undefined;
|
|
3066
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
3067
|
-
} | {
|
|
3068
|
-
data?: `0x${string}` | undefined;
|
|
3069
|
-
from?: `0x${string}` | undefined;
|
|
3070
|
-
gas?: `0x${string}` | undefined;
|
|
3071
|
-
nonce?: `0x${string}` | undefined;
|
|
3072
|
-
to?: `0x${string}` | null | undefined;
|
|
3073
|
-
type?: "0x2" | undefined;
|
|
3074
|
-
value?: `0x${string}` | undefined;
|
|
3075
|
-
gasPrice?: undefined | undefined;
|
|
3076
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3077
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3078
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3079
|
-
accessList?: viem.AccessList | undefined;
|
|
3080
|
-
blobs?: undefined;
|
|
3081
|
-
authorizationList?: undefined;
|
|
3082
|
-
blobVersionedHashes?: undefined;
|
|
3083
|
-
kzg?: undefined;
|
|
3084
|
-
sidecars?: undefined;
|
|
3085
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
3086
|
-
} | {
|
|
3087
|
-
type?: "0x3" | undefined;
|
|
3088
|
-
data?: `0x${string}` | undefined;
|
|
3089
|
-
from?: `0x${string}` | undefined;
|
|
3090
|
-
gas?: `0x${string}` | undefined;
|
|
3091
|
-
nonce?: `0x${string}` | undefined;
|
|
3092
|
-
value?: `0x${string}` | undefined;
|
|
3093
|
-
to: `0x${string}` | null;
|
|
3094
|
-
gasPrice?: undefined | undefined;
|
|
3095
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3096
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3097
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
3098
|
-
accessList?: viem.AccessList | undefined;
|
|
3099
|
-
blobs: readonly viem.Hex[] | readonly viem.ByteArray[];
|
|
3100
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3101
|
-
kzg?: viem.Kzg | undefined;
|
|
3102
|
-
sidecars?: readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
|
|
3103
|
-
authorizationList?: undefined;
|
|
3104
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
3105
|
-
} | {
|
|
3106
|
-
type?: "0x4" | undefined;
|
|
3107
|
-
gasPrice?: undefined | undefined;
|
|
3108
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3109
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3110
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3111
|
-
to?: `0x${string}` | null | undefined;
|
|
3112
|
-
data?: `0x${string}` | undefined;
|
|
3113
|
-
from?: `0x${string}` | undefined;
|
|
3114
|
-
gas?: `0x${string}` | undefined;
|
|
3115
|
-
nonce?: `0x${string}` | undefined;
|
|
3116
|
-
value?: `0x${string}` | undefined;
|
|
3117
|
-
accessList?: viem.AccessList | undefined;
|
|
3118
|
-
authorizationList?: viem.RpcAuthorizationList | undefined;
|
|
3119
|
-
blobs?: undefined;
|
|
3120
|
-
blobVersionedHashes?: undefined;
|
|
3121
|
-
kzg?: undefined;
|
|
3122
|
-
sidecars?: undefined;
|
|
3123
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
3124
|
-
} | {
|
|
3125
|
-
data?: `0x${string}` | undefined;
|
|
3126
|
-
from?: `0x${string}` | undefined;
|
|
3127
|
-
gas?: `0x${string}` | undefined;
|
|
3128
|
-
nonce?: `0x${string}` | undefined;
|
|
3129
|
-
to?: `0x${string}` | null | undefined;
|
|
3130
|
-
type?: "0x7b" | undefined;
|
|
3131
|
-
value?: `0x${string}` | undefined;
|
|
3132
|
-
accessList?: viem.AccessList | undefined;
|
|
3133
|
-
feeCurrency?: `0x${string}` | undefined;
|
|
3134
|
-
gasPrice?: undefined | undefined;
|
|
3135
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3136
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3137
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3138
|
-
blobs?: undefined;
|
|
3139
|
-
authorizationList?: undefined;
|
|
3140
|
-
blobVersionedHashes?: undefined;
|
|
3141
|
-
kzg?: undefined;
|
|
3142
|
-
sidecars?: undefined;
|
|
3143
|
-
}) & {};
|
|
3144
|
-
type: "transactionRequest";
|
|
3145
|
-
};
|
|
3146
|
-
};
|
|
3147
|
-
serializers: {
|
|
3148
|
-
readonly transaction: typeof viem_chains.serializeTransactionCelo;
|
|
3149
|
-
};
|
|
3150
|
-
};
|
|
3151
|
-
324: {
|
|
3152
|
-
blockExplorers: {
|
|
3153
|
-
readonly default: {
|
|
3154
|
-
readonly name: "Etherscan";
|
|
3155
|
-
readonly url: "https://era.zksync.network/";
|
|
3156
|
-
readonly apiUrl: "https://api-era.zksync.network/api";
|
|
3157
|
-
};
|
|
3158
|
-
readonly native: {
|
|
3159
|
-
readonly name: "ZKsync Explorer";
|
|
3160
|
-
readonly url: "https://explorer.zksync.io/";
|
|
3161
|
-
readonly apiUrl: "https://block-explorer-api.mainnet.zksync.io/api";
|
|
3162
|
-
};
|
|
3163
|
-
};
|
|
3164
|
-
contracts: {
|
|
3165
|
-
readonly multicall3: {
|
|
3166
|
-
readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
|
|
3167
|
-
};
|
|
3168
|
-
readonly universalSignatureVerifier: {
|
|
3169
|
-
readonly address: "0xfB688330379976DA81eB64Fe4BF50d7401763B9C";
|
|
3170
|
-
readonly blockCreated: 45659388;
|
|
3171
|
-
};
|
|
3172
|
-
};
|
|
3173
|
-
id: 324;
|
|
3174
|
-
name: "ZKsync Era";
|
|
3175
|
-
nativeCurrency: {
|
|
3176
|
-
readonly decimals: 18;
|
|
3177
|
-
readonly name: "Ether";
|
|
3178
|
-
readonly symbol: "ETH";
|
|
3179
|
-
};
|
|
3180
|
-
rpcUrls: {
|
|
3181
|
-
readonly default: {
|
|
3182
|
-
readonly http: readonly ["https://mainnet.era.zksync.io"];
|
|
3183
|
-
readonly webSocket: readonly ["wss://mainnet.era.zksync.io/ws"];
|
|
3184
|
-
};
|
|
3185
|
-
};
|
|
3186
|
-
sourceId?: number | undefined | undefined;
|
|
3187
|
-
testnet?: boolean | undefined | undefined;
|
|
3188
|
-
custom: {
|
|
3189
|
-
readonly getEip712Domain: viem_zksync.EIP712DomainFn<viem_chains.ZkSyncTransactionSerializable, viem_chains.ZkSyncEIP712TransactionSignable>;
|
|
3190
|
-
};
|
|
3191
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
3192
|
-
formatters: {
|
|
3193
|
-
readonly block: {
|
|
3194
|
-
exclude: [] | undefined;
|
|
3195
|
-
format: (args: viem_chains.ZkSyncRpcBlock) => {
|
|
3196
|
-
baseFeePerGas: bigint | null;
|
|
3197
|
-
blobGasUsed: bigint;
|
|
3198
|
-
difficulty: bigint;
|
|
3199
|
-
excessBlobGas: bigint;
|
|
3200
|
-
extraData: viem.Hex;
|
|
3201
|
-
gasLimit: bigint;
|
|
3202
|
-
gasUsed: bigint;
|
|
3203
|
-
hash: `0x${string}` | null;
|
|
3204
|
-
logsBloom: `0x${string}` | null;
|
|
3205
|
-
miner: viem.Address;
|
|
3206
|
-
mixHash: viem.Hash;
|
|
3207
|
-
nonce: `0x${string}` | null;
|
|
3208
|
-
number: bigint | null;
|
|
3209
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
3210
|
-
parentHash: viem.Hash;
|
|
3211
|
-
receiptsRoot: viem.Hex;
|
|
3212
|
-
sealFields: viem.Hex[];
|
|
3213
|
-
sha3Uncles: viem.Hash;
|
|
3214
|
-
size: bigint;
|
|
3215
|
-
stateRoot: viem.Hash;
|
|
3216
|
-
timestamp: bigint;
|
|
3217
|
-
totalDifficulty: bigint | null;
|
|
3218
|
-
transactions: `0x${string}`[] | viem_chains.ZkSyncTransaction<boolean>[];
|
|
3219
|
-
transactionsRoot: viem.Hash;
|
|
3220
|
-
uncles: viem.Hash[];
|
|
3221
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
3222
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
3223
|
-
l1BatchNumber: bigint | null;
|
|
3224
|
-
l1BatchTimestamp: bigint | null;
|
|
3225
|
-
} & {};
|
|
3226
|
-
type: "block";
|
|
3227
|
-
};
|
|
3228
|
-
readonly transaction: {
|
|
3229
|
-
exclude: [] | undefined;
|
|
3230
|
-
format: (args: viem_chains.ZkSyncRpcTransaction) => ({
|
|
3231
|
-
r: viem.Hex;
|
|
3232
|
-
s: viem.Hex;
|
|
3233
|
-
v: bigint;
|
|
3234
|
-
to: viem.Address | null;
|
|
3235
|
-
from: viem.Address;
|
|
3236
|
-
gas: bigint;
|
|
3237
|
-
nonce: number;
|
|
3238
|
-
value: bigint;
|
|
3239
|
-
blockHash: `0x${string}` | null;
|
|
3240
|
-
blockNumber: bigint | null;
|
|
3241
|
-
hash: viem.Hash;
|
|
3242
|
-
input: viem.Hex;
|
|
3243
|
-
transactionIndex: number | null;
|
|
3244
|
-
typeHex: viem.Hex | null;
|
|
3245
|
-
accessList?: undefined | undefined;
|
|
3246
|
-
authorizationList?: undefined | undefined;
|
|
3247
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3248
|
-
chainId?: number | undefined;
|
|
3249
|
-
yParity?: undefined | undefined;
|
|
3250
|
-
type: "legacy";
|
|
3251
|
-
gasPrice: bigint;
|
|
3252
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3253
|
-
maxFeePerGas?: undefined | undefined;
|
|
3254
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3255
|
-
l1BatchNumber: bigint | null;
|
|
3256
|
-
l1BatchTxIndex: bigint | null;
|
|
3257
|
-
} | {
|
|
3258
|
-
blockHash: `0x${string}` | null;
|
|
3259
|
-
blockNumber: bigint | null;
|
|
3260
|
-
from: viem.Address;
|
|
3261
|
-
gas: bigint;
|
|
3262
|
-
hash: viem.Hash;
|
|
3263
|
-
input: viem.Hex;
|
|
3264
|
-
nonce: number;
|
|
3265
|
-
r: viem.Hex;
|
|
3266
|
-
s: viem.Hex;
|
|
3267
|
-
to: viem.Address | null;
|
|
3268
|
-
transactionIndex: number | null;
|
|
3269
|
-
typeHex: viem.Hex | null;
|
|
3270
|
-
v: bigint;
|
|
3271
|
-
value: bigint;
|
|
3272
|
-
yParity: number;
|
|
3273
|
-
accessList: viem.AccessList;
|
|
3274
|
-
authorizationList?: undefined | undefined;
|
|
3275
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3276
|
-
chainId: number;
|
|
3277
|
-
type: "eip2930";
|
|
3278
|
-
gasPrice: bigint;
|
|
3279
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3280
|
-
maxFeePerGas?: undefined | undefined;
|
|
3281
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3282
|
-
l1BatchNumber: bigint | null;
|
|
3283
|
-
l1BatchTxIndex: bigint | null;
|
|
3284
|
-
} | {
|
|
3285
|
-
blockHash: `0x${string}` | null;
|
|
3286
|
-
blockNumber: bigint | null;
|
|
3287
|
-
from: viem.Address;
|
|
3288
|
-
gas: bigint;
|
|
3289
|
-
hash: viem.Hash;
|
|
3290
|
-
input: viem.Hex;
|
|
3291
|
-
nonce: number;
|
|
3292
|
-
r: viem.Hex;
|
|
3293
|
-
s: viem.Hex;
|
|
3294
|
-
to: viem.Address | null;
|
|
3295
|
-
transactionIndex: number | null;
|
|
3296
|
-
typeHex: viem.Hex | null;
|
|
3297
|
-
v: bigint;
|
|
3298
|
-
value: bigint;
|
|
3299
|
-
yParity: number;
|
|
3300
|
-
accessList: viem.AccessList;
|
|
3301
|
-
authorizationList?: undefined | undefined;
|
|
3302
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3303
|
-
chainId: number;
|
|
3304
|
-
type: "eip1559";
|
|
3305
|
-
gasPrice?: undefined | undefined;
|
|
3306
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3307
|
-
maxFeePerGas: bigint;
|
|
3308
|
-
maxPriorityFeePerGas: bigint;
|
|
3309
|
-
l1BatchNumber: bigint | null;
|
|
3310
|
-
l1BatchTxIndex: bigint | null;
|
|
3311
|
-
} | {
|
|
3312
|
-
blockHash: `0x${string}` | null;
|
|
3313
|
-
blockNumber: bigint | null;
|
|
3314
|
-
from: viem.Address;
|
|
3315
|
-
gas: bigint;
|
|
3316
|
-
hash: viem.Hash;
|
|
3317
|
-
input: viem.Hex;
|
|
3318
|
-
nonce: number;
|
|
3319
|
-
r: viem.Hex;
|
|
3320
|
-
s: viem.Hex;
|
|
3321
|
-
to: viem.Address | null;
|
|
3322
|
-
transactionIndex: number | null;
|
|
3323
|
-
typeHex: viem.Hex | null;
|
|
3324
|
-
v: bigint;
|
|
3325
|
-
value: bigint;
|
|
3326
|
-
yParity: number;
|
|
3327
|
-
accessList: viem.AccessList;
|
|
3328
|
-
authorizationList?: undefined | undefined;
|
|
3329
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
3330
|
-
chainId: number;
|
|
3331
|
-
type: "eip4844";
|
|
3332
|
-
gasPrice?: undefined | undefined;
|
|
3333
|
-
maxFeePerBlobGas: bigint;
|
|
3334
|
-
maxFeePerGas: bigint;
|
|
3335
|
-
maxPriorityFeePerGas: bigint;
|
|
3336
|
-
l1BatchNumber: bigint | null;
|
|
3337
|
-
l1BatchTxIndex: bigint | null;
|
|
3338
|
-
} | {
|
|
3339
|
-
blockHash: `0x${string}` | null;
|
|
3340
|
-
blockNumber: bigint | null;
|
|
3341
|
-
from: viem.Address;
|
|
3342
|
-
gas: bigint;
|
|
3343
|
-
hash: viem.Hash;
|
|
3344
|
-
input: viem.Hex;
|
|
3345
|
-
nonce: number;
|
|
3346
|
-
r: viem.Hex;
|
|
3347
|
-
s: viem.Hex;
|
|
3348
|
-
to: viem.Address | null;
|
|
3349
|
-
transactionIndex: number | null;
|
|
3350
|
-
typeHex: viem.Hex | null;
|
|
3351
|
-
v: bigint;
|
|
3352
|
-
value: bigint;
|
|
3353
|
-
yParity: number;
|
|
3354
|
-
accessList: viem.AccessList;
|
|
3355
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
3356
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3357
|
-
chainId: number;
|
|
3358
|
-
type: "eip7702";
|
|
3359
|
-
gasPrice?: undefined | undefined;
|
|
3360
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3361
|
-
maxFeePerGas: bigint;
|
|
3362
|
-
maxPriorityFeePerGas: bigint;
|
|
3363
|
-
l1BatchNumber: bigint | null;
|
|
3364
|
-
l1BatchTxIndex: bigint | null;
|
|
3365
|
-
} | {
|
|
3366
|
-
blockHash: `0x${string}` | null;
|
|
3367
|
-
blockNumber: bigint | null;
|
|
3368
|
-
from: viem.Address;
|
|
3369
|
-
gas: bigint;
|
|
3370
|
-
hash: viem.Hash;
|
|
3371
|
-
input: viem.Hex;
|
|
3372
|
-
nonce: number;
|
|
3373
|
-
r: viem.Hex;
|
|
3374
|
-
s: viem.Hex;
|
|
3375
|
-
to: viem.Address | null;
|
|
3376
|
-
transactionIndex: number | null;
|
|
3377
|
-
typeHex: viem.Hex | null;
|
|
3378
|
-
v: bigint;
|
|
3379
|
-
value: bigint;
|
|
3380
|
-
yParity: number;
|
|
3381
|
-
l1BatchNumber: bigint | null;
|
|
3382
|
-
l1BatchTxIndex: bigint | null;
|
|
3383
|
-
gasPrice?: undefined | undefined;
|
|
3384
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3385
|
-
maxFeePerGas: bigint;
|
|
3386
|
-
maxPriorityFeePerGas: bigint;
|
|
3387
|
-
type: "priority";
|
|
3388
|
-
} | {
|
|
3389
|
-
blockHash: `0x${string}` | null;
|
|
3390
|
-
blockNumber: bigint | null;
|
|
3391
|
-
from: viem.Address;
|
|
3392
|
-
gas: bigint;
|
|
3393
|
-
hash: viem.Hash;
|
|
3394
|
-
input: viem.Hex;
|
|
3395
|
-
nonce: number;
|
|
3396
|
-
r: viem.Hex;
|
|
3397
|
-
s: viem.Hex;
|
|
3398
|
-
to: viem.Address | null;
|
|
3399
|
-
transactionIndex: number | null;
|
|
3400
|
-
typeHex: viem.Hex | null;
|
|
3401
|
-
v: bigint;
|
|
3402
|
-
value: bigint;
|
|
3403
|
-
yParity: number;
|
|
3404
|
-
l1BatchNumber: bigint | null;
|
|
3405
|
-
l1BatchTxIndex: bigint | null;
|
|
3406
|
-
gasPrice?: undefined | undefined;
|
|
3407
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3408
|
-
maxFeePerGas: bigint;
|
|
3409
|
-
maxPriorityFeePerGas: bigint;
|
|
3410
|
-
type: "eip712" | "priority";
|
|
3411
|
-
}) & {};
|
|
3412
|
-
type: "transaction";
|
|
3413
|
-
};
|
|
3414
|
-
readonly transactionReceipt: {
|
|
3415
|
-
exclude: [] | undefined;
|
|
3416
|
-
format: (args: viem_chains.ZkSyncRpcTransactionReceipt) => {
|
|
3417
|
-
type: viem_chains.ZkSyncTransactionType;
|
|
3418
|
-
contractAddress: viem.Address | null | undefined;
|
|
3419
|
-
to: viem.Address | null;
|
|
3420
|
-
from: viem.Address;
|
|
3421
|
-
blockHash: viem.Hash;
|
|
3422
|
-
blockNumber: bigint;
|
|
3423
|
-
transactionIndex: number;
|
|
3424
|
-
status: "success" | "reverted";
|
|
3425
|
-
logsBloom: viem.Hex;
|
|
3426
|
-
blobGasUsed?: bigint | undefined;
|
|
3427
|
-
gasUsed: bigint;
|
|
3428
|
-
transactionHash: viem.Hash;
|
|
3429
|
-
blobGasPrice?: bigint | undefined;
|
|
3430
|
-
cumulativeGasUsed: bigint;
|
|
3431
|
-
effectiveGasPrice: bigint;
|
|
3432
|
-
root?: `0x${string}` | undefined;
|
|
3433
|
-
l1BatchNumber: bigint | null;
|
|
3434
|
-
l1BatchTxIndex: bigint | null;
|
|
3435
|
-
logs: viem_chains.ZkSyncLog[];
|
|
3436
|
-
l2ToL1Logs: viem_chains.ZkSyncL2ToL1Log[];
|
|
3437
|
-
} & {};
|
|
3438
|
-
type: "transactionReceipt";
|
|
3439
|
-
};
|
|
3440
|
-
readonly transactionRequest: {
|
|
3441
|
-
exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
|
|
3442
|
-
format: (args: viem_chains.ZkSyncTransactionRequest) => ({
|
|
3443
|
-
data?: `0x${string}` | undefined;
|
|
3444
|
-
from?: `0x${string}` | undefined;
|
|
3445
|
-
gas?: `0x${string}` | undefined;
|
|
3446
|
-
nonce?: `0x${string}` | undefined;
|
|
3447
|
-
to?: `0x${string}` | null | undefined;
|
|
3448
|
-
type?: "0x0" | undefined;
|
|
3449
|
-
value?: `0x${string}` | undefined;
|
|
3450
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3451
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3452
|
-
maxFeePerGas?: undefined | undefined;
|
|
3453
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3454
|
-
blobs?: undefined;
|
|
3455
|
-
accessList?: undefined;
|
|
3456
|
-
authorizationList?: undefined;
|
|
3457
|
-
blobVersionedHashes?: undefined;
|
|
3458
|
-
kzg?: undefined;
|
|
3459
|
-
sidecars?: undefined;
|
|
3460
|
-
eip712Meta?: undefined | undefined;
|
|
3461
|
-
} | {
|
|
3462
|
-
data?: `0x${string}` | undefined;
|
|
3463
|
-
from?: `0x${string}` | undefined;
|
|
3464
|
-
gas?: `0x${string}` | undefined;
|
|
3465
|
-
nonce?: `0x${string}` | undefined;
|
|
3466
|
-
to?: `0x${string}` | null | undefined;
|
|
3467
|
-
type?: "0x1" | undefined;
|
|
3468
|
-
value?: `0x${string}` | undefined;
|
|
3469
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3470
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3471
|
-
maxFeePerGas?: undefined | undefined;
|
|
3472
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3473
|
-
accessList?: viem.AccessList | undefined;
|
|
3474
|
-
blobs?: undefined;
|
|
3475
|
-
authorizationList?: undefined;
|
|
3476
|
-
blobVersionedHashes?: undefined;
|
|
3477
|
-
kzg?: undefined;
|
|
3478
|
-
sidecars?: undefined;
|
|
3479
|
-
eip712Meta?: undefined | undefined;
|
|
3480
|
-
} | {
|
|
3481
|
-
data?: `0x${string}` | undefined;
|
|
3482
|
-
from?: `0x${string}` | undefined;
|
|
3483
|
-
gas?: `0x${string}` | undefined;
|
|
3484
|
-
nonce?: `0x${string}` | undefined;
|
|
3485
|
-
to?: `0x${string}` | null | undefined;
|
|
3486
|
-
type?: "0x2" | undefined;
|
|
3487
|
-
value?: `0x${string}` | undefined;
|
|
3488
|
-
gasPrice?: undefined | undefined;
|
|
3489
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3490
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3491
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3492
|
-
accessList?: viem.AccessList | undefined;
|
|
3493
|
-
blobs?: undefined;
|
|
3494
|
-
authorizationList?: undefined;
|
|
3495
|
-
blobVersionedHashes?: undefined;
|
|
3496
|
-
kzg?: undefined;
|
|
3497
|
-
sidecars?: undefined;
|
|
3498
|
-
eip712Meta?: undefined | undefined;
|
|
3499
|
-
} | {
|
|
3500
|
-
type?: "0x3" | undefined;
|
|
3501
|
-
data?: `0x${string}` | undefined;
|
|
3502
|
-
from?: `0x${string}` | undefined;
|
|
3503
|
-
gas?: `0x${string}` | undefined;
|
|
3504
|
-
nonce?: `0x${string}` | undefined;
|
|
3505
|
-
value?: `0x${string}` | undefined;
|
|
3506
|
-
to: `0x${string}` | null;
|
|
3507
|
-
gasPrice?: undefined | undefined;
|
|
3508
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3509
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3510
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
3511
|
-
accessList?: viem.AccessList | undefined;
|
|
3512
|
-
blobs: readonly viem.Hex[] | readonly viem.ByteArray[];
|
|
3513
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3514
|
-
kzg?: viem.Kzg | undefined;
|
|
3515
|
-
sidecars?: readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
|
|
3516
|
-
authorizationList?: undefined;
|
|
3517
|
-
eip712Meta?: undefined | undefined;
|
|
3518
|
-
} | {
|
|
3519
|
-
type?: "0x4" | undefined;
|
|
3520
|
-
gasPrice?: undefined | undefined;
|
|
3521
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3522
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3523
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3524
|
-
to?: `0x${string}` | null | undefined;
|
|
3525
|
-
data?: `0x${string}` | undefined;
|
|
3526
|
-
from?: `0x${string}` | undefined;
|
|
3527
|
-
gas?: `0x${string}` | undefined;
|
|
3528
|
-
nonce?: `0x${string}` | undefined;
|
|
3529
|
-
value?: `0x${string}` | undefined;
|
|
3530
|
-
accessList?: viem.AccessList | undefined;
|
|
3531
|
-
authorizationList?: viem.RpcAuthorizationList | undefined;
|
|
3532
|
-
blobs?: undefined;
|
|
3533
|
-
blobVersionedHashes?: undefined;
|
|
3534
|
-
kzg?: undefined;
|
|
3535
|
-
sidecars?: undefined;
|
|
3536
|
-
eip712Meta?: undefined | undefined;
|
|
3537
|
-
} | {
|
|
3538
|
-
data?: `0x${string}` | undefined;
|
|
3539
|
-
from?: `0x${string}` | undefined;
|
|
3540
|
-
gas?: `0x${string}` | undefined;
|
|
3541
|
-
nonce?: `0x${string}` | undefined;
|
|
3542
|
-
to?: `0x${string}` | null | undefined;
|
|
3543
|
-
type: "0xff" | "0x71";
|
|
3544
|
-
value?: `0x${string}` | undefined;
|
|
3545
|
-
gasPrice?: undefined | undefined;
|
|
3546
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3547
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
3548
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3549
|
-
eip712Meta: viem_chains.ZkSyncEip712Meta;
|
|
3550
|
-
}) & {
|
|
3551
|
-
paymaster: never;
|
|
3552
|
-
gasPerPubdata: never;
|
|
3553
|
-
factoryDeps: never;
|
|
3554
|
-
paymasterInput: never;
|
|
3555
|
-
customSignature: never;
|
|
3556
|
-
};
|
|
3557
|
-
type: "transactionRequest";
|
|
3558
|
-
};
|
|
3559
|
-
};
|
|
3560
|
-
serializers: {
|
|
3561
|
-
readonly transaction: typeof viem_zksync.serializeTransaction;
|
|
3562
|
-
};
|
|
3563
|
-
readonly network: "zksync-era";
|
|
3564
|
-
};
|
|
3565
|
-
59144: {
|
|
3566
|
-
blockExplorers: {
|
|
3567
|
-
readonly default: {
|
|
3568
|
-
readonly name: "Etherscan";
|
|
3569
|
-
readonly url: "https://lineascan.build";
|
|
3570
|
-
readonly apiUrl: "https://api.lineascan.build/api";
|
|
3571
|
-
};
|
|
3572
|
-
};
|
|
3573
|
-
contracts: {
|
|
3574
|
-
readonly multicall3: {
|
|
3575
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3576
|
-
readonly blockCreated: 42;
|
|
3577
|
-
};
|
|
3578
|
-
};
|
|
3579
|
-
id: 59144;
|
|
3580
|
-
name: "Linea Mainnet";
|
|
3581
|
-
nativeCurrency: {
|
|
3582
|
-
readonly name: "Linea Ether";
|
|
3583
|
-
readonly symbol: "ETH";
|
|
3584
|
-
readonly decimals: 18;
|
|
3585
|
-
};
|
|
3586
|
-
rpcUrls: {
|
|
3587
|
-
readonly default: {
|
|
3588
|
-
readonly http: readonly ["https://rpc.linea.build"];
|
|
3589
|
-
readonly webSocket: readonly ["wss://rpc.linea.build"];
|
|
3590
|
-
};
|
|
3591
|
-
};
|
|
3592
|
-
sourceId?: number | undefined | undefined;
|
|
3593
|
-
testnet: false;
|
|
3594
|
-
custom?: Record<string, unknown> | undefined;
|
|
3595
|
-
fees: {
|
|
3596
|
-
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<viem.ChainEstimateFeesPerGasFn>[0]) => ReturnType<viem.ChainEstimateFeesPerGasFn>;
|
|
3597
|
-
readonly maxPriorityFeePerGas: ({ block, client, request }: viem.ChainFeesFnParameters<viem.ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
3598
|
-
};
|
|
3599
|
-
formatters?: undefined;
|
|
3600
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
3601
|
-
};
|
|
3602
|
-
57073: {
|
|
3603
|
-
blockExplorers: {
|
|
3604
|
-
readonly default: {
|
|
3605
|
-
readonly name: "Blockscout";
|
|
3606
|
-
readonly url: "https://explorer.inkonchain.com";
|
|
3607
|
-
readonly apiUrl: "https://explorer.inkonchain.com/api/v2";
|
|
3608
|
-
};
|
|
3609
|
-
};
|
|
3610
|
-
contracts: {
|
|
3611
|
-
readonly disputeGameFactory: {
|
|
3612
|
-
readonly 1: {
|
|
3613
|
-
readonly address: "0x10d7b35078d3baabb96dd45a9143b94be65b12cd";
|
|
3614
|
-
};
|
|
3615
|
-
};
|
|
3616
|
-
readonly portal: {
|
|
3617
|
-
readonly 1: {
|
|
3618
|
-
readonly address: "0x5d66c1782664115999c47c9fa5cd031f495d3e4f";
|
|
3619
|
-
};
|
|
3620
|
-
};
|
|
3621
|
-
readonly l1StandardBridge: {
|
|
3622
|
-
readonly 1: {
|
|
3623
|
-
readonly address: "0x88ff1e5b602916615391f55854588efcbb7663f0";
|
|
3624
|
-
};
|
|
3625
|
-
};
|
|
3626
|
-
readonly gasPriceOracle: {
|
|
3627
|
-
readonly address: "0x420000000000000000000000000000000000000F";
|
|
3628
|
-
};
|
|
3629
|
-
readonly l1Block: {
|
|
3630
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
3631
|
-
};
|
|
3632
|
-
readonly l2CrossDomainMessenger: {
|
|
3633
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
3634
|
-
};
|
|
3635
|
-
readonly l2Erc721Bridge: {
|
|
3636
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
3637
|
-
};
|
|
3638
|
-
readonly l2StandardBridge: {
|
|
3639
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
3640
|
-
};
|
|
3641
|
-
readonly l2ToL1MessagePasser: {
|
|
3642
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
3643
|
-
};
|
|
3644
|
-
readonly multicall3: {
|
|
3645
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3646
|
-
readonly blockCreated: 0;
|
|
3647
|
-
};
|
|
3648
|
-
};
|
|
3649
|
-
id: 57073;
|
|
3650
|
-
name: "Ink";
|
|
3651
|
-
nativeCurrency: {
|
|
3652
|
-
readonly name: "Ether";
|
|
3653
|
-
readonly symbol: "ETH";
|
|
3654
|
-
readonly decimals: 18;
|
|
3655
|
-
};
|
|
3656
|
-
rpcUrls: {
|
|
3657
|
-
readonly default: {
|
|
3658
|
-
readonly http: readonly ["https://rpc-gel.inkonchain.com", "https://rpc-qnd.inkonchain.com"];
|
|
3659
|
-
readonly webSocket: readonly ["wss://rpc-gel.inkonchain.com", "wss://rpc-qnd.inkonchain.com"];
|
|
3660
|
-
};
|
|
3661
|
-
};
|
|
3662
|
-
sourceId: 1;
|
|
3663
|
-
testnet: false;
|
|
3664
|
-
custom?: Record<string, unknown> | undefined;
|
|
3665
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
3666
|
-
formatters: {
|
|
3667
|
-
readonly block: {
|
|
3668
|
-
exclude: [] | undefined;
|
|
3669
|
-
format: (args: viem_chains.OpStackRpcBlock) => {
|
|
3670
|
-
baseFeePerGas: bigint | null;
|
|
3671
|
-
blobGasUsed: bigint;
|
|
3672
|
-
difficulty: bigint;
|
|
3673
|
-
excessBlobGas: bigint;
|
|
3674
|
-
extraData: viem.Hex;
|
|
3675
|
-
gasLimit: bigint;
|
|
3676
|
-
gasUsed: bigint;
|
|
3677
|
-
hash: `0x${string}` | null;
|
|
3678
|
-
logsBloom: `0x${string}` | null;
|
|
3679
|
-
miner: viem.Address;
|
|
3680
|
-
mixHash: viem.Hash;
|
|
3681
|
-
nonce: `0x${string}` | null;
|
|
3682
|
-
number: bigint | null;
|
|
3683
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
3684
|
-
parentHash: viem.Hash;
|
|
3685
|
-
receiptsRoot: viem.Hex;
|
|
3686
|
-
sealFields: viem.Hex[];
|
|
3687
|
-
sha3Uncles: viem.Hash;
|
|
3688
|
-
size: bigint;
|
|
3689
|
-
stateRoot: viem.Hash;
|
|
3690
|
-
timestamp: bigint;
|
|
3691
|
-
totalDifficulty: bigint | null;
|
|
3692
|
-
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
3693
|
-
transactionsRoot: viem.Hash;
|
|
3694
|
-
uncles: viem.Hash[];
|
|
3695
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
3696
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
3697
|
-
} & {};
|
|
3698
|
-
type: "block";
|
|
3699
|
-
};
|
|
3700
|
-
readonly transaction: {
|
|
3701
|
-
exclude: [] | undefined;
|
|
3702
|
-
format: (args: viem_chains.OpStackRpcTransaction) => ({
|
|
3703
|
-
blockHash: `0x${string}` | null;
|
|
3704
|
-
blockNumber: bigint | null;
|
|
3705
|
-
from: viem.Address;
|
|
3706
|
-
gas: bigint;
|
|
3707
|
-
hash: viem.Hash;
|
|
3708
|
-
input: viem.Hex;
|
|
3709
|
-
nonce: number;
|
|
3710
|
-
r: viem.Hex;
|
|
3711
|
-
s: viem.Hex;
|
|
3712
|
-
to: viem.Address | null;
|
|
3713
|
-
transactionIndex: number | null;
|
|
3714
|
-
typeHex: viem.Hex | null;
|
|
3715
|
-
v: bigint;
|
|
3716
|
-
value: bigint;
|
|
3717
|
-
yParity: number;
|
|
3718
|
-
gasPrice?: undefined | undefined;
|
|
3719
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3720
|
-
maxFeePerGas: bigint;
|
|
3721
|
-
maxPriorityFeePerGas: bigint;
|
|
3722
|
-
isSystemTx?: boolean;
|
|
3723
|
-
mint?: bigint | undefined | undefined;
|
|
3724
|
-
sourceHash: viem.Hex;
|
|
3725
|
-
type: "deposit";
|
|
3726
|
-
} | {
|
|
3727
|
-
r: viem.Hex;
|
|
3728
|
-
s: viem.Hex;
|
|
3729
|
-
v: bigint;
|
|
3730
|
-
to: viem.Address | null;
|
|
3731
|
-
from: viem.Address;
|
|
3732
|
-
gas: bigint;
|
|
3733
|
-
nonce: number;
|
|
3734
|
-
value: bigint;
|
|
3735
|
-
blockHash: `0x${string}` | null;
|
|
3736
|
-
blockNumber: bigint | null;
|
|
3737
|
-
hash: viem.Hash;
|
|
3738
|
-
input: viem.Hex;
|
|
3739
|
-
transactionIndex: number | null;
|
|
3740
|
-
typeHex: viem.Hex | null;
|
|
3741
|
-
accessList?: undefined | undefined;
|
|
3742
|
-
authorizationList?: undefined | undefined;
|
|
3743
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3744
|
-
chainId?: number | undefined;
|
|
3745
|
-
yParity?: undefined | undefined;
|
|
3746
|
-
type: "legacy";
|
|
3747
|
-
gasPrice: bigint;
|
|
3748
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3749
|
-
maxFeePerGas?: undefined | undefined;
|
|
3750
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3751
|
-
isSystemTx?: undefined | undefined;
|
|
3752
|
-
mint?: undefined | undefined;
|
|
3753
|
-
sourceHash?: undefined | undefined;
|
|
3754
|
-
} | {
|
|
3755
|
-
blockHash: `0x${string}` | null;
|
|
3756
|
-
blockNumber: bigint | null;
|
|
3757
|
-
from: viem.Address;
|
|
3758
|
-
gas: bigint;
|
|
3759
|
-
hash: viem.Hash;
|
|
3760
|
-
input: viem.Hex;
|
|
3761
|
-
nonce: number;
|
|
3762
|
-
r: viem.Hex;
|
|
3763
|
-
s: viem.Hex;
|
|
3764
|
-
to: viem.Address | null;
|
|
3765
|
-
transactionIndex: number | null;
|
|
3766
|
-
typeHex: viem.Hex | null;
|
|
3767
|
-
v: bigint;
|
|
3768
|
-
value: bigint;
|
|
3769
|
-
yParity: number;
|
|
3770
|
-
accessList: viem.AccessList;
|
|
3771
|
-
authorizationList?: undefined | undefined;
|
|
3772
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3773
|
-
chainId: number;
|
|
3774
|
-
type: "eip2930";
|
|
3775
|
-
gasPrice: bigint;
|
|
3776
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3777
|
-
maxFeePerGas?: undefined | undefined;
|
|
3778
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3779
|
-
isSystemTx?: undefined | undefined;
|
|
3780
|
-
mint?: undefined | undefined;
|
|
3781
|
-
sourceHash?: undefined | undefined;
|
|
3782
|
-
} | {
|
|
3783
|
-
blockHash: `0x${string}` | null;
|
|
3784
|
-
blockNumber: bigint | null;
|
|
3785
|
-
from: viem.Address;
|
|
3786
|
-
gas: bigint;
|
|
3787
|
-
hash: viem.Hash;
|
|
3788
|
-
input: viem.Hex;
|
|
3789
|
-
nonce: number;
|
|
3790
|
-
r: viem.Hex;
|
|
3791
|
-
s: viem.Hex;
|
|
3792
|
-
to: viem.Address | null;
|
|
3793
|
-
transactionIndex: number | null;
|
|
3794
|
-
typeHex: viem.Hex | null;
|
|
3795
|
-
v: bigint;
|
|
3796
|
-
value: bigint;
|
|
3797
|
-
yParity: number;
|
|
3798
|
-
accessList: viem.AccessList;
|
|
3799
|
-
authorizationList?: undefined | undefined;
|
|
3800
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3801
|
-
chainId: number;
|
|
3802
|
-
type: "eip1559";
|
|
3803
|
-
gasPrice?: undefined | undefined;
|
|
3804
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3805
|
-
maxFeePerGas: bigint;
|
|
3806
|
-
maxPriorityFeePerGas: bigint;
|
|
3807
|
-
isSystemTx?: undefined | undefined;
|
|
3808
|
-
mint?: undefined | undefined;
|
|
3809
|
-
sourceHash?: undefined | undefined;
|
|
3810
|
-
} | {
|
|
3811
|
-
blockHash: `0x${string}` | null;
|
|
3812
|
-
blockNumber: bigint | null;
|
|
3813
|
-
from: viem.Address;
|
|
3814
|
-
gas: bigint;
|
|
3815
|
-
hash: viem.Hash;
|
|
3816
|
-
input: viem.Hex;
|
|
3817
|
-
nonce: number;
|
|
3818
|
-
r: viem.Hex;
|
|
3819
|
-
s: viem.Hex;
|
|
3820
|
-
to: viem.Address | null;
|
|
3821
|
-
transactionIndex: number | null;
|
|
3822
|
-
typeHex: viem.Hex | null;
|
|
3823
|
-
v: bigint;
|
|
3824
|
-
value: bigint;
|
|
3825
|
-
yParity: number;
|
|
3826
|
-
accessList: viem.AccessList;
|
|
3827
|
-
authorizationList?: undefined | undefined;
|
|
3828
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
3829
|
-
chainId: number;
|
|
3830
|
-
type: "eip4844";
|
|
3831
|
-
gasPrice?: undefined | undefined;
|
|
3832
|
-
maxFeePerBlobGas: bigint;
|
|
3833
|
-
maxFeePerGas: bigint;
|
|
3834
|
-
maxPriorityFeePerGas: bigint;
|
|
3835
|
-
isSystemTx?: undefined | undefined;
|
|
3836
|
-
mint?: undefined | undefined;
|
|
3837
|
-
sourceHash?: undefined | undefined;
|
|
3838
|
-
} | {
|
|
3839
|
-
blockHash: `0x${string}` | null;
|
|
3840
|
-
blockNumber: bigint | null;
|
|
3841
|
-
from: viem.Address;
|
|
3842
|
-
gas: bigint;
|
|
3843
|
-
hash: viem.Hash;
|
|
3844
|
-
input: viem.Hex;
|
|
3845
|
-
nonce: number;
|
|
3846
|
-
r: viem.Hex;
|
|
3847
|
-
s: viem.Hex;
|
|
3848
|
-
to: viem.Address | null;
|
|
3849
|
-
transactionIndex: number | null;
|
|
3850
|
-
typeHex: viem.Hex | null;
|
|
3851
|
-
v: bigint;
|
|
3852
|
-
value: bigint;
|
|
3853
|
-
yParity: number;
|
|
3854
|
-
accessList: viem.AccessList;
|
|
3855
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
3856
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3857
|
-
chainId: number;
|
|
3858
|
-
type: "eip7702";
|
|
3859
|
-
gasPrice?: undefined | undefined;
|
|
3860
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3861
|
-
maxFeePerGas: bigint;
|
|
3862
|
-
maxPriorityFeePerGas: bigint;
|
|
3863
|
-
isSystemTx?: undefined | undefined;
|
|
3864
|
-
mint?: undefined | undefined;
|
|
3865
|
-
sourceHash?: undefined | undefined;
|
|
3866
|
-
}) & {};
|
|
3867
|
-
type: "transaction";
|
|
3868
|
-
};
|
|
3869
|
-
readonly transactionReceipt: {
|
|
3870
|
-
exclude: [] | undefined;
|
|
3871
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt) => {
|
|
3872
|
-
blobGasPrice?: bigint | undefined;
|
|
3873
|
-
blobGasUsed?: bigint | undefined;
|
|
3874
|
-
blockHash: viem.Hash;
|
|
3875
|
-
blockNumber: bigint;
|
|
3876
|
-
contractAddress: viem.Address | null | undefined;
|
|
3877
|
-
cumulativeGasUsed: bigint;
|
|
3878
|
-
effectiveGasPrice: bigint;
|
|
3879
|
-
from: viem.Address;
|
|
3880
|
-
gasUsed: bigint;
|
|
3881
|
-
logs: viem.Log<bigint, number, false>[];
|
|
3882
|
-
logsBloom: viem.Hex;
|
|
3883
|
-
root?: `0x${string}` | undefined;
|
|
3884
|
-
status: "success" | "reverted";
|
|
3885
|
-
to: viem.Address | null;
|
|
3886
|
-
transactionHash: viem.Hash;
|
|
3887
|
-
transactionIndex: number;
|
|
3888
|
-
type: viem.TransactionType;
|
|
3889
|
-
l1GasPrice: bigint | null;
|
|
3890
|
-
l1GasUsed: bigint | null;
|
|
3891
|
-
l1Fee: bigint | null;
|
|
3892
|
-
l1FeeScalar: number | null;
|
|
3893
|
-
} & {};
|
|
3894
|
-
type: "transactionReceipt";
|
|
3895
|
-
};
|
|
3896
|
-
};
|
|
3897
|
-
serializers: {
|
|
3898
|
-
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
3899
|
-
};
|
|
3900
|
-
};
|
|
3901
|
-
1868: {
|
|
3902
|
-
blockExplorers: {
|
|
3903
|
-
readonly default: {
|
|
3904
|
-
readonly name: "Blockscout";
|
|
3905
|
-
readonly url: "https://soneium.blockscout.com";
|
|
3906
|
-
readonly apiUrl: "https://soneium.blockscout.com/api";
|
|
3907
|
-
};
|
|
3908
|
-
};
|
|
3909
|
-
contracts: {
|
|
3910
|
-
readonly disputeGameFactory: {
|
|
3911
|
-
readonly 1: {
|
|
3912
|
-
readonly address: "0x512a3d2c7a43bd9261d2b8e8c9c70d4bd4d503c0";
|
|
3913
|
-
};
|
|
3914
|
-
};
|
|
3915
|
-
readonly l2OutputOracle: {
|
|
3916
|
-
readonly 1: {
|
|
3917
|
-
readonly address: "0x0000000000000000000000000000000000000000";
|
|
3918
|
-
};
|
|
3919
|
-
};
|
|
3920
|
-
readonly portal: {
|
|
3921
|
-
readonly 1: {
|
|
3922
|
-
readonly address: "0x88e529a6ccd302c948689cd5156c83d4614fae92";
|
|
3923
|
-
readonly blockCreated: 7061266;
|
|
3924
|
-
};
|
|
3925
|
-
};
|
|
3926
|
-
readonly l1StandardBridge: {
|
|
3927
|
-
readonly 1: {
|
|
3928
|
-
readonly address: "0xeb9bf100225c214efc3e7c651ebbadcf85177607";
|
|
3929
|
-
readonly blockCreated: 7061266;
|
|
3930
|
-
};
|
|
3931
|
-
};
|
|
3932
|
-
readonly multicall3: {
|
|
3933
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3934
|
-
readonly blockCreated: 1;
|
|
3935
|
-
};
|
|
3936
|
-
readonly gasPriceOracle: {
|
|
3937
|
-
readonly address: "0x420000000000000000000000000000000000000F";
|
|
3938
|
-
};
|
|
3939
|
-
readonly l1Block: {
|
|
3940
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
3941
|
-
};
|
|
3942
|
-
readonly l2CrossDomainMessenger: {
|
|
3943
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
3944
|
-
};
|
|
3945
|
-
readonly l2Erc721Bridge: {
|
|
3946
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
3947
|
-
};
|
|
3948
|
-
readonly l2StandardBridge: {
|
|
3949
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
3950
|
-
};
|
|
3951
|
-
readonly l2ToL1MessagePasser: {
|
|
3952
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
3953
|
-
};
|
|
3954
|
-
};
|
|
3955
|
-
id: 1868;
|
|
3956
|
-
name: "Soneium Mainnet";
|
|
3957
|
-
nativeCurrency: {
|
|
3958
|
-
readonly name: "Ether";
|
|
3959
|
-
readonly symbol: "ETH";
|
|
3960
|
-
readonly decimals: 18;
|
|
3961
|
-
};
|
|
3962
|
-
rpcUrls: {
|
|
3963
|
-
readonly default: {
|
|
3964
|
-
readonly http: readonly ["https://rpc.soneium.org"];
|
|
3965
|
-
};
|
|
3966
|
-
};
|
|
3967
|
-
sourceId: 1;
|
|
3968
|
-
testnet?: boolean | undefined | undefined;
|
|
3969
|
-
custom?: Record<string, unknown> | undefined;
|
|
3970
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
3971
|
-
formatters: {
|
|
3972
|
-
readonly block: {
|
|
3973
|
-
exclude: [] | undefined;
|
|
3974
|
-
format: (args: viem_chains.OpStackRpcBlock) => {
|
|
3975
|
-
baseFeePerGas: bigint | null;
|
|
3976
|
-
blobGasUsed: bigint;
|
|
3977
|
-
difficulty: bigint;
|
|
3978
|
-
excessBlobGas: bigint;
|
|
3979
|
-
extraData: viem.Hex;
|
|
3980
|
-
gasLimit: bigint;
|
|
3981
|
-
gasUsed: bigint;
|
|
3982
|
-
hash: `0x${string}` | null;
|
|
3983
|
-
logsBloom: `0x${string}` | null;
|
|
3984
|
-
miner: viem.Address;
|
|
3985
|
-
mixHash: viem.Hash;
|
|
3986
|
-
nonce: `0x${string}` | null;
|
|
3987
|
-
number: bigint | null;
|
|
3988
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
3989
|
-
parentHash: viem.Hash;
|
|
3990
|
-
receiptsRoot: viem.Hex;
|
|
3991
|
-
sealFields: viem.Hex[];
|
|
3992
|
-
sha3Uncles: viem.Hash;
|
|
3993
|
-
size: bigint;
|
|
3994
|
-
stateRoot: viem.Hash;
|
|
3995
|
-
timestamp: bigint;
|
|
3996
|
-
totalDifficulty: bigint | null;
|
|
3997
|
-
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
3998
|
-
transactionsRoot: viem.Hash;
|
|
3999
|
-
uncles: viem.Hash[];
|
|
4000
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
4001
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
4002
|
-
} & {};
|
|
4003
|
-
type: "block";
|
|
4004
|
-
};
|
|
4005
|
-
readonly transaction: {
|
|
4006
|
-
exclude: [] | undefined;
|
|
4007
|
-
format: (args: viem_chains.OpStackRpcTransaction) => ({
|
|
4008
|
-
blockHash: `0x${string}` | null;
|
|
4009
|
-
blockNumber: bigint | null;
|
|
4010
|
-
from: viem.Address;
|
|
4011
|
-
gas: bigint;
|
|
4012
|
-
hash: viem.Hash;
|
|
4013
|
-
input: viem.Hex;
|
|
4014
|
-
nonce: number;
|
|
4015
|
-
r: viem.Hex;
|
|
4016
|
-
s: viem.Hex;
|
|
4017
|
-
to: viem.Address | null;
|
|
4018
|
-
transactionIndex: number | null;
|
|
4019
|
-
typeHex: viem.Hex | null;
|
|
4020
|
-
v: bigint;
|
|
4021
|
-
value: bigint;
|
|
4022
|
-
yParity: number;
|
|
4023
|
-
gasPrice?: undefined | undefined;
|
|
4024
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
4025
|
-
maxFeePerGas: bigint;
|
|
4026
|
-
maxPriorityFeePerGas: bigint;
|
|
4027
|
-
isSystemTx?: boolean;
|
|
4028
|
-
mint?: bigint | undefined | undefined;
|
|
4029
|
-
sourceHash: viem.Hex;
|
|
4030
|
-
type: "deposit";
|
|
4031
|
-
} | {
|
|
4032
|
-
r: viem.Hex;
|
|
4033
|
-
s: viem.Hex;
|
|
4034
|
-
v: bigint;
|
|
4035
|
-
to: viem.Address | null;
|
|
4036
|
-
from: viem.Address;
|
|
4037
|
-
gas: bigint;
|
|
4038
|
-
nonce: number;
|
|
4039
|
-
value: bigint;
|
|
4040
|
-
blockHash: `0x${string}` | null;
|
|
4041
|
-
blockNumber: bigint | null;
|
|
4042
|
-
hash: viem.Hash;
|
|
4043
|
-
input: viem.Hex;
|
|
4044
|
-
transactionIndex: number | null;
|
|
4045
|
-
typeHex: viem.Hex | null;
|
|
4046
|
-
accessList?: undefined | undefined;
|
|
4047
|
-
authorizationList?: undefined | undefined;
|
|
4048
|
-
blobVersionedHashes?: undefined | undefined;
|
|
4049
|
-
chainId?: number | undefined;
|
|
4050
|
-
yParity?: undefined | undefined;
|
|
4051
|
-
type: "legacy";
|
|
4052
|
-
gasPrice: bigint;
|
|
4053
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
4054
|
-
maxFeePerGas?: undefined | undefined;
|
|
4055
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
4056
|
-
isSystemTx?: undefined | undefined;
|
|
4057
|
-
mint?: undefined | undefined;
|
|
4058
|
-
sourceHash?: undefined | undefined;
|
|
4059
|
-
} | {
|
|
4060
|
-
blockHash: `0x${string}` | null;
|
|
4061
|
-
blockNumber: bigint | null;
|
|
4062
|
-
from: viem.Address;
|
|
4063
|
-
gas: bigint;
|
|
4064
|
-
hash: viem.Hash;
|
|
4065
|
-
input: viem.Hex;
|
|
4066
|
-
nonce: number;
|
|
4067
|
-
r: viem.Hex;
|
|
4068
|
-
s: viem.Hex;
|
|
4069
|
-
to: viem.Address | null;
|
|
4070
|
-
transactionIndex: number | null;
|
|
4071
|
-
typeHex: viem.Hex | null;
|
|
4072
|
-
v: bigint;
|
|
4073
|
-
value: bigint;
|
|
4074
|
-
yParity: number;
|
|
4075
|
-
accessList: viem.AccessList;
|
|
4076
|
-
authorizationList?: undefined | undefined;
|
|
4077
|
-
blobVersionedHashes?: undefined | undefined;
|
|
4078
|
-
chainId: number;
|
|
4079
|
-
type: "eip2930";
|
|
4080
|
-
gasPrice: bigint;
|
|
4081
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
4082
|
-
maxFeePerGas?: undefined | undefined;
|
|
4083
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
4084
|
-
isSystemTx?: undefined | undefined;
|
|
4085
|
-
mint?: undefined | undefined;
|
|
4086
|
-
sourceHash?: undefined | undefined;
|
|
4087
|
-
} | {
|
|
4088
|
-
blockHash: `0x${string}` | null;
|
|
4089
|
-
blockNumber: bigint | null;
|
|
4090
|
-
from: viem.Address;
|
|
4091
|
-
gas: bigint;
|
|
4092
|
-
hash: viem.Hash;
|
|
4093
|
-
input: viem.Hex;
|
|
4094
|
-
nonce: number;
|
|
4095
|
-
r: viem.Hex;
|
|
4096
|
-
s: viem.Hex;
|
|
4097
|
-
to: viem.Address | null;
|
|
4098
|
-
transactionIndex: number | null;
|
|
4099
|
-
typeHex: viem.Hex | null;
|
|
4100
|
-
v: bigint;
|
|
4101
|
-
value: bigint;
|
|
4102
|
-
yParity: number;
|
|
4103
|
-
accessList: viem.AccessList;
|
|
4104
|
-
authorizationList?: undefined | undefined;
|
|
4105
|
-
blobVersionedHashes?: undefined | undefined;
|
|
4106
|
-
chainId: number;
|
|
4107
|
-
type: "eip1559";
|
|
4108
|
-
gasPrice?: undefined | undefined;
|
|
4109
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
4110
|
-
maxFeePerGas: bigint;
|
|
4111
|
-
maxPriorityFeePerGas: bigint;
|
|
4112
|
-
isSystemTx?: undefined | undefined;
|
|
4113
|
-
mint?: undefined | undefined;
|
|
4114
|
-
sourceHash?: undefined | undefined;
|
|
4115
|
-
} | {
|
|
4116
|
-
blockHash: `0x${string}` | null;
|
|
4117
|
-
blockNumber: bigint | null;
|
|
4118
|
-
from: viem.Address;
|
|
4119
|
-
gas: bigint;
|
|
4120
|
-
hash: viem.Hash;
|
|
4121
|
-
input: viem.Hex;
|
|
4122
|
-
nonce: number;
|
|
4123
|
-
r: viem.Hex;
|
|
4124
|
-
s: viem.Hex;
|
|
4125
|
-
to: viem.Address | null;
|
|
4126
|
-
transactionIndex: number | null;
|
|
4127
|
-
typeHex: viem.Hex | null;
|
|
4128
|
-
v: bigint;
|
|
4129
|
-
value: bigint;
|
|
4130
|
-
yParity: number;
|
|
4131
|
-
accessList: viem.AccessList;
|
|
4132
|
-
authorizationList?: undefined | undefined;
|
|
4133
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
4134
|
-
chainId: number;
|
|
4135
|
-
type: "eip4844";
|
|
4136
|
-
gasPrice?: undefined | undefined;
|
|
4137
|
-
maxFeePerBlobGas: bigint;
|
|
4138
|
-
maxFeePerGas: bigint;
|
|
4139
|
-
maxPriorityFeePerGas: bigint;
|
|
4140
|
-
isSystemTx?: undefined | undefined;
|
|
4141
|
-
mint?: undefined | undefined;
|
|
4142
|
-
sourceHash?: undefined | undefined;
|
|
4143
|
-
} | {
|
|
4144
|
-
blockHash: `0x${string}` | null;
|
|
4145
|
-
blockNumber: bigint | null;
|
|
4146
|
-
from: viem.Address;
|
|
4147
|
-
gas: bigint;
|
|
4148
|
-
hash: viem.Hash;
|
|
4149
|
-
input: viem.Hex;
|
|
4150
|
-
nonce: number;
|
|
4151
|
-
r: viem.Hex;
|
|
4152
|
-
s: viem.Hex;
|
|
4153
|
-
to: viem.Address | null;
|
|
4154
|
-
transactionIndex: number | null;
|
|
4155
|
-
typeHex: viem.Hex | null;
|
|
4156
|
-
v: bigint;
|
|
4157
|
-
value: bigint;
|
|
4158
|
-
yParity: number;
|
|
4159
|
-
accessList: viem.AccessList;
|
|
4160
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
4161
|
-
blobVersionedHashes?: undefined | undefined;
|
|
4162
|
-
chainId: number;
|
|
4163
|
-
type: "eip7702";
|
|
4164
|
-
gasPrice?: undefined | undefined;
|
|
4165
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
4166
|
-
maxFeePerGas: bigint;
|
|
4167
|
-
maxPriorityFeePerGas: bigint;
|
|
4168
|
-
isSystemTx?: undefined | undefined;
|
|
4169
|
-
mint?: undefined | undefined;
|
|
4170
|
-
sourceHash?: undefined | undefined;
|
|
4171
|
-
}) & {};
|
|
4172
|
-
type: "transaction";
|
|
4173
|
-
};
|
|
4174
|
-
readonly transactionReceipt: {
|
|
4175
|
-
exclude: [] | undefined;
|
|
4176
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt) => {
|
|
4177
|
-
blobGasPrice?: bigint | undefined;
|
|
4178
|
-
blobGasUsed?: bigint | undefined;
|
|
4179
|
-
blockHash: viem.Hash;
|
|
4180
|
-
blockNumber: bigint;
|
|
4181
|
-
contractAddress: viem.Address | null | undefined;
|
|
4182
|
-
cumulativeGasUsed: bigint;
|
|
4183
|
-
effectiveGasPrice: bigint;
|
|
4184
|
-
from: viem.Address;
|
|
4185
|
-
gasUsed: bigint;
|
|
4186
|
-
logs: viem.Log<bigint, number, false>[];
|
|
4187
|
-
logsBloom: viem.Hex;
|
|
4188
|
-
root?: `0x${string}` | undefined;
|
|
4189
|
-
status: "success" | "reverted";
|
|
4190
|
-
to: viem.Address | null;
|
|
4191
|
-
transactionHash: viem.Hash;
|
|
4192
|
-
transactionIndex: number;
|
|
4193
|
-
type: viem.TransactionType;
|
|
4194
|
-
l1GasPrice: bigint | null;
|
|
4195
|
-
l1GasUsed: bigint | null;
|
|
4196
|
-
l1Fee: bigint | null;
|
|
4197
|
-
l1FeeScalar: number | null;
|
|
4198
|
-
} & {};
|
|
4199
|
-
type: "transactionReceipt";
|
|
4200
|
-
};
|
|
4201
|
-
};
|
|
4202
|
-
serializers: {
|
|
4203
|
-
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
4204
|
-
};
|
|
4205
|
-
};
|
|
4206
|
-
};
|
|
493
|
+
declare const ChainList: Record<valueOf<typeof ChainId>, Chain>;
|
|
4207
494
|
|
|
4208
495
|
type SupportedChainIds = (typeof ChainId)[keyof typeof ChainId];
|
|
4209
496
|
/**
|
|
@@ -4225,10 +512,16 @@ declare const publicRPCs: {
|
|
|
4225
512
|
readonly 59144: "https://rpc.linea.build";
|
|
4226
513
|
};
|
|
4227
514
|
declare const alchemySupportedChainIds: (1 | 10 | 56 | 100 | 137 | 146 | 250 | 324 | 1101 | 4002 | 5000 | 8453 | 42161 | 42220 | 43113 | 43114 | 59144 | 80002 | 84532 | 421614 | 534351 | 534352 | 11155111 | 11155420 | 1088 | 57073 | 1666600000 | 1868)[];
|
|
4228
|
-
declare const getNetworkEnv: (chainId: SupportedChainIds) => "
|
|
515
|
+
declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_BNB" | "RPC_CELO" | "RPC_METIS" | "RPC_BASE" | "RPC_MAINNET" | "RPC_POLYGON" | "RPC_POLYGON_AMOY" | "RPC_AVALANCHE" | "RPC_AVALANCHE_FUJI" | "RPC_ARBITRUM" | "RPC_ARBITRUM_SEPOLIA" | "RPC_FANTOM" | "RPC_FANTOM_TESTNET" | "RPC_OPTIMISM" | "RPC_OPTIMISM_SEPOLIA" | "RPC_HARMONY" | "RPC_SEPOLIA" | "RPC_SCROLL" | "RPC_SCROLL_SEPOLIA" | "RPC_SONIC" | "RPC_MANTLE" | "RPC_BASE_SEPOLIA" | "RPC_GNOSIS" | "RPC_ZKEVM" | "RPC_ZKSYNC" | "RPC_LINEA" | "RPC_INK" | "RPC_SONEIUM";
|
|
4229
516
|
declare function getExplicitRPC(chainId: SupportedChainIds): string;
|
|
4230
517
|
declare function getAlchemyRPC(chainId: SupportedChainIds, alchemyKey: string): string;
|
|
4231
|
-
declare function getPublicRpc(chainId: SupportedChainIds): "https://
|
|
518
|
+
declare function getPublicRpc(chainId: SupportedChainIds): "https://mainnet.era.zksync.io" | "https://api.avax.network/ext/bc/C/rpc" | "https://rpc.linea.build" | "https://rpc.scroll.io" | "https://andromeda.metis.io/?owner=1088" | "https://eth.llamarpc.com" | "https://polygon.llamarpc.com" | "https://base.llamarpc.com" | "https://binance.llamarpc.com" | "https://rpc.ankr.com/gnosis" | "https://rpc.ftm.tools";
|
|
519
|
+
/**
|
|
520
|
+
* HyperRPCs are extremely fast **but** they only support a subset of the standard.
|
|
521
|
+
* Therefore they are not used in the generalized getClient atm.
|
|
522
|
+
* @param chainId
|
|
523
|
+
*/
|
|
524
|
+
declare function getHyperRPC(chainId: number): string;
|
|
4232
525
|
declare function getQuicknodeRpc(chainId: SupportedChainIds, options: {
|
|
4233
526
|
quicknodeEndpointName: string;
|
|
4234
527
|
quicknodeToken: string;
|
|
@@ -4349,7 +642,7 @@ declare function flashbotsOnFetchRequest(account: Account, relay?: string): (req
|
|
|
4349
642
|
signal?: AbortSignal | null;
|
|
4350
643
|
window?: null;
|
|
4351
644
|
} | undefined>;
|
|
4352
|
-
declare function flashbotsClientExtension<T extends WalletClient<HttpTransport<undefined, false>, Chain, Account>>(client: T): {
|
|
645
|
+
declare function flashbotsClientExtension<T extends WalletClient<HttpTransport<undefined, false>, Chain$1, Account>>(client: T): {
|
|
4353
646
|
sendPrivateTransaction(args: TransactionRequest, preferences?: {
|
|
4354
647
|
fast: boolean;
|
|
4355
648
|
privacy: {
|
|
@@ -4399,14 +692,16 @@ declare const alchemyNetworkMap: {
|
|
|
4399
692
|
readonly 1088: "metis-mainnet";
|
|
4400
693
|
readonly 1101: "polygonzkevm-mainnet";
|
|
4401
694
|
readonly 1301: "unichain-sepolia";
|
|
695
|
+
readonly 1315: "story-aeneid";
|
|
4402
696
|
readonly 1328: "sei-testnet";
|
|
4403
697
|
readonly 1329: "sei-mainnet";
|
|
698
|
+
readonly 1514: "story-mainnet";
|
|
4404
699
|
readonly 1868: "soneium-mainnet";
|
|
4405
700
|
readonly 1946: "soneium-minato";
|
|
4406
701
|
readonly 2020: "ronin-mainnet";
|
|
4407
702
|
readonly 2021: "ronin-saigon";
|
|
4408
703
|
readonly 2442: "polygonzkevm-cardona";
|
|
4409
|
-
readonly
|
|
704
|
+
readonly 2523: "frax-sepolia";
|
|
4410
705
|
readonly 2741: "abstract-mainnet";
|
|
4411
706
|
readonly 4002: "fantom-testnet";
|
|
4412
707
|
readonly 4157: "crossfi-testnet";
|
|
@@ -4418,10 +713,11 @@ declare const alchemyNetworkMap: {
|
|
|
4418
713
|
readonly 5371: "settlus-mainnet";
|
|
4419
714
|
readonly 5373: "settlus-septestnet";
|
|
4420
715
|
readonly 5611: "opbnb-testnet";
|
|
716
|
+
readonly 6342: "megaeth-testnet";
|
|
717
|
+
readonly 6900: "anime-sepolia";
|
|
4421
718
|
readonly 7000: "zetachain-mainnet";
|
|
4422
719
|
readonly 7001: "zetachain-testnet";
|
|
4423
720
|
readonly 8008: "polynomial-mainnet";
|
|
4424
|
-
readonly 8009: "polynomial-sepolia";
|
|
4425
721
|
readonly 8453: "base-mainnet";
|
|
4426
722
|
readonly 10143: "monad-testnet";
|
|
4427
723
|
readonly 10200: "gnosis-chiado";
|
|
@@ -4443,9 +739,9 @@ declare const alchemyNetworkMap: {
|
|
|
4443
739
|
readonly 57073: "ink-mainnet";
|
|
4444
740
|
readonly 59141: "linea-sepolia";
|
|
4445
741
|
readonly 59144: "linea-mainnet";
|
|
4446
|
-
readonly
|
|
4447
|
-
readonly 63157: "geist-mainnet";
|
|
742
|
+
readonly 69000: "anime-mainnet";
|
|
4448
743
|
readonly 80002: "polygon-amoy";
|
|
744
|
+
readonly 80008: "polynomial-sepolia";
|
|
4449
745
|
readonly 80069: "berachain-bepolia";
|
|
4450
746
|
readonly 80094: "berachain-mainnet";
|
|
4451
747
|
readonly 81457: "blast-mainnet";
|
|
@@ -4454,7 +750,6 @@ declare const alchemyNetworkMap: {
|
|
|
4454
750
|
readonly 534351: "scroll-sepolia";
|
|
4455
751
|
readonly 534352: "scroll-mainnet";
|
|
4456
752
|
readonly 560048: "eth-hoodi";
|
|
4457
|
-
readonly 631571: "geist-polter";
|
|
4458
753
|
readonly 685685: "gensyn-testnet";
|
|
4459
754
|
readonly 763373: "ink-sepolia";
|
|
4460
755
|
readonly 7777777: "zora-mainnet";
|
|
@@ -4466,6 +761,7 @@ declare const alchemyNetworkMap: {
|
|
|
4466
761
|
readonly 994873017: "lumia-prism";
|
|
4467
762
|
readonly 999999999: "zora-sepolia";
|
|
4468
763
|
readonly 1952959480: "lumia-testnet";
|
|
764
|
+
readonly null: "sui-testnet";
|
|
4469
765
|
};
|
|
4470
766
|
|
|
4471
767
|
declare const quicknodeNetworkMap: {
|
|
@@ -4955,6 +1251,10 @@ declare const routescanExplorers: {
|
|
|
4955
1251
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/987/etherscan";
|
|
4956
1252
|
readonly explorer: "987.routescan.io";
|
|
4957
1253
|
};
|
|
1254
|
+
readonly 999: {
|
|
1255
|
+
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/999/etherscan";
|
|
1256
|
+
readonly explorer: "999.routescan.io";
|
|
1257
|
+
};
|
|
4958
1258
|
readonly 1010: {
|
|
4959
1259
|
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/1010/etherscan";
|
|
4960
1260
|
readonly explorer: "1010.routescan.io";
|
|
@@ -5055,6 +1355,10 @@ declare const routescanExplorers: {
|
|
|
5055
1355
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/3636/etherscan";
|
|
5056
1356
|
readonly explorer: "3636.routescan.io";
|
|
5057
1357
|
};
|
|
1358
|
+
readonly 3637: {
|
|
1359
|
+
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/3637/etherscan";
|
|
1360
|
+
readonly explorer: "3637.routescan.io";
|
|
1361
|
+
};
|
|
5058
1362
|
readonly 3939: {
|
|
5059
1363
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/3939/etherscan";
|
|
5060
1364
|
readonly explorer: "3939.routescan.io";
|
|
@@ -5515,6 +1819,10 @@ declare const routescanExplorers: {
|
|
|
5515
1819
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/11155931/etherscan";
|
|
5516
1820
|
readonly explorer: "11155931.routescan.io";
|
|
5517
1821
|
};
|
|
1822
|
+
readonly 12345678: {
|
|
1823
|
+
readonly api: "https://api.routescan.io/v2/network/mainnet/evm/12345678/etherscan";
|
|
1824
|
+
readonly explorer: "12345678.routescan.io";
|
|
1825
|
+
};
|
|
5518
1826
|
readonly 13068200: {
|
|
5519
1827
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/13068200/etherscan";
|
|
5520
1828
|
readonly explorer: "13068200.routescan.io";
|
|
@@ -5978,6 +2286,11 @@ declare const chainlinkFeeds: {
|
|
|
5978
2286
|
readonly proxyAddress: "0xee10fE5E7aa92dd7b136597449c3d5813cFC5F18";
|
|
5979
2287
|
readonly decimals: 8;
|
|
5980
2288
|
readonly name: "SKY / USD";
|
|
2289
|
+
}, {
|
|
2290
|
+
readonly contractAddress: "0x646772c691b2a84CA889f55253C560D38E3766e1";
|
|
2291
|
+
readonly proxyAddress: "0xF0d9bb015Cd7BfAb877B7156146dc09Bf461370d";
|
|
2292
|
+
readonly decimals: 8;
|
|
2293
|
+
readonly name: "USD1 / USD";
|
|
5981
2294
|
}, {
|
|
5982
2295
|
readonly contractAddress: "0x64DEE1Bc46e817ed93dEA4815F071B20eD218E39";
|
|
5983
2296
|
readonly proxyAddress: "0xa81FE04086865e63E12dD3776978E49DEEa2ea4e";
|
|
@@ -6044,6 +2357,11 @@ declare const chainlinkFeeds: {
|
|
|
6044
2357
|
readonly proxyAddress: "0x34ad75691e25A8E9b681AAA85dbeB7ef6561B42c";
|
|
6045
2358
|
readonly decimals: 8;
|
|
6046
2359
|
readonly name: "USR / USD";
|
|
2360
|
+
}, {
|
|
2361
|
+
readonly contractAddress: "0x78281937B869bAaDedDdA3d62fC4b6Fc0a196b61";
|
|
2362
|
+
readonly proxyAddress: "0x2D27d9e1b74936D8E83c4BA118F09A4c4a897f62";
|
|
2363
|
+
readonly decimals: 8;
|
|
2364
|
+
readonly name: "SXT / USD";
|
|
6047
2365
|
}, {
|
|
6048
2366
|
readonly contractAddress: "0x786ba26Ee47097E6A5086E742aEf5Efbc6A93447";
|
|
6049
2367
|
readonly proxyAddress: "0x9656D3A00402bD9c18EeF89b29ca6810734ABCAd";
|
|
@@ -6296,6 +2614,11 @@ declare const chainlinkFeeds: {
|
|
|
6296
2614
|
readonly proxyAddress: "0xfdFD9C85aD200c506Cf9e21F1FD8dd01932FBB23";
|
|
6297
2615
|
readonly decimals: 8;
|
|
6298
2616
|
readonly name: "WBTC / BTC";
|
|
2617
|
+
}, {
|
|
2618
|
+
readonly contractAddress: "0xA618f119504455762c9bBbcE4aC9EE7fde457d05";
|
|
2619
|
+
readonly proxyAddress: null;
|
|
2620
|
+
readonly decimals: 0;
|
|
2621
|
+
readonly name: "sUSDe-USDe Exchange Rate";
|
|
6299
2622
|
}, {
|
|
6300
2623
|
readonly contractAddress: "0xA618f119504455762c9bBbcE4aC9EE7fde457d05";
|
|
6301
2624
|
readonly proxyAddress: null;
|
|
@@ -6326,6 +2649,11 @@ declare const chainlinkFeeds: {
|
|
|
6326
2649
|
readonly proxyAddress: null;
|
|
6327
2650
|
readonly decimals: 18;
|
|
6328
2651
|
readonly name: "CELO/USD-RefPrice-DF-stream-EthereumMainnet-001";
|
|
2652
|
+
}, {
|
|
2653
|
+
readonly contractAddress: "0xA618f119504455762c9bBbcE4aC9EE7fde457d05";
|
|
2654
|
+
readonly proxyAddress: null;
|
|
2655
|
+
readonly decimals: 18;
|
|
2656
|
+
readonly name: "CAKE/USD-RefPrice-DF-stream-EthereumMainnet-001";
|
|
6329
2657
|
}, {
|
|
6330
2658
|
readonly contractAddress: "0xA618f119504455762c9bBbcE4aC9EE7fde457d05";
|
|
6331
2659
|
readonly proxyAddress: null;
|
|
@@ -6361,6 +2689,11 @@ declare const chainlinkFeeds: {
|
|
|
6361
2689
|
readonly proxyAddress: null;
|
|
6362
2690
|
readonly decimals: 18;
|
|
6363
2691
|
readonly name: "USDC/USD-RefPrice-DF-stream-EthereumMainnet-001";
|
|
2692
|
+
}, {
|
|
2693
|
+
readonly contractAddress: "0xA674a0fD742F37BD5077AFc90D1E82485c91989C";
|
|
2694
|
+
readonly proxyAddress: "0x04F84020Fdf10d9ee64D1dcC2986EDF2F556DA11";
|
|
2695
|
+
readonly decimals: 8;
|
|
2696
|
+
readonly name: "EURC / USD";
|
|
6364
2697
|
}, {
|
|
6365
2698
|
readonly contractAddress: "0xA9845307Bb5F5637B136Ca70914746d1bb7d402a";
|
|
6366
2699
|
readonly proxyAddress: "0x14e613AC84a31f709eadbdF89C6CC390fDc9540A";
|
|
@@ -6790,6 +3123,11 @@ declare const chainlinkFeeds: {
|
|
|
6790
3123
|
readonly proxyAddress: "0x7f99817d87baD03ea21E05112Ca799d715730efe";
|
|
6791
3124
|
readonly decimals: 8;
|
|
6792
3125
|
readonly name: "SUSD / USD";
|
|
3126
|
+
}, {
|
|
3127
|
+
readonly contractAddress: "0x193285B1b49A085EbE60A4764Cd69525c4BF031B";
|
|
3128
|
+
readonly proxyAddress: "0x0805fAA94F056C06c2a69e115Aa7633EfD3efDca";
|
|
3129
|
+
readonly decimals: 8;
|
|
3130
|
+
readonly name: "ALETH / USD";
|
|
6793
3131
|
}, {
|
|
6794
3132
|
readonly contractAddress: "0x19BcA7C81f3ed561a49326b78468EaC64D0E8F2a";
|
|
6795
3133
|
readonly proxyAddress: "0xee35A95c9a064491531493D8b380bC40A4CCd0Da";
|
|
@@ -6895,11 +3233,6 @@ declare const chainlinkFeeds: {
|
|
|
6895
3233
|
readonly proxyAddress: "0x89178957E9bD07934d7792fFc0CF39f11c8C2B1F";
|
|
6896
3234
|
readonly decimals: 8;
|
|
6897
3235
|
readonly name: "APE / USD";
|
|
6898
|
-
}, {
|
|
6899
|
-
readonly contractAddress: "0x397c2082dA7A0962A4FBF14e62E72dbCefB7a7Dc";
|
|
6900
|
-
readonly proxyAddress: "0x1520874FC216f5F07E03607303Df2Fda6C3Fc203";
|
|
6901
|
-
readonly decimals: 8;
|
|
6902
|
-
readonly name: "ZIL / USD";
|
|
6903
3236
|
}, {
|
|
6904
3237
|
readonly contractAddress: "0x3E313e778dA811F79A66570b8703c66204112Dfd";
|
|
6905
3238
|
readonly proxyAddress: "0x34E0E85CeEc6be6146c4f0115769a29a9539222e";
|
|
@@ -6935,6 +3268,11 @@ declare const chainlinkFeeds: {
|
|
|
6935
3268
|
readonly proxyAddress: "0x607b417DF51e0E1ed3A12fDb7FC0e8307ED250F3";
|
|
6936
3269
|
readonly decimals: 8;
|
|
6937
3270
|
readonly name: "MKR / USD";
|
|
3271
|
+
}, {
|
|
3272
|
+
readonly contractAddress: "0x491A63E35688F90780fE57610679D0cfb91a43Fe";
|
|
3273
|
+
readonly proxyAddress: "0x30F6ffb911ac7B9aDF471f28366ce1826C05776e";
|
|
3274
|
+
readonly decimals: 8;
|
|
3275
|
+
readonly name: "USD1 / USD";
|
|
6938
3276
|
}, {
|
|
6939
3277
|
readonly contractAddress: "0x4F6dFDFd4d68F68b2692E79f9e94796fC8015770";
|
|
6940
3278
|
readonly proxyAddress: "0x0D276FC14719f9292D5C1eA2198673d1f4269246";
|
|
@@ -7190,6 +3528,11 @@ declare const chainlinkFeeds: {
|
|
|
7190
3528
|
readonly proxyAddress: "0xCb93226806156b03c8896bbD1cd5e4174cdb0806";
|
|
7191
3529
|
readonly decimals: 18;
|
|
7192
3530
|
readonly name: "ynETHx / ETH Exchange Rate";
|
|
3531
|
+
}, {
|
|
3532
|
+
readonly contractAddress: "0xA0aDEfAD7c8246E2BFaD900dC28539b8C0DC5703";
|
|
3533
|
+
readonly proxyAddress: "0x1520874FC216f5F07E03607303Df2Fda6C3Fc203";
|
|
3534
|
+
readonly decimals: 8;
|
|
3535
|
+
readonly name: "ZIL / USD";
|
|
7193
3536
|
}, {
|
|
7194
3537
|
readonly contractAddress: "0xA2f199CDb286C716b4315Ee216192d8BDE617611";
|
|
7195
3538
|
readonly proxyAddress: "0xf37c76163b2918bB4533579D449524F8542E64AD";
|
|
@@ -7666,6 +4009,11 @@ declare const chainlinkFeeds: {
|
|
|
7666
4009
|
readonly proxyAddress: "0xf369A13E7f2449E58DdE8302F008eE9131f8d859";
|
|
7667
4010
|
readonly decimals: 18;
|
|
7668
4011
|
readonly name: "XVS / BNB";
|
|
4012
|
+
}, {
|
|
4013
|
+
readonly contractAddress: "0x48dB0aDEABFaCc84d567CD520e48c1F677d05311";
|
|
4014
|
+
readonly proxyAddress: "0xaD8b4e59A7f25B68945fAf0f3a3EAF027832FFB0";
|
|
4015
|
+
readonly decimals: 8;
|
|
4016
|
+
readonly name: "USD1 / USD";
|
|
7669
4017
|
}, {
|
|
7670
4018
|
readonly contractAddress: "0x4A406c886CEABcc54201ECa1fF1b84c1a62623E2";
|
|
7671
4019
|
readonly proxyAddress: "0xD5c40f5144848Bd4EF08a9605d860e727b991513";
|
|
@@ -7866,6 +4214,11 @@ declare const chainlinkFeeds: {
|
|
|
7866
4214
|
readonly proxyAddress: "0x6b25F7f189c3f26d3caC43b754578b67Fc8d952A";
|
|
7867
4215
|
readonly decimals: 8;
|
|
7868
4216
|
readonly name: "MS / USD";
|
|
4217
|
+
}, {
|
|
4218
|
+
readonly contractAddress: "0x91d5fFD8e7060a137925ceD9ad80Dd1979254107";
|
|
4219
|
+
readonly proxyAddress: "0xE8ed18E29402CD223bC5B73D30e40CCdf7b72986";
|
|
4220
|
+
readonly decimals: 8;
|
|
4221
|
+
readonly name: "USR / USD";
|
|
7869
4222
|
}, {
|
|
7870
4223
|
readonly contractAddress: "0x923f7aE6BC5FA488D82cFD9130ECE95cF6c975f4";
|
|
7871
4224
|
readonly proxyAddress: "0x93A67D414896A280bF8FFB3b389fE3686E014fda";
|
|
@@ -9224,6 +5577,11 @@ declare const chainlinkFeeds: {
|
|
|
9224
5577
|
readonly proxyAddress: "0xdA49fdf6a5606Ca7FF180a9B71928Db01a00b0a8";
|
|
9225
5578
|
readonly decimals: 18;
|
|
9226
5579
|
readonly name: "wstkscBTC / stkscBTC Exchange Rate";
|
|
5580
|
+
}, {
|
|
5581
|
+
readonly contractAddress: "0x7392f6179bda7eB9CAA608963544aA7a914D1fb9";
|
|
5582
|
+
readonly proxyAddress: "0x21f037F67946A199b1DBF1Cb7DFa21bFde477196";
|
|
5583
|
+
readonly decimals: 18;
|
|
5584
|
+
readonly name: "xSolvBTC / SolvBTC Exchange Rate";
|
|
9227
5585
|
}, {
|
|
9228
5586
|
readonly contractAddress: "0x7fe2ADDE154eB97ad68D5aD70328a1DB13701Bc2";
|
|
9229
5587
|
readonly proxyAddress: "0x824364077993847f71293B24ccA8567c00c2de11";
|
|
@@ -9249,6 +5607,11 @@ declare const chainlinkFeeds: {
|
|
|
9249
5607
|
readonly proxyAddress: "0xACE5e348a341a740004304c2c228Af1A4581920F";
|
|
9250
5608
|
readonly decimals: 8;
|
|
9251
5609
|
readonly name: "SCUSD / USD";
|
|
5610
|
+
}, {
|
|
5611
|
+
readonly contractAddress: "0xA0259d0e5f4C451326921Ef9B990A52403F9C216";
|
|
5612
|
+
readonly proxyAddress: "0x0fceF1123FDBEdC89a0189B15D35B7A33B7694c0";
|
|
5613
|
+
readonly decimals: 8;
|
|
5614
|
+
readonly name: "EUR / USD";
|
|
9252
5615
|
}, {
|
|
9253
5616
|
readonly contractAddress: "0xB70b802953462312A47c857b940991108F8d43De";
|
|
9254
5617
|
readonly proxyAddress: "0x790181e93e9F4Eedb5b864860C12e4d2CffFe73B";
|
|
@@ -9299,6 +5662,11 @@ declare const chainlinkFeeds: {
|
|
|
9299
5662
|
readonly proxyAddress: "0x8f0240dc9C7644D121D370d8ee61FF9F2356521E";
|
|
9300
5663
|
readonly decimals: 8;
|
|
9301
5664
|
readonly name: "EURC / USD";
|
|
5665
|
+
}, {
|
|
5666
|
+
readonly contractAddress: "0xc7E2Ac28F7cdB250aEe24E1bfadd5FfbC234C979";
|
|
5667
|
+
readonly proxyAddress: "0xB6D739Ba498a0D8d1e92F81345B764C995Cc4882";
|
|
5668
|
+
readonly decimals: 8;
|
|
5669
|
+
readonly name: "USD1 / USD";
|
|
9302
5670
|
}, {
|
|
9303
5671
|
readonly contractAddress: "0xcdEb81F86ee3Fc0cF6cbF6505b5a624460777732";
|
|
9304
5672
|
readonly proxyAddress: "0x960BDD1dFD20d7c98fa482D793C3dedD73A113a3";
|
|
@@ -9552,6 +5920,11 @@ declare const chainlinkFeeds: {
|
|
|
9552
5920
|
readonly proxyAddress: "0x97D2996B726F774B7c5BF77C7A74CFe98174a9d3";
|
|
9553
5921
|
readonly decimals: 8;
|
|
9554
5922
|
readonly name: "solvBTC / BTC";
|
|
5923
|
+
}, {
|
|
5924
|
+
readonly contractAddress: "0x291ad034EBFF630769F3b0584b7C2AA448818103";
|
|
5925
|
+
readonly proxyAddress: "0x251Ef178518aba5aa1df24713344EA1C6d9ccc67";
|
|
5926
|
+
readonly decimals: 8;
|
|
5927
|
+
readonly name: "USD1 / USD";
|
|
9555
5928
|
}, {
|
|
9556
5929
|
readonly contractAddress: "0x304DD98fa8681aF2E32B0e252977a8662C0f431d";
|
|
9557
5930
|
readonly proxyAddress: "0x6D414dC3F9D8822D947B737CA8F75b1c4d6C8542";
|
|
@@ -9562,6 +5935,11 @@ declare const chainlinkFeeds: {
|
|
|
9562
5935
|
readonly proxyAddress: "0x75196350e8F9Ffa8e6a917E3C6E073D24F458781";
|
|
9563
5936
|
readonly decimals: 8;
|
|
9564
5937
|
readonly name: "WBTC / USD";
|
|
5938
|
+
}, {
|
|
5939
|
+
readonly contractAddress: "0x64F4855349188677016A052CcBECbbe07Cd741D3";
|
|
5940
|
+
readonly proxyAddress: "0x2580FA33f9dfD9D26F1aC418E09113f3E9c316c2";
|
|
5941
|
+
readonly decimals: 18;
|
|
5942
|
+
readonly name: "Calculated wstASTR / USD";
|
|
9565
5943
|
}, {
|
|
9566
5944
|
readonly contractAddress: "0x7DCcF223c077e8D1e2297d7788Bb6E62af89dFc9";
|
|
9567
5945
|
readonly proxyAddress: "0xF049354158e13F6794A3cCD236694E0e1BD9AF79";
|
|
@@ -9643,11 +6021,21 @@ declare const chainlinkFeeds: {
|
|
|
9643
6021
|
readonly proxyAddress: "0xE2f6c76c05985e90B043CC6ddf1D09e8BF5FAAf9";
|
|
9644
6022
|
readonly decimals: 18;
|
|
9645
6023
|
readonly name: "ynETHx / ETH Exchange Rate";
|
|
6024
|
+
}, {
|
|
6025
|
+
readonly contractAddress: "0x4606b8D331f07f8167d5bcD891Ff6a4eE984B8e4";
|
|
6026
|
+
readonly proxyAddress: "0xB16FcAFB8378baA0a69142a325878FDCad58606A";
|
|
6027
|
+
readonly decimals: 18;
|
|
6028
|
+
readonly name: "Calculated mETH / USD";
|
|
9646
6029
|
}, {
|
|
9647
6030
|
readonly contractAddress: "0x4EE01a89530E481EcCF045642817cEF39184C02a";
|
|
9648
6031
|
readonly proxyAddress: "0x6352E3A925E27130317d3A0A5b0b0303e9f2fc7c";
|
|
9649
6032
|
readonly decimals: 18;
|
|
9650
6033
|
readonly name: "mETH / ETH";
|
|
6034
|
+
}, {
|
|
6035
|
+
readonly contractAddress: "0x874effca5376D434d49021B3638d1e1BC214EC27";
|
|
6036
|
+
readonly proxyAddress: "0x73b15e19b247263D03D7938f1356304b7B330Ff0";
|
|
6037
|
+
readonly decimals: 18;
|
|
6038
|
+
readonly name: "Calculated FBTC / USD";
|
|
9651
6039
|
}, {
|
|
9652
6040
|
readonly contractAddress: "0xB16d5c70A9c062EF1604a517E4b80dE74670448D";
|
|
9653
6041
|
readonly proxyAddress: "0x6d5110FB8F6a65c46B89a64C9ac7E3542D31AbA3";
|
|
@@ -10129,6 +6517,11 @@ declare const chainlinkFeeds: {
|
|
|
10129
6517
|
readonly proxyAddress: "0x0b68ac37a1668DAaab1882543368E076C38C40e9";
|
|
10130
6518
|
readonly decimals: 18;
|
|
10131
6519
|
readonly name: "CETH Reserves";
|
|
6520
|
+
}, {
|
|
6521
|
+
readonly contractAddress: "0xCa1a4BdF7f9f8F8F281E311028dEa7e472a7A194";
|
|
6522
|
+
readonly proxyAddress: "0x4e7dB2f9a28348AB48a968dd4217D565D1F15Ba4";
|
|
6523
|
+
readonly decimals: 18;
|
|
6524
|
+
readonly name: "ynETHx / ETH Exchange Rate";
|
|
10132
6525
|
}, {
|
|
10133
6526
|
readonly contractAddress: "0xD0407a6524C7d9075E0b040dCEf4696129B2C3B4";
|
|
10134
6527
|
readonly proxyAddress: "0xeDC243c7E3c1A9dAf067C90641D2346d2694d2e5";
|
|
@@ -10330,6 +6723,11 @@ declare const chainlinkFeeds: {
|
|
|
10330
6723
|
readonly proxyAddress: null;
|
|
10331
6724
|
readonly decimals: 18;
|
|
10332
6725
|
readonly name: "SKYAI/USD-RefPrice-mainnet-production";
|
|
6726
|
+
}, {
|
|
6727
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6728
|
+
readonly proxyAddress: null;
|
|
6729
|
+
readonly decimals: 18;
|
|
6730
|
+
readonly name: "ACRED/USD-RefPrice-mainnet-production";
|
|
10333
6731
|
}, {
|
|
10334
6732
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10335
6733
|
readonly proxyAddress: null;
|
|
@@ -10360,6 +6758,11 @@ declare const chainlinkFeeds: {
|
|
|
10360
6758
|
readonly proxyAddress: null;
|
|
10361
6759
|
readonly decimals: 18;
|
|
10362
6760
|
readonly name: "TROLL/USD-RefPrice-mainnet-production";
|
|
6761
|
+
}, {
|
|
6762
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6763
|
+
readonly proxyAddress: null;
|
|
6764
|
+
readonly decimals: 18;
|
|
6765
|
+
readonly name: "MYX/USD-RefPrice-mainnet-production";
|
|
10363
6766
|
}, {
|
|
10364
6767
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10365
6768
|
readonly proxyAddress: null;
|
|
@@ -10400,6 +6803,11 @@ declare const chainlinkFeeds: {
|
|
|
10400
6803
|
readonly proxyAddress: null;
|
|
10401
6804
|
readonly decimals: 18;
|
|
10402
6805
|
readonly name: "KYSOL/USD-RefPrice-mainnet-production";
|
|
6806
|
+
}, {
|
|
6807
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6808
|
+
readonly proxyAddress: null;
|
|
6809
|
+
readonly decimals: 18;
|
|
6810
|
+
readonly name: "DEEP/USD-RefPrice-mainnet-production";
|
|
10403
6811
|
}, {
|
|
10404
6812
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10405
6813
|
readonly proxyAddress: null;
|
|
@@ -10425,6 +6833,11 @@ declare const chainlinkFeeds: {
|
|
|
10425
6833
|
readonly proxyAddress: null;
|
|
10426
6834
|
readonly decimals: 18;
|
|
10427
6835
|
readonly name: "AIXBT/USD-RefPrice-mainnet-staging";
|
|
6836
|
+
}, {
|
|
6837
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6838
|
+
readonly proxyAddress: null;
|
|
6839
|
+
readonly decimals: 18;
|
|
6840
|
+
readonly name: "APU/USD-RefPrice-mainnet-production";
|
|
10428
6841
|
}, {
|
|
10429
6842
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10430
6843
|
readonly proxyAddress: null;
|
|
@@ -10440,6 +6853,11 @@ declare const chainlinkFeeds: {
|
|
|
10440
6853
|
readonly proxyAddress: null;
|
|
10441
6854
|
readonly decimals: 18;
|
|
10442
6855
|
readonly name: "SYN/USD-RefPrice-mainnet-production";
|
|
6856
|
+
}, {
|
|
6857
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6858
|
+
readonly proxyAddress: null;
|
|
6859
|
+
readonly decimals: 18;
|
|
6860
|
+
readonly name: "CFG/USD-RefPrice-mainnet-production";
|
|
10443
6861
|
}, {
|
|
10444
6862
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10445
6863
|
readonly proxyAddress: null;
|
|
@@ -10490,6 +6908,11 @@ declare const chainlinkFeeds: {
|
|
|
10490
6908
|
readonly proxyAddress: null;
|
|
10491
6909
|
readonly decimals: 18;
|
|
10492
6910
|
readonly name: "BAL/USD-RefPrice-mainnet-production";
|
|
6911
|
+
}, {
|
|
6912
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6913
|
+
readonly proxyAddress: null;
|
|
6914
|
+
readonly decimals: 18;
|
|
6915
|
+
readonly name: "WELL/USD-RefPrice-mainnet-production";
|
|
10493
6916
|
}, {
|
|
10494
6917
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10495
6918
|
readonly proxyAddress: null;
|
|
@@ -10505,21 +6928,41 @@ declare const chainlinkFeeds: {
|
|
|
10505
6928
|
readonly proxyAddress: null;
|
|
10506
6929
|
readonly decimals: 18;
|
|
10507
6930
|
readonly name: "AIXBT/USD-RefPrice-mainnet-production";
|
|
6931
|
+
}, {
|
|
6932
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6933
|
+
readonly proxyAddress: null;
|
|
6934
|
+
readonly decimals: 18;
|
|
6935
|
+
readonly name: "GT/USD-RefPrice-mainnet-production";
|
|
10508
6936
|
}, {
|
|
10509
6937
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10510
6938
|
readonly proxyAddress: null;
|
|
10511
6939
|
readonly decimals: 18;
|
|
10512
6940
|
readonly name: "CATI/USD-RefPrice-mainnet-production";
|
|
6941
|
+
}, {
|
|
6942
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6943
|
+
readonly proxyAddress: null;
|
|
6944
|
+
readonly decimals: 18;
|
|
6945
|
+
readonly name: "CRO/USD-RefPrice-mainnet-production";
|
|
10513
6946
|
}, {
|
|
10514
6947
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10515
6948
|
readonly proxyAddress: null;
|
|
10516
6949
|
readonly decimals: 18;
|
|
10517
6950
|
readonly name: "XPR/USD-RefPrice-mainnet-production";
|
|
6951
|
+
}, {
|
|
6952
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6953
|
+
readonly proxyAddress: null;
|
|
6954
|
+
readonly decimals: 18;
|
|
6955
|
+
readonly name: "KAITO/USD-RefPrice-mainnet-production";
|
|
10518
6956
|
}, {
|
|
10519
6957
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10520
6958
|
readonly proxyAddress: null;
|
|
10521
6959
|
readonly decimals: 18;
|
|
10522
6960
|
readonly name: "HNT/USD-RefPrice-mainnet-production";
|
|
6961
|
+
}, {
|
|
6962
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6963
|
+
readonly proxyAddress: null;
|
|
6964
|
+
readonly decimals: 18;
|
|
6965
|
+
readonly name: "RSWETH/USD-RefPrice-mainnet-production";
|
|
10523
6966
|
}, {
|
|
10524
6967
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10525
6968
|
readonly proxyAddress: null;
|
|
@@ -10550,6 +6993,16 @@ declare const chainlinkFeeds: {
|
|
|
10550
6993
|
readonly proxyAddress: null;
|
|
10551
6994
|
readonly decimals: 18;
|
|
10552
6995
|
readonly name: "METIS/USD-RefPrice-mainnet-production";
|
|
6996
|
+
}, {
|
|
6997
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6998
|
+
readonly proxyAddress: null;
|
|
6999
|
+
readonly decimals: 18;
|
|
7000
|
+
readonly name: "WBCOIN/USD-RefPrice-mainnet-production";
|
|
7001
|
+
}, {
|
|
7002
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7003
|
+
readonly proxyAddress: null;
|
|
7004
|
+
readonly decimals: 18;
|
|
7005
|
+
readonly name: "BBSOL/USD-RefPrice-mainnet-production";
|
|
10553
7006
|
}, {
|
|
10554
7007
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10555
7008
|
readonly proxyAddress: null;
|
|
@@ -10590,6 +7043,11 @@ declare const chainlinkFeeds: {
|
|
|
10590
7043
|
readonly proxyAddress: null;
|
|
10591
7044
|
readonly decimals: 18;
|
|
10592
7045
|
readonly name: "LUSD/USD-RefPrice-mainnet-production";
|
|
7046
|
+
}, {
|
|
7047
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7048
|
+
readonly proxyAddress: null;
|
|
7049
|
+
readonly decimals: 18;
|
|
7050
|
+
readonly name: "FRXETH/USD-RefPrice-mainnet-production";
|
|
10593
7051
|
}, {
|
|
10594
7052
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10595
7053
|
readonly proxyAddress: null;
|
|
@@ -10635,6 +7093,16 @@ declare const chainlinkFeeds: {
|
|
|
10635
7093
|
readonly proxyAddress: null;
|
|
10636
7094
|
readonly decimals: 18;
|
|
10637
7095
|
readonly name: "wBTC/USD-RefPrice-mainnet-production";
|
|
7096
|
+
}, {
|
|
7097
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7098
|
+
readonly proxyAddress: null;
|
|
7099
|
+
readonly decimals: 18;
|
|
7100
|
+
readonly name: "ROSE/USD-RefPrice-mainnet-production";
|
|
7101
|
+
}, {
|
|
7102
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7103
|
+
readonly proxyAddress: null;
|
|
7104
|
+
readonly decimals: 18;
|
|
7105
|
+
readonly name: "USD1/USD-RefPrice-mainnet-production";
|
|
10638
7106
|
}, {
|
|
10639
7107
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10640
7108
|
readonly proxyAddress: null;
|
|
@@ -10720,6 +7188,11 @@ declare const chainlinkFeeds: {
|
|
|
10720
7188
|
readonly proxyAddress: null;
|
|
10721
7189
|
readonly decimals: 18;
|
|
10722
7190
|
readonly name: "DODO/USD-RefPrice-mainnet-staging";
|
|
7191
|
+
}, {
|
|
7192
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7193
|
+
readonly proxyAddress: null;
|
|
7194
|
+
readonly decimals: 18;
|
|
7195
|
+
readonly name: "WAL/USD-RefPrice-mainnet-production";
|
|
10723
7196
|
}, {
|
|
10724
7197
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10725
7198
|
readonly proxyAddress: null;
|
|
@@ -10800,6 +7273,11 @@ declare const chainlinkFeeds: {
|
|
|
10800
7273
|
readonly proxyAddress: null;
|
|
10801
7274
|
readonly decimals: 18;
|
|
10802
7275
|
readonly name: "GLV [BTC-USDC]/USD-RefPrice-mainnet-production";
|
|
7276
|
+
}, {
|
|
7277
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7278
|
+
readonly proxyAddress: null;
|
|
7279
|
+
readonly decimals: 18;
|
|
7280
|
+
readonly name: "HUBSOL/USD-RefPrice-mainnet-production";
|
|
10803
7281
|
}, {
|
|
10804
7282
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10805
7283
|
readonly proxyAddress: null;
|
|
@@ -10810,6 +7288,11 @@ declare const chainlinkFeeds: {
|
|
|
10810
7288
|
readonly proxyAddress: null;
|
|
10811
7289
|
readonly decimals: 18;
|
|
10812
7290
|
readonly name: "XDC/USD-RefPrice-mainnet-staging";
|
|
7291
|
+
}, {
|
|
7292
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7293
|
+
readonly proxyAddress: null;
|
|
7294
|
+
readonly decimals: 18;
|
|
7295
|
+
readonly name: "SEND/USD-RefPrice-mainnet-production";
|
|
10813
7296
|
}, {
|
|
10814
7297
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10815
7298
|
readonly proxyAddress: null;
|
|
@@ -10840,6 +7323,11 @@ declare const chainlinkFeeds: {
|
|
|
10840
7323
|
readonly proxyAddress: null;
|
|
10841
7324
|
readonly decimals: 18;
|
|
10842
7325
|
readonly name: "DYM/USD-RefPrice-mainnet-staging";
|
|
7326
|
+
}, {
|
|
7327
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7328
|
+
readonly proxyAddress: null;
|
|
7329
|
+
readonly decimals: 18;
|
|
7330
|
+
readonly name: "SWETH/USD-RefPrice-mainnet-production";
|
|
10843
7331
|
}, {
|
|
10844
7332
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10845
7333
|
readonly proxyAddress: null;
|
|
@@ -10925,6 +7413,26 @@ declare const chainlinkFeeds: {
|
|
|
10925
7413
|
readonly proxyAddress: null;
|
|
10926
7414
|
readonly decimals: 18;
|
|
10927
7415
|
readonly name: "GLV [BTC-USDC]/USD-RefPrice-mainnet-staging";
|
|
7416
|
+
}, {
|
|
7417
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7418
|
+
readonly proxyAddress: null;
|
|
7419
|
+
readonly decimals: 18;
|
|
7420
|
+
readonly name: "METH/USD-RefPrice-mainnet-production";
|
|
7421
|
+
}, {
|
|
7422
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7423
|
+
readonly proxyAddress: null;
|
|
7424
|
+
readonly decimals: 18;
|
|
7425
|
+
readonly name: "LST/USD-RefPrice-mainnet-production";
|
|
7426
|
+
}, {
|
|
7427
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7428
|
+
readonly proxyAddress: null;
|
|
7429
|
+
readonly decimals: 18;
|
|
7430
|
+
readonly name: "TWT/USD-RefPrice-mainnet-production";
|
|
7431
|
+
}, {
|
|
7432
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7433
|
+
readonly proxyAddress: null;
|
|
7434
|
+
readonly decimals: 18;
|
|
7435
|
+
readonly name: "SUSDS/USD-RefPrice-mainnet-production";
|
|
10928
7436
|
}, {
|
|
10929
7437
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
10930
7438
|
readonly proxyAddress: null;
|
|
@@ -11040,6 +7548,11 @@ declare const chainlinkFeeds: {
|
|
|
11040
7548
|
readonly proxyAddress: null;
|
|
11041
7549
|
readonly decimals: 18;
|
|
11042
7550
|
readonly name: "HYPE/USD-RefPrice-mainnet-staging";
|
|
7551
|
+
}, {
|
|
7552
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7553
|
+
readonly proxyAddress: null;
|
|
7554
|
+
readonly decimals: 18;
|
|
7555
|
+
readonly name: "KAS/USD-RefPrice-mainnet-production";
|
|
11043
7556
|
}, {
|
|
11044
7557
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
11045
7558
|
readonly proxyAddress: null;
|
|
@@ -11160,6 +7673,11 @@ declare const chainlinkFeeds: {
|
|
|
11160
7673
|
readonly proxyAddress: null;
|
|
11161
7674
|
readonly decimals: 18;
|
|
11162
7675
|
readonly name: "WEN/USD-RefPrice-mainnet-production";
|
|
7676
|
+
}, {
|
|
7677
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7678
|
+
readonly proxyAddress: null;
|
|
7679
|
+
readonly decimals: 18;
|
|
7680
|
+
readonly name: "BLUE/USD-RefPrice-mainnet-production";
|
|
11163
7681
|
}, {
|
|
11164
7682
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
11165
7683
|
readonly proxyAddress: null;
|
|
@@ -11175,6 +7693,11 @@ declare const chainlinkFeeds: {
|
|
|
11175
7693
|
readonly proxyAddress: null;
|
|
11176
7694
|
readonly decimals: 18;
|
|
11177
7695
|
readonly name: "KUDAI/USD-RefPrice-mainnet-production";
|
|
7696
|
+
}, {
|
|
7697
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7698
|
+
readonly proxyAddress: null;
|
|
7699
|
+
readonly decimals: 18;
|
|
7700
|
+
readonly name: "ZBCN/USD-RefPrice-mainnet-production";
|
|
11178
7701
|
}, {
|
|
11179
7702
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
11180
7703
|
readonly proxyAddress: null;
|
|
@@ -11195,6 +7718,11 @@ declare const chainlinkFeeds: {
|
|
|
11195
7718
|
readonly proxyAddress: null;
|
|
11196
7719
|
readonly decimals: 18;
|
|
11197
7720
|
readonly name: "BAT/USD-RefPrice-mainnet-production";
|
|
7721
|
+
}, {
|
|
7722
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7723
|
+
readonly proxyAddress: null;
|
|
7724
|
+
readonly decimals: 18;
|
|
7725
|
+
readonly name: "TOSHI/USD-RefPrice-mainnet-production";
|
|
11198
7726
|
}, {
|
|
11199
7727
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
11200
7728
|
readonly proxyAddress: null;
|
|
@@ -11210,6 +7738,46 @@ declare const chainlinkFeeds: {
|
|
|
11210
7738
|
readonly proxyAddress: null;
|
|
11211
7739
|
readonly decimals: 18;
|
|
11212
7740
|
readonly name: "SPX/USD-RefPrice-mainnet-staging";
|
|
7741
|
+
}, {
|
|
7742
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7743
|
+
readonly proxyAddress: null;
|
|
7744
|
+
readonly decimals: 18;
|
|
7745
|
+
readonly name: "SOL/USDT-Binance-FundingRate-mainnet-staging";
|
|
7746
|
+
}, {
|
|
7747
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7748
|
+
readonly proxyAddress: null;
|
|
7749
|
+
readonly decimals: 18;
|
|
7750
|
+
readonly name: "ETH/USDT-Deribit-FundingRate-mainnet-staging";
|
|
7751
|
+
}, {
|
|
7752
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7753
|
+
readonly proxyAddress: null;
|
|
7754
|
+
readonly decimals: 18;
|
|
7755
|
+
readonly name: "BTC/USDT-Deribit-FundingRate-mainnet-staging";
|
|
7756
|
+
}, {
|
|
7757
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7758
|
+
readonly proxyAddress: null;
|
|
7759
|
+
readonly decimals: 18;
|
|
7760
|
+
readonly name: "ETH/USDT-Binance-FundingRate-mainnet-staging";
|
|
7761
|
+
}, {
|
|
7762
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7763
|
+
readonly proxyAddress: null;
|
|
7764
|
+
readonly decimals: 18;
|
|
7765
|
+
readonly name: "AERGO/USDT-Binance-FundingRate-mainnet-staging";
|
|
7766
|
+
}, {
|
|
7767
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7768
|
+
readonly proxyAddress: null;
|
|
7769
|
+
readonly decimals: 18;
|
|
7770
|
+
readonly name: "BTC/USDT-Binance-FundingRate-mainnet-staging";
|
|
7771
|
+
}, {
|
|
7772
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7773
|
+
readonly proxyAddress: null;
|
|
7774
|
+
readonly decimals: 18;
|
|
7775
|
+
readonly name: "BTC-ETH-SOL-USDC-USDT/USD-RefPrice-mainnet-production";
|
|
7776
|
+
}, {
|
|
7777
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7778
|
+
readonly proxyAddress: null;
|
|
7779
|
+
readonly decimals: 18;
|
|
7780
|
+
readonly name: "SYRUPUSDC/USDC-ExRate-mainnet-production";
|
|
11213
7781
|
}, {
|
|
11214
7782
|
readonly contractAddress: "0x01DD3Cf6118069DB13A2d64d7e1A09FECd587EDD";
|
|
11215
7783
|
readonly proxyAddress: "0x8d0CC5f38f9E802475f2CFf4F9fc7000C2E1557c";
|
|
@@ -11280,6 +7848,11 @@ declare const chainlinkFeeds: {
|
|
|
11280
7848
|
readonly proxyAddress: "0x37833E5b3fbbEd4D613a3e0C354eF91A42B81eeB";
|
|
11281
7849
|
readonly decimals: 8;
|
|
11282
7850
|
readonly name: "USDS / USD";
|
|
7851
|
+
}, {
|
|
7852
|
+
readonly contractAddress: "0x15cDF4FdbC7BD5207B8ba0960731e013e49c5bA9";
|
|
7853
|
+
readonly proxyAddress: "0xcAc0138592090762385CCB7bb94C9401F734Eb30";
|
|
7854
|
+
readonly decimals: 8;
|
|
7855
|
+
readonly name: "USD1 / USD";
|
|
11283
7856
|
}, {
|
|
11284
7857
|
readonly contractAddress: "0x17298e460F18f1380fe5Ed68985A566949B91d20";
|
|
11285
7858
|
readonly proxyAddress: "0x17d8D87dF3E279c737568aB0C5cC3fF750aB763e";
|
|
@@ -11345,6 +7918,11 @@ declare const chainlinkFeeds: {
|
|
|
11345
7918
|
readonly proxyAddress: "0x50834F3163758fcC1Df9973b6e91f0F0F0434aD3";
|
|
11346
7919
|
readonly decimals: 8;
|
|
11347
7920
|
readonly name: "USDC / USD";
|
|
7921
|
+
}, {
|
|
7922
|
+
readonly contractAddress: "0x29ef0aE1eDb5764b5bd2ff3a605b5d4Eb39a0d63";
|
|
7923
|
+
readonly proxyAddress: "0x5F25Ea8Cf2a3aB12E4D6fB58FB63C7938473B036";
|
|
7924
|
+
readonly decimals: 10;
|
|
7925
|
+
readonly name: "aBTC PoR";
|
|
11348
7926
|
}, {
|
|
11349
7927
|
readonly contractAddress: "0x2C50f2Fe9427d120DEA2eb804c148d2780519d59";
|
|
11350
7928
|
readonly proxyAddress: "0x221912ce795669f628c51c69b7d0873eDA9C03bB";
|
|
@@ -11878,7 +8456,7 @@ declare const chainlinkFeeds: {
|
|
|
11878
8456
|
}, {
|
|
11879
8457
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
11880
8458
|
readonly proxyAddress: null;
|
|
11881
|
-
readonly decimals:
|
|
8459
|
+
readonly decimals: 0;
|
|
11882
8460
|
readonly name: "wstETH/USD-RefPrice-DSstaging-Premium-Global-003";
|
|
11883
8461
|
}, {
|
|
11884
8462
|
readonly contractAddress: "0x3caF678232f500b05864dBaDDD9F9dB8760bE072";
|
|
@@ -13525,6 +10103,11 @@ declare const chainlinkFeeds: {
|
|
|
13525
10103
|
readonly proxyAddress: "0x373510BDa1ab7e873c731968f4D81B685f520E4B";
|
|
13526
10104
|
readonly decimals: 8;
|
|
13527
10105
|
readonly name: "TRUMP / USD";
|
|
10106
|
+
}, {
|
|
10107
|
+
readonly contractAddress: "0xDB99d80bD3aE8dae5d929493Ddf696196f7f59f2";
|
|
10108
|
+
readonly proxyAddress: "0xd9344493d99153Ad4353D604A1d80d4089004c5D";
|
|
10109
|
+
readonly decimals: 8;
|
|
10110
|
+
readonly name: "zBTC PoR";
|
|
13528
10111
|
}, {
|
|
13529
10112
|
readonly contractAddress: "0xDf8a3fc9bC6fA89F1b630e58f6eB4b874f24C165";
|
|
13530
10113
|
readonly proxyAddress: "0x3A917e6B5732dFCc4A45257e3930979fAE6a3737";
|
|
@@ -13540,6 +10123,11 @@ declare const chainlinkFeeds: {
|
|
|
13540
10123
|
readonly proxyAddress: "0x6fAbee62266Da6686EE2744C6f15bb8352d2f28D";
|
|
13541
10124
|
readonly decimals: 8;
|
|
13542
10125
|
readonly name: "TUSD / USD";
|
|
10126
|
+
}, {
|
|
10127
|
+
readonly contractAddress: "0xF32Aaecb1909EB672E96522e979c3c5b76a438bB";
|
|
10128
|
+
readonly proxyAddress: "0xCF9752295D0ac9215461fA095faFEC1B854b849B";
|
|
10129
|
+
readonly decimals: 8;
|
|
10130
|
+
readonly name: "EURC / USD";
|
|
13543
10131
|
}, {
|
|
13544
10132
|
readonly contractAddress: "0xF5038dD0aBB1aCD297f69494F66a0adF7Bb1B7D2";
|
|
13545
10133
|
readonly proxyAddress: "0xc6984fF1047Ddd0AB52D2dFa78381CC677921A85";
|
|
@@ -14232,6 +10820,11 @@ declare const chainlinkFeeds: {
|
|
|
14232
10820
|
readonly proxyAddress: "0x3E54eB0475051401D093702A5DB84EFa1Ab77b14";
|
|
14233
10821
|
readonly decimals: 8;
|
|
14234
10822
|
readonly name: "MKR / USD";
|
|
10823
|
+
}, {
|
|
10824
|
+
readonly contractAddress: "0xA6D08e6F2b20707D79801Ff419091265DDDCBb58";
|
|
10825
|
+
readonly proxyAddress: "0xc43861646Cdc051D04CA0c9dF2265FFcFa0dF6f3";
|
|
10826
|
+
readonly decimals: 18;
|
|
10827
|
+
readonly name: "MATICX / USD Calculated";
|
|
14235
10828
|
}, {
|
|
14236
10829
|
readonly contractAddress: "0xC3e5dDD4f98cDFfaF77685e340FF5c32d7282C5C";
|
|
14237
10830
|
readonly proxyAddress: "0xD73a74314AcCb53b30cAfDA0cb61c9772B57C4a2";
|
|
@@ -14418,6 +11011,11 @@ declare const chainlinkFeeds: {
|
|
|
14418
11011
|
readonly proxyAddress: "0x0956106Bd02f2C7eca0AbDe1d51Fc8050CC41714";
|
|
14419
11012
|
readonly decimals: 18;
|
|
14420
11013
|
readonly name: "ultraETHs / ETH Exchange Rate";
|
|
11014
|
+
}, {
|
|
11015
|
+
readonly contractAddress: "0x5EE2db6D1660CcB518041706d8068F7Bc343ac3c";
|
|
11016
|
+
readonly proxyAddress: "0xc0068A2F7e4847DF9C3A34B27CCc07b7e15e0458";
|
|
11017
|
+
readonly decimals: 8;
|
|
11018
|
+
readonly name: "COMP / USD";
|
|
14421
11019
|
}, {
|
|
14422
11020
|
readonly contractAddress: "0x6f0D003A0743F5acea5680B1D128bd433B07ffCE";
|
|
14423
11021
|
readonly proxyAddress: "0xEEDF0B095B5dfe75F3881Cb26c19DA209A27463a";
|
|
@@ -14702,6 +11300,8 @@ declare const chainlinkFeeds: {
|
|
|
14702
11300
|
}];
|
|
14703
11301
|
};
|
|
14704
11302
|
|
|
11303
|
+
declare const hyperRPCSupportedNetworks: readonly [645749, 1923, 130, 33111, 50002, 1868, 1750, 100, 42170, 51, 2741, 57073, 8453, 531050104, 1, 10200, 7000, 48900, 1301, 10143, 59144, 11155420, 80094, 80084, 5000, 6342, 2810, 80002, 10, 50, 42220, 100, 204, 480, 43113, 81457, 97, 43114, 17864, 252, 146, 42, 1, 4201, 148, 9889, 7225878, 7560, 84532, 5330, 168587773, 14, 1101, 11155111, 7777777, 137, 5115, 8888, 1287, 255, 1135, 34443, 30, 4200, 288, 696969, 17000, 421614, 2818, 56, 324, 1666600000, 50104, 534352, 42161, 250, 1313161554, 1284, 169];
|
|
11304
|
+
|
|
14705
11305
|
declare const erc1967_ImplementationSlot = "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc";
|
|
14706
11306
|
declare const erc1967_AdminSlot = "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103";
|
|
14707
11307
|
|
|
@@ -23515,4 +20115,4 @@ declare const IAuthorizedForwarder_ABI: readonly [{
|
|
|
23515
20115
|
readonly type: "function";
|
|
23516
20116
|
}];
|
|
23517
20117
|
|
|
23518
|
-
export {
|
|
20118
|
+
export { getExplorer as $, wadDiv as A, fetchImmutablePoolAddresses as B, fetchMutablePoolAddresses as C, fetchPoolAddresses as D, getReserveTokens as E, getReserveConfigurations as F, HUMAN_READABLE_PAYLOAD_STATE as G, HALF_WAD as H, type PayloadsControllerContract as I, getPayloadsController as J, getPayloadStorageOverrides as K, LTV_PRECISION as L, makePayloadExecutableOnTestClient as M, isPayloadFinal as N, getNonFinalizedPayloads as O, PayloadState as P, ProposalState as Q, type ReserveConfiguration as R, type StandardJsonInput as S, HUMAN_READABLE_PROPOSAL_STATE as T, type GovernanceContract as U, getGovernance as V, WAD as W, makeProposalExecutableOnTestClient as X, isProposalFinal as Y, getNonFinalizedProposals as Z, type ExplorerConfig as _, decodeReserveConfiguration as a, IPoolConfigurator_ABI as a$, getSourceCode as a0, parseEtherscanStyleSourceCode as a1, type Tenderly_createVnetParamsResponse as a2, tenderly_deleteVnet as a3, tenderly_simVnet as a4, tenderly_getVnet as a5, tenderly_createVnet as a6, type StateObject as a7, type ContractObject as a8, type TenderlySimRequest as a9, chainlinkFeeds as aA, hyperRPCSupportedNetworks as aB, erc1967_ImplementationSlot as aC, erc1967_AdminSlot as aD, diffCode as aE, type IndexerTopicState as aF, type GenericIndexerArgs as aG, genericIndexer as aH, parseLogs as aI, SelfdestuctCheckState as aJ, checkForSelfdestruct as aK, renderTenderlyReport as aL, IReserveInterestRateStrategy_ABI as aM, IStataTokenFactory_ABI as aN, IAToken_ABI as aO, IWrappedTokenGatewayV3_ABI as aP, IPoolAddressesProvider_ABI as aQ, IStataTokenV2_ABI as aR, IDualAggregator_ABI as aS, IAaveOracle_ABI as aT, ICollector_ABI as aU, IPool_ABI as aV, AggregatorInterface_ABI as aW, IAaveV3ConfigEngine_ABI as aX, IEmissionManager_ABI as aY, IRewardsController_ABI as aZ, IERC20Metadata_ABI as a_, tenderly_sim as aa, EVENT_DB as ab, ChainId as ac, ChainList as ad, publicRPCs as ae, alchemySupportedChainIds as af, getNetworkEnv as ag, getExplicitRPC as ah, getAlchemyRPC as ai, getPublicRpc as aj, getHyperRPC as ak, getQuicknodeRpc as al, getRPCUrl as am, getClient as an, getImplementationSlot as ao, getLogsRecursive as ap, getContractDeploymentBlock as aq, type BundleParams as ar, flashbotsOnFetchRequest as as, flashbotsClientExtension as at, onMevHandler as au, priceUpdateDecoder as av, alchemyNetworkMap as aw, quicknodeNetworkMap as ax, etherscanExplorers as ay, routescanExplorers as az, bitmapToIndexes as b, IERC20_ABI as b0, IAuthorizedForwarder_ABI as b1, decodeReserveConfigurationV2 as c, decodeUserConfiguration as d, SECONDS_PER_YEAR as e, aaveAddressesProvider_IncentivesControllerSlot as f, getBits as g, calculateCompoundedInterest as h, calculateLinearInterest as i, getNormalizedIncome as j, getNormalizedDebt as k, getCurrentLiquidityBalance as l, getCurrentDebtBalance as m, calculateHealthFactorFromBalances as n, calculateAvailableBorrowsMarketReferenceCurrency as o, getMarketReferenceCurrencyAndUsdBalance as p, assetToBase as q, calculateHealthFactor as r, setBits as s, RAY as t, HALF_RAY as u, WAD_RAY_RATIO as v, rayMul as w, rayDiv as x, rayToWad as y, wadToRay as z };
|