@circle-fin/usdckit 0.22.0 → 0.23.1

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.
Files changed (77) hide show
  1. package/dist/cjs/abis/EIP2612.d.ts +197 -0
  2. package/dist/cjs/abis/EIP2612.js +78 -0
  3. package/dist/cjs/actions/index.d.ts +67 -1
  4. package/dist/cjs/actions/index.js +7 -0
  5. package/dist/cjs/actions/index.test.js +4 -0
  6. package/dist/cjs/actions/permit.d.ts +19 -0
  7. package/dist/cjs/actions/permit.js +50 -0
  8. package/dist/cjs/actions/permit.test.d.ts +1 -0
  9. package/dist/cjs/actions/permit.test.js +652 -0
  10. package/dist/cjs/actions/signEIP2612Permit.d.ts +130 -0
  11. package/dist/cjs/actions/signEIP2612Permit.js +128 -0
  12. package/dist/cjs/actions/signEIP2612Permit.test.d.ts +1 -0
  13. package/dist/cjs/actions/signEIP2612Permit.test.js +434 -0
  14. package/dist/cjs/chains/ARC_TESTNET.d.ts +180 -0
  15. package/dist/cjs/chains/ARC_TESTNET.js +57 -0
  16. package/dist/cjs/chains/index.d.ts +21 -18
  17. package/dist/cjs/chains/index.js +27 -25
  18. package/dist/cjs/chains/index.test.js +1 -0
  19. package/dist/cjs/client.d.ts +1 -1
  20. package/dist/cjs/extractChain.d.ts +1492 -1313
  21. package/dist/cjs/extractChain.test.js +1 -0
  22. package/dist/cjs/index.d.ts +2 -2
  23. package/dist/cjs/index.js +1 -1
  24. package/dist/cjs/metadata.js +1 -1
  25. package/dist/cjs/providers/circle-wallets/actions/createAccount.d.ts +1109 -930
  26. package/dist/cjs/providers/circle-wallets/actions/createAccount.js +3 -0
  27. package/dist/cjs/providers/circle-wallets/actions/estimateContractExecutionFee.d.ts +6 -0
  28. package/dist/cjs/providers/circle-wallets/actions/estimateTransferFee.d.ts +6 -0
  29. package/dist/cjs/providers/circle-wallets/actions/getAccounts.d.ts +1109 -930
  30. package/dist/cjs/providers/circle-wallets/index.d.ts +358 -0
  31. package/dist/cjs/providers/circle-wallets/index.js +2 -0
  32. package/dist/cjs/providers/circle-wallets/transports/index.d.ts +12 -0
  33. package/dist/cjs/utils/createConfig.d.ts +1 -1
  34. package/dist/cjs/utils/createCustomWalletClient.d.ts +1 -1
  35. package/dist/cjs/utils/getChainContractByAddress.d.ts +1 -1
  36. package/dist/cjs/utils/getContract.d.ts +8 -8
  37. package/dist/esm/abis/EIP2612.d.ts +197 -0
  38. package/dist/esm/abis/EIP2612.js +76 -0
  39. package/dist/esm/actions/index.d.ts +67 -1
  40. package/dist/esm/actions/index.js +7 -0
  41. package/dist/esm/actions/index.test.js +4 -0
  42. package/dist/esm/actions/permit.d.ts +19 -0
  43. package/dist/esm/actions/permit.js +44 -0
  44. package/dist/esm/actions/permit.test.d.ts +1 -0
  45. package/dist/esm/actions/permit.test.js +650 -0
  46. package/dist/esm/actions/signEIP2612Permit.d.ts +130 -0
  47. package/dist/esm/actions/signEIP2612Permit.js +122 -0
  48. package/dist/esm/actions/signEIP2612Permit.test.d.ts +1 -0
  49. package/dist/esm/actions/signEIP2612Permit.test.js +432 -0
  50. package/dist/esm/chains/ARC_TESTNET.d.ts +180 -0
  51. package/dist/esm/chains/ARC_TESTNET.js +54 -0
  52. package/dist/esm/chains/index.d.ts +21 -18
  53. package/dist/esm/chains/index.js +20 -18
  54. package/dist/esm/chains/index.test.js +1 -0
  55. package/dist/esm/client.d.ts +1 -1
  56. package/dist/esm/extractChain.d.ts +1492 -1313
  57. package/dist/esm/extractChain.test.js +2 -1
  58. package/dist/esm/index.d.ts +2 -2
  59. package/dist/esm/index.js +1 -1
  60. package/dist/esm/metadata.js +1 -1
  61. package/dist/esm/providers/circle-wallets/actions/createAccount.d.ts +1109 -930
  62. package/dist/esm/providers/circle-wallets/actions/createAccount.js +3 -0
  63. package/dist/esm/providers/circle-wallets/actions/estimateContractExecutionFee.d.ts +6 -0
  64. package/dist/esm/providers/circle-wallets/actions/estimateTransferFee.d.ts +6 -0
  65. package/dist/esm/providers/circle-wallets/actions/getAccounts.d.ts +1109 -930
  66. package/dist/esm/providers/circle-wallets/index.d.ts +358 -0
  67. package/dist/esm/providers/circle-wallets/index.js +3 -1
  68. package/dist/esm/providers/circle-wallets/transports/index.d.ts +12 -0
  69. package/dist/esm/utils/createConfig.d.ts +1 -1
  70. package/dist/esm/utils/createCustomWalletClient.d.ts +1 -1
  71. package/dist/esm/utils/getChainContractByAddress.d.ts +1 -1
  72. package/dist/esm/utils/getContract.d.ts +8 -8
  73. package/package.json +5 -4
  74. package/dist/cjs/chains.d.ts +0 -2
  75. package/dist/cjs/chains.js +0 -12
  76. package/dist/esm/chains.d.ts +0 -2
  77. package/dist/esm/chains.js +0 -11
@@ -1,4 +1,4 @@
1
- import type { Chain } from './chains.js';
1
+ import type { Chain } from './chains/index.js';
2
2
  declare const SUPPORTED_CHAINS: ({
3
3
  blockExplorers: {
4
4
  readonly default: {
@@ -358,15 +358,15 @@ declare const SUPPORTED_CHAINS: ({
358
358
  } | {
359
359
  blockExplorers: {
360
360
  readonly default: {
361
- readonly name: "SnowTrace";
362
- readonly url: "https://snowtrace.io";
363
- readonly apiUrl: "https://api.snowtrace.io";
361
+ readonly name: "ArcScan";
362
+ readonly url: "https://testnet.arcscan.app";
363
+ readonly apiUrl: "https://testnet.arcscan.app/api";
364
364
  };
365
365
  };
366
- blockTime: 1700;
366
+ blockTime?: number | undefined | undefined;
367
367
  contracts: {
368
368
  readonly USDC: {
369
- readonly address: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
369
+ readonly address: "0x3600000000000000000000000000000000000000";
370
370
  readonly abi: readonly [{
371
371
  readonly type: "event";
372
372
  readonly name: "Approval";
@@ -506,8 +506,46 @@ declare const SUPPORTED_CHAINS: ({
506
506
  readonly decimals: () => 6;
507
507
  };
508
508
  };
509
- readonly EURC: {
510
- readonly address: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
509
+ readonly multicall3: {
510
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
511
+ readonly blockCreated: 0;
512
+ };
513
+ };
514
+ ensTlds?: readonly string[] | undefined;
515
+ id: 5042002;
516
+ name: "Arc Testnet";
517
+ nativeCurrency: {
518
+ readonly name: "USDC";
519
+ readonly symbol: "USDC";
520
+ readonly decimals: 18;
521
+ };
522
+ experimental_preconfirmationTime?: number | undefined | undefined;
523
+ rpcUrls: {
524
+ readonly default: {
525
+ readonly http: readonly ["https://rpc.testnet.arc.network", "https://rpc.quicknode.testnet.arc.network", "https://rpc.blockdaemon.testnet.arc.network"];
526
+ readonly webSocket: readonly ["wss://rpc.testnet.arc.network", "wss://rpc.quicknode.testnet.arc.network"];
527
+ };
528
+ };
529
+ sourceId?: number | undefined | undefined;
530
+ testnet: true;
531
+ custom?: Record<string, unknown> | undefined;
532
+ fees?: import("viem").ChainFees<undefined> | undefined;
533
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
534
+ readonly blockchainId: "ARC-TESTNET";
535
+ readonly blockchainVm: "EVM";
536
+ readonly formatters?: undefined;
537
+ } | {
538
+ blockExplorers: {
539
+ readonly default: {
540
+ readonly name: "SnowTrace";
541
+ readonly url: "https://snowtrace.io";
542
+ readonly apiUrl: "https://api.snowtrace.io";
543
+ };
544
+ };
545
+ blockTime: 1700;
546
+ contracts: {
547
+ readonly USDC: {
548
+ readonly address: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
511
549
  readonly abi: readonly [{
512
550
  readonly type: "event";
513
551
  readonly name: "Approval";
@@ -647,8 +685,8 @@ declare const SUPPORTED_CHAINS: ({
647
685
  readonly decimals: () => 6;
648
686
  };
649
687
  };
650
- readonly USDT: {
651
- readonly address: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7";
688
+ readonly EURC: {
689
+ readonly address: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
652
690
  readonly abi: readonly [{
653
691
  readonly type: "event";
654
692
  readonly name: "Approval";
@@ -788,45 +826,8 @@ declare const SUPPORTED_CHAINS: ({
788
826
  readonly decimals: () => 6;
789
827
  };
790
828
  };
791
- readonly multicall3: {
792
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
793
- readonly blockCreated: 11907934;
794
- };
795
- };
796
- ensTlds?: readonly string[] | undefined;
797
- id: 43114;
798
- name: "Avalanche";
799
- nativeCurrency: {
800
- readonly decimals: 18;
801
- readonly name: "Avalanche";
802
- readonly symbol: "AVAX";
803
- };
804
- experimental_preconfirmationTime?: number | undefined | undefined;
805
- rpcUrls: {
806
- readonly default: {
807
- readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
808
- };
809
- };
810
- sourceId?: number | undefined | undefined;
811
- testnet?: boolean | undefined | undefined;
812
- custom?: Record<string, unknown> | undefined;
813
- fees?: import("viem").ChainFees<undefined> | undefined;
814
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
815
- readonly blockchainId: "AVAX";
816
- readonly blockchainVm: "EVM";
817
- readonly formatters?: undefined | undefined;
818
- } | {
819
- blockExplorers: {
820
- readonly default: {
821
- readonly name: "SnowTrace";
822
- readonly url: "https://testnet.snowtrace.io";
823
- readonly apiUrl: "https://api-testnet.snowtrace.io";
824
- };
825
- };
826
- blockTime?: number | undefined | undefined;
827
- contracts: {
828
- readonly USDC: {
829
- readonly address: "0x5425890298aed601595a70ab815c96711a31bc65";
829
+ readonly USDT: {
830
+ readonly address: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7";
830
831
  readonly abi: readonly [{
831
832
  readonly type: "event";
832
833
  readonly name: "Approval";
@@ -966,8 +967,45 @@ declare const SUPPORTED_CHAINS: ({
966
967
  readonly decimals: () => 6;
967
968
  };
968
969
  };
969
- readonly EURC: {
970
- readonly address: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
970
+ readonly multicall3: {
971
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
972
+ readonly blockCreated: 11907934;
973
+ };
974
+ };
975
+ ensTlds?: readonly string[] | undefined;
976
+ id: 43114;
977
+ name: "Avalanche";
978
+ nativeCurrency: {
979
+ readonly decimals: 18;
980
+ readonly name: "Avalanche";
981
+ readonly symbol: "AVAX";
982
+ };
983
+ experimental_preconfirmationTime?: number | undefined | undefined;
984
+ rpcUrls: {
985
+ readonly default: {
986
+ readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
987
+ };
988
+ };
989
+ sourceId?: number | undefined | undefined;
990
+ testnet?: boolean | undefined | undefined;
991
+ custom?: Record<string, unknown> | undefined;
992
+ fees?: import("viem").ChainFees<undefined> | undefined;
993
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
994
+ readonly blockchainId: "AVAX";
995
+ readonly blockchainVm: "EVM";
996
+ readonly formatters?: undefined | undefined;
997
+ } | {
998
+ blockExplorers: {
999
+ readonly default: {
1000
+ readonly name: "SnowTrace";
1001
+ readonly url: "https://testnet.snowtrace.io";
1002
+ readonly apiUrl: "https://api-testnet.snowtrace.io";
1003
+ };
1004
+ };
1005
+ blockTime?: number | undefined | undefined;
1006
+ contracts: {
1007
+ readonly USDC: {
1008
+ readonly address: "0x5425890298aed601595a70ab815c96711a31bc65";
971
1009
  readonly abi: readonly [{
972
1010
  readonly type: "event";
973
1011
  readonly name: "Approval";
@@ -1107,45 +1145,8 @@ declare const SUPPORTED_CHAINS: ({
1107
1145
  readonly decimals: () => 6;
1108
1146
  };
1109
1147
  };
1110
- readonly multicall3: {
1111
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1112
- readonly blockCreated: 7096959;
1113
- };
1114
- };
1115
- ensTlds?: readonly string[] | undefined;
1116
- id: 43113;
1117
- name: "Avalanche Fuji";
1118
- nativeCurrency: {
1119
- readonly decimals: 18;
1120
- readonly name: "Avalanche Fuji";
1121
- readonly symbol: "AVAX";
1122
- };
1123
- experimental_preconfirmationTime?: number | undefined | undefined;
1124
- rpcUrls: {
1125
- readonly default: {
1126
- readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
1127
- };
1128
- };
1129
- sourceId?: number | undefined | undefined;
1130
- testnet: true;
1131
- custom?: Record<string, unknown> | undefined;
1132
- fees?: import("viem").ChainFees<undefined> | undefined;
1133
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1134
- readonly blockchainId: "AVAX-FUJI";
1135
- readonly blockchainVm: "EVM";
1136
- readonly formatters?: undefined | undefined;
1137
- } | {
1138
- blockExplorers: {
1139
- readonly default: {
1140
- readonly name: "Etherscan";
1141
- readonly url: "https://etherscan.io";
1142
- readonly apiUrl: "https://api.etherscan.io/api";
1143
- };
1144
- };
1145
- blockTime: 12000;
1146
- contracts: {
1147
- readonly USDC: {
1148
- readonly address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
1148
+ readonly EURC: {
1149
+ readonly address: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
1149
1150
  readonly abi: readonly [{
1150
1151
  readonly type: "event";
1151
1152
  readonly name: "Approval";
@@ -1285,8 +1286,45 @@ declare const SUPPORTED_CHAINS: ({
1285
1286
  readonly decimals: () => 6;
1286
1287
  };
1287
1288
  };
1288
- readonly EURC: {
1289
- readonly address: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
1289
+ readonly multicall3: {
1290
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1291
+ readonly blockCreated: 7096959;
1292
+ };
1293
+ };
1294
+ ensTlds?: readonly string[] | undefined;
1295
+ id: 43113;
1296
+ name: "Avalanche Fuji";
1297
+ nativeCurrency: {
1298
+ readonly decimals: 18;
1299
+ readonly name: "Avalanche Fuji";
1300
+ readonly symbol: "AVAX";
1301
+ };
1302
+ experimental_preconfirmationTime?: number | undefined | undefined;
1303
+ rpcUrls: {
1304
+ readonly default: {
1305
+ readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
1306
+ };
1307
+ };
1308
+ sourceId?: number | undefined | undefined;
1309
+ testnet: true;
1310
+ custom?: Record<string, unknown> | undefined;
1311
+ fees?: import("viem").ChainFees<undefined> | undefined;
1312
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1313
+ readonly blockchainId: "AVAX-FUJI";
1314
+ readonly blockchainVm: "EVM";
1315
+ readonly formatters?: undefined | undefined;
1316
+ } | {
1317
+ blockExplorers: {
1318
+ readonly default: {
1319
+ readonly name: "Basescan";
1320
+ readonly url: "https://basescan.org";
1321
+ readonly apiUrl: "https://api.basescan.org/api";
1322
+ };
1323
+ };
1324
+ blockTime: 2000;
1325
+ contracts: {
1326
+ readonly USDC: {
1327
+ readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
1290
1328
  readonly abi: readonly [{
1291
1329
  readonly type: "event";
1292
1330
  readonly name: "Approval";
@@ -1426,8 +1464,8 @@ declare const SUPPORTED_CHAINS: ({
1426
1464
  readonly decimals: () => 6;
1427
1465
  };
1428
1466
  };
1429
- readonly USDT: {
1430
- readonly address: "0xdac17f958d2ee523a2206206994597c13d831ec7";
1467
+ readonly EURC: {
1468
+ readonly address: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
1431
1469
  readonly abi: readonly [{
1432
1470
  readonly type: "event";
1433
1471
  readonly name: "Approval";
@@ -1567,18 +1605,54 @@ declare const SUPPORTED_CHAINS: ({
1567
1605
  readonly decimals: () => 6;
1568
1606
  };
1569
1607
  };
1570
- readonly ensUniversalResolver: {
1571
- readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
1572
- readonly blockCreated: 23085558;
1608
+ readonly disputeGameFactory: {
1609
+ readonly 1: {
1610
+ readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
1611
+ };
1612
+ };
1613
+ readonly l2OutputOracle: {
1614
+ readonly 1: {
1615
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
1616
+ };
1573
1617
  };
1574
1618
  readonly multicall3: {
1575
1619
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1576
- readonly blockCreated: 14353601;
1620
+ readonly blockCreated: 5022;
1621
+ };
1622
+ readonly portal: {
1623
+ readonly 1: {
1624
+ readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
1625
+ readonly blockCreated: 17482143;
1626
+ };
1627
+ };
1628
+ readonly l1StandardBridge: {
1629
+ readonly 1: {
1630
+ readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
1631
+ readonly blockCreated: 17482143;
1632
+ };
1633
+ };
1634
+ readonly gasPriceOracle: {
1635
+ readonly address: "0x420000000000000000000000000000000000000F";
1636
+ };
1637
+ readonly l1Block: {
1638
+ readonly address: "0x4200000000000000000000000000000000000015";
1639
+ };
1640
+ readonly l2CrossDomainMessenger: {
1641
+ readonly address: "0x4200000000000000000000000000000000000007";
1642
+ };
1643
+ readonly l2Erc721Bridge: {
1644
+ readonly address: "0x4200000000000000000000000000000000000014";
1645
+ };
1646
+ readonly l2StandardBridge: {
1647
+ readonly address: "0x4200000000000000000000000000000000000010";
1648
+ };
1649
+ readonly l2ToL1MessagePasser: {
1650
+ readonly address: "0x4200000000000000000000000000000000000016";
1577
1651
  };
1578
1652
  };
1579
1653
  ensTlds?: readonly string[] | undefined;
1580
- id: 1;
1581
- name: "Ethereum";
1654
+ id: 8453;
1655
+ name: "Base";
1582
1656
  nativeCurrency: {
1583
1657
  readonly name: "Ether";
1584
1658
  readonly symbol: "ETH";
@@ -1587,29 +1661,261 @@ declare const SUPPORTED_CHAINS: ({
1587
1661
  experimental_preconfirmationTime?: number | undefined | undefined;
1588
1662
  rpcUrls: {
1589
1663
  readonly default: {
1590
- readonly http: readonly ["https://eth.merkle.io"];
1664
+ readonly http: readonly ["https://mainnet.base.org"];
1591
1665
  };
1592
1666
  };
1593
- sourceId?: number | undefined | undefined;
1667
+ sourceId: 1;
1594
1668
  testnet?: boolean | undefined | undefined;
1595
1669
  custom?: Record<string, unknown> | undefined;
1596
1670
  fees?: import("viem").ChainFees<undefined> | undefined;
1597
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1598
- readonly blockchainId: "ETH";
1671
+ formatters: {
1672
+ readonly block: {
1673
+ exclude: [] | undefined;
1674
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
1675
+ baseFeePerGas: bigint | null;
1676
+ blobGasUsed: bigint;
1677
+ difficulty: bigint;
1678
+ excessBlobGas: bigint;
1679
+ extraData: import("viem").Hex;
1680
+ gasLimit: bigint;
1681
+ gasUsed: bigint;
1682
+ hash: `0x${string}` | null;
1683
+ logsBloom: `0x${string}` | null;
1684
+ miner: import("abitype").Address;
1685
+ mixHash: import("viem").Hash;
1686
+ nonce: `0x${string}` | null;
1687
+ number: bigint | null;
1688
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
1689
+ parentHash: import("viem").Hash;
1690
+ receiptsRoot: import("viem").Hex;
1691
+ sealFields: import("viem").Hex[];
1692
+ sha3Uncles: import("viem").Hash;
1693
+ size: bigint;
1694
+ stateRoot: import("viem").Hash;
1695
+ timestamp: bigint;
1696
+ totalDifficulty: bigint | null;
1697
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
1698
+ transactionsRoot: import("viem").Hash;
1699
+ uncles: import("viem").Hash[];
1700
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
1701
+ withdrawalsRoot?: `0x${string}` | undefined;
1702
+ } & {};
1703
+ type: "block";
1704
+ };
1705
+ readonly transaction: {
1706
+ exclude: [] | undefined;
1707
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
1708
+ blockHash: `0x${string}` | null;
1709
+ blockNumber: bigint | null;
1710
+ from: import("abitype").Address;
1711
+ gas: bigint;
1712
+ hash: import("viem").Hash;
1713
+ input: import("viem").Hex;
1714
+ nonce: number;
1715
+ r: import("viem").Hex;
1716
+ s: import("viem").Hex;
1717
+ to: import("abitype").Address | null;
1718
+ transactionIndex: number | null;
1719
+ typeHex: import("viem").Hex | null;
1720
+ v: bigint;
1721
+ value: bigint;
1722
+ yParity: number;
1723
+ gasPrice?: undefined | undefined;
1724
+ maxFeePerBlobGas?: undefined | undefined;
1725
+ maxFeePerGas: bigint;
1726
+ maxPriorityFeePerGas: bigint;
1727
+ isSystemTx?: boolean;
1728
+ mint?: bigint | undefined | undefined;
1729
+ sourceHash: import("viem").Hex;
1730
+ type: "deposit";
1731
+ } | {
1732
+ r: import("viem").Hex;
1733
+ s: import("viem").Hex;
1734
+ v: bigint;
1735
+ to: import("abitype").Address | null;
1736
+ from: import("abitype").Address;
1737
+ gas: bigint;
1738
+ nonce: number;
1739
+ value: bigint;
1740
+ blockHash: `0x${string}` | null;
1741
+ blockNumber: bigint | null;
1742
+ hash: import("viem").Hash;
1743
+ input: import("viem").Hex;
1744
+ transactionIndex: number | null;
1745
+ typeHex: import("viem").Hex | null;
1746
+ accessList?: undefined | undefined;
1747
+ authorizationList?: undefined | undefined;
1748
+ blobVersionedHashes?: undefined | undefined;
1749
+ chainId?: number | undefined;
1750
+ yParity?: undefined | undefined;
1751
+ type: "legacy";
1752
+ gasPrice: bigint;
1753
+ maxFeePerBlobGas?: undefined | undefined;
1754
+ maxFeePerGas?: undefined | undefined;
1755
+ maxPriorityFeePerGas?: undefined | undefined;
1756
+ isSystemTx?: undefined | undefined;
1757
+ mint?: undefined | undefined;
1758
+ sourceHash?: undefined | undefined;
1759
+ } | {
1760
+ blockHash: `0x${string}` | null;
1761
+ blockNumber: bigint | null;
1762
+ from: import("abitype").Address;
1763
+ gas: bigint;
1764
+ hash: import("viem").Hash;
1765
+ input: import("viem").Hex;
1766
+ nonce: number;
1767
+ r: import("viem").Hex;
1768
+ s: import("viem").Hex;
1769
+ to: import("abitype").Address | null;
1770
+ transactionIndex: number | null;
1771
+ typeHex: import("viem").Hex | null;
1772
+ v: bigint;
1773
+ value: bigint;
1774
+ yParity: number;
1775
+ accessList: import("viem").AccessList;
1776
+ authorizationList?: undefined | undefined;
1777
+ blobVersionedHashes?: undefined | undefined;
1778
+ chainId: number;
1779
+ type: "eip2930";
1780
+ gasPrice: bigint;
1781
+ maxFeePerBlobGas?: undefined | undefined;
1782
+ maxFeePerGas?: undefined | undefined;
1783
+ maxPriorityFeePerGas?: undefined | undefined;
1784
+ isSystemTx?: undefined | undefined;
1785
+ mint?: undefined | undefined;
1786
+ sourceHash?: undefined | undefined;
1787
+ } | {
1788
+ blockHash: `0x${string}` | null;
1789
+ blockNumber: bigint | null;
1790
+ from: import("abitype").Address;
1791
+ gas: bigint;
1792
+ hash: import("viem").Hash;
1793
+ input: import("viem").Hex;
1794
+ nonce: number;
1795
+ r: import("viem").Hex;
1796
+ s: import("viem").Hex;
1797
+ to: import("abitype").Address | null;
1798
+ transactionIndex: number | null;
1799
+ typeHex: import("viem").Hex | null;
1800
+ v: bigint;
1801
+ value: bigint;
1802
+ yParity: number;
1803
+ accessList: import("viem").AccessList;
1804
+ authorizationList?: undefined | undefined;
1805
+ blobVersionedHashes?: undefined | undefined;
1806
+ chainId: number;
1807
+ type: "eip1559";
1808
+ gasPrice?: undefined | undefined;
1809
+ maxFeePerBlobGas?: undefined | undefined;
1810
+ maxFeePerGas: bigint;
1811
+ maxPriorityFeePerGas: bigint;
1812
+ isSystemTx?: undefined | undefined;
1813
+ mint?: undefined | undefined;
1814
+ sourceHash?: undefined | undefined;
1815
+ } | {
1816
+ blockHash: `0x${string}` | null;
1817
+ blockNumber: bigint | null;
1818
+ from: import("abitype").Address;
1819
+ gas: bigint;
1820
+ hash: import("viem").Hash;
1821
+ input: import("viem").Hex;
1822
+ nonce: number;
1823
+ r: import("viem").Hex;
1824
+ s: import("viem").Hex;
1825
+ to: import("abitype").Address | null;
1826
+ transactionIndex: number | null;
1827
+ typeHex: import("viem").Hex | null;
1828
+ v: bigint;
1829
+ value: bigint;
1830
+ yParity: number;
1831
+ accessList: import("viem").AccessList;
1832
+ authorizationList?: undefined | undefined;
1833
+ blobVersionedHashes: readonly import("viem").Hex[];
1834
+ chainId: number;
1835
+ type: "eip4844";
1836
+ gasPrice?: undefined | undefined;
1837
+ maxFeePerBlobGas: bigint;
1838
+ maxFeePerGas: bigint;
1839
+ maxPriorityFeePerGas: bigint;
1840
+ isSystemTx?: undefined | undefined;
1841
+ mint?: undefined | undefined;
1842
+ sourceHash?: undefined | undefined;
1843
+ } | {
1844
+ blockHash: `0x${string}` | null;
1845
+ blockNumber: bigint | null;
1846
+ from: import("abitype").Address;
1847
+ gas: bigint;
1848
+ hash: import("viem").Hash;
1849
+ input: import("viem").Hex;
1850
+ nonce: number;
1851
+ r: import("viem").Hex;
1852
+ s: import("viem").Hex;
1853
+ to: import("abitype").Address | null;
1854
+ transactionIndex: number | null;
1855
+ typeHex: import("viem").Hex | null;
1856
+ v: bigint;
1857
+ value: bigint;
1858
+ yParity: number;
1859
+ accessList: import("viem").AccessList;
1860
+ authorizationList: import("viem").SignedAuthorizationList;
1861
+ blobVersionedHashes?: undefined | undefined;
1862
+ chainId: number;
1863
+ type: "eip7702";
1864
+ gasPrice?: undefined | undefined;
1865
+ maxFeePerBlobGas?: undefined | undefined;
1866
+ maxFeePerGas: bigint;
1867
+ maxPriorityFeePerGas: bigint;
1868
+ isSystemTx?: undefined | undefined;
1869
+ mint?: undefined | undefined;
1870
+ sourceHash?: undefined | undefined;
1871
+ }) & {};
1872
+ type: "transaction";
1873
+ };
1874
+ readonly transactionReceipt: {
1875
+ exclude: [] | undefined;
1876
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
1877
+ blobGasPrice?: bigint | undefined;
1878
+ blobGasUsed?: bigint | undefined;
1879
+ blockHash: import("viem").Hash;
1880
+ blockNumber: bigint;
1881
+ contractAddress: import("abitype").Address | null | undefined;
1882
+ cumulativeGasUsed: bigint;
1883
+ effectiveGasPrice: bigint;
1884
+ from: import("abitype").Address;
1885
+ gasUsed: bigint;
1886
+ logs: import("viem").Log<bigint, number, false>[];
1887
+ logsBloom: import("viem").Hex;
1888
+ root?: `0x${string}` | undefined;
1889
+ status: "success" | "reverted";
1890
+ to: import("abitype").Address | null;
1891
+ transactionHash: import("viem").Hash;
1892
+ transactionIndex: number;
1893
+ type: import("viem").TransactionType;
1894
+ l1GasPrice: bigint | null;
1895
+ l1GasUsed: bigint | null;
1896
+ l1Fee: bigint | null;
1897
+ l1FeeScalar: number | null;
1898
+ } & {};
1899
+ type: "transactionReceipt";
1900
+ };
1901
+ };
1902
+ serializers: {
1903
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
1904
+ };
1905
+ readonly blockchainId: "BASE";
1599
1906
  readonly blockchainVm: "EVM";
1600
- readonly formatters?: undefined | undefined;
1601
1907
  } | {
1602
1908
  blockExplorers: {
1603
1909
  readonly default: {
1604
- readonly name: "Etherscan";
1605
- readonly url: "https://sepolia.etherscan.io";
1606
- readonly apiUrl: "https://api-sepolia.etherscan.io/api";
1910
+ readonly name: "Basescan";
1911
+ readonly url: "https://sepolia.basescan.org";
1912
+ readonly apiUrl: "https://api-sepolia.basescan.org/api";
1607
1913
  };
1608
1914
  };
1609
- blockTime?: number | undefined | undefined;
1915
+ blockTime: 2000;
1610
1916
  contracts: {
1611
1917
  readonly USDC: {
1612
- readonly address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
1918
+ readonly address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
1613
1919
  readonly abi: readonly [{
1614
1920
  readonly type: "event";
1615
1921
  readonly name: "Approval";
@@ -1750,7 +2056,7 @@ declare const SUPPORTED_CHAINS: ({
1750
2056
  };
1751
2057
  };
1752
2058
  readonly EURC: {
1753
- readonly address: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
2059
+ readonly address: "0x808456652fdb597867f38412077A9182bf77359F";
1754
2060
  readonly abi: readonly [{
1755
2061
  readonly type: "event";
1756
2062
  readonly name: "Approval";
@@ -1890,471 +2196,359 @@ declare const SUPPORTED_CHAINS: ({
1890
2196
  readonly decimals: () => 6;
1891
2197
  };
1892
2198
  };
1893
- readonly multicall3: {
1894
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1895
- readonly blockCreated: 751532;
1896
- };
1897
- readonly ensUniversalResolver: {
1898
- readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
1899
- readonly blockCreated: 8928790;
2199
+ readonly disputeGameFactory: {
2200
+ readonly 11155111: {
2201
+ readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
2202
+ };
1900
2203
  };
1901
- };
1902
- ensTlds?: readonly string[] | undefined;
1903
- id: 11155111;
1904
- name: "Sepolia";
1905
- nativeCurrency: {
1906
- readonly name: "Sepolia Ether";
1907
- readonly symbol: "ETH";
1908
- readonly decimals: 18;
1909
- };
1910
- experimental_preconfirmationTime?: number | undefined | undefined;
1911
- rpcUrls: {
1912
- readonly default: {
1913
- readonly http: readonly ["https://sepolia.drpc.org"];
2204
+ readonly l2OutputOracle: {
2205
+ readonly 11155111: {
2206
+ readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
2207
+ };
1914
2208
  };
1915
- };
1916
- sourceId?: number | undefined | undefined;
1917
- testnet: true;
1918
- custom?: Record<string, unknown> | undefined;
1919
- fees?: import("viem").ChainFees<undefined> | undefined;
1920
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1921
- readonly blockchainId: "ETH-SEPOLIA";
1922
- readonly blockchainVm: "EVM";
1923
- readonly formatters?: undefined | undefined;
1924
- } | {
1925
- blockExplorers: {
1926
- readonly default: {
1927
- readonly name: "PolygonScan";
1928
- readonly url: "https://polygonscan.com";
1929
- readonly apiUrl: "https://api.polygonscan.com/api";
2209
+ readonly portal: {
2210
+ readonly 11155111: {
2211
+ readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
2212
+ readonly blockCreated: 4446677;
2213
+ };
1930
2214
  };
1931
- };
1932
- blockTime?: number | undefined | undefined;
1933
- contracts: {
1934
- readonly USDC: {
1935
- readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
1936
- readonly abi: readonly [{
1937
- readonly type: "event";
1938
- readonly name: "Approval";
1939
- readonly inputs: readonly [{
1940
- readonly indexed: true;
1941
- readonly name: "owner";
1942
- readonly type: "address";
1943
- }, {
1944
- readonly indexed: true;
1945
- readonly name: "spender";
1946
- readonly type: "address";
1947
- }, {
1948
- readonly indexed: false;
1949
- readonly name: "value";
1950
- readonly type: "uint256";
1951
- }];
1952
- }, {
1953
- readonly type: "event";
1954
- readonly name: "Transfer";
1955
- readonly inputs: readonly [{
1956
- readonly indexed: true;
1957
- readonly name: "from";
1958
- readonly type: "address";
1959
- }, {
1960
- readonly indexed: true;
1961
- readonly name: "to";
1962
- readonly type: "address";
1963
- }, {
1964
- readonly indexed: false;
1965
- readonly name: "value";
1966
- readonly type: "uint256";
1967
- }];
1968
- }, {
1969
- readonly type: "function";
1970
- readonly name: "allowance";
1971
- readonly stateMutability: "view";
1972
- readonly inputs: readonly [{
1973
- readonly name: "owner";
1974
- readonly type: "address";
1975
- }, {
1976
- readonly name: "spender";
1977
- readonly type: "address";
1978
- }];
1979
- readonly outputs: readonly [{
1980
- readonly type: "uint256";
1981
- }];
1982
- }, {
1983
- readonly type: "function";
1984
- readonly name: "approve";
1985
- readonly stateMutability: "nonpayable";
1986
- readonly inputs: readonly [{
1987
- readonly name: "spender";
1988
- readonly type: "address";
1989
- }, {
1990
- readonly name: "amount";
1991
- readonly type: "uint256";
1992
- }];
1993
- readonly outputs: readonly [{
1994
- readonly type: "bool";
1995
- }];
1996
- }, {
1997
- readonly type: "function";
1998
- readonly name: "balanceOf";
1999
- readonly stateMutability: "view";
2000
- readonly inputs: readonly [{
2001
- readonly name: "account";
2002
- readonly type: "address";
2003
- }];
2004
- readonly outputs: readonly [{
2005
- readonly type: "uint256";
2006
- }];
2007
- }, {
2008
- readonly type: "function";
2009
- readonly name: "decimals";
2010
- readonly stateMutability: "view";
2011
- readonly inputs: readonly [];
2012
- readonly outputs: readonly [{
2013
- readonly type: "uint8";
2014
- }];
2015
- }, {
2016
- readonly type: "function";
2017
- readonly name: "name";
2018
- readonly stateMutability: "view";
2019
- readonly inputs: readonly [];
2020
- readonly outputs: readonly [{
2021
- readonly type: "string";
2022
- }];
2023
- }, {
2024
- readonly type: "function";
2025
- readonly name: "symbol";
2026
- readonly stateMutability: "view";
2027
- readonly inputs: readonly [];
2028
- readonly outputs: readonly [{
2029
- readonly type: "string";
2030
- }];
2031
- }, {
2032
- readonly type: "function";
2033
- readonly name: "totalSupply";
2034
- readonly stateMutability: "view";
2035
- readonly inputs: readonly [];
2036
- readonly outputs: readonly [{
2037
- readonly type: "uint256";
2038
- }];
2039
- }, {
2040
- readonly type: "function";
2041
- readonly name: "transfer";
2042
- readonly stateMutability: "nonpayable";
2043
- readonly inputs: readonly [{
2044
- readonly name: "recipient";
2045
- readonly type: "address";
2046
- }, {
2047
- readonly name: "amount";
2048
- readonly type: "uint256";
2049
- }];
2050
- readonly outputs: readonly [{
2051
- readonly type: "bool";
2052
- }];
2053
- }, {
2054
- readonly type: "function";
2055
- readonly name: "transferFrom";
2056
- readonly stateMutability: "nonpayable";
2057
- readonly inputs: readonly [{
2058
- readonly name: "sender";
2059
- readonly type: "address";
2060
- }, {
2061
- readonly name: "recipient";
2062
- readonly type: "address";
2063
- }, {
2064
- readonly name: "amount";
2065
- readonly type: "uint256";
2066
- }];
2067
- readonly outputs: readonly [{
2068
- readonly type: "bool";
2069
- }];
2070
- }];
2071
- readonly read: {
2072
- readonly decimals: () => 6;
2215
+ readonly l1StandardBridge: {
2216
+ readonly 11155111: {
2217
+ readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
2218
+ readonly blockCreated: 4446677;
2073
2219
  };
2074
2220
  };
2075
2221
  readonly multicall3: {
2076
2222
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2077
- readonly blockCreated: 25770160;
2223
+ readonly blockCreated: 1059647;
2224
+ };
2225
+ readonly gasPriceOracle: {
2226
+ readonly address: "0x420000000000000000000000000000000000000F";
2227
+ };
2228
+ readonly l1Block: {
2229
+ readonly address: "0x4200000000000000000000000000000000000015";
2230
+ };
2231
+ readonly l2CrossDomainMessenger: {
2232
+ readonly address: "0x4200000000000000000000000000000000000007";
2233
+ };
2234
+ readonly l2Erc721Bridge: {
2235
+ readonly address: "0x4200000000000000000000000000000000000014";
2236
+ };
2237
+ readonly l2StandardBridge: {
2238
+ readonly address: "0x4200000000000000000000000000000000000010";
2239
+ };
2240
+ readonly l2ToL1MessagePasser: {
2241
+ readonly address: "0x4200000000000000000000000000000000000016";
2078
2242
  };
2079
2243
  };
2080
2244
  ensTlds?: readonly string[] | undefined;
2081
- id: 137;
2082
- name: "Polygon";
2245
+ id: 84532;
2246
+ name: "Base Sepolia";
2083
2247
  nativeCurrency: {
2084
- readonly name: "POL";
2085
- readonly symbol: "POL";
2248
+ readonly name: "Sepolia Ether";
2249
+ readonly symbol: "ETH";
2086
2250
  readonly decimals: 18;
2087
2251
  };
2088
2252
  experimental_preconfirmationTime?: number | undefined | undefined;
2089
2253
  rpcUrls: {
2090
2254
  readonly default: {
2091
- readonly http: readonly ["https://polygon-rpc.com"];
2255
+ readonly http: readonly ["https://sepolia.base.org"];
2092
2256
  };
2093
2257
  };
2094
- sourceId?: number | undefined | undefined;
2095
- testnet?: boolean | undefined | undefined;
2258
+ sourceId: 11155111;
2259
+ testnet: true;
2096
2260
  custom?: Record<string, unknown> | undefined;
2097
2261
  fees?: import("viem").ChainFees<undefined> | undefined;
2098
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2099
- readonly blockchainId: "MATIC";
2100
- readonly blockchainVm: "EVM";
2101
- readonly formatters?: undefined | undefined;
2102
- } | {
2103
- blockExplorers: {
2104
- readonly default: {
2105
- readonly name: "PolygonScan";
2106
- readonly url: "https://amoy.polygonscan.com";
2107
- readonly apiUrl: "https://api-amoy.polygonscan.com/api";
2108
- };
2109
- };
2110
- blockTime?: number | undefined | undefined;
2111
- contracts: {
2112
- readonly USDC: {
2113
- readonly address: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
2114
- readonly abi: readonly [{
2115
- readonly type: "event";
2116
- readonly name: "Approval";
2117
- readonly inputs: readonly [{
2118
- readonly indexed: true;
2119
- readonly name: "owner";
2120
- readonly type: "address";
2121
- }, {
2122
- readonly indexed: true;
2123
- readonly name: "spender";
2124
- readonly type: "address";
2125
- }, {
2126
- readonly indexed: false;
2127
- readonly name: "value";
2128
- readonly type: "uint256";
2129
- }];
2130
- }, {
2131
- readonly type: "event";
2132
- readonly name: "Transfer";
2133
- readonly inputs: readonly [{
2134
- readonly indexed: true;
2135
- readonly name: "from";
2136
- readonly type: "address";
2137
- }, {
2138
- readonly indexed: true;
2139
- readonly name: "to";
2140
- readonly type: "address";
2141
- }, {
2142
- readonly indexed: false;
2143
- readonly name: "value";
2144
- readonly type: "uint256";
2145
- }];
2146
- }, {
2147
- readonly type: "function";
2148
- readonly name: "allowance";
2149
- readonly stateMutability: "view";
2150
- readonly inputs: readonly [{
2151
- readonly name: "owner";
2152
- readonly type: "address";
2153
- }, {
2154
- readonly name: "spender";
2155
- readonly type: "address";
2156
- }];
2157
- readonly outputs: readonly [{
2158
- readonly type: "uint256";
2159
- }];
2160
- }, {
2161
- readonly type: "function";
2162
- readonly name: "approve";
2163
- readonly stateMutability: "nonpayable";
2164
- readonly inputs: readonly [{
2165
- readonly name: "spender";
2166
- readonly type: "address";
2167
- }, {
2168
- readonly name: "amount";
2169
- readonly type: "uint256";
2170
- }];
2171
- readonly outputs: readonly [{
2172
- readonly type: "bool";
2173
- }];
2174
- }, {
2175
- readonly type: "function";
2176
- readonly name: "balanceOf";
2177
- readonly stateMutability: "view";
2178
- readonly inputs: readonly [{
2179
- readonly name: "account";
2180
- readonly type: "address";
2181
- }];
2182
- readonly outputs: readonly [{
2183
- readonly type: "uint256";
2184
- }];
2185
- }, {
2186
- readonly type: "function";
2187
- readonly name: "decimals";
2188
- readonly stateMutability: "view";
2189
- readonly inputs: readonly [];
2190
- readonly outputs: readonly [{
2191
- readonly type: "uint8";
2192
- }];
2193
- }, {
2194
- readonly type: "function";
2195
- readonly name: "name";
2196
- readonly stateMutability: "view";
2197
- readonly inputs: readonly [];
2198
- readonly outputs: readonly [{
2199
- readonly type: "string";
2200
- }];
2201
- }, {
2202
- readonly type: "function";
2203
- readonly name: "symbol";
2204
- readonly stateMutability: "view";
2205
- readonly inputs: readonly [];
2206
- readonly outputs: readonly [{
2207
- readonly type: "string";
2208
- }];
2209
- }, {
2210
- readonly type: "function";
2211
- readonly name: "totalSupply";
2212
- readonly stateMutability: "view";
2213
- readonly inputs: readonly [];
2214
- readonly outputs: readonly [{
2215
- readonly type: "uint256";
2216
- }];
2217
- }, {
2218
- readonly type: "function";
2219
- readonly name: "transfer";
2220
- readonly stateMutability: "nonpayable";
2221
- readonly inputs: readonly [{
2222
- readonly name: "recipient";
2223
- readonly type: "address";
2224
- }, {
2225
- readonly name: "amount";
2226
- readonly type: "uint256";
2227
- }];
2228
- readonly outputs: readonly [{
2229
- readonly type: "bool";
2230
- }];
2231
- }, {
2232
- readonly type: "function";
2233
- readonly name: "transferFrom";
2234
- readonly stateMutability: "nonpayable";
2235
- readonly inputs: readonly [{
2236
- readonly name: "sender";
2237
- readonly type: "address";
2238
- }, {
2239
- readonly name: "recipient";
2240
- readonly type: "address";
2241
- }, {
2242
- readonly name: "amount";
2243
- readonly type: "uint256";
2244
- }];
2245
- readonly outputs: readonly [{
2246
- readonly type: "bool";
2247
- }];
2248
- }];
2249
- readonly read: {
2250
- readonly decimals: () => 6;
2251
- };
2252
- };
2253
- readonly multicall3: {
2254
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2255
- readonly blockCreated: 3127388;
2256
- };
2257
- };
2258
- ensTlds?: readonly string[] | undefined;
2259
- id: 80002;
2260
- name: "Polygon Amoy";
2261
- nativeCurrency: {
2262
- readonly name: "POL";
2263
- readonly symbol: "POL";
2264
- readonly decimals: 18;
2265
- };
2266
- experimental_preconfirmationTime?: number | undefined | undefined;
2267
- rpcUrls: {
2268
- readonly default: {
2269
- readonly http: readonly ["https://rpc-amoy.polygon.technology"];
2270
- };
2271
- };
2272
- sourceId?: number | undefined | undefined;
2273
- testnet: true;
2274
- custom?: Record<string, unknown> | undefined;
2275
- fees?: import("viem").ChainFees<undefined> | undefined;
2276
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2277
- readonly blockchainId: "MATIC-AMOY";
2278
- readonly blockchainVm: "EVM";
2279
- readonly formatters?: undefined | undefined;
2280
- } | {
2281
- blockExplorers: {
2282
- readonly default: {
2283
- readonly name: "Basescan";
2284
- readonly url: "https://basescan.org";
2285
- readonly apiUrl: "https://api.basescan.org/api";
2262
+ formatters: {
2263
+ readonly block: {
2264
+ exclude: [] | undefined;
2265
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
2266
+ baseFeePerGas: bigint | null;
2267
+ blobGasUsed: bigint;
2268
+ difficulty: bigint;
2269
+ excessBlobGas: bigint;
2270
+ extraData: import("viem").Hex;
2271
+ gasLimit: bigint;
2272
+ gasUsed: bigint;
2273
+ hash: `0x${string}` | null;
2274
+ logsBloom: `0x${string}` | null;
2275
+ miner: import("abitype").Address;
2276
+ mixHash: import("viem").Hash;
2277
+ nonce: `0x${string}` | null;
2278
+ number: bigint | null;
2279
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
2280
+ parentHash: import("viem").Hash;
2281
+ receiptsRoot: import("viem").Hex;
2282
+ sealFields: import("viem").Hex[];
2283
+ sha3Uncles: import("viem").Hash;
2284
+ size: bigint;
2285
+ stateRoot: import("viem").Hash;
2286
+ timestamp: bigint;
2287
+ totalDifficulty: bigint | null;
2288
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
2289
+ transactionsRoot: import("viem").Hash;
2290
+ uncles: import("viem").Hash[];
2291
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
2292
+ withdrawalsRoot?: `0x${string}` | undefined;
2293
+ } & {};
2294
+ type: "block";
2286
2295
  };
2287
- };
2288
- blockTime: 2000;
2289
- contracts: {
2290
- readonly USDC: {
2291
- readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
2292
- readonly abi: readonly [{
2293
- readonly type: "event";
2294
- readonly name: "Approval";
2295
- readonly inputs: readonly [{
2296
- readonly indexed: true;
2297
- readonly name: "owner";
2298
- readonly type: "address";
2299
- }, {
2300
- readonly indexed: true;
2301
- readonly name: "spender";
2302
- readonly type: "address";
2303
- }, {
2304
- readonly indexed: false;
2305
- readonly name: "value";
2306
- readonly type: "uint256";
2307
- }];
2308
- }, {
2309
- readonly type: "event";
2310
- readonly name: "Transfer";
2311
- readonly inputs: readonly [{
2312
- readonly indexed: true;
2313
- readonly name: "from";
2314
- readonly type: "address";
2315
- }, {
2316
- readonly indexed: true;
2317
- readonly name: "to";
2318
- readonly type: "address";
2319
- }, {
2320
- readonly indexed: false;
2321
- readonly name: "value";
2322
- readonly type: "uint256";
2323
- }];
2324
- }, {
2325
- readonly type: "function";
2326
- readonly name: "allowance";
2327
- readonly stateMutability: "view";
2328
- readonly inputs: readonly [{
2329
- readonly name: "owner";
2330
- readonly type: "address";
2331
- }, {
2332
- readonly name: "spender";
2333
- readonly type: "address";
2334
- }];
2335
- readonly outputs: readonly [{
2336
- readonly type: "uint256";
2337
- }];
2338
- }, {
2339
- readonly type: "function";
2340
- readonly name: "approve";
2341
- readonly stateMutability: "nonpayable";
2342
- readonly inputs: readonly [{
2343
- readonly name: "spender";
2344
- readonly type: "address";
2345
- }, {
2346
- readonly name: "amount";
2347
- readonly type: "uint256";
2348
- }];
2349
- readonly outputs: readonly [{
2350
- readonly type: "bool";
2296
+ readonly transaction: {
2297
+ exclude: [] | undefined;
2298
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
2299
+ blockHash: `0x${string}` | null;
2300
+ blockNumber: bigint | null;
2301
+ from: import("abitype").Address;
2302
+ gas: bigint;
2303
+ hash: import("viem").Hash;
2304
+ input: import("viem").Hex;
2305
+ nonce: number;
2306
+ r: import("viem").Hex;
2307
+ s: import("viem").Hex;
2308
+ to: import("abitype").Address | null;
2309
+ transactionIndex: number | null;
2310
+ typeHex: import("viem").Hex | null;
2311
+ v: bigint;
2312
+ value: bigint;
2313
+ yParity: number;
2314
+ gasPrice?: undefined | undefined;
2315
+ maxFeePerBlobGas?: undefined | undefined;
2316
+ maxFeePerGas: bigint;
2317
+ maxPriorityFeePerGas: bigint;
2318
+ isSystemTx?: boolean;
2319
+ mint?: bigint | undefined | undefined;
2320
+ sourceHash: import("viem").Hex;
2321
+ type: "deposit";
2322
+ } | {
2323
+ r: import("viem").Hex;
2324
+ s: import("viem").Hex;
2325
+ v: bigint;
2326
+ to: import("abitype").Address | null;
2327
+ from: import("abitype").Address;
2328
+ gas: bigint;
2329
+ nonce: number;
2330
+ value: bigint;
2331
+ blockHash: `0x${string}` | null;
2332
+ blockNumber: bigint | null;
2333
+ hash: import("viem").Hash;
2334
+ input: import("viem").Hex;
2335
+ transactionIndex: number | null;
2336
+ typeHex: import("viem").Hex | null;
2337
+ accessList?: undefined | undefined;
2338
+ authorizationList?: undefined | undefined;
2339
+ blobVersionedHashes?: undefined | undefined;
2340
+ chainId?: number | undefined;
2341
+ yParity?: undefined | undefined;
2342
+ type: "legacy";
2343
+ gasPrice: bigint;
2344
+ maxFeePerBlobGas?: undefined | undefined;
2345
+ maxFeePerGas?: undefined | undefined;
2346
+ maxPriorityFeePerGas?: undefined | undefined;
2347
+ isSystemTx?: undefined | undefined;
2348
+ mint?: undefined | undefined;
2349
+ sourceHash?: undefined | undefined;
2350
+ } | {
2351
+ blockHash: `0x${string}` | null;
2352
+ blockNumber: bigint | null;
2353
+ from: import("abitype").Address;
2354
+ gas: bigint;
2355
+ hash: import("viem").Hash;
2356
+ input: import("viem").Hex;
2357
+ nonce: number;
2358
+ r: import("viem").Hex;
2359
+ s: import("viem").Hex;
2360
+ to: import("abitype").Address | null;
2361
+ transactionIndex: number | null;
2362
+ typeHex: import("viem").Hex | null;
2363
+ v: bigint;
2364
+ value: bigint;
2365
+ yParity: number;
2366
+ accessList: import("viem").AccessList;
2367
+ authorizationList?: undefined | undefined;
2368
+ blobVersionedHashes?: undefined | undefined;
2369
+ chainId: number;
2370
+ type: "eip2930";
2371
+ gasPrice: bigint;
2372
+ maxFeePerBlobGas?: undefined | undefined;
2373
+ maxFeePerGas?: undefined | undefined;
2374
+ maxPriorityFeePerGas?: undefined | undefined;
2375
+ isSystemTx?: undefined | undefined;
2376
+ mint?: undefined | undefined;
2377
+ sourceHash?: undefined | undefined;
2378
+ } | {
2379
+ blockHash: `0x${string}` | null;
2380
+ blockNumber: bigint | null;
2381
+ from: import("abitype").Address;
2382
+ gas: bigint;
2383
+ hash: import("viem").Hash;
2384
+ input: import("viem").Hex;
2385
+ nonce: number;
2386
+ r: import("viem").Hex;
2387
+ s: import("viem").Hex;
2388
+ to: import("abitype").Address | null;
2389
+ transactionIndex: number | null;
2390
+ typeHex: import("viem").Hex | null;
2391
+ v: bigint;
2392
+ value: bigint;
2393
+ yParity: number;
2394
+ accessList: import("viem").AccessList;
2395
+ authorizationList?: undefined | undefined;
2396
+ blobVersionedHashes?: undefined | undefined;
2397
+ chainId: number;
2398
+ type: "eip1559";
2399
+ gasPrice?: undefined | undefined;
2400
+ maxFeePerBlobGas?: undefined | undefined;
2401
+ maxFeePerGas: bigint;
2402
+ maxPriorityFeePerGas: bigint;
2403
+ isSystemTx?: undefined | undefined;
2404
+ mint?: undefined | undefined;
2405
+ sourceHash?: undefined | undefined;
2406
+ } | {
2407
+ blockHash: `0x${string}` | null;
2408
+ blockNumber: bigint | null;
2409
+ from: import("abitype").Address;
2410
+ gas: bigint;
2411
+ hash: import("viem").Hash;
2412
+ input: import("viem").Hex;
2413
+ nonce: number;
2414
+ r: import("viem").Hex;
2415
+ s: import("viem").Hex;
2416
+ to: import("abitype").Address | null;
2417
+ transactionIndex: number | null;
2418
+ typeHex: import("viem").Hex | null;
2419
+ v: bigint;
2420
+ value: bigint;
2421
+ yParity: number;
2422
+ accessList: import("viem").AccessList;
2423
+ authorizationList?: undefined | undefined;
2424
+ blobVersionedHashes: readonly import("viem").Hex[];
2425
+ chainId: number;
2426
+ type: "eip4844";
2427
+ gasPrice?: undefined | undefined;
2428
+ maxFeePerBlobGas: bigint;
2429
+ maxFeePerGas: bigint;
2430
+ maxPriorityFeePerGas: bigint;
2431
+ isSystemTx?: undefined | undefined;
2432
+ mint?: undefined | undefined;
2433
+ sourceHash?: undefined | undefined;
2434
+ } | {
2435
+ blockHash: `0x${string}` | null;
2436
+ blockNumber: bigint | null;
2437
+ from: import("abitype").Address;
2438
+ gas: bigint;
2439
+ hash: import("viem").Hash;
2440
+ input: import("viem").Hex;
2441
+ nonce: number;
2442
+ r: import("viem").Hex;
2443
+ s: import("viem").Hex;
2444
+ to: import("abitype").Address | null;
2445
+ transactionIndex: number | null;
2446
+ typeHex: import("viem").Hex | null;
2447
+ v: bigint;
2448
+ value: bigint;
2449
+ yParity: number;
2450
+ accessList: import("viem").AccessList;
2451
+ authorizationList: import("viem").SignedAuthorizationList;
2452
+ blobVersionedHashes?: undefined | undefined;
2453
+ chainId: number;
2454
+ type: "eip7702";
2455
+ gasPrice?: undefined | undefined;
2456
+ maxFeePerBlobGas?: undefined | undefined;
2457
+ maxFeePerGas: bigint;
2458
+ maxPriorityFeePerGas: bigint;
2459
+ isSystemTx?: undefined | undefined;
2460
+ mint?: undefined | undefined;
2461
+ sourceHash?: undefined | undefined;
2462
+ }) & {};
2463
+ type: "transaction";
2464
+ };
2465
+ readonly transactionReceipt: {
2466
+ exclude: [] | undefined;
2467
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
2468
+ blobGasPrice?: bigint | undefined;
2469
+ blobGasUsed?: bigint | undefined;
2470
+ blockHash: import("viem").Hash;
2471
+ blockNumber: bigint;
2472
+ contractAddress: import("abitype").Address | null | undefined;
2473
+ cumulativeGasUsed: bigint;
2474
+ effectiveGasPrice: bigint;
2475
+ from: import("abitype").Address;
2476
+ gasUsed: bigint;
2477
+ logs: import("viem").Log<bigint, number, false>[];
2478
+ logsBloom: import("viem").Hex;
2479
+ root?: `0x${string}` | undefined;
2480
+ status: "success" | "reverted";
2481
+ to: import("abitype").Address | null;
2482
+ transactionHash: import("viem").Hash;
2483
+ transactionIndex: number;
2484
+ type: import("viem").TransactionType;
2485
+ l1GasPrice: bigint | null;
2486
+ l1GasUsed: bigint | null;
2487
+ l1Fee: bigint | null;
2488
+ l1FeeScalar: number | null;
2489
+ } & {};
2490
+ type: "transactionReceipt";
2491
+ };
2492
+ };
2493
+ serializers: {
2494
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
2495
+ };
2496
+ readonly blockchainId: "BASE-SEPOLIA";
2497
+ readonly blockchainVm: "EVM";
2498
+ readonly network: "base-sepolia";
2499
+ } | {
2500
+ blockExplorers: {
2501
+ readonly default: {
2502
+ readonly name: "Etherscan";
2503
+ readonly url: "https://etherscan.io";
2504
+ readonly apiUrl: "https://api.etherscan.io/api";
2505
+ };
2506
+ };
2507
+ blockTime: 12000;
2508
+ contracts: {
2509
+ readonly USDC: {
2510
+ readonly address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
2511
+ readonly abi: readonly [{
2512
+ readonly type: "event";
2513
+ readonly name: "Approval";
2514
+ readonly inputs: readonly [{
2515
+ readonly indexed: true;
2516
+ readonly name: "owner";
2517
+ readonly type: "address";
2518
+ }, {
2519
+ readonly indexed: true;
2520
+ readonly name: "spender";
2521
+ readonly type: "address";
2522
+ }, {
2523
+ readonly indexed: false;
2524
+ readonly name: "value";
2525
+ readonly type: "uint256";
2526
+ }];
2527
+ }, {
2528
+ readonly type: "event";
2529
+ readonly name: "Transfer";
2530
+ readonly inputs: readonly [{
2531
+ readonly indexed: true;
2532
+ readonly name: "from";
2533
+ readonly type: "address";
2534
+ }, {
2535
+ readonly indexed: true;
2536
+ readonly name: "to";
2537
+ readonly type: "address";
2538
+ }, {
2539
+ readonly indexed: false;
2540
+ readonly name: "value";
2541
+ readonly type: "uint256";
2351
2542
  }];
2352
2543
  }, {
2353
2544
  readonly type: "function";
2354
- readonly name: "balanceOf";
2545
+ readonly name: "allowance";
2355
2546
  readonly stateMutability: "view";
2356
2547
  readonly inputs: readonly [{
2357
- readonly name: "account";
2548
+ readonly name: "owner";
2549
+ readonly type: "address";
2550
+ }, {
2551
+ readonly name: "spender";
2358
2552
  readonly type: "address";
2359
2553
  }];
2360
2554
  readonly outputs: readonly [{
@@ -2362,7 +2556,32 @@ declare const SUPPORTED_CHAINS: ({
2362
2556
  }];
2363
2557
  }, {
2364
2558
  readonly type: "function";
2365
- readonly name: "decimals";
2559
+ readonly name: "approve";
2560
+ readonly stateMutability: "nonpayable";
2561
+ readonly inputs: readonly [{
2562
+ readonly name: "spender";
2563
+ readonly type: "address";
2564
+ }, {
2565
+ readonly name: "amount";
2566
+ readonly type: "uint256";
2567
+ }];
2568
+ readonly outputs: readonly [{
2569
+ readonly type: "bool";
2570
+ }];
2571
+ }, {
2572
+ readonly type: "function";
2573
+ readonly name: "balanceOf";
2574
+ readonly stateMutability: "view";
2575
+ readonly inputs: readonly [{
2576
+ readonly name: "account";
2577
+ readonly type: "address";
2578
+ }];
2579
+ readonly outputs: readonly [{
2580
+ readonly type: "uint256";
2581
+ }];
2582
+ }, {
2583
+ readonly type: "function";
2584
+ readonly name: "decimals";
2366
2585
  readonly stateMutability: "view";
2367
2586
  readonly inputs: readonly [];
2368
2587
  readonly outputs: readonly [{
@@ -2429,7 +2648,7 @@ declare const SUPPORTED_CHAINS: ({
2429
2648
  };
2430
2649
  };
2431
2650
  readonly EURC: {
2432
- readonly address: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
2651
+ readonly address: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
2433
2652
  readonly abi: readonly [{
2434
2653
  readonly type: "event";
2435
2654
  readonly name: "Approval";
@@ -2569,54 +2788,159 @@ declare const SUPPORTED_CHAINS: ({
2569
2788
  readonly decimals: () => 6;
2570
2789
  };
2571
2790
  };
2572
- readonly disputeGameFactory: {
2573
- readonly 1: {
2574
- readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
2791
+ readonly USDT: {
2792
+ readonly address: "0xdac17f958d2ee523a2206206994597c13d831ec7";
2793
+ readonly abi: readonly [{
2794
+ readonly type: "event";
2795
+ readonly name: "Approval";
2796
+ readonly inputs: readonly [{
2797
+ readonly indexed: true;
2798
+ readonly name: "owner";
2799
+ readonly type: "address";
2800
+ }, {
2801
+ readonly indexed: true;
2802
+ readonly name: "spender";
2803
+ readonly type: "address";
2804
+ }, {
2805
+ readonly indexed: false;
2806
+ readonly name: "value";
2807
+ readonly type: "uint256";
2808
+ }];
2809
+ }, {
2810
+ readonly type: "event";
2811
+ readonly name: "Transfer";
2812
+ readonly inputs: readonly [{
2813
+ readonly indexed: true;
2814
+ readonly name: "from";
2815
+ readonly type: "address";
2816
+ }, {
2817
+ readonly indexed: true;
2818
+ readonly name: "to";
2819
+ readonly type: "address";
2820
+ }, {
2821
+ readonly indexed: false;
2822
+ readonly name: "value";
2823
+ readonly type: "uint256";
2824
+ }];
2825
+ }, {
2826
+ readonly type: "function";
2827
+ readonly name: "allowance";
2828
+ readonly stateMutability: "view";
2829
+ readonly inputs: readonly [{
2830
+ readonly name: "owner";
2831
+ readonly type: "address";
2832
+ }, {
2833
+ readonly name: "spender";
2834
+ readonly type: "address";
2835
+ }];
2836
+ readonly outputs: readonly [{
2837
+ readonly type: "uint256";
2838
+ }];
2839
+ }, {
2840
+ readonly type: "function";
2841
+ readonly name: "approve";
2842
+ readonly stateMutability: "nonpayable";
2843
+ readonly inputs: readonly [{
2844
+ readonly name: "spender";
2845
+ readonly type: "address";
2846
+ }, {
2847
+ readonly name: "amount";
2848
+ readonly type: "uint256";
2849
+ }];
2850
+ readonly outputs: readonly [{
2851
+ readonly type: "bool";
2852
+ }];
2853
+ }, {
2854
+ readonly type: "function";
2855
+ readonly name: "balanceOf";
2856
+ readonly stateMutability: "view";
2857
+ readonly inputs: readonly [{
2858
+ readonly name: "account";
2859
+ readonly type: "address";
2860
+ }];
2861
+ readonly outputs: readonly [{
2862
+ readonly type: "uint256";
2863
+ }];
2864
+ }, {
2865
+ readonly type: "function";
2866
+ readonly name: "decimals";
2867
+ readonly stateMutability: "view";
2868
+ readonly inputs: readonly [];
2869
+ readonly outputs: readonly [{
2870
+ readonly type: "uint8";
2871
+ }];
2872
+ }, {
2873
+ readonly type: "function";
2874
+ readonly name: "name";
2875
+ readonly stateMutability: "view";
2876
+ readonly inputs: readonly [];
2877
+ readonly outputs: readonly [{
2878
+ readonly type: "string";
2879
+ }];
2880
+ }, {
2881
+ readonly type: "function";
2882
+ readonly name: "symbol";
2883
+ readonly stateMutability: "view";
2884
+ readonly inputs: readonly [];
2885
+ readonly outputs: readonly [{
2886
+ readonly type: "string";
2887
+ }];
2888
+ }, {
2889
+ readonly type: "function";
2890
+ readonly name: "totalSupply";
2891
+ readonly stateMutability: "view";
2892
+ readonly inputs: readonly [];
2893
+ readonly outputs: readonly [{
2894
+ readonly type: "uint256";
2895
+ }];
2896
+ }, {
2897
+ readonly type: "function";
2898
+ readonly name: "transfer";
2899
+ readonly stateMutability: "nonpayable";
2900
+ readonly inputs: readonly [{
2901
+ readonly name: "recipient";
2902
+ readonly type: "address";
2903
+ }, {
2904
+ readonly name: "amount";
2905
+ readonly type: "uint256";
2906
+ }];
2907
+ readonly outputs: readonly [{
2908
+ readonly type: "bool";
2909
+ }];
2910
+ }, {
2911
+ readonly type: "function";
2912
+ readonly name: "transferFrom";
2913
+ readonly stateMutability: "nonpayable";
2914
+ readonly inputs: readonly [{
2915
+ readonly name: "sender";
2916
+ readonly type: "address";
2917
+ }, {
2918
+ readonly name: "recipient";
2919
+ readonly type: "address";
2920
+ }, {
2921
+ readonly name: "amount";
2922
+ readonly type: "uint256";
2923
+ }];
2924
+ readonly outputs: readonly [{
2925
+ readonly type: "bool";
2926
+ }];
2927
+ }];
2928
+ readonly read: {
2929
+ readonly decimals: () => 6;
2575
2930
  };
2576
2931
  };
2577
- readonly l2OutputOracle: {
2578
- readonly 1: {
2579
- readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
2580
- };
2932
+ readonly ensUniversalResolver: {
2933
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
2934
+ readonly blockCreated: 23085558;
2581
2935
  };
2582
2936
  readonly multicall3: {
2583
2937
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2584
- readonly blockCreated: 5022;
2585
- };
2586
- readonly portal: {
2587
- readonly 1: {
2588
- readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
2589
- readonly blockCreated: 17482143;
2590
- };
2591
- };
2592
- readonly l1StandardBridge: {
2593
- readonly 1: {
2594
- readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
2595
- readonly blockCreated: 17482143;
2596
- };
2597
- };
2598
- readonly gasPriceOracle: {
2599
- readonly address: "0x420000000000000000000000000000000000000F";
2600
- };
2601
- readonly l1Block: {
2602
- readonly address: "0x4200000000000000000000000000000000000015";
2603
- };
2604
- readonly l2CrossDomainMessenger: {
2605
- readonly address: "0x4200000000000000000000000000000000000007";
2606
- };
2607
- readonly l2Erc721Bridge: {
2608
- readonly address: "0x4200000000000000000000000000000000000014";
2609
- };
2610
- readonly l2StandardBridge: {
2611
- readonly address: "0x4200000000000000000000000000000000000010";
2612
- };
2613
- readonly l2ToL1MessagePasser: {
2614
- readonly address: "0x4200000000000000000000000000000000000016";
2938
+ readonly blockCreated: 14353601;
2615
2939
  };
2616
2940
  };
2617
2941
  ensTlds?: readonly string[] | undefined;
2618
- id: 8453;
2619
- name: "Base";
2942
+ id: 1;
2943
+ name: "Ethereum";
2620
2944
  nativeCurrency: {
2621
2945
  readonly name: "Ether";
2622
2946
  readonly symbol: "ETH";
@@ -2625,261 +2949,29 @@ declare const SUPPORTED_CHAINS: ({
2625
2949
  experimental_preconfirmationTime?: number | undefined | undefined;
2626
2950
  rpcUrls: {
2627
2951
  readonly default: {
2628
- readonly http: readonly ["https://mainnet.base.org"];
2952
+ readonly http: readonly ["https://eth.merkle.io"];
2629
2953
  };
2630
2954
  };
2631
- sourceId: 1;
2955
+ sourceId?: number | undefined | undefined;
2632
2956
  testnet?: boolean | undefined | undefined;
2633
2957
  custom?: Record<string, unknown> | undefined;
2634
2958
  fees?: import("viem").ChainFees<undefined> | undefined;
2635
- formatters: {
2636
- readonly block: {
2637
- exclude: [] | undefined;
2638
- format: (args: import("viem/chains").OpStackRpcBlock) => {
2639
- baseFeePerGas: bigint | null;
2640
- blobGasUsed: bigint;
2641
- difficulty: bigint;
2642
- excessBlobGas: bigint;
2643
- extraData: import("viem").Hex;
2644
- gasLimit: bigint;
2645
- gasUsed: bigint;
2646
- hash: `0x${string}` | null;
2647
- logsBloom: `0x${string}` | null;
2648
- miner: import("abitype").Address;
2649
- mixHash: import("viem").Hash;
2650
- nonce: `0x${string}` | null;
2651
- number: bigint | null;
2652
- parentBeaconBlockRoot?: `0x${string}` | undefined;
2653
- parentHash: import("viem").Hash;
2654
- receiptsRoot: import("viem").Hex;
2655
- sealFields: import("viem").Hex[];
2656
- sha3Uncles: import("viem").Hash;
2657
- size: bigint;
2658
- stateRoot: import("viem").Hash;
2659
- timestamp: bigint;
2660
- totalDifficulty: bigint | null;
2661
- transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
2662
- transactionsRoot: import("viem").Hash;
2663
- uncles: import("viem").Hash[];
2664
- withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
2665
- withdrawalsRoot?: `0x${string}` | undefined;
2666
- } & {};
2667
- type: "block";
2668
- };
2669
- readonly transaction: {
2670
- exclude: [] | undefined;
2671
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
2672
- blockHash: `0x${string}` | null;
2673
- blockNumber: bigint | null;
2674
- from: import("abitype").Address;
2675
- gas: bigint;
2676
- hash: import("viem").Hash;
2677
- input: import("viem").Hex;
2678
- nonce: number;
2679
- r: import("viem").Hex;
2680
- s: import("viem").Hex;
2681
- to: import("abitype").Address | null;
2682
- transactionIndex: number | null;
2683
- typeHex: import("viem").Hex | null;
2684
- v: bigint;
2685
- value: bigint;
2686
- yParity: number;
2687
- gasPrice?: undefined | undefined;
2688
- maxFeePerBlobGas?: undefined | undefined;
2689
- maxFeePerGas: bigint;
2690
- maxPriorityFeePerGas: bigint;
2691
- isSystemTx?: boolean;
2692
- mint?: bigint | undefined | undefined;
2693
- sourceHash: import("viem").Hex;
2694
- type: "deposit";
2695
- } | {
2696
- r: import("viem").Hex;
2697
- s: import("viem").Hex;
2698
- v: bigint;
2699
- to: import("abitype").Address | null;
2700
- from: import("abitype").Address;
2701
- gas: bigint;
2702
- nonce: number;
2703
- value: bigint;
2704
- blockHash: `0x${string}` | null;
2705
- blockNumber: bigint | null;
2706
- hash: import("viem").Hash;
2707
- input: import("viem").Hex;
2708
- transactionIndex: number | null;
2709
- typeHex: import("viem").Hex | null;
2710
- accessList?: undefined | undefined;
2711
- authorizationList?: undefined | undefined;
2712
- blobVersionedHashes?: undefined | undefined;
2713
- chainId?: number | undefined;
2714
- yParity?: undefined | undefined;
2715
- type: "legacy";
2716
- gasPrice: bigint;
2717
- maxFeePerBlobGas?: undefined | undefined;
2718
- maxFeePerGas?: undefined | undefined;
2719
- maxPriorityFeePerGas?: undefined | undefined;
2720
- isSystemTx?: undefined | undefined;
2721
- mint?: undefined | undefined;
2722
- sourceHash?: undefined | undefined;
2723
- } | {
2724
- blockHash: `0x${string}` | null;
2725
- blockNumber: bigint | null;
2726
- from: import("abitype").Address;
2727
- gas: bigint;
2728
- hash: import("viem").Hash;
2729
- input: import("viem").Hex;
2730
- nonce: number;
2731
- r: import("viem").Hex;
2732
- s: import("viem").Hex;
2733
- to: import("abitype").Address | null;
2734
- transactionIndex: number | null;
2735
- typeHex: import("viem").Hex | null;
2736
- v: bigint;
2737
- value: bigint;
2738
- yParity: number;
2739
- accessList: import("viem").AccessList;
2740
- authorizationList?: undefined | undefined;
2741
- blobVersionedHashes?: undefined | undefined;
2742
- chainId: number;
2743
- type: "eip2930";
2744
- gasPrice: bigint;
2745
- maxFeePerBlobGas?: undefined | undefined;
2746
- maxFeePerGas?: undefined | undefined;
2747
- maxPriorityFeePerGas?: undefined | undefined;
2748
- isSystemTx?: undefined | undefined;
2749
- mint?: undefined | undefined;
2750
- sourceHash?: undefined | undefined;
2751
- } | {
2752
- blockHash: `0x${string}` | null;
2753
- blockNumber: bigint | null;
2754
- from: import("abitype").Address;
2755
- gas: bigint;
2756
- hash: import("viem").Hash;
2757
- input: import("viem").Hex;
2758
- nonce: number;
2759
- r: import("viem").Hex;
2760
- s: import("viem").Hex;
2761
- to: import("abitype").Address | null;
2762
- transactionIndex: number | null;
2763
- typeHex: import("viem").Hex | null;
2764
- v: bigint;
2765
- value: bigint;
2766
- yParity: number;
2767
- accessList: import("viem").AccessList;
2768
- authorizationList?: undefined | undefined;
2769
- blobVersionedHashes?: undefined | undefined;
2770
- chainId: number;
2771
- type: "eip1559";
2772
- gasPrice?: undefined | undefined;
2773
- maxFeePerBlobGas?: undefined | undefined;
2774
- maxFeePerGas: bigint;
2775
- maxPriorityFeePerGas: bigint;
2776
- isSystemTx?: undefined | undefined;
2777
- mint?: undefined | undefined;
2778
- sourceHash?: undefined | undefined;
2779
- } | {
2780
- blockHash: `0x${string}` | null;
2781
- blockNumber: bigint | null;
2782
- from: import("abitype").Address;
2783
- gas: bigint;
2784
- hash: import("viem").Hash;
2785
- input: import("viem").Hex;
2786
- nonce: number;
2787
- r: import("viem").Hex;
2788
- s: import("viem").Hex;
2789
- to: import("abitype").Address | null;
2790
- transactionIndex: number | null;
2791
- typeHex: import("viem").Hex | null;
2792
- v: bigint;
2793
- value: bigint;
2794
- yParity: number;
2795
- accessList: import("viem").AccessList;
2796
- authorizationList?: undefined | undefined;
2797
- blobVersionedHashes: readonly import("viem").Hex[];
2798
- chainId: number;
2799
- type: "eip4844";
2800
- gasPrice?: undefined | undefined;
2801
- maxFeePerBlobGas: bigint;
2802
- maxFeePerGas: bigint;
2803
- maxPriorityFeePerGas: bigint;
2804
- isSystemTx?: undefined | undefined;
2805
- mint?: undefined | undefined;
2806
- sourceHash?: undefined | undefined;
2807
- } | {
2808
- blockHash: `0x${string}` | null;
2809
- blockNumber: bigint | null;
2810
- from: import("abitype").Address;
2811
- gas: bigint;
2812
- hash: import("viem").Hash;
2813
- input: import("viem").Hex;
2814
- nonce: number;
2815
- r: import("viem").Hex;
2816
- s: import("viem").Hex;
2817
- to: import("abitype").Address | null;
2818
- transactionIndex: number | null;
2819
- typeHex: import("viem").Hex | null;
2820
- v: bigint;
2821
- value: bigint;
2822
- yParity: number;
2823
- accessList: import("viem").AccessList;
2824
- authorizationList: import("viem").SignedAuthorizationList;
2825
- blobVersionedHashes?: undefined | undefined;
2826
- chainId: number;
2827
- type: "eip7702";
2828
- gasPrice?: undefined | undefined;
2829
- maxFeePerBlobGas?: undefined | undefined;
2830
- maxFeePerGas: bigint;
2831
- maxPriorityFeePerGas: bigint;
2832
- isSystemTx?: undefined | undefined;
2833
- mint?: undefined | undefined;
2834
- sourceHash?: undefined | undefined;
2835
- }) & {};
2836
- type: "transaction";
2837
- };
2838
- readonly transactionReceipt: {
2839
- exclude: [] | undefined;
2840
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
2841
- blobGasPrice?: bigint | undefined;
2842
- blobGasUsed?: bigint | undefined;
2843
- blockHash: import("viem").Hash;
2844
- blockNumber: bigint;
2845
- contractAddress: import("abitype").Address | null | undefined;
2846
- cumulativeGasUsed: bigint;
2847
- effectiveGasPrice: bigint;
2848
- from: import("abitype").Address;
2849
- gasUsed: bigint;
2850
- logs: import("viem").Log<bigint, number, false>[];
2851
- logsBloom: import("viem").Hex;
2852
- root?: `0x${string}` | undefined;
2853
- status: "success" | "reverted";
2854
- to: import("abitype").Address | null;
2855
- transactionHash: import("viem").Hash;
2856
- transactionIndex: number;
2857
- type: import("viem").TransactionType;
2858
- l1GasPrice: bigint | null;
2859
- l1GasUsed: bigint | null;
2860
- l1Fee: bigint | null;
2861
- l1FeeScalar: number | null;
2862
- } & {};
2863
- type: "transactionReceipt";
2864
- };
2865
- };
2866
- serializers: {
2867
- readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
2868
- };
2869
- readonly blockchainId: "BASE";
2959
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2960
+ readonly blockchainId: "ETH";
2870
2961
  readonly blockchainVm: "EVM";
2962
+ readonly formatters?: undefined | undefined;
2871
2963
  } | {
2872
2964
  blockExplorers: {
2873
2965
  readonly default: {
2874
- readonly name: "Basescan";
2875
- readonly url: "https://sepolia.basescan.org";
2876
- readonly apiUrl: "https://api-sepolia.basescan.org/api";
2966
+ readonly name: "Etherscan";
2967
+ readonly url: "https://sepolia.etherscan.io";
2968
+ readonly apiUrl: "https://api-sepolia.etherscan.io/api";
2877
2969
  };
2878
2970
  };
2879
- blockTime: 2000;
2971
+ blockTime?: number | undefined | undefined;
2880
2972
  contracts: {
2881
2973
  readonly USDC: {
2882
- readonly address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
2974
+ readonly address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
2883
2975
  readonly abi: readonly [{
2884
2976
  readonly type: "event";
2885
2977
  readonly name: "Approval";
@@ -3020,7 +3112,7 @@ declare const SUPPORTED_CHAINS: ({
3020
3112
  };
3021
3113
  };
3022
3114
  readonly EURC: {
3023
- readonly address: "0x808456652fdb597867f38412077A9182bf77359F";
3115
+ readonly address: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
3024
3116
  readonly abi: readonly [{
3025
3117
  readonly type: "event";
3026
3118
  readonly name: "Approval";
@@ -3160,54 +3252,18 @@ declare const SUPPORTED_CHAINS: ({
3160
3252
  readonly decimals: () => 6;
3161
3253
  };
3162
3254
  };
3163
- readonly disputeGameFactory: {
3164
- readonly 11155111: {
3165
- readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
3166
- };
3167
- };
3168
- readonly l2OutputOracle: {
3169
- readonly 11155111: {
3170
- readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
3171
- };
3172
- };
3173
- readonly portal: {
3174
- readonly 11155111: {
3175
- readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
3176
- readonly blockCreated: 4446677;
3177
- };
3178
- };
3179
- readonly l1StandardBridge: {
3180
- readonly 11155111: {
3181
- readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
3182
- readonly blockCreated: 4446677;
3183
- };
3184
- };
3185
3255
  readonly multicall3: {
3186
3256
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3187
- readonly blockCreated: 1059647;
3188
- };
3189
- readonly gasPriceOracle: {
3190
- readonly address: "0x420000000000000000000000000000000000000F";
3191
- };
3192
- readonly l1Block: {
3193
- readonly address: "0x4200000000000000000000000000000000000015";
3194
- };
3195
- readonly l2CrossDomainMessenger: {
3196
- readonly address: "0x4200000000000000000000000000000000000007";
3197
- };
3198
- readonly l2Erc721Bridge: {
3199
- readonly address: "0x4200000000000000000000000000000000000014";
3200
- };
3201
- readonly l2StandardBridge: {
3202
- readonly address: "0x4200000000000000000000000000000000000010";
3257
+ readonly blockCreated: 751532;
3203
3258
  };
3204
- readonly l2ToL1MessagePasser: {
3205
- readonly address: "0x4200000000000000000000000000000000000016";
3259
+ readonly ensUniversalResolver: {
3260
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
3261
+ readonly blockCreated: 8928790;
3206
3262
  };
3207
3263
  };
3208
3264
  ensTlds?: readonly string[] | undefined;
3209
- id: 84532;
3210
- name: "Base Sepolia";
3265
+ id: 11155111;
3266
+ name: "Sepolia";
3211
3267
  nativeCurrency: {
3212
3268
  readonly name: "Sepolia Ether";
3213
3269
  readonly symbol: "ETH";
@@ -3216,250 +3272,457 @@ declare const SUPPORTED_CHAINS: ({
3216
3272
  experimental_preconfirmationTime?: number | undefined | undefined;
3217
3273
  rpcUrls: {
3218
3274
  readonly default: {
3219
- readonly http: readonly ["https://sepolia.base.org"];
3275
+ readonly http: readonly ["https://sepolia.drpc.org"];
3220
3276
  };
3221
3277
  };
3222
- sourceId: 11155111;
3278
+ sourceId?: number | undefined | undefined;
3223
3279
  testnet: true;
3224
3280
  custom?: Record<string, unknown> | undefined;
3225
3281
  fees?: import("viem").ChainFees<undefined> | undefined;
3226
- formatters: {
3227
- readonly block: {
3228
- exclude: [] | undefined;
3229
- format: (args: import("viem/chains").OpStackRpcBlock) => {
3230
- baseFeePerGas: bigint | null;
3231
- blobGasUsed: bigint;
3232
- difficulty: bigint;
3233
- excessBlobGas: bigint;
3234
- extraData: import("viem").Hex;
3235
- gasLimit: bigint;
3236
- gasUsed: bigint;
3237
- hash: `0x${string}` | null;
3238
- logsBloom: `0x${string}` | null;
3239
- miner: import("abitype").Address;
3240
- mixHash: import("viem").Hash;
3241
- nonce: `0x${string}` | null;
3242
- number: bigint | null;
3243
- parentBeaconBlockRoot?: `0x${string}` | undefined;
3244
- parentHash: import("viem").Hash;
3245
- receiptsRoot: import("viem").Hex;
3246
- sealFields: import("viem").Hex[];
3247
- sha3Uncles: import("viem").Hash;
3248
- size: bigint;
3249
- stateRoot: import("viem").Hash;
3250
- timestamp: bigint;
3251
- totalDifficulty: bigint | null;
3252
- transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
3253
- transactionsRoot: import("viem").Hash;
3254
- uncles: import("viem").Hash[];
3255
- withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
3256
- withdrawalsRoot?: `0x${string}` | undefined;
3257
- } & {};
3258
- type: "block";
3282
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3283
+ readonly blockchainId: "ETH-SEPOLIA";
3284
+ readonly blockchainVm: "EVM";
3285
+ readonly formatters?: undefined | undefined;
3286
+ } | {
3287
+ blockExplorers: {
3288
+ readonly default: {
3289
+ readonly name: "PolygonScan";
3290
+ readonly url: "https://polygonscan.com";
3291
+ readonly apiUrl: "https://api.polygonscan.com/api";
3259
3292
  };
3260
- readonly transaction: {
3261
- exclude: [] | undefined;
3262
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
3263
- blockHash: `0x${string}` | null;
3264
- blockNumber: bigint | null;
3265
- from: import("abitype").Address;
3266
- gas: bigint;
3267
- hash: import("viem").Hash;
3268
- input: import("viem").Hex;
3269
- nonce: number;
3270
- r: import("viem").Hex;
3271
- s: import("viem").Hex;
3272
- to: import("abitype").Address | null;
3273
- transactionIndex: number | null;
3274
- typeHex: import("viem").Hex | null;
3275
- v: bigint;
3276
- value: bigint;
3277
- yParity: number;
3278
- gasPrice?: undefined | undefined;
3279
- maxFeePerBlobGas?: undefined | undefined;
3280
- maxFeePerGas: bigint;
3281
- maxPriorityFeePerGas: bigint;
3282
- isSystemTx?: boolean;
3283
- mint?: bigint | undefined | undefined;
3284
- sourceHash: import("viem").Hex;
3285
- type: "deposit";
3286
- } | {
3287
- r: import("viem").Hex;
3288
- s: import("viem").Hex;
3289
- v: bigint;
3290
- to: import("abitype").Address | null;
3291
- from: import("abitype").Address;
3292
- gas: bigint;
3293
- nonce: number;
3294
- value: bigint;
3295
- blockHash: `0x${string}` | null;
3296
- blockNumber: bigint | null;
3297
- hash: import("viem").Hash;
3298
- input: import("viem").Hex;
3299
- transactionIndex: number | null;
3300
- typeHex: import("viem").Hex | null;
3301
- accessList?: undefined | undefined;
3302
- authorizationList?: undefined | undefined;
3303
- blobVersionedHashes?: undefined | undefined;
3304
- chainId?: number | undefined;
3305
- yParity?: undefined | undefined;
3306
- type: "legacy";
3307
- gasPrice: bigint;
3308
- maxFeePerBlobGas?: undefined | undefined;
3309
- maxFeePerGas?: undefined | undefined;
3310
- maxPriorityFeePerGas?: undefined | undefined;
3311
- isSystemTx?: undefined | undefined;
3312
- mint?: undefined | undefined;
3313
- sourceHash?: undefined | undefined;
3314
- } | {
3315
- blockHash: `0x${string}` | null;
3316
- blockNumber: bigint | null;
3317
- from: import("abitype").Address;
3318
- gas: bigint;
3319
- hash: import("viem").Hash;
3320
- input: import("viem").Hex;
3321
- nonce: number;
3322
- r: import("viem").Hex;
3323
- s: import("viem").Hex;
3324
- to: import("abitype").Address | null;
3325
- transactionIndex: number | null;
3326
- typeHex: import("viem").Hex | null;
3327
- v: bigint;
3328
- value: bigint;
3329
- yParity: number;
3330
- accessList: import("viem").AccessList;
3331
- authorizationList?: undefined | undefined;
3332
- blobVersionedHashes?: undefined | undefined;
3333
- chainId: number;
3334
- type: "eip2930";
3335
- gasPrice: bigint;
3336
- maxFeePerBlobGas?: undefined | undefined;
3337
- maxFeePerGas?: undefined | undefined;
3338
- maxPriorityFeePerGas?: undefined | undefined;
3339
- isSystemTx?: undefined | undefined;
3340
- mint?: undefined | undefined;
3341
- sourceHash?: undefined | undefined;
3342
- } | {
3343
- blockHash: `0x${string}` | null;
3344
- blockNumber: bigint | null;
3345
- from: import("abitype").Address;
3346
- gas: bigint;
3347
- hash: import("viem").Hash;
3348
- input: import("viem").Hex;
3349
- nonce: number;
3350
- r: import("viem").Hex;
3351
- s: import("viem").Hex;
3352
- to: import("abitype").Address | null;
3353
- transactionIndex: number | null;
3354
- typeHex: import("viem").Hex | null;
3355
- v: bigint;
3356
- value: bigint;
3357
- yParity: number;
3358
- accessList: import("viem").AccessList;
3359
- authorizationList?: undefined | undefined;
3360
- blobVersionedHashes?: undefined | undefined;
3361
- chainId: number;
3362
- type: "eip1559";
3363
- gasPrice?: undefined | undefined;
3364
- maxFeePerBlobGas?: undefined | undefined;
3365
- maxFeePerGas: bigint;
3366
- maxPriorityFeePerGas: bigint;
3367
- isSystemTx?: undefined | undefined;
3368
- mint?: undefined | undefined;
3369
- sourceHash?: undefined | undefined;
3370
- } | {
3371
- blockHash: `0x${string}` | null;
3372
- blockNumber: bigint | null;
3373
- from: import("abitype").Address;
3374
- gas: bigint;
3375
- hash: import("viem").Hash;
3376
- input: import("viem").Hex;
3377
- nonce: number;
3378
- r: import("viem").Hex;
3379
- s: import("viem").Hex;
3380
- to: import("abitype").Address | null;
3381
- transactionIndex: number | null;
3382
- typeHex: import("viem").Hex | null;
3383
- v: bigint;
3384
- value: bigint;
3385
- yParity: number;
3386
- accessList: import("viem").AccessList;
3387
- authorizationList?: undefined | undefined;
3388
- blobVersionedHashes: readonly import("viem").Hex[];
3389
- chainId: number;
3390
- type: "eip4844";
3391
- gasPrice?: undefined | undefined;
3392
- maxFeePerBlobGas: bigint;
3393
- maxFeePerGas: bigint;
3394
- maxPriorityFeePerGas: bigint;
3395
- isSystemTx?: undefined | undefined;
3396
- mint?: undefined | undefined;
3397
- sourceHash?: undefined | undefined;
3398
- } | {
3399
- blockHash: `0x${string}` | null;
3400
- blockNumber: bigint | null;
3401
- from: import("abitype").Address;
3402
- gas: bigint;
3403
- hash: import("viem").Hash;
3404
- input: import("viem").Hex;
3405
- nonce: number;
3406
- r: import("viem").Hex;
3407
- s: import("viem").Hex;
3408
- to: import("abitype").Address | null;
3409
- transactionIndex: number | null;
3410
- typeHex: import("viem").Hex | null;
3411
- v: bigint;
3412
- value: bigint;
3413
- yParity: number;
3414
- accessList: import("viem").AccessList;
3415
- authorizationList: import("viem").SignedAuthorizationList;
3416
- blobVersionedHashes?: undefined | undefined;
3417
- chainId: number;
3418
- type: "eip7702";
3419
- gasPrice?: undefined | undefined;
3420
- maxFeePerBlobGas?: undefined | undefined;
3421
- maxFeePerGas: bigint;
3422
- maxPriorityFeePerGas: bigint;
3423
- isSystemTx?: undefined | undefined;
3424
- mint?: undefined | undefined;
3425
- sourceHash?: undefined | undefined;
3426
- }) & {};
3427
- type: "transaction";
3293
+ };
3294
+ blockTime?: number | undefined | undefined;
3295
+ contracts: {
3296
+ readonly USDC: {
3297
+ readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
3298
+ readonly abi: readonly [{
3299
+ readonly type: "event";
3300
+ readonly name: "Approval";
3301
+ readonly inputs: readonly [{
3302
+ readonly indexed: true;
3303
+ readonly name: "owner";
3304
+ readonly type: "address";
3305
+ }, {
3306
+ readonly indexed: true;
3307
+ readonly name: "spender";
3308
+ readonly type: "address";
3309
+ }, {
3310
+ readonly indexed: false;
3311
+ readonly name: "value";
3312
+ readonly type: "uint256";
3313
+ }];
3314
+ }, {
3315
+ readonly type: "event";
3316
+ readonly name: "Transfer";
3317
+ readonly inputs: readonly [{
3318
+ readonly indexed: true;
3319
+ readonly name: "from";
3320
+ readonly type: "address";
3321
+ }, {
3322
+ readonly indexed: true;
3323
+ readonly name: "to";
3324
+ readonly type: "address";
3325
+ }, {
3326
+ readonly indexed: false;
3327
+ readonly name: "value";
3328
+ readonly type: "uint256";
3329
+ }];
3330
+ }, {
3331
+ readonly type: "function";
3332
+ readonly name: "allowance";
3333
+ readonly stateMutability: "view";
3334
+ readonly inputs: readonly [{
3335
+ readonly name: "owner";
3336
+ readonly type: "address";
3337
+ }, {
3338
+ readonly name: "spender";
3339
+ readonly type: "address";
3340
+ }];
3341
+ readonly outputs: readonly [{
3342
+ readonly type: "uint256";
3343
+ }];
3344
+ }, {
3345
+ readonly type: "function";
3346
+ readonly name: "approve";
3347
+ readonly stateMutability: "nonpayable";
3348
+ readonly inputs: readonly [{
3349
+ readonly name: "spender";
3350
+ readonly type: "address";
3351
+ }, {
3352
+ readonly name: "amount";
3353
+ readonly type: "uint256";
3354
+ }];
3355
+ readonly outputs: readonly [{
3356
+ readonly type: "bool";
3357
+ }];
3358
+ }, {
3359
+ readonly type: "function";
3360
+ readonly name: "balanceOf";
3361
+ readonly stateMutability: "view";
3362
+ readonly inputs: readonly [{
3363
+ readonly name: "account";
3364
+ readonly type: "address";
3365
+ }];
3366
+ readonly outputs: readonly [{
3367
+ readonly type: "uint256";
3368
+ }];
3369
+ }, {
3370
+ readonly type: "function";
3371
+ readonly name: "decimals";
3372
+ readonly stateMutability: "view";
3373
+ readonly inputs: readonly [];
3374
+ readonly outputs: readonly [{
3375
+ readonly type: "uint8";
3376
+ }];
3377
+ }, {
3378
+ readonly type: "function";
3379
+ readonly name: "name";
3380
+ readonly stateMutability: "view";
3381
+ readonly inputs: readonly [];
3382
+ readonly outputs: readonly [{
3383
+ readonly type: "string";
3384
+ }];
3385
+ }, {
3386
+ readonly type: "function";
3387
+ readonly name: "symbol";
3388
+ readonly stateMutability: "view";
3389
+ readonly inputs: readonly [];
3390
+ readonly outputs: readonly [{
3391
+ readonly type: "string";
3392
+ }];
3393
+ }, {
3394
+ readonly type: "function";
3395
+ readonly name: "totalSupply";
3396
+ readonly stateMutability: "view";
3397
+ readonly inputs: readonly [];
3398
+ readonly outputs: readonly [{
3399
+ readonly type: "uint256";
3400
+ }];
3401
+ }, {
3402
+ readonly type: "function";
3403
+ readonly name: "transfer";
3404
+ readonly stateMutability: "nonpayable";
3405
+ readonly inputs: readonly [{
3406
+ readonly name: "recipient";
3407
+ readonly type: "address";
3408
+ }, {
3409
+ readonly name: "amount";
3410
+ readonly type: "uint256";
3411
+ }];
3412
+ readonly outputs: readonly [{
3413
+ readonly type: "bool";
3414
+ }];
3415
+ }, {
3416
+ readonly type: "function";
3417
+ readonly name: "transferFrom";
3418
+ readonly stateMutability: "nonpayable";
3419
+ readonly inputs: readonly [{
3420
+ readonly name: "sender";
3421
+ readonly type: "address";
3422
+ }, {
3423
+ readonly name: "recipient";
3424
+ readonly type: "address";
3425
+ }, {
3426
+ readonly name: "amount";
3427
+ readonly type: "uint256";
3428
+ }];
3429
+ readonly outputs: readonly [{
3430
+ readonly type: "bool";
3431
+ }];
3432
+ }];
3433
+ readonly read: {
3434
+ readonly decimals: () => 6;
3435
+ };
3436
+ };
3437
+ readonly multicall3: {
3438
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3439
+ readonly blockCreated: 25770160;
3440
+ };
3441
+ };
3442
+ ensTlds?: readonly string[] | undefined;
3443
+ id: 137;
3444
+ name: "Polygon";
3445
+ nativeCurrency: {
3446
+ readonly name: "POL";
3447
+ readonly symbol: "POL";
3448
+ readonly decimals: 18;
3449
+ };
3450
+ experimental_preconfirmationTime?: number | undefined | undefined;
3451
+ rpcUrls: {
3452
+ readonly default: {
3453
+ readonly http: readonly ["https://polygon-rpc.com"];
3454
+ };
3455
+ };
3456
+ sourceId?: number | undefined | undefined;
3457
+ testnet?: boolean | undefined | undefined;
3458
+ custom?: Record<string, unknown> | undefined;
3459
+ fees?: import("viem").ChainFees<undefined> | undefined;
3460
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3461
+ readonly blockchainId: "MATIC";
3462
+ readonly blockchainVm: "EVM";
3463
+ readonly formatters?: undefined | undefined;
3464
+ } | {
3465
+ blockExplorers: {
3466
+ readonly default: {
3467
+ readonly name: "PolygonScan";
3468
+ readonly url: "https://amoy.polygonscan.com";
3469
+ readonly apiUrl: "https://api-amoy.polygonscan.com/api";
3470
+ };
3471
+ };
3472
+ blockTime?: number | undefined | undefined;
3473
+ contracts: {
3474
+ readonly USDC: {
3475
+ readonly address: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
3476
+ readonly abi: readonly [{
3477
+ readonly type: "event";
3478
+ readonly name: "Approval";
3479
+ readonly inputs: readonly [{
3480
+ readonly indexed: true;
3481
+ readonly name: "owner";
3482
+ readonly type: "address";
3483
+ }, {
3484
+ readonly indexed: true;
3485
+ readonly name: "spender";
3486
+ readonly type: "address";
3487
+ }, {
3488
+ readonly indexed: false;
3489
+ readonly name: "value";
3490
+ readonly type: "uint256";
3491
+ }];
3492
+ }, {
3493
+ readonly type: "event";
3494
+ readonly name: "Transfer";
3495
+ readonly inputs: readonly [{
3496
+ readonly indexed: true;
3497
+ readonly name: "from";
3498
+ readonly type: "address";
3499
+ }, {
3500
+ readonly indexed: true;
3501
+ readonly name: "to";
3502
+ readonly type: "address";
3503
+ }, {
3504
+ readonly indexed: false;
3505
+ readonly name: "value";
3506
+ readonly type: "uint256";
3507
+ }];
3508
+ }, {
3509
+ readonly type: "function";
3510
+ readonly name: "allowance";
3511
+ readonly stateMutability: "view";
3512
+ readonly inputs: readonly [{
3513
+ readonly name: "owner";
3514
+ readonly type: "address";
3515
+ }, {
3516
+ readonly name: "spender";
3517
+ readonly type: "address";
3518
+ }];
3519
+ readonly outputs: readonly [{
3520
+ readonly type: "uint256";
3521
+ }];
3522
+ }, {
3523
+ readonly type: "function";
3524
+ readonly name: "approve";
3525
+ readonly stateMutability: "nonpayable";
3526
+ readonly inputs: readonly [{
3527
+ readonly name: "spender";
3528
+ readonly type: "address";
3529
+ }, {
3530
+ readonly name: "amount";
3531
+ readonly type: "uint256";
3532
+ }];
3533
+ readonly outputs: readonly [{
3534
+ readonly type: "bool";
3535
+ }];
3536
+ }, {
3537
+ readonly type: "function";
3538
+ readonly name: "balanceOf";
3539
+ readonly stateMutability: "view";
3540
+ readonly inputs: readonly [{
3541
+ readonly name: "account";
3542
+ readonly type: "address";
3543
+ }];
3544
+ readonly outputs: readonly [{
3545
+ readonly type: "uint256";
3546
+ }];
3547
+ }, {
3548
+ readonly type: "function";
3549
+ readonly name: "decimals";
3550
+ readonly stateMutability: "view";
3551
+ readonly inputs: readonly [];
3552
+ readonly outputs: readonly [{
3553
+ readonly type: "uint8";
3554
+ }];
3555
+ }, {
3556
+ readonly type: "function";
3557
+ readonly name: "name";
3558
+ readonly stateMutability: "view";
3559
+ readonly inputs: readonly [];
3560
+ readonly outputs: readonly [{
3561
+ readonly type: "string";
3562
+ }];
3563
+ }, {
3564
+ readonly type: "function";
3565
+ readonly name: "symbol";
3566
+ readonly stateMutability: "view";
3567
+ readonly inputs: readonly [];
3568
+ readonly outputs: readonly [{
3569
+ readonly type: "string";
3570
+ }];
3571
+ }, {
3572
+ readonly type: "function";
3573
+ readonly name: "totalSupply";
3574
+ readonly stateMutability: "view";
3575
+ readonly inputs: readonly [];
3576
+ readonly outputs: readonly [{
3577
+ readonly type: "uint256";
3578
+ }];
3579
+ }, {
3580
+ readonly type: "function";
3581
+ readonly name: "transfer";
3582
+ readonly stateMutability: "nonpayable";
3583
+ readonly inputs: readonly [{
3584
+ readonly name: "recipient";
3585
+ readonly type: "address";
3586
+ }, {
3587
+ readonly name: "amount";
3588
+ readonly type: "uint256";
3589
+ }];
3590
+ readonly outputs: readonly [{
3591
+ readonly type: "bool";
3592
+ }];
3593
+ }, {
3594
+ readonly type: "function";
3595
+ readonly name: "transferFrom";
3596
+ readonly stateMutability: "nonpayable";
3597
+ readonly inputs: readonly [{
3598
+ readonly name: "sender";
3599
+ readonly type: "address";
3600
+ }, {
3601
+ readonly name: "recipient";
3602
+ readonly type: "address";
3603
+ }, {
3604
+ readonly name: "amount";
3605
+ readonly type: "uint256";
3606
+ }];
3607
+ readonly outputs: readonly [{
3608
+ readonly type: "bool";
3609
+ }];
3610
+ }];
3611
+ readonly read: {
3612
+ readonly decimals: () => 6;
3613
+ };
3428
3614
  };
3429
- readonly transactionReceipt: {
3430
- exclude: [] | undefined;
3431
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
3432
- blobGasPrice?: bigint | undefined;
3433
- blobGasUsed?: bigint | undefined;
3434
- blockHash: import("viem").Hash;
3435
- blockNumber: bigint;
3436
- contractAddress: import("abitype").Address | null | undefined;
3437
- cumulativeGasUsed: bigint;
3438
- effectiveGasPrice: bigint;
3439
- from: import("abitype").Address;
3440
- gasUsed: bigint;
3441
- logs: import("viem").Log<bigint, number, false>[];
3442
- logsBloom: import("viem").Hex;
3443
- root?: `0x${string}` | undefined;
3444
- status: "success" | "reverted";
3445
- to: import("abitype").Address | null;
3446
- transactionHash: import("viem").Hash;
3447
- transactionIndex: number;
3448
- type: import("viem").TransactionType;
3449
- l1GasPrice: bigint | null;
3450
- l1GasUsed: bigint | null;
3451
- l1Fee: bigint | null;
3452
- l1FeeScalar: number | null;
3453
- } & {};
3454
- type: "transactionReceipt";
3615
+ readonly multicall3: {
3616
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3617
+ readonly blockCreated: 3127388;
3455
3618
  };
3456
3619
  };
3457
- serializers: {
3458
- readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
3620
+ ensTlds?: readonly string[] | undefined;
3621
+ id: 80002;
3622
+ name: "Polygon Amoy";
3623
+ nativeCurrency: {
3624
+ readonly name: "POL";
3625
+ readonly symbol: "POL";
3626
+ readonly decimals: 18;
3459
3627
  };
3460
- readonly blockchainId: "BASE-SEPOLIA";
3628
+ experimental_preconfirmationTime?: number | undefined | undefined;
3629
+ rpcUrls: {
3630
+ readonly default: {
3631
+ readonly http: readonly ["https://rpc-amoy.polygon.technology"];
3632
+ };
3633
+ };
3634
+ sourceId?: number | undefined | undefined;
3635
+ testnet: true;
3636
+ custom?: Record<string, unknown> | undefined;
3637
+ fees?: import("viem").ChainFees<undefined> | undefined;
3638
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3639
+ readonly blockchainId: "MATIC-AMOY";
3461
3640
  readonly blockchainVm: "EVM";
3462
- readonly network: "base-sepolia";
3641
+ readonly formatters?: undefined | undefined;
3642
+ } | {
3643
+ blockExplorers: {
3644
+ readonly default: {
3645
+ readonly name: "NEAR Explorer";
3646
+ readonly url: "https://eth-explorer.near.org";
3647
+ };
3648
+ };
3649
+ blockTime?: number | undefined | undefined;
3650
+ contracts: {
3651
+ readonly USDC: {
3652
+ readonly address: "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1";
3653
+ readonly read: {
3654
+ readonly decimals: () => 6;
3655
+ };
3656
+ };
3657
+ readonly ensRegistry?: import("viem").ChainContract | undefined;
3658
+ readonly ensUniversalResolver?: import("viem").ChainContract | undefined;
3659
+ readonly multicall3?: import("viem").ChainContract | undefined;
3660
+ readonly universalSignatureVerifier?: import("viem").ChainContract | undefined;
3661
+ };
3662
+ ensTlds?: readonly string[] | undefined;
3663
+ id: 397;
3664
+ name: "NEAR Protocol";
3665
+ nativeCurrency: {
3666
+ readonly decimals: 18;
3667
+ readonly name: "NEAR";
3668
+ readonly symbol: "NEAR";
3669
+ };
3670
+ experimental_preconfirmationTime?: number | undefined | undefined;
3671
+ rpcUrls: {
3672
+ readonly default: {
3673
+ readonly http: readonly ["https://eth-rpc.mainnet.near.org"];
3674
+ };
3675
+ };
3676
+ sourceId?: number | undefined | undefined;
3677
+ testnet: false;
3678
+ custom?: Record<string, unknown> | undefined;
3679
+ fees?: import("viem").ChainFees<undefined> | undefined;
3680
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3681
+ readonly blockchainId: "NEAR";
3682
+ readonly blockchainVm: "NEAR";
3683
+ readonly formatters?: undefined | undefined;
3684
+ } | {
3685
+ blockExplorers: {
3686
+ readonly default: {
3687
+ readonly name: "NEAR Explorer";
3688
+ readonly url: "https://eth-explorer-testnet.near.org";
3689
+ };
3690
+ };
3691
+ blockTime?: number | undefined | undefined;
3692
+ contracts: {
3693
+ readonly USDC: {
3694
+ readonly address: "3e2210e1184b45b64c8a434c0a7e7b23cc04ea7eb7a6c3c32520d03d4afcb8af";
3695
+ readonly read: {
3696
+ readonly decimals: () => 6;
3697
+ };
3698
+ };
3699
+ readonly ensRegistry?: import("viem").ChainContract | undefined;
3700
+ readonly ensUniversalResolver?: import("viem").ChainContract | undefined;
3701
+ readonly multicall3?: import("viem").ChainContract | undefined;
3702
+ readonly universalSignatureVerifier?: import("viem").ChainContract | undefined;
3703
+ };
3704
+ ensTlds?: readonly string[] | undefined;
3705
+ id: 398;
3706
+ name: "NEAR Protocol Testnet";
3707
+ nativeCurrency: {
3708
+ readonly decimals: 18;
3709
+ readonly name: "NEAR";
3710
+ readonly symbol: "NEAR";
3711
+ };
3712
+ experimental_preconfirmationTime?: number | undefined | undefined;
3713
+ rpcUrls: {
3714
+ readonly default: {
3715
+ readonly http: readonly ["https://eth-rpc.testnet.near.org"];
3716
+ };
3717
+ };
3718
+ sourceId?: number | undefined | undefined;
3719
+ testnet: true;
3720
+ custom?: Record<string, unknown> | undefined;
3721
+ fees?: import("viem").ChainFees<undefined> | undefined;
3722
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3723
+ readonly blockchainId: "NEAR-TESTNET";
3724
+ readonly blockchainVm: "NEAR";
3725
+ readonly formatters?: undefined | undefined;
3463
3726
  } | {
3464
3727
  blockExplorers: {
3465
3728
  readonly default: {
@@ -4323,39 +4586,128 @@ declare const SUPPORTED_CHAINS: ({
4323
4586
  }) & {};
4324
4587
  type: "transaction";
4325
4588
  };
4326
- readonly transactionReceipt: {
4327
- exclude: [] | undefined;
4328
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
4329
- blobGasPrice?: bigint | undefined;
4330
- blobGasUsed?: bigint | undefined;
4331
- blockHash: import("viem").Hash;
4332
- blockNumber: bigint;
4333
- contractAddress: import("abitype").Address | null | undefined;
4334
- cumulativeGasUsed: bigint;
4335
- effectiveGasPrice: bigint;
4336
- from: import("abitype").Address;
4337
- gasUsed: bigint;
4338
- logs: import("viem").Log<bigint, number, false>[];
4339
- logsBloom: import("viem").Hex;
4340
- root?: `0x${string}` | undefined;
4341
- status: "success" | "reverted";
4342
- to: import("abitype").Address | null;
4343
- transactionHash: import("viem").Hash;
4344
- transactionIndex: number;
4345
- type: import("viem").TransactionType;
4346
- l1GasPrice: bigint | null;
4347
- l1GasUsed: bigint | null;
4348
- l1Fee: bigint | null;
4349
- l1FeeScalar: number | null;
4350
- } & {};
4351
- type: "transactionReceipt";
4589
+ readonly transactionReceipt: {
4590
+ exclude: [] | undefined;
4591
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
4592
+ blobGasPrice?: bigint | undefined;
4593
+ blobGasUsed?: bigint | undefined;
4594
+ blockHash: import("viem").Hash;
4595
+ blockNumber: bigint;
4596
+ contractAddress: import("abitype").Address | null | undefined;
4597
+ cumulativeGasUsed: bigint;
4598
+ effectiveGasPrice: bigint;
4599
+ from: import("abitype").Address;
4600
+ gasUsed: bigint;
4601
+ logs: import("viem").Log<bigint, number, false>[];
4602
+ logsBloom: import("viem").Hex;
4603
+ root?: `0x${string}` | undefined;
4604
+ status: "success" | "reverted";
4605
+ to: import("abitype").Address | null;
4606
+ transactionHash: import("viem").Hash;
4607
+ transactionIndex: number;
4608
+ type: import("viem").TransactionType;
4609
+ l1GasPrice: bigint | null;
4610
+ l1GasUsed: bigint | null;
4611
+ l1Fee: bigint | null;
4612
+ l1FeeScalar: number | null;
4613
+ } & {};
4614
+ type: "transactionReceipt";
4615
+ };
4616
+ };
4617
+ serializers: {
4618
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
4619
+ };
4620
+ readonly blockchainId: "OP-SEPOLIA";
4621
+ readonly blockchainVm: "EVM";
4622
+ } | {
4623
+ blockExplorers: {
4624
+ readonly default: {
4625
+ readonly name: "Solscan";
4626
+ readonly url: "https://solscan.io/";
4627
+ };
4628
+ };
4629
+ blockTime?: number | undefined | undefined;
4630
+ contracts: {
4631
+ readonly USDC: {
4632
+ readonly address: import("abitype").Address;
4633
+ readonly read: {
4634
+ readonly decimals: () => 6;
4635
+ };
4636
+ };
4637
+ readonly EURC: {
4638
+ readonly address: import("abitype").Address;
4639
+ readonly read: {
4640
+ readonly decimals: () => 6;
4641
+ };
4642
+ };
4643
+ };
4644
+ ensTlds?: readonly string[] | undefined;
4645
+ id: number;
4646
+ name: "Solana Mainnet";
4647
+ nativeCurrency: {
4648
+ readonly decimals: 9;
4649
+ readonly name: "Solana";
4650
+ readonly symbol: "SOL";
4651
+ };
4652
+ experimental_preconfirmationTime?: number | undefined | undefined;
4653
+ rpcUrls: {
4654
+ readonly default: {
4655
+ readonly http: readonly ["https://api.mainnet-beta.solana.com"];
4656
+ };
4657
+ };
4658
+ sourceId?: number | undefined | undefined;
4659
+ testnet?: boolean | undefined | undefined;
4660
+ custom?: Record<string, unknown> | undefined;
4661
+ fees?: import("viem").ChainFees<undefined> | undefined;
4662
+ formatters?: undefined;
4663
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
4664
+ readonly blockchainId: "SOL";
4665
+ readonly blockchainVm: "SVM";
4666
+ } | {
4667
+ blockExplorers: {
4668
+ readonly default: {
4669
+ readonly name: "Solscan";
4670
+ readonly url: "https://solscan.io/?cluster=devnet";
4352
4671
  };
4353
4672
  };
4354
- serializers: {
4355
- readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
4673
+ blockTime?: number | undefined | undefined;
4674
+ contracts: {
4675
+ readonly USDC: {
4676
+ readonly address: import("abitype").Address;
4677
+ readonly abi: undefined;
4678
+ readonly read: {
4679
+ readonly decimals: () => 6;
4680
+ };
4681
+ };
4682
+ readonly EURC: {
4683
+ readonly address: import("abitype").Address;
4684
+ readonly read: {
4685
+ readonly decimals: () => 6;
4686
+ };
4687
+ };
4356
4688
  };
4357
- readonly blockchainId: "OP-SEPOLIA";
4358
- readonly blockchainVm: "EVM";
4689
+ ensTlds?: readonly string[] | undefined;
4690
+ id: number;
4691
+ name: "Solana Devnet";
4692
+ nativeCurrency: {
4693
+ readonly decimals: 9;
4694
+ readonly name: "Solana";
4695
+ readonly symbol: "SOL";
4696
+ };
4697
+ experimental_preconfirmationTime?: number | undefined | undefined;
4698
+ rpcUrls: {
4699
+ readonly default: {
4700
+ readonly http: readonly ["https://api.devnet.solana.com"];
4701
+ };
4702
+ };
4703
+ sourceId?: number | undefined | undefined;
4704
+ testnet: true;
4705
+ custom?: Record<string, unknown> | undefined;
4706
+ fees?: import("viem").ChainFees<undefined> | undefined;
4707
+ formatters?: undefined;
4708
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
4709
+ readonly blockchainId: "SOL-DEVNET";
4710
+ readonly blockchainVm: "SVM";
4359
4711
  } | {
4360
4712
  blockExplorers: {
4361
4713
  readonly default: {
@@ -5242,179 +5594,6 @@ declare const SUPPORTED_CHAINS: ({
5242
5594
  };
5243
5595
  readonly blockchainId: "UNI-SEPOLIA";
5244
5596
  readonly blockchainVm: "EVM";
5245
- } | {
5246
- blockExplorers: {
5247
- readonly default: {
5248
- readonly name: "NEAR Explorer";
5249
- readonly url: "https://eth-explorer.near.org";
5250
- };
5251
- };
5252
- blockTime?: number | undefined | undefined;
5253
- contracts: {
5254
- readonly USDC: {
5255
- readonly address: "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1";
5256
- readonly read: {
5257
- readonly decimals: () => 6;
5258
- };
5259
- };
5260
- readonly ensRegistry?: import("viem").ChainContract | undefined;
5261
- readonly ensUniversalResolver?: import("viem").ChainContract | undefined;
5262
- readonly multicall3?: import("viem").ChainContract | undefined;
5263
- readonly universalSignatureVerifier?: import("viem").ChainContract | undefined;
5264
- };
5265
- ensTlds?: readonly string[] | undefined;
5266
- id: 397;
5267
- name: "NEAR Protocol";
5268
- nativeCurrency: {
5269
- readonly decimals: 18;
5270
- readonly name: "NEAR";
5271
- readonly symbol: "NEAR";
5272
- };
5273
- experimental_preconfirmationTime?: number | undefined | undefined;
5274
- rpcUrls: {
5275
- readonly default: {
5276
- readonly http: readonly ["https://eth-rpc.mainnet.near.org"];
5277
- };
5278
- };
5279
- sourceId?: number | undefined | undefined;
5280
- testnet: false;
5281
- custom?: Record<string, unknown> | undefined;
5282
- fees?: import("viem").ChainFees<undefined> | undefined;
5283
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5284
- readonly blockchainId: "NEAR";
5285
- readonly blockchainVm: "NEAR";
5286
- readonly formatters?: undefined | undefined;
5287
- } | {
5288
- blockExplorers: {
5289
- readonly default: {
5290
- readonly name: "NEAR Explorer";
5291
- readonly url: "https://eth-explorer-testnet.near.org";
5292
- };
5293
- };
5294
- blockTime?: number | undefined | undefined;
5295
- contracts: {
5296
- readonly USDC: {
5297
- readonly address: "3e2210e1184b45b64c8a434c0a7e7b23cc04ea7eb7a6c3c32520d03d4afcb8af";
5298
- readonly read: {
5299
- readonly decimals: () => 6;
5300
- };
5301
- };
5302
- readonly ensRegistry?: import("viem").ChainContract | undefined;
5303
- readonly ensUniversalResolver?: import("viem").ChainContract | undefined;
5304
- readonly multicall3?: import("viem").ChainContract | undefined;
5305
- readonly universalSignatureVerifier?: import("viem").ChainContract | undefined;
5306
- };
5307
- ensTlds?: readonly string[] | undefined;
5308
- id: 398;
5309
- name: "NEAR Protocol Testnet";
5310
- nativeCurrency: {
5311
- readonly decimals: 18;
5312
- readonly name: "NEAR";
5313
- readonly symbol: "NEAR";
5314
- };
5315
- experimental_preconfirmationTime?: number | undefined | undefined;
5316
- rpcUrls: {
5317
- readonly default: {
5318
- readonly http: readonly ["https://eth-rpc.testnet.near.org"];
5319
- };
5320
- };
5321
- sourceId?: number | undefined | undefined;
5322
- testnet: true;
5323
- custom?: Record<string, unknown> | undefined;
5324
- fees?: import("viem").ChainFees<undefined> | undefined;
5325
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5326
- readonly blockchainId: "NEAR-TESTNET";
5327
- readonly blockchainVm: "NEAR";
5328
- readonly formatters?: undefined | undefined;
5329
- } | {
5330
- blockExplorers: {
5331
- readonly default: {
5332
- readonly name: "Solscan";
5333
- readonly url: "https://solscan.io/";
5334
- };
5335
- };
5336
- blockTime?: number | undefined | undefined;
5337
- contracts: {
5338
- readonly USDC: {
5339
- readonly address: import("abitype").Address;
5340
- readonly read: {
5341
- readonly decimals: () => 6;
5342
- };
5343
- };
5344
- readonly EURC: {
5345
- readonly address: import("abitype").Address;
5346
- readonly read: {
5347
- readonly decimals: () => 6;
5348
- };
5349
- };
5350
- };
5351
- ensTlds?: readonly string[] | undefined;
5352
- id: number;
5353
- name: "Solana Mainnet";
5354
- nativeCurrency: {
5355
- readonly decimals: 9;
5356
- readonly name: "Solana";
5357
- readonly symbol: "SOL";
5358
- };
5359
- experimental_preconfirmationTime?: number | undefined | undefined;
5360
- rpcUrls: {
5361
- readonly default: {
5362
- readonly http: readonly ["https://api.mainnet-beta.solana.com"];
5363
- };
5364
- };
5365
- sourceId?: number | undefined | undefined;
5366
- testnet?: boolean | undefined | undefined;
5367
- custom?: Record<string, unknown> | undefined;
5368
- fees?: import("viem").ChainFees<undefined> | undefined;
5369
- formatters?: undefined;
5370
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
5371
- readonly blockchainId: "SOL";
5372
- readonly blockchainVm: "SVM";
5373
- } | {
5374
- blockExplorers: {
5375
- readonly default: {
5376
- readonly name: "Solscan";
5377
- readonly url: "https://solscan.io/?cluster=devnet";
5378
- };
5379
- };
5380
- blockTime?: number | undefined | undefined;
5381
- contracts: {
5382
- readonly USDC: {
5383
- readonly address: import("abitype").Address;
5384
- readonly abi: undefined;
5385
- readonly read: {
5386
- readonly decimals: () => 6;
5387
- };
5388
- };
5389
- readonly EURC: {
5390
- readonly address: import("abitype").Address;
5391
- readonly read: {
5392
- readonly decimals: () => 6;
5393
- };
5394
- };
5395
- };
5396
- ensTlds?: readonly string[] | undefined;
5397
- id: number;
5398
- name: "Solana Devnet";
5399
- nativeCurrency: {
5400
- readonly decimals: 9;
5401
- readonly name: "Solana";
5402
- readonly symbol: "SOL";
5403
- };
5404
- experimental_preconfirmationTime?: number | undefined | undefined;
5405
- rpcUrls: {
5406
- readonly default: {
5407
- readonly http: readonly ["https://api.devnet.solana.com"];
5408
- };
5409
- };
5410
- sourceId?: number | undefined | undefined;
5411
- testnet: true;
5412
- custom?: Record<string, unknown> | undefined;
5413
- fees?: import("viem").ChainFees<undefined> | undefined;
5414
- formatters?: undefined;
5415
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
5416
- readonly blockchainId: "SOL-DEVNET";
5417
- readonly blockchainVm: "SVM";
5418
5597
  })[];
5419
5598
  /**
5420
5599
  * Extracts chain information based on the provided chain ID.