@circle-fin/usdckit 0.23.0 → 0.23.2

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 (34) hide show
  1. package/dist/cjs/actions/index.d.ts +1 -1
  2. package/dist/cjs/chains/index.d.ts +21 -19
  3. package/dist/cjs/chains/index.js +25 -25
  4. package/dist/cjs/client.d.ts +1 -1
  5. package/dist/cjs/extractChain.d.ts +1198 -1198
  6. package/dist/cjs/index.d.ts +2 -2
  7. package/dist/cjs/index.js +1 -1
  8. package/dist/cjs/metadata.js +1 -1
  9. package/dist/cjs/providers/circle-wallets/actions/createAccount.d.ts +994 -994
  10. package/dist/cjs/providers/circle-wallets/actions/getAccounts.d.ts +994 -994
  11. package/dist/cjs/utils/createConfig.d.ts +1 -1
  12. package/dist/cjs/utils/createCustomWalletClient.d.ts +1 -1
  13. package/dist/cjs/utils/getChainContractByAddress.d.ts +1 -1
  14. package/dist/cjs/utils/getContract.d.ts +8 -8
  15. package/dist/esm/actions/index.d.ts +1 -1
  16. package/dist/esm/chains/index.d.ts +21 -19
  17. package/dist/esm/chains/index.js +20 -19
  18. package/dist/esm/client.d.ts +1 -1
  19. package/dist/esm/extractChain.d.ts +1198 -1198
  20. package/dist/esm/index.d.ts +2 -2
  21. package/dist/esm/index.js +1 -1
  22. package/dist/esm/metadata.js +1 -1
  23. package/dist/esm/package.json +1 -0
  24. package/dist/esm/providers/circle-wallets/actions/createAccount.d.ts +994 -994
  25. package/dist/esm/providers/circle-wallets/actions/getAccounts.d.ts +994 -994
  26. package/dist/esm/utils/createConfig.d.ts +1 -1
  27. package/dist/esm/utils/createCustomWalletClient.d.ts +1 -1
  28. package/dist/esm/utils/getChainContractByAddress.d.ts +1 -1
  29. package/dist/esm/utils/getContract.d.ts +8 -8
  30. package/package.json +13 -2
  31. package/dist/cjs/chains.d.ts +0 -2
  32. package/dist/cjs/chains.js +0 -12
  33. package/dist/esm/chains.d.ts +0 -2
  34. 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: {
@@ -1316,15 +1316,15 @@ declare const SUPPORTED_CHAINS: ({
1316
1316
  } | {
1317
1317
  blockExplorers: {
1318
1318
  readonly default: {
1319
- readonly name: "Etherscan";
1320
- readonly url: "https://etherscan.io";
1321
- readonly apiUrl: "https://api.etherscan.io/api";
1319
+ readonly name: "Basescan";
1320
+ readonly url: "https://basescan.org";
1321
+ readonly apiUrl: "https://api.basescan.org/api";
1322
1322
  };
1323
1323
  };
1324
- blockTime: 12000;
1324
+ blockTime: 2000;
1325
1325
  contracts: {
1326
1326
  readonly USDC: {
1327
- readonly address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
1327
+ readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
1328
1328
  readonly abi: readonly [{
1329
1329
  readonly type: "event";
1330
1330
  readonly name: "Approval";
@@ -1465,7 +1465,7 @@ declare const SUPPORTED_CHAINS: ({
1465
1465
  };
1466
1466
  };
1467
1467
  readonly EURC: {
1468
- readonly address: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
1468
+ readonly address: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
1469
1469
  readonly abi: readonly [{
1470
1470
  readonly type: "event";
1471
1471
  readonly name: "Approval";
@@ -1605,159 +1605,54 @@ declare const SUPPORTED_CHAINS: ({
1605
1605
  readonly decimals: () => 6;
1606
1606
  };
1607
1607
  };
1608
- readonly USDT: {
1609
- readonly address: "0xdac17f958d2ee523a2206206994597c13d831ec7";
1610
- readonly abi: readonly [{
1611
- readonly type: "event";
1612
- readonly name: "Approval";
1613
- readonly inputs: readonly [{
1614
- readonly indexed: true;
1615
- readonly name: "owner";
1616
- readonly type: "address";
1617
- }, {
1618
- readonly indexed: true;
1619
- readonly name: "spender";
1620
- readonly type: "address";
1621
- }, {
1622
- readonly indexed: false;
1623
- readonly name: "value";
1624
- readonly type: "uint256";
1625
- }];
1626
- }, {
1627
- readonly type: "event";
1628
- readonly name: "Transfer";
1629
- readonly inputs: readonly [{
1630
- readonly indexed: true;
1631
- readonly name: "from";
1632
- readonly type: "address";
1633
- }, {
1634
- readonly indexed: true;
1635
- readonly name: "to";
1636
- readonly type: "address";
1637
- }, {
1638
- readonly indexed: false;
1639
- readonly name: "value";
1640
- readonly type: "uint256";
1641
- }];
1642
- }, {
1643
- readonly type: "function";
1644
- readonly name: "allowance";
1645
- readonly stateMutability: "view";
1646
- readonly inputs: readonly [{
1647
- readonly name: "owner";
1648
- readonly type: "address";
1649
- }, {
1650
- readonly name: "spender";
1651
- readonly type: "address";
1652
- }];
1653
- readonly outputs: readonly [{
1654
- readonly type: "uint256";
1655
- }];
1656
- }, {
1657
- readonly type: "function";
1658
- readonly name: "approve";
1659
- readonly stateMutability: "nonpayable";
1660
- readonly inputs: readonly [{
1661
- readonly name: "spender";
1662
- readonly type: "address";
1663
- }, {
1664
- readonly name: "amount";
1665
- readonly type: "uint256";
1666
- }];
1667
- readonly outputs: readonly [{
1668
- readonly type: "bool";
1669
- }];
1670
- }, {
1671
- readonly type: "function";
1672
- readonly name: "balanceOf";
1673
- readonly stateMutability: "view";
1674
- readonly inputs: readonly [{
1675
- readonly name: "account";
1676
- readonly type: "address";
1677
- }];
1678
- readonly outputs: readonly [{
1679
- readonly type: "uint256";
1680
- }];
1681
- }, {
1682
- readonly type: "function";
1683
- readonly name: "decimals";
1684
- readonly stateMutability: "view";
1685
- readonly inputs: readonly [];
1686
- readonly outputs: readonly [{
1687
- readonly type: "uint8";
1688
- }];
1689
- }, {
1690
- readonly type: "function";
1691
- readonly name: "name";
1692
- readonly stateMutability: "view";
1693
- readonly inputs: readonly [];
1694
- readonly outputs: readonly [{
1695
- readonly type: "string";
1696
- }];
1697
- }, {
1698
- readonly type: "function";
1699
- readonly name: "symbol";
1700
- readonly stateMutability: "view";
1701
- readonly inputs: readonly [];
1702
- readonly outputs: readonly [{
1703
- readonly type: "string";
1704
- }];
1705
- }, {
1706
- readonly type: "function";
1707
- readonly name: "totalSupply";
1708
- readonly stateMutability: "view";
1709
- readonly inputs: readonly [];
1710
- readonly outputs: readonly [{
1711
- readonly type: "uint256";
1712
- }];
1713
- }, {
1714
- readonly type: "function";
1715
- readonly name: "transfer";
1716
- readonly stateMutability: "nonpayable";
1717
- readonly inputs: readonly [{
1718
- readonly name: "recipient";
1719
- readonly type: "address";
1720
- }, {
1721
- readonly name: "amount";
1722
- readonly type: "uint256";
1723
- }];
1724
- readonly outputs: readonly [{
1725
- readonly type: "bool";
1726
- }];
1727
- }, {
1728
- readonly type: "function";
1729
- readonly name: "transferFrom";
1730
- readonly stateMutability: "nonpayable";
1731
- readonly inputs: readonly [{
1732
- readonly name: "sender";
1733
- readonly type: "address";
1734
- }, {
1735
- readonly name: "recipient";
1736
- readonly type: "address";
1737
- }, {
1738
- readonly name: "amount";
1739
- readonly type: "uint256";
1740
- }];
1741
- readonly outputs: readonly [{
1742
- readonly type: "bool";
1743
- }];
1744
- }];
1745
- readonly read: {
1746
- readonly decimals: () => 6;
1608
+ readonly disputeGameFactory: {
1609
+ readonly 1: {
1610
+ readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
1747
1611
  };
1748
1612
  };
1749
- readonly ensUniversalResolver: {
1750
- readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
1751
- readonly blockCreated: 23085558;
1613
+ readonly l2OutputOracle: {
1614
+ readonly 1: {
1615
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
1616
+ };
1752
1617
  };
1753
1618
  readonly multicall3: {
1754
1619
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1755
- 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";
1756
1651
  };
1757
1652
  };
1758
1653
  ensTlds?: readonly string[] | undefined;
1759
- id: 1;
1760
- name: "Ethereum";
1654
+ id: 8453;
1655
+ name: "Base";
1761
1656
  nativeCurrency: {
1762
1657
  readonly name: "Ether";
1763
1658
  readonly symbol: "ETH";
@@ -1766,36 +1661,268 @@ declare const SUPPORTED_CHAINS: ({
1766
1661
  experimental_preconfirmationTime?: number | undefined | undefined;
1767
1662
  rpcUrls: {
1768
1663
  readonly default: {
1769
- readonly http: readonly ["https://eth.merkle.io"];
1664
+ readonly http: readonly ["https://mainnet.base.org"];
1770
1665
  };
1771
1666
  };
1772
- sourceId?: number | undefined | undefined;
1667
+ sourceId: 1;
1773
1668
  testnet?: boolean | undefined | undefined;
1774
1669
  custom?: Record<string, unknown> | undefined;
1775
1670
  fees?: import("viem").ChainFees<undefined> | undefined;
1776
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1777
- readonly blockchainId: "ETH";
1778
- readonly blockchainVm: "EVM";
1779
- readonly formatters?: undefined | undefined;
1780
- } | {
1781
- blockExplorers: {
1782
- readonly default: {
1783
- readonly name: "Etherscan";
1784
- readonly url: "https://sepolia.etherscan.io";
1785
- readonly apiUrl: "https://api-sepolia.etherscan.io/api";
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";
1786
1704
  };
1787
- };
1788
- blockTime?: number | undefined | undefined;
1789
- contracts: {
1790
- readonly USDC: {
1791
- readonly address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
1792
- readonly abi: readonly [{
1793
- readonly type: "event";
1794
- readonly name: "Approval";
1795
- readonly inputs: readonly [{
1796
- readonly indexed: true;
1797
- readonly name: "owner";
1798
- readonly type: "address";
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";
1906
+ readonly blockchainVm: "EVM";
1907
+ } | {
1908
+ blockExplorers: {
1909
+ readonly default: {
1910
+ readonly name: "Basescan";
1911
+ readonly url: "https://sepolia.basescan.org";
1912
+ readonly apiUrl: "https://api-sepolia.basescan.org/api";
1913
+ };
1914
+ };
1915
+ blockTime: 2000;
1916
+ contracts: {
1917
+ readonly USDC: {
1918
+ readonly address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
1919
+ readonly abi: readonly [{
1920
+ readonly type: "event";
1921
+ readonly name: "Approval";
1922
+ readonly inputs: readonly [{
1923
+ readonly indexed: true;
1924
+ readonly name: "owner";
1925
+ readonly type: "address";
1799
1926
  }, {
1800
1927
  readonly indexed: true;
1801
1928
  readonly name: "spender";
@@ -1929,7 +2056,7 @@ declare const SUPPORTED_CHAINS: ({
1929
2056
  };
1930
2057
  };
1931
2058
  readonly EURC: {
1932
- readonly address: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
2059
+ readonly address: "0x808456652fdb597867f38412077A9182bf77359F";
1933
2060
  readonly abi: readonly [{
1934
2061
  readonly type: "event";
1935
2062
  readonly name: "Approval";
@@ -2069,240 +2196,331 @@ declare const SUPPORTED_CHAINS: ({
2069
2196
  readonly decimals: () => 6;
2070
2197
  };
2071
2198
  };
2199
+ readonly disputeGameFactory: {
2200
+ readonly 11155111: {
2201
+ readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
2202
+ };
2203
+ };
2204
+ readonly l2OutputOracle: {
2205
+ readonly 11155111: {
2206
+ readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
2207
+ };
2208
+ };
2209
+ readonly portal: {
2210
+ readonly 11155111: {
2211
+ readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
2212
+ readonly blockCreated: 4446677;
2213
+ };
2214
+ };
2215
+ readonly l1StandardBridge: {
2216
+ readonly 11155111: {
2217
+ readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
2218
+ readonly blockCreated: 4446677;
2219
+ };
2220
+ };
2072
2221
  readonly multicall3: {
2073
2222
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2074
- readonly blockCreated: 751532;
2223
+ readonly blockCreated: 1059647;
2075
2224
  };
2076
- readonly ensUniversalResolver: {
2077
- readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
2078
- readonly blockCreated: 8928790;
2225
+ readonly gasPriceOracle: {
2226
+ readonly address: "0x420000000000000000000000000000000000000F";
2079
2227
  };
2080
- };
2081
- ensTlds?: readonly string[] | undefined;
2082
- id: 11155111;
2083
- name: "Sepolia";
2084
- nativeCurrency: {
2085
- readonly name: "Sepolia Ether";
2086
- readonly symbol: "ETH";
2087
- readonly decimals: 18;
2088
- };
2089
- experimental_preconfirmationTime?: number | undefined | undefined;
2090
- rpcUrls: {
2091
- readonly default: {
2092
- readonly http: readonly ["https://sepolia.drpc.org"];
2228
+ readonly l1Block: {
2229
+ readonly address: "0x4200000000000000000000000000000000000015";
2093
2230
  };
2094
- };
2095
- sourceId?: number | undefined | undefined;
2096
- testnet: true;
2097
- custom?: Record<string, unknown> | undefined;
2098
- fees?: import("viem").ChainFees<undefined> | undefined;
2099
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2100
- readonly blockchainId: "ETH-SEPOLIA";
2101
- readonly blockchainVm: "EVM";
2102
- readonly formatters?: undefined | undefined;
2103
- } | {
2104
- blockExplorers: {
2105
- readonly default: {
2106
- readonly name: "PolygonScan";
2107
- readonly url: "https://polygonscan.com";
2108
- readonly apiUrl: "https://api.polygonscan.com/api";
2231
+ readonly l2CrossDomainMessenger: {
2232
+ readonly address: "0x4200000000000000000000000000000000000007";
2109
2233
  };
2110
- };
2111
- blockTime?: number | undefined | undefined;
2112
- contracts: {
2113
- readonly USDC: {
2114
- readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
2115
- readonly abi: readonly [{
2116
- readonly type: "event";
2117
- readonly name: "Approval";
2118
- readonly inputs: readonly [{
2119
- readonly indexed: true;
2120
- readonly name: "owner";
2121
- readonly type: "address";
2122
- }, {
2123
- readonly indexed: true;
2124
- readonly name: "spender";
2125
- readonly type: "address";
2126
- }, {
2127
- readonly indexed: false;
2128
- readonly name: "value";
2129
- readonly type: "uint256";
2130
- }];
2131
- }, {
2132
- readonly type: "event";
2133
- readonly name: "Transfer";
2134
- readonly inputs: readonly [{
2135
- readonly indexed: true;
2136
- readonly name: "from";
2137
- readonly type: "address";
2138
- }, {
2139
- readonly indexed: true;
2140
- readonly name: "to";
2141
- readonly type: "address";
2142
- }, {
2143
- readonly indexed: false;
2144
- readonly name: "value";
2145
- readonly type: "uint256";
2146
- }];
2147
- }, {
2148
- readonly type: "function";
2149
- readonly name: "allowance";
2150
- readonly stateMutability: "view";
2151
- readonly inputs: readonly [{
2152
- readonly name: "owner";
2153
- readonly type: "address";
2154
- }, {
2155
- readonly name: "spender";
2156
- readonly type: "address";
2157
- }];
2158
- readonly outputs: readonly [{
2159
- readonly type: "uint256";
2160
- }];
2161
- }, {
2162
- readonly type: "function";
2163
- readonly name: "approve";
2164
- readonly stateMutability: "nonpayable";
2165
- readonly inputs: readonly [{
2166
- readonly name: "spender";
2167
- readonly type: "address";
2168
- }, {
2169
- readonly name: "amount";
2170
- readonly type: "uint256";
2171
- }];
2172
- readonly outputs: readonly [{
2173
- readonly type: "bool";
2174
- }];
2175
- }, {
2176
- readonly type: "function";
2177
- readonly name: "balanceOf";
2178
- readonly stateMutability: "view";
2179
- readonly inputs: readonly [{
2180
- readonly name: "account";
2181
- readonly type: "address";
2182
- }];
2183
- readonly outputs: readonly [{
2184
- readonly type: "uint256";
2185
- }];
2186
- }, {
2187
- readonly type: "function";
2188
- readonly name: "decimals";
2189
- readonly stateMutability: "view";
2190
- readonly inputs: readonly [];
2191
- readonly outputs: readonly [{
2192
- readonly type: "uint8";
2193
- }];
2194
- }, {
2195
- readonly type: "function";
2196
- readonly name: "name";
2197
- readonly stateMutability: "view";
2198
- readonly inputs: readonly [];
2199
- readonly outputs: readonly [{
2200
- readonly type: "string";
2201
- }];
2202
- }, {
2203
- readonly type: "function";
2204
- readonly name: "symbol";
2205
- readonly stateMutability: "view";
2206
- readonly inputs: readonly [];
2207
- readonly outputs: readonly [{
2208
- readonly type: "string";
2209
- }];
2210
- }, {
2211
- readonly type: "function";
2212
- readonly name: "totalSupply";
2213
- readonly stateMutability: "view";
2214
- readonly inputs: readonly [];
2215
- readonly outputs: readonly [{
2216
- readonly type: "uint256";
2217
- }];
2218
- }, {
2219
- readonly type: "function";
2220
- readonly name: "transfer";
2221
- readonly stateMutability: "nonpayable";
2222
- readonly inputs: readonly [{
2223
- readonly name: "recipient";
2224
- readonly type: "address";
2225
- }, {
2226
- readonly name: "amount";
2227
- readonly type: "uint256";
2228
- }];
2229
- readonly outputs: readonly [{
2230
- readonly type: "bool";
2231
- }];
2232
- }, {
2233
- readonly type: "function";
2234
- readonly name: "transferFrom";
2235
- readonly stateMutability: "nonpayable";
2236
- readonly inputs: readonly [{
2237
- readonly name: "sender";
2238
- readonly type: "address";
2239
- }, {
2240
- readonly name: "recipient";
2241
- readonly type: "address";
2242
- }, {
2243
- readonly name: "amount";
2244
- readonly type: "uint256";
2245
- }];
2246
- readonly outputs: readonly [{
2247
- readonly type: "bool";
2248
- }];
2249
- }];
2250
- readonly read: {
2251
- readonly decimals: () => 6;
2252
- };
2234
+ readonly l2Erc721Bridge: {
2235
+ readonly address: "0x4200000000000000000000000000000000000014";
2253
2236
  };
2254
- readonly multicall3: {
2255
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2256
- readonly blockCreated: 25770160;
2237
+ readonly l2StandardBridge: {
2238
+ readonly address: "0x4200000000000000000000000000000000000010";
2239
+ };
2240
+ readonly l2ToL1MessagePasser: {
2241
+ readonly address: "0x4200000000000000000000000000000000000016";
2257
2242
  };
2258
2243
  };
2259
2244
  ensTlds?: readonly string[] | undefined;
2260
- id: 137;
2261
- name: "Polygon";
2245
+ id: 84532;
2246
+ name: "Base Sepolia";
2262
2247
  nativeCurrency: {
2263
- readonly name: "POL";
2264
- readonly symbol: "POL";
2248
+ readonly name: "Sepolia Ether";
2249
+ readonly symbol: "ETH";
2265
2250
  readonly decimals: 18;
2266
2251
  };
2267
2252
  experimental_preconfirmationTime?: number | undefined | undefined;
2268
2253
  rpcUrls: {
2269
2254
  readonly default: {
2270
- readonly http: readonly ["https://polygon-rpc.com"];
2255
+ readonly http: readonly ["https://sepolia.base.org"];
2271
2256
  };
2272
2257
  };
2273
- sourceId?: number | undefined | undefined;
2274
- testnet?: boolean | undefined | undefined;
2258
+ sourceId: 11155111;
2259
+ testnet: true;
2275
2260
  custom?: Record<string, unknown> | undefined;
2276
2261
  fees?: import("viem").ChainFees<undefined> | undefined;
2277
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2278
- readonly blockchainId: "MATIC";
2279
- readonly blockchainVm: "EVM";
2280
- readonly formatters?: undefined | undefined;
2281
- } | {
2282
- blockExplorers: {
2283
- readonly default: {
2284
- readonly name: "PolygonScan";
2285
- readonly url: "https://amoy.polygonscan.com";
2286
- readonly apiUrl: "https://api-amoy.polygonscan.com/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";
2287
2295
  };
2288
- };
2289
- blockTime?: number | undefined | undefined;
2290
- contracts: {
2291
- readonly USDC: {
2292
- readonly address: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
2293
- readonly abi: readonly [{
2294
- readonly type: "event";
2295
- readonly name: "Approval";
2296
- readonly inputs: readonly [{
2297
- readonly indexed: true;
2298
- readonly name: "owner";
2299
- readonly type: "address";
2300
- }, {
2301
- readonly indexed: true;
2302
- readonly name: "spender";
2303
- readonly type: "address";
2304
- }, {
2305
- readonly indexed: false;
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;
2306
2524
  readonly name: "value";
2307
2525
  readonly type: "uint256";
2308
2526
  }];
@@ -2429,45 +2647,8 @@ declare const SUPPORTED_CHAINS: ({
2429
2647
  readonly decimals: () => 6;
2430
2648
  };
2431
2649
  };
2432
- readonly multicall3: {
2433
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2434
- readonly blockCreated: 3127388;
2435
- };
2436
- };
2437
- ensTlds?: readonly string[] | undefined;
2438
- id: 80002;
2439
- name: "Polygon Amoy";
2440
- nativeCurrency: {
2441
- readonly name: "POL";
2442
- readonly symbol: "POL";
2443
- readonly decimals: 18;
2444
- };
2445
- experimental_preconfirmationTime?: number | undefined | undefined;
2446
- rpcUrls: {
2447
- readonly default: {
2448
- readonly http: readonly ["https://rpc-amoy.polygon.technology"];
2449
- };
2450
- };
2451
- sourceId?: number | undefined | undefined;
2452
- testnet: true;
2453
- custom?: Record<string, unknown> | undefined;
2454
- fees?: import("viem").ChainFees<undefined> | undefined;
2455
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2456
- readonly blockchainId: "MATIC-AMOY";
2457
- readonly blockchainVm: "EVM";
2458
- readonly formatters?: undefined | undefined;
2459
- } | {
2460
- blockExplorers: {
2461
- readonly default: {
2462
- readonly name: "Basescan";
2463
- readonly url: "https://basescan.org";
2464
- readonly apiUrl: "https://api.basescan.org/api";
2465
- };
2466
- };
2467
- blockTime: 2000;
2468
- contracts: {
2469
- readonly USDC: {
2470
- readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
2650
+ readonly EURC: {
2651
+ readonly address: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
2471
2652
  readonly abi: readonly [{
2472
2653
  readonly type: "event";
2473
2654
  readonly name: "Approval";
@@ -2607,8 +2788,8 @@ declare const SUPPORTED_CHAINS: ({
2607
2788
  readonly decimals: () => 6;
2608
2789
  };
2609
2790
  };
2610
- readonly EURC: {
2611
- readonly address: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
2791
+ readonly USDT: {
2792
+ readonly address: "0xdac17f958d2ee523a2206206994597c13d831ec7";
2612
2793
  readonly abi: readonly [{
2613
2794
  readonly type: "event";
2614
2795
  readonly name: "Approval";
@@ -2748,54 +2929,18 @@ declare const SUPPORTED_CHAINS: ({
2748
2929
  readonly decimals: () => 6;
2749
2930
  };
2750
2931
  };
2751
- readonly disputeGameFactory: {
2752
- readonly 1: {
2753
- readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
2754
- };
2755
- };
2756
- readonly l2OutputOracle: {
2757
- readonly 1: {
2758
- readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
2759
- };
2932
+ readonly ensUniversalResolver: {
2933
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
2934
+ readonly blockCreated: 23085558;
2760
2935
  };
2761
2936
  readonly multicall3: {
2762
2937
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
2763
- readonly blockCreated: 5022;
2764
- };
2765
- readonly portal: {
2766
- readonly 1: {
2767
- readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
2768
- readonly blockCreated: 17482143;
2769
- };
2770
- };
2771
- readonly l1StandardBridge: {
2772
- readonly 1: {
2773
- readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
2774
- readonly blockCreated: 17482143;
2775
- };
2776
- };
2777
- readonly gasPriceOracle: {
2778
- readonly address: "0x420000000000000000000000000000000000000F";
2779
- };
2780
- readonly l1Block: {
2781
- readonly address: "0x4200000000000000000000000000000000000015";
2782
- };
2783
- readonly l2CrossDomainMessenger: {
2784
- readonly address: "0x4200000000000000000000000000000000000007";
2785
- };
2786
- readonly l2Erc721Bridge: {
2787
- readonly address: "0x4200000000000000000000000000000000000014";
2788
- };
2789
- readonly l2StandardBridge: {
2790
- readonly address: "0x4200000000000000000000000000000000000010";
2791
- };
2792
- readonly l2ToL1MessagePasser: {
2793
- readonly address: "0x4200000000000000000000000000000000000016";
2938
+ readonly blockCreated: 14353601;
2794
2939
  };
2795
2940
  };
2796
2941
  ensTlds?: readonly string[] | undefined;
2797
- id: 8453;
2798
- name: "Base";
2942
+ id: 1;
2943
+ name: "Ethereum";
2799
2944
  nativeCurrency: {
2800
2945
  readonly name: "Ether";
2801
2946
  readonly symbol: "ETH";
@@ -2804,261 +2949,29 @@ declare const SUPPORTED_CHAINS: ({
2804
2949
  experimental_preconfirmationTime?: number | undefined | undefined;
2805
2950
  rpcUrls: {
2806
2951
  readonly default: {
2807
- readonly http: readonly ["https://mainnet.base.org"];
2952
+ readonly http: readonly ["https://eth.merkle.io"];
2808
2953
  };
2809
2954
  };
2810
- sourceId: 1;
2955
+ sourceId?: number | undefined | undefined;
2811
2956
  testnet?: boolean | undefined | undefined;
2812
2957
  custom?: Record<string, unknown> | undefined;
2813
2958
  fees?: import("viem").ChainFees<undefined> | undefined;
2814
- formatters: {
2815
- readonly block: {
2816
- exclude: [] | undefined;
2817
- format: (args: import("viem/chains").OpStackRpcBlock) => {
2818
- baseFeePerGas: bigint | null;
2819
- blobGasUsed: bigint;
2820
- difficulty: bigint;
2821
- excessBlobGas: bigint;
2822
- extraData: import("viem").Hex;
2823
- gasLimit: bigint;
2824
- gasUsed: bigint;
2825
- hash: `0x${string}` | null;
2826
- logsBloom: `0x${string}` | null;
2827
- miner: import("abitype").Address;
2828
- mixHash: import("viem").Hash;
2829
- nonce: `0x${string}` | null;
2830
- number: bigint | null;
2831
- parentBeaconBlockRoot?: `0x${string}` | undefined;
2832
- parentHash: import("viem").Hash;
2833
- receiptsRoot: import("viem").Hex;
2834
- sealFields: import("viem").Hex[];
2835
- sha3Uncles: import("viem").Hash;
2836
- size: bigint;
2837
- stateRoot: import("viem").Hash;
2838
- timestamp: bigint;
2839
- totalDifficulty: bigint | null;
2840
- transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
2841
- transactionsRoot: import("viem").Hash;
2842
- uncles: import("viem").Hash[];
2843
- withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
2844
- withdrawalsRoot?: `0x${string}` | undefined;
2845
- } & {};
2846
- type: "block";
2847
- };
2848
- readonly transaction: {
2849
- exclude: [] | undefined;
2850
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
2851
- blockHash: `0x${string}` | null;
2852
- blockNumber: bigint | null;
2853
- from: import("abitype").Address;
2854
- gas: bigint;
2855
- hash: import("viem").Hash;
2856
- input: import("viem").Hex;
2857
- nonce: number;
2858
- r: import("viem").Hex;
2859
- s: import("viem").Hex;
2860
- to: import("abitype").Address | null;
2861
- transactionIndex: number | null;
2862
- typeHex: import("viem").Hex | null;
2863
- v: bigint;
2864
- value: bigint;
2865
- yParity: number;
2866
- gasPrice?: undefined | undefined;
2867
- maxFeePerBlobGas?: undefined | undefined;
2868
- maxFeePerGas: bigint;
2869
- maxPriorityFeePerGas: bigint;
2870
- isSystemTx?: boolean;
2871
- mint?: bigint | undefined | undefined;
2872
- sourceHash: import("viem").Hex;
2873
- type: "deposit";
2874
- } | {
2875
- r: import("viem").Hex;
2876
- s: import("viem").Hex;
2877
- v: bigint;
2878
- to: import("abitype").Address | null;
2879
- from: import("abitype").Address;
2880
- gas: bigint;
2881
- nonce: number;
2882
- value: bigint;
2883
- blockHash: `0x${string}` | null;
2884
- blockNumber: bigint | null;
2885
- hash: import("viem").Hash;
2886
- input: import("viem").Hex;
2887
- transactionIndex: number | null;
2888
- typeHex: import("viem").Hex | null;
2889
- accessList?: undefined | undefined;
2890
- authorizationList?: undefined | undefined;
2891
- blobVersionedHashes?: undefined | undefined;
2892
- chainId?: number | undefined;
2893
- yParity?: undefined | undefined;
2894
- type: "legacy";
2895
- gasPrice: bigint;
2896
- maxFeePerBlobGas?: undefined | undefined;
2897
- maxFeePerGas?: undefined | undefined;
2898
- maxPriorityFeePerGas?: undefined | undefined;
2899
- isSystemTx?: undefined | undefined;
2900
- mint?: undefined | undefined;
2901
- sourceHash?: undefined | undefined;
2902
- } | {
2903
- blockHash: `0x${string}` | null;
2904
- blockNumber: bigint | null;
2905
- from: import("abitype").Address;
2906
- gas: bigint;
2907
- hash: import("viem").Hash;
2908
- input: import("viem").Hex;
2909
- nonce: number;
2910
- r: import("viem").Hex;
2911
- s: import("viem").Hex;
2912
- to: import("abitype").Address | null;
2913
- transactionIndex: number | null;
2914
- typeHex: import("viem").Hex | null;
2915
- v: bigint;
2916
- value: bigint;
2917
- yParity: number;
2918
- accessList: import("viem").AccessList;
2919
- authorizationList?: undefined | undefined;
2920
- blobVersionedHashes?: undefined | undefined;
2921
- chainId: number;
2922
- type: "eip2930";
2923
- gasPrice: bigint;
2924
- maxFeePerBlobGas?: undefined | undefined;
2925
- maxFeePerGas?: undefined | undefined;
2926
- maxPriorityFeePerGas?: undefined | undefined;
2927
- isSystemTx?: undefined | undefined;
2928
- mint?: undefined | undefined;
2929
- sourceHash?: undefined | undefined;
2930
- } | {
2931
- blockHash: `0x${string}` | null;
2932
- blockNumber: bigint | null;
2933
- from: import("abitype").Address;
2934
- gas: bigint;
2935
- hash: import("viem").Hash;
2936
- input: import("viem").Hex;
2937
- nonce: number;
2938
- r: import("viem").Hex;
2939
- s: import("viem").Hex;
2940
- to: import("abitype").Address | null;
2941
- transactionIndex: number | null;
2942
- typeHex: import("viem").Hex | null;
2943
- v: bigint;
2944
- value: bigint;
2945
- yParity: number;
2946
- accessList: import("viem").AccessList;
2947
- authorizationList?: undefined | undefined;
2948
- blobVersionedHashes?: undefined | undefined;
2949
- chainId: number;
2950
- type: "eip1559";
2951
- gasPrice?: undefined | undefined;
2952
- maxFeePerBlobGas?: undefined | undefined;
2953
- maxFeePerGas: bigint;
2954
- maxPriorityFeePerGas: bigint;
2955
- isSystemTx?: undefined | undefined;
2956
- mint?: undefined | undefined;
2957
- sourceHash?: undefined | undefined;
2958
- } | {
2959
- blockHash: `0x${string}` | null;
2960
- blockNumber: bigint | null;
2961
- from: import("abitype").Address;
2962
- gas: bigint;
2963
- hash: import("viem").Hash;
2964
- input: import("viem").Hex;
2965
- nonce: number;
2966
- r: import("viem").Hex;
2967
- s: import("viem").Hex;
2968
- to: import("abitype").Address | null;
2969
- transactionIndex: number | null;
2970
- typeHex: import("viem").Hex | null;
2971
- v: bigint;
2972
- value: bigint;
2973
- yParity: number;
2974
- accessList: import("viem").AccessList;
2975
- authorizationList?: undefined | undefined;
2976
- blobVersionedHashes: readonly import("viem").Hex[];
2977
- chainId: number;
2978
- type: "eip4844";
2979
- gasPrice?: undefined | undefined;
2980
- maxFeePerBlobGas: bigint;
2981
- maxFeePerGas: bigint;
2982
- maxPriorityFeePerGas: bigint;
2983
- isSystemTx?: undefined | undefined;
2984
- mint?: undefined | undefined;
2985
- sourceHash?: undefined | undefined;
2986
- } | {
2987
- blockHash: `0x${string}` | null;
2988
- blockNumber: bigint | null;
2989
- from: import("abitype").Address;
2990
- gas: bigint;
2991
- hash: import("viem").Hash;
2992
- input: import("viem").Hex;
2993
- nonce: number;
2994
- r: import("viem").Hex;
2995
- s: import("viem").Hex;
2996
- to: import("abitype").Address | null;
2997
- transactionIndex: number | null;
2998
- typeHex: import("viem").Hex | null;
2999
- v: bigint;
3000
- value: bigint;
3001
- yParity: number;
3002
- accessList: import("viem").AccessList;
3003
- authorizationList: import("viem").SignedAuthorizationList;
3004
- blobVersionedHashes?: undefined | undefined;
3005
- chainId: number;
3006
- type: "eip7702";
3007
- gasPrice?: undefined | undefined;
3008
- maxFeePerBlobGas?: undefined | undefined;
3009
- maxFeePerGas: bigint;
3010
- maxPriorityFeePerGas: bigint;
3011
- isSystemTx?: undefined | undefined;
3012
- mint?: undefined | undefined;
3013
- sourceHash?: undefined | undefined;
3014
- }) & {};
3015
- type: "transaction";
3016
- };
3017
- readonly transactionReceipt: {
3018
- exclude: [] | undefined;
3019
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
3020
- blobGasPrice?: bigint | undefined;
3021
- blobGasUsed?: bigint | undefined;
3022
- blockHash: import("viem").Hash;
3023
- blockNumber: bigint;
3024
- contractAddress: import("abitype").Address | null | undefined;
3025
- cumulativeGasUsed: bigint;
3026
- effectiveGasPrice: bigint;
3027
- from: import("abitype").Address;
3028
- gasUsed: bigint;
3029
- logs: import("viem").Log<bigint, number, false>[];
3030
- logsBloom: import("viem").Hex;
3031
- root?: `0x${string}` | undefined;
3032
- status: "success" | "reverted";
3033
- to: import("abitype").Address | null;
3034
- transactionHash: import("viem").Hash;
3035
- transactionIndex: number;
3036
- type: import("viem").TransactionType;
3037
- l1GasPrice: bigint | null;
3038
- l1GasUsed: bigint | null;
3039
- l1Fee: bigint | null;
3040
- l1FeeScalar: number | null;
3041
- } & {};
3042
- type: "transactionReceipt";
3043
- };
3044
- };
3045
- serializers: {
3046
- readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
3047
- };
3048
- readonly blockchainId: "BASE";
3049
- readonly blockchainVm: "EVM";
3050
- } | {
3051
- blockExplorers: {
3052
- readonly default: {
3053
- readonly name: "Basescan";
3054
- readonly url: "https://sepolia.basescan.org";
3055
- readonly apiUrl: "https://api-sepolia.basescan.org/api";
2959
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
2960
+ readonly blockchainId: "ETH";
2961
+ readonly blockchainVm: "EVM";
2962
+ readonly formatters?: undefined | undefined;
2963
+ } | {
2964
+ blockExplorers: {
2965
+ readonly default: {
2966
+ readonly name: "Etherscan";
2967
+ readonly url: "https://sepolia.etherscan.io";
2968
+ readonly apiUrl: "https://api-sepolia.etherscan.io/api";
3056
2969
  };
3057
2970
  };
3058
- blockTime: 2000;
2971
+ blockTime?: number | undefined | undefined;
3059
2972
  contracts: {
3060
2973
  readonly USDC: {
3061
- readonly address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
2974
+ readonly address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
3062
2975
  readonly abi: readonly [{
3063
2976
  readonly type: "event";
3064
2977
  readonly name: "Approval";
@@ -3199,7 +3112,7 @@ declare const SUPPORTED_CHAINS: ({
3199
3112
  };
3200
3113
  };
3201
3114
  readonly EURC: {
3202
- readonly address: "0x808456652fdb597867f38412077A9182bf77359F";
3115
+ readonly address: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
3203
3116
  readonly abi: readonly [{
3204
3117
  readonly type: "event";
3205
3118
  readonly name: "Approval";
@@ -3339,54 +3252,18 @@ declare const SUPPORTED_CHAINS: ({
3339
3252
  readonly decimals: () => 6;
3340
3253
  };
3341
3254
  };
3342
- readonly disputeGameFactory: {
3343
- readonly 11155111: {
3344
- readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
3345
- };
3346
- };
3347
- readonly l2OutputOracle: {
3348
- readonly 11155111: {
3349
- readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
3350
- };
3351
- };
3352
- readonly portal: {
3353
- readonly 11155111: {
3354
- readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
3355
- readonly blockCreated: 4446677;
3356
- };
3357
- };
3358
- readonly l1StandardBridge: {
3359
- readonly 11155111: {
3360
- readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
3361
- readonly blockCreated: 4446677;
3362
- };
3363
- };
3364
3255
  readonly multicall3: {
3365
3256
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3366
- readonly blockCreated: 1059647;
3367
- };
3368
- readonly gasPriceOracle: {
3369
- readonly address: "0x420000000000000000000000000000000000000F";
3370
- };
3371
- readonly l1Block: {
3372
- readonly address: "0x4200000000000000000000000000000000000015";
3373
- };
3374
- readonly l2CrossDomainMessenger: {
3375
- readonly address: "0x4200000000000000000000000000000000000007";
3376
- };
3377
- readonly l2Erc721Bridge: {
3378
- readonly address: "0x4200000000000000000000000000000000000014";
3379
- };
3380
- readonly l2StandardBridge: {
3381
- readonly address: "0x4200000000000000000000000000000000000010";
3257
+ readonly blockCreated: 751532;
3382
3258
  };
3383
- readonly l2ToL1MessagePasser: {
3384
- readonly address: "0x4200000000000000000000000000000000000016";
3259
+ readonly ensUniversalResolver: {
3260
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
3261
+ readonly blockCreated: 8928790;
3385
3262
  };
3386
3263
  };
3387
3264
  ensTlds?: readonly string[] | undefined;
3388
- id: 84532;
3389
- name: "Base Sepolia";
3265
+ id: 11155111;
3266
+ name: "Sepolia";
3390
3267
  nativeCurrency: {
3391
3268
  readonly name: "Sepolia Ether";
3392
3269
  readonly symbol: "ETH";
@@ -3395,250 +3272,457 @@ declare const SUPPORTED_CHAINS: ({
3395
3272
  experimental_preconfirmationTime?: number | undefined | undefined;
3396
3273
  rpcUrls: {
3397
3274
  readonly default: {
3398
- readonly http: readonly ["https://sepolia.base.org"];
3275
+ readonly http: readonly ["https://sepolia.drpc.org"];
3399
3276
  };
3400
3277
  };
3401
- sourceId: 11155111;
3278
+ sourceId?: number | undefined | undefined;
3402
3279
  testnet: true;
3403
3280
  custom?: Record<string, unknown> | undefined;
3404
3281
  fees?: import("viem").ChainFees<undefined> | undefined;
3405
- formatters: {
3406
- readonly block: {
3407
- exclude: [] | undefined;
3408
- format: (args: import("viem/chains").OpStackRpcBlock) => {
3409
- baseFeePerGas: bigint | null;
3410
- blobGasUsed: bigint;
3411
- difficulty: bigint;
3412
- excessBlobGas: bigint;
3413
- extraData: import("viem").Hex;
3414
- gasLimit: bigint;
3415
- gasUsed: bigint;
3416
- hash: `0x${string}` | null;
3417
- logsBloom: `0x${string}` | null;
3418
- miner: import("abitype").Address;
3419
- mixHash: import("viem").Hash;
3420
- nonce: `0x${string}` | null;
3421
- number: bigint | null;
3422
- parentBeaconBlockRoot?: `0x${string}` | undefined;
3423
- parentHash: import("viem").Hash;
3424
- receiptsRoot: import("viem").Hex;
3425
- sealFields: import("viem").Hex[];
3426
- sha3Uncles: import("viem").Hash;
3427
- size: bigint;
3428
- stateRoot: import("viem").Hash;
3429
- timestamp: bigint;
3430
- totalDifficulty: bigint | null;
3431
- transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
3432
- transactionsRoot: import("viem").Hash;
3433
- uncles: import("viem").Hash[];
3434
- withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
3435
- withdrawalsRoot?: `0x${string}` | undefined;
3436
- } & {};
3437
- 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";
3438
3292
  };
3439
- readonly transaction: {
3440
- exclude: [] | undefined;
3441
- format: (args: import("viem/chains").OpStackRpcTransaction) => ({
3442
- blockHash: `0x${string}` | null;
3443
- blockNumber: bigint | null;
3444
- from: import("abitype").Address;
3445
- gas: bigint;
3446
- hash: import("viem").Hash;
3447
- input: import("viem").Hex;
3448
- nonce: number;
3449
- r: import("viem").Hex;
3450
- s: import("viem").Hex;
3451
- to: import("abitype").Address | null;
3452
- transactionIndex: number | null;
3453
- typeHex: import("viem").Hex | null;
3454
- v: bigint;
3455
- value: bigint;
3456
- yParity: number;
3457
- gasPrice?: undefined | undefined;
3458
- maxFeePerBlobGas?: undefined | undefined;
3459
- maxFeePerGas: bigint;
3460
- maxPriorityFeePerGas: bigint;
3461
- isSystemTx?: boolean;
3462
- mint?: bigint | undefined | undefined;
3463
- sourceHash: import("viem").Hex;
3464
- type: "deposit";
3465
- } | {
3466
- r: import("viem").Hex;
3467
- s: import("viem").Hex;
3468
- v: bigint;
3469
- to: import("abitype").Address | null;
3470
- from: import("abitype").Address;
3471
- gas: bigint;
3472
- nonce: number;
3473
- value: bigint;
3474
- blockHash: `0x${string}` | null;
3475
- blockNumber: bigint | null;
3476
- hash: import("viem").Hash;
3477
- input: import("viem").Hex;
3478
- transactionIndex: number | null;
3479
- typeHex: import("viem").Hex | null;
3480
- accessList?: undefined | undefined;
3481
- authorizationList?: undefined | undefined;
3482
- blobVersionedHashes?: undefined | undefined;
3483
- chainId?: number | undefined;
3484
- yParity?: undefined | undefined;
3485
- type: "legacy";
3486
- gasPrice: bigint;
3487
- maxFeePerBlobGas?: undefined | undefined;
3488
- maxFeePerGas?: undefined | undefined;
3489
- maxPriorityFeePerGas?: undefined | undefined;
3490
- isSystemTx?: undefined | undefined;
3491
- mint?: undefined | undefined;
3492
- sourceHash?: undefined | undefined;
3493
- } | {
3494
- blockHash: `0x${string}` | null;
3495
- blockNumber: bigint | null;
3496
- from: import("abitype").Address;
3497
- gas: bigint;
3498
- hash: import("viem").Hash;
3499
- input: import("viem").Hex;
3500
- nonce: number;
3501
- r: import("viem").Hex;
3502
- s: import("viem").Hex;
3503
- to: import("abitype").Address | null;
3504
- transactionIndex: number | null;
3505
- typeHex: import("viem").Hex | null;
3506
- v: bigint;
3507
- value: bigint;
3508
- yParity: number;
3509
- accessList: import("viem").AccessList;
3510
- authorizationList?: undefined | undefined;
3511
- blobVersionedHashes?: undefined | undefined;
3512
- chainId: number;
3513
- type: "eip2930";
3514
- gasPrice: bigint;
3515
- maxFeePerBlobGas?: undefined | undefined;
3516
- maxFeePerGas?: undefined | undefined;
3517
- maxPriorityFeePerGas?: undefined | undefined;
3518
- isSystemTx?: undefined | undefined;
3519
- mint?: undefined | undefined;
3520
- sourceHash?: undefined | undefined;
3521
- } | {
3522
- blockHash: `0x${string}` | null;
3523
- blockNumber: bigint | null;
3524
- from: import("abitype").Address;
3525
- gas: bigint;
3526
- hash: import("viem").Hash;
3527
- input: import("viem").Hex;
3528
- nonce: number;
3529
- r: import("viem").Hex;
3530
- s: import("viem").Hex;
3531
- to: import("abitype").Address | null;
3532
- transactionIndex: number | null;
3533
- typeHex: import("viem").Hex | null;
3534
- v: bigint;
3535
- value: bigint;
3536
- yParity: number;
3537
- accessList: import("viem").AccessList;
3538
- authorizationList?: undefined | undefined;
3539
- blobVersionedHashes?: undefined | undefined;
3540
- chainId: number;
3541
- type: "eip1559";
3542
- gasPrice?: undefined | undefined;
3543
- maxFeePerBlobGas?: undefined | undefined;
3544
- maxFeePerGas: bigint;
3545
- maxPriorityFeePerGas: bigint;
3546
- isSystemTx?: undefined | undefined;
3547
- mint?: undefined | undefined;
3548
- sourceHash?: undefined | undefined;
3549
- } | {
3550
- blockHash: `0x${string}` | null;
3551
- blockNumber: bigint | null;
3552
- from: import("abitype").Address;
3553
- gas: bigint;
3554
- hash: import("viem").Hash;
3555
- input: import("viem").Hex;
3556
- nonce: number;
3557
- r: import("viem").Hex;
3558
- s: import("viem").Hex;
3559
- to: import("abitype").Address | null;
3560
- transactionIndex: number | null;
3561
- typeHex: import("viem").Hex | null;
3562
- v: bigint;
3563
- value: bigint;
3564
- yParity: number;
3565
- accessList: import("viem").AccessList;
3566
- authorizationList?: undefined | undefined;
3567
- blobVersionedHashes: readonly import("viem").Hex[];
3568
- chainId: number;
3569
- type: "eip4844";
3570
- gasPrice?: undefined | undefined;
3571
- maxFeePerBlobGas: bigint;
3572
- maxFeePerGas: bigint;
3573
- maxPriorityFeePerGas: bigint;
3574
- isSystemTx?: undefined | undefined;
3575
- mint?: undefined | undefined;
3576
- sourceHash?: undefined | undefined;
3577
- } | {
3578
- blockHash: `0x${string}` | null;
3579
- blockNumber: bigint | null;
3580
- from: import("abitype").Address;
3581
- gas: bigint;
3582
- hash: import("viem").Hash;
3583
- input: import("viem").Hex;
3584
- nonce: number;
3585
- r: import("viem").Hex;
3586
- s: import("viem").Hex;
3587
- to: import("abitype").Address | null;
3588
- transactionIndex: number | null;
3589
- typeHex: import("viem").Hex | null;
3590
- v: bigint;
3591
- value: bigint;
3592
- yParity: number;
3593
- accessList: import("viem").AccessList;
3594
- authorizationList: import("viem").SignedAuthorizationList;
3595
- blobVersionedHashes?: undefined | undefined;
3596
- chainId: number;
3597
- type: "eip7702";
3598
- gasPrice?: undefined | undefined;
3599
- maxFeePerBlobGas?: undefined | undefined;
3600
- maxFeePerGas: bigint;
3601
- maxPriorityFeePerGas: bigint;
3602
- isSystemTx?: undefined | undefined;
3603
- mint?: undefined | undefined;
3604
- sourceHash?: undefined | undefined;
3605
- }) & {};
3606
- 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
+ };
3607
3614
  };
3608
- readonly transactionReceipt: {
3609
- exclude: [] | undefined;
3610
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
3611
- blobGasPrice?: bigint | undefined;
3612
- blobGasUsed?: bigint | undefined;
3613
- blockHash: import("viem").Hash;
3614
- blockNumber: bigint;
3615
- contractAddress: import("abitype").Address | null | undefined;
3616
- cumulativeGasUsed: bigint;
3617
- effectiveGasPrice: bigint;
3618
- from: import("abitype").Address;
3619
- gasUsed: bigint;
3620
- logs: import("viem").Log<bigint, number, false>[];
3621
- logsBloom: import("viem").Hex;
3622
- root?: `0x${string}` | undefined;
3623
- status: "success" | "reverted";
3624
- to: import("abitype").Address | null;
3625
- transactionHash: import("viem").Hash;
3626
- transactionIndex: number;
3627
- type: import("viem").TransactionType;
3628
- l1GasPrice: bigint | null;
3629
- l1GasUsed: bigint | null;
3630
- l1Fee: bigint | null;
3631
- l1FeeScalar: number | null;
3632
- } & {};
3633
- type: "transactionReceipt";
3615
+ readonly multicall3: {
3616
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
3617
+ readonly blockCreated: 3127388;
3634
3618
  };
3635
3619
  };
3636
- serializers: {
3637
- 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;
3638
3627
  };
3639
- 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";
3640
3640
  readonly blockchainVm: "EVM";
3641
- 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;
3642
3726
  } | {
3643
3727
  blockExplorers: {
3644
3728
  readonly default: {
@@ -4502,39 +4586,128 @@ declare const SUPPORTED_CHAINS: ({
4502
4586
  }) & {};
4503
4587
  type: "transaction";
4504
4588
  };
4505
- readonly transactionReceipt: {
4506
- exclude: [] | undefined;
4507
- format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
4508
- blobGasPrice?: bigint | undefined;
4509
- blobGasUsed?: bigint | undefined;
4510
- blockHash: import("viem").Hash;
4511
- blockNumber: bigint;
4512
- contractAddress: import("abitype").Address | null | undefined;
4513
- cumulativeGasUsed: bigint;
4514
- effectiveGasPrice: bigint;
4515
- from: import("abitype").Address;
4516
- gasUsed: bigint;
4517
- logs: import("viem").Log<bigint, number, false>[];
4518
- logsBloom: import("viem").Hex;
4519
- root?: `0x${string}` | undefined;
4520
- status: "success" | "reverted";
4521
- to: import("abitype").Address | null;
4522
- transactionHash: import("viem").Hash;
4523
- transactionIndex: number;
4524
- type: import("viem").TransactionType;
4525
- l1GasPrice: bigint | null;
4526
- l1GasUsed: bigint | null;
4527
- l1Fee: bigint | null;
4528
- l1FeeScalar: number | null;
4529
- } & {};
4530
- 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";
4531
4671
  };
4532
4672
  };
4533
- serializers: {
4534
- 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
+ };
4535
4688
  };
4536
- readonly blockchainId: "OP-SEPOLIA";
4537
- 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";
4538
4711
  } | {
4539
4712
  blockExplorers: {
4540
4713
  readonly default: {
@@ -5421,179 +5594,6 @@ declare const SUPPORTED_CHAINS: ({
5421
5594
  };
5422
5595
  readonly blockchainId: "UNI-SEPOLIA";
5423
5596
  readonly blockchainVm: "EVM";
5424
- } | {
5425
- blockExplorers: {
5426
- readonly default: {
5427
- readonly name: "NEAR Explorer";
5428
- readonly url: "https://eth-explorer.near.org";
5429
- };
5430
- };
5431
- blockTime?: number | undefined | undefined;
5432
- contracts: {
5433
- readonly USDC: {
5434
- readonly address: "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1";
5435
- readonly read: {
5436
- readonly decimals: () => 6;
5437
- };
5438
- };
5439
- readonly ensRegistry?: import("viem").ChainContract | undefined;
5440
- readonly ensUniversalResolver?: import("viem").ChainContract | undefined;
5441
- readonly multicall3?: import("viem").ChainContract | undefined;
5442
- readonly universalSignatureVerifier?: import("viem").ChainContract | undefined;
5443
- };
5444
- ensTlds?: readonly string[] | undefined;
5445
- id: 397;
5446
- name: "NEAR Protocol";
5447
- nativeCurrency: {
5448
- readonly decimals: 18;
5449
- readonly name: "NEAR";
5450
- readonly symbol: "NEAR";
5451
- };
5452
- experimental_preconfirmationTime?: number | undefined | undefined;
5453
- rpcUrls: {
5454
- readonly default: {
5455
- readonly http: readonly ["https://eth-rpc.mainnet.near.org"];
5456
- };
5457
- };
5458
- sourceId?: number | undefined | undefined;
5459
- testnet: false;
5460
- custom?: Record<string, unknown> | undefined;
5461
- fees?: import("viem").ChainFees<undefined> | undefined;
5462
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5463
- readonly blockchainId: "NEAR";
5464
- readonly blockchainVm: "NEAR";
5465
- readonly formatters?: undefined | undefined;
5466
- } | {
5467
- blockExplorers: {
5468
- readonly default: {
5469
- readonly name: "NEAR Explorer";
5470
- readonly url: "https://eth-explorer-testnet.near.org";
5471
- };
5472
- };
5473
- blockTime?: number | undefined | undefined;
5474
- contracts: {
5475
- readonly USDC: {
5476
- readonly address: "3e2210e1184b45b64c8a434c0a7e7b23cc04ea7eb7a6c3c32520d03d4afcb8af";
5477
- readonly read: {
5478
- readonly decimals: () => 6;
5479
- };
5480
- };
5481
- readonly ensRegistry?: import("viem").ChainContract | undefined;
5482
- readonly ensUniversalResolver?: import("viem").ChainContract | undefined;
5483
- readonly multicall3?: import("viem").ChainContract | undefined;
5484
- readonly universalSignatureVerifier?: import("viem").ChainContract | undefined;
5485
- };
5486
- ensTlds?: readonly string[] | undefined;
5487
- id: 398;
5488
- name: "NEAR Protocol Testnet";
5489
- nativeCurrency: {
5490
- readonly decimals: 18;
5491
- readonly name: "NEAR";
5492
- readonly symbol: "NEAR";
5493
- };
5494
- experimental_preconfirmationTime?: number | undefined | undefined;
5495
- rpcUrls: {
5496
- readonly default: {
5497
- readonly http: readonly ["https://eth-rpc.testnet.near.org"];
5498
- };
5499
- };
5500
- sourceId?: number | undefined | undefined;
5501
- testnet: true;
5502
- custom?: Record<string, unknown> | undefined;
5503
- fees?: import("viem").ChainFees<undefined> | undefined;
5504
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
5505
- readonly blockchainId: "NEAR-TESTNET";
5506
- readonly blockchainVm: "NEAR";
5507
- readonly formatters?: undefined | undefined;
5508
- } | {
5509
- blockExplorers: {
5510
- readonly default: {
5511
- readonly name: "Solscan";
5512
- readonly url: "https://solscan.io/";
5513
- };
5514
- };
5515
- blockTime?: number | undefined | undefined;
5516
- contracts: {
5517
- readonly USDC: {
5518
- readonly address: import("abitype").Address;
5519
- readonly read: {
5520
- readonly decimals: () => 6;
5521
- };
5522
- };
5523
- readonly EURC: {
5524
- readonly address: import("abitype").Address;
5525
- readonly read: {
5526
- readonly decimals: () => 6;
5527
- };
5528
- };
5529
- };
5530
- ensTlds?: readonly string[] | undefined;
5531
- id: number;
5532
- name: "Solana Mainnet";
5533
- nativeCurrency: {
5534
- readonly decimals: 9;
5535
- readonly name: "Solana";
5536
- readonly symbol: "SOL";
5537
- };
5538
- experimental_preconfirmationTime?: number | undefined | undefined;
5539
- rpcUrls: {
5540
- readonly default: {
5541
- readonly http: readonly ["https://api.mainnet-beta.solana.com"];
5542
- };
5543
- };
5544
- sourceId?: number | undefined | undefined;
5545
- testnet?: boolean | undefined | undefined;
5546
- custom?: Record<string, unknown> | undefined;
5547
- fees?: import("viem").ChainFees<undefined> | undefined;
5548
- formatters?: undefined;
5549
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
5550
- readonly blockchainId: "SOL";
5551
- readonly blockchainVm: "SVM";
5552
- } | {
5553
- blockExplorers: {
5554
- readonly default: {
5555
- readonly name: "Solscan";
5556
- readonly url: "https://solscan.io/?cluster=devnet";
5557
- };
5558
- };
5559
- blockTime?: number | undefined | undefined;
5560
- contracts: {
5561
- readonly USDC: {
5562
- readonly address: import("abitype").Address;
5563
- readonly abi: undefined;
5564
- readonly read: {
5565
- readonly decimals: () => 6;
5566
- };
5567
- };
5568
- readonly EURC: {
5569
- readonly address: import("abitype").Address;
5570
- readonly read: {
5571
- readonly decimals: () => 6;
5572
- };
5573
- };
5574
- };
5575
- ensTlds?: readonly string[] | undefined;
5576
- id: number;
5577
- name: "Solana Devnet";
5578
- nativeCurrency: {
5579
- readonly decimals: 9;
5580
- readonly name: "Solana";
5581
- readonly symbol: "SOL";
5582
- };
5583
- experimental_preconfirmationTime?: number | undefined | undefined;
5584
- rpcUrls: {
5585
- readonly default: {
5586
- readonly http: readonly ["https://api.devnet.solana.com"];
5587
- };
5588
- };
5589
- sourceId?: number | undefined | undefined;
5590
- testnet: true;
5591
- custom?: Record<string, unknown> | undefined;
5592
- fees?: import("viem").ChainFees<undefined> | undefined;
5593
- formatters?: undefined;
5594
- serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
5595
- readonly blockchainId: "SOL-DEVNET";
5596
- readonly blockchainVm: "SVM";
5597
5597
  })[];
5598
5598
  /**
5599
5599
  * Extracts chain information based on the provided chain ID.