viem 1.0.7 → 1.1.0

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 (237) hide show
  1. package/chains/package.json +3 -3
  2. package/dist/cjs/accounts/privateKeyToAccount.js +2 -2
  3. package/dist/cjs/accounts/privateKeyToAccount.js.map +1 -1
  4. package/dist/cjs/accounts/utils/signTransaction.js +3 -3
  5. package/dist/cjs/accounts/utils/signTransaction.js.map +1 -1
  6. package/dist/cjs/actions/public/call.js +3 -6
  7. package/dist/cjs/actions/public/call.js.map +1 -1
  8. package/dist/cjs/actions/public/estimateContractGas.js.map +1 -1
  9. package/dist/cjs/actions/public/estimateGas.js +3 -6
  10. package/dist/cjs/actions/public/estimateGas.js.map +1 -1
  11. package/dist/cjs/actions/public/getBlock.js +2 -4
  12. package/dist/cjs/actions/public/getBlock.js.map +1 -1
  13. package/dist/cjs/actions/public/getTransaction.js +2 -4
  14. package/dist/cjs/actions/public/getTransaction.js.map +1 -1
  15. package/dist/cjs/actions/public/getTransactionConfirmations.js.map +1 -1
  16. package/dist/cjs/actions/public/getTransactionReceipt.js +2 -4
  17. package/dist/cjs/actions/public/getTransactionReceipt.js.map +1 -1
  18. package/dist/cjs/actions/public/simulateContract.js.map +1 -1
  19. package/dist/cjs/actions/public/watchBlocks.js +3 -1
  20. package/dist/cjs/actions/public/watchBlocks.js.map +1 -1
  21. package/dist/cjs/actions/test/sendUnsignedTransaction.js +3 -6
  22. package/dist/cjs/actions/test/sendUnsignedTransaction.js.map +1 -1
  23. package/dist/cjs/actions/wallet/sendTransaction.js +5 -7
  24. package/dist/cjs/actions/wallet/sendTransaction.js.map +1 -1
  25. package/dist/cjs/chains/formatters/celo.js +62 -0
  26. package/dist/cjs/chains/formatters/celo.js.map +1 -0
  27. package/dist/cjs/chains/formatters/optimism.js +43 -0
  28. package/dist/cjs/chains/formatters/optimism.js.map +1 -0
  29. package/dist/cjs/{chains.js → chains/index.js} +16 -50
  30. package/dist/cjs/chains/index.js.map +1 -0
  31. package/dist/cjs/errors/version.js +1 -1
  32. package/dist/cjs/index.js +3 -1
  33. package/dist/cjs/index.js.map +1 -1
  34. package/dist/cjs/types/serializer.js +3 -0
  35. package/dist/cjs/types/serializer.js.map +1 -0
  36. package/dist/cjs/utils/chain.js +6 -2
  37. package/dist/cjs/utils/chain.js.map +1 -1
  38. package/dist/cjs/utils/formatters/block.js +2 -4
  39. package/dist/cjs/utils/formatters/block.js.map +1 -1
  40. package/dist/cjs/utils/formatters/formatter.js +21 -0
  41. package/dist/cjs/utils/formatters/formatter.js.map +1 -0
  42. package/dist/cjs/utils/formatters/transaction.js +3 -4
  43. package/dist/cjs/utils/formatters/transaction.js.map +1 -1
  44. package/dist/cjs/utils/formatters/transactionReceipt.js +3 -5
  45. package/dist/cjs/utils/formatters/transactionReceipt.js.map +1 -1
  46. package/dist/cjs/utils/formatters/transactionRequest.js +2 -4
  47. package/dist/cjs/utils/formatters/transactionRequest.js.map +1 -1
  48. package/dist/cjs/utils/index.js +6 -5
  49. package/dist/cjs/utils/index.js.map +1 -1
  50. package/dist/cjs/utils/transaction/getTransactionType.js.map +1 -1
  51. package/dist/cjs/utils/transaction/serializeAccessList.js +26 -0
  52. package/dist/cjs/utils/transaction/serializeAccessList.js.map +1 -0
  53. package/dist/cjs/utils/transaction/serializeTransaction.js +3 -22
  54. package/dist/cjs/utils/transaction/serializeTransaction.js.map +1 -1
  55. package/dist/cjs/wallet.js.map +1 -1
  56. package/dist/esm/accounts/privateKeyToAccount.js +2 -2
  57. package/dist/esm/accounts/privateKeyToAccount.js.map +1 -1
  58. package/dist/esm/accounts/utils/signTransaction.js +4 -4
  59. package/dist/esm/accounts/utils/signTransaction.js.map +1 -1
  60. package/dist/esm/actions/public/call.js +3 -6
  61. package/dist/esm/actions/public/call.js.map +1 -1
  62. package/dist/esm/actions/public/estimateContractGas.js.map +1 -1
  63. package/dist/esm/actions/public/estimateGas.js +3 -6
  64. package/dist/esm/actions/public/estimateGas.js.map +1 -1
  65. package/dist/esm/actions/public/getBlock.js +2 -4
  66. package/dist/esm/actions/public/getBlock.js.map +1 -1
  67. package/dist/esm/actions/public/getTransaction.js +2 -4
  68. package/dist/esm/actions/public/getTransaction.js.map +1 -1
  69. package/dist/esm/actions/public/getTransactionConfirmations.js.map +1 -1
  70. package/dist/esm/actions/public/getTransactionReceipt.js +2 -4
  71. package/dist/esm/actions/public/getTransactionReceipt.js.map +1 -1
  72. package/dist/esm/actions/public/simulateContract.js.map +1 -1
  73. package/dist/esm/actions/public/watchBlocks.js +3 -1
  74. package/dist/esm/actions/public/watchBlocks.js.map +1 -1
  75. package/dist/esm/actions/test/sendUnsignedTransaction.js +3 -6
  76. package/dist/esm/actions/test/sendUnsignedTransaction.js.map +1 -1
  77. package/dist/esm/actions/wallet/sendTransaction.js +5 -7
  78. package/dist/esm/actions/wallet/sendTransaction.js.map +1 -1
  79. package/dist/esm/chains/formatters/celo.js +59 -0
  80. package/dist/esm/chains/formatters/celo.js.map +1 -0
  81. package/dist/esm/chains/formatters/optimism.js +40 -0
  82. package/dist/esm/chains/formatters/optimism.js.map +1 -0
  83. package/dist/esm/{chains.js → chains/index.js} +13 -47
  84. package/dist/esm/chains/index.js.map +1 -0
  85. package/dist/esm/errors/version.js +1 -1
  86. package/dist/esm/index.js +2 -1
  87. package/dist/esm/index.js.map +1 -1
  88. package/dist/esm/types/serializer.js +2 -0
  89. package/dist/esm/types/serializer.js.map +1 -0
  90. package/dist/esm/utils/chain.js +6 -2
  91. package/dist/esm/utils/chain.js.map +1 -1
  92. package/dist/esm/utils/formatters/block.js +2 -5
  93. package/dist/esm/utils/formatters/block.js.map +1 -1
  94. package/dist/esm/utils/formatters/formatter.js +17 -0
  95. package/dist/esm/utils/formatters/formatter.js.map +1 -0
  96. package/dist/esm/utils/formatters/transaction.js +4 -4
  97. package/dist/esm/utils/formatters/transaction.js.map +1 -1
  98. package/dist/esm/utils/formatters/transactionReceipt.js +3 -5
  99. package/dist/esm/utils/formatters/transactionReceipt.js.map +1 -1
  100. package/dist/esm/utils/formatters/transactionRequest.js +2 -4
  101. package/dist/esm/utils/formatters/transactionRequest.js.map +1 -1
  102. package/dist/esm/utils/index.js +3 -2
  103. package/dist/esm/utils/index.js.map +1 -1
  104. package/dist/esm/utils/transaction/getTransactionType.js.map +1 -1
  105. package/dist/esm/utils/transaction/serializeAccessList.js +32 -0
  106. package/dist/esm/utils/transaction/serializeAccessList.js.map +1 -0
  107. package/dist/esm/utils/transaction/serializeTransaction.js +2 -21
  108. package/dist/esm/utils/transaction/serializeTransaction.js.map +1 -1
  109. package/dist/esm/wallet.js.map +1 -1
  110. package/dist/types/accounts/types.d.ts +7 -2
  111. package/dist/types/accounts/types.d.ts.map +1 -1
  112. package/dist/types/accounts/utils/signTransaction.d.ts +5 -3
  113. package/dist/types/accounts/utils/signTransaction.d.ts.map +1 -1
  114. package/dist/types/actions/public/call.d.ts +3 -7
  115. package/dist/types/actions/public/call.d.ts.map +1 -1
  116. package/dist/types/actions/public/estimateContractGas.d.ts +1 -1
  117. package/dist/types/actions/public/estimateContractGas.d.ts.map +1 -1
  118. package/dist/types/actions/public/estimateGas.d.ts +3 -7
  119. package/dist/types/actions/public/estimateGas.d.ts.map +1 -1
  120. package/dist/types/actions/public/getBlock.d.ts +2 -2
  121. package/dist/types/actions/public/getBlock.d.ts.map +1 -1
  122. package/dist/types/actions/public/getTransaction.d.ts +2 -2
  123. package/dist/types/actions/public/getTransaction.d.ts.map +1 -1
  124. package/dist/types/actions/public/getTransactionConfirmations.d.ts +2 -2
  125. package/dist/types/actions/public/getTransactionConfirmations.d.ts.map +1 -1
  126. package/dist/types/actions/public/getTransactionReceipt.d.ts +3 -3
  127. package/dist/types/actions/public/getTransactionReceipt.d.ts.map +1 -1
  128. package/dist/types/actions/public/simulateContract.d.ts +1 -1
  129. package/dist/types/actions/public/simulateContract.d.ts.map +1 -1
  130. package/dist/types/actions/public/verifyHash.d.ts +1 -1
  131. package/dist/types/actions/public/verifyHash.d.ts.map +1 -1
  132. package/dist/types/actions/public/verifyMessage.d.ts +1 -1
  133. package/dist/types/actions/public/verifyMessage.d.ts.map +1 -1
  134. package/dist/types/actions/public/verifyTypedData.d.ts +1 -1
  135. package/dist/types/actions/public/verifyTypedData.d.ts.map +1 -1
  136. package/dist/types/actions/public/watchBlocks.d.ts.map +1 -1
  137. package/dist/types/actions/test/sendUnsignedTransaction.d.ts +2 -8
  138. package/dist/types/actions/test/sendUnsignedTransaction.d.ts.map +1 -1
  139. package/dist/types/actions/wallet/sendTransaction.d.ts +2 -7
  140. package/dist/types/actions/wallet/sendTransaction.d.ts.map +1 -1
  141. package/dist/types/chains/formatters/celo.d.ts +235 -0
  142. package/dist/types/chains/formatters/celo.d.ts.map +1 -0
  143. package/dist/types/chains/formatters/optimism.d.ts +286 -0
  144. package/dist/types/chains/formatters/optimism.d.ts.map +1 -0
  145. package/dist/types/chains/index.d.ts +5246 -0
  146. package/dist/types/chains/index.d.ts.map +1 -0
  147. package/dist/types/errors/version.d.ts +1 -1
  148. package/dist/types/index.d.ts +7 -6
  149. package/dist/types/index.d.ts.map +1 -1
  150. package/dist/types/types/chain.d.ts +3 -1
  151. package/dist/types/types/chain.d.ts.map +1 -1
  152. package/dist/types/types/fee.d.ts +1 -0
  153. package/dist/types/types/fee.d.ts.map +1 -1
  154. package/dist/types/types/formatter.d.ts +8 -10
  155. package/dist/types/types/formatter.d.ts.map +1 -1
  156. package/dist/types/types/rpc.d.ts +1 -1
  157. package/dist/types/types/rpc.d.ts.map +1 -1
  158. package/dist/types/types/serializer.d.ts +7 -0
  159. package/dist/types/types/serializer.d.ts.map +1 -0
  160. package/dist/types/types/transaction.d.ts +14 -3
  161. package/dist/types/types/transaction.d.ts.map +1 -1
  162. package/dist/types/types/utils.d.ts +5 -5
  163. package/dist/types/types/utils.d.ts.map +1 -1
  164. package/dist/types/utils/chain.d.ts +4 -1
  165. package/dist/types/utils/chain.d.ts.map +1 -1
  166. package/dist/types/utils/formatters/block.d.ts +5 -11
  167. package/dist/types/utils/formatters/block.d.ts.map +1 -1
  168. package/dist/types/utils/formatters/formatter.d.ts +6 -0
  169. package/dist/types/utils/formatters/formatter.d.ts.map +1 -0
  170. package/dist/types/utils/formatters/transaction.d.ts +5 -11
  171. package/dist/types/utils/formatters/transaction.d.ts.map +1 -1
  172. package/dist/types/utils/formatters/transactionReceipt.d.ts +5 -11
  173. package/dist/types/utils/formatters/transactionReceipt.d.ts.map +1 -1
  174. package/dist/types/utils/formatters/transactionRequest.d.ts +5 -11
  175. package/dist/types/utils/formatters/transactionRequest.d.ts.map +1 -1
  176. package/dist/types/utils/index.d.ts +7 -6
  177. package/dist/types/utils/index.d.ts.map +1 -1
  178. package/dist/types/utils/transaction/getTransactionType.d.ts +2 -2
  179. package/dist/types/utils/transaction/getTransactionType.d.ts.map +1 -1
  180. package/dist/types/utils/transaction/serializeAccessList.d.ts +5 -0
  181. package/dist/types/utils/transaction/serializeAccessList.d.ts.map +1 -0
  182. package/dist/types/utils/transaction/serializeTransaction.d.ts +1 -0
  183. package/dist/types/utils/transaction/serializeTransaction.d.ts.map +1 -1
  184. package/dist/types/wallet.d.ts +1 -1
  185. package/dist/types/wallet.d.ts.map +1 -1
  186. package/package.json +5 -5
  187. package/src/accounts/privateKeyToAccount.ts +2 -2
  188. package/src/accounts/types.ts +20 -2
  189. package/src/accounts/utils/signTransaction.ts +9 -6
  190. package/src/actions/public/call.ts +20 -30
  191. package/src/actions/public/estimateContractGas.ts +7 -1
  192. package/src/actions/public/estimateGas.ts +20 -30
  193. package/src/actions/public/getBlock.ts +3 -6
  194. package/src/actions/public/getTransaction.ts +3 -6
  195. package/src/actions/public/getTransactionConfirmations.ts +2 -7
  196. package/src/actions/public/getTransactionReceipt.ts +4 -7
  197. package/src/actions/public/simulateContract.ts +7 -1
  198. package/src/actions/public/verifyHash.ts +1 -1
  199. package/src/actions/public/verifyMessage.ts +1 -1
  200. package/src/actions/public/verifyTypedData.ts +1 -1
  201. package/src/actions/public/watchBlocks.ts +3 -1
  202. package/src/actions/test/sendUnsignedTransaction.ts +18 -32
  203. package/src/actions/wallet/sendTransaction.ts +27 -36
  204. package/src/chains/formatters/celo.ts +102 -0
  205. package/src/chains/formatters/optimism.ts +88 -0
  206. package/src/{chains.ts → chains/index.ts} +13 -56
  207. package/src/errors/version.ts +1 -1
  208. package/src/index.ts +6 -9
  209. package/src/types/chain.ts +8 -1
  210. package/src/types/fee.ts +1 -0
  211. package/src/types/formatter.ts +26 -17
  212. package/src/types/rpc.ts +1 -1
  213. package/src/types/serializer.ts +19 -0
  214. package/src/types/transaction.ts +24 -4
  215. package/src/types/utils.ts +5 -5
  216. package/src/utils/chain.ts +11 -4
  217. package/src/utils/formatters/block.ts +5 -17
  218. package/src/utils/formatters/formatter.ts +32 -0
  219. package/src/utils/formatters/transaction.ts +7 -21
  220. package/src/utils/formatters/transactionReceipt.ts +10 -22
  221. package/src/utils/formatters/transactionRequest.ts +7 -22
  222. package/src/utils/index.ts +6 -11
  223. package/src/utils/transaction/getTransactionType.ts +10 -9
  224. package/src/utils/transaction/serializeAccessList.ts +39 -0
  225. package/src/utils/transaction/serializeTransaction.ts +11 -34
  226. package/src/wallet.ts +0 -1
  227. package/dist/cjs/chains.js.map +0 -1
  228. package/dist/cjs/utils/formatters/format.js +0 -23
  229. package/dist/cjs/utils/formatters/format.js.map +0 -1
  230. package/dist/esm/chains.js.map +0 -1
  231. package/dist/esm/utils/formatters/format.js +0 -21
  232. package/dist/esm/utils/formatters/format.js.map +0 -1
  233. package/dist/types/chains.d.ts +0 -2834
  234. package/dist/types/chains.d.ts.map +0 -1
  235. package/dist/types/utils/formatters/format.d.ts +0 -38
  236. package/dist/types/utils/formatters/format.d.ts.map +0 -1
  237. package/src/utils/formatters/format.ts +0 -99
@@ -1,2834 +0,0 @@
1
- import * as chains from '@wagmi/chains';
2
- import type { Hex } from './types/misc.js';
3
- export declare const arbitrum: {
4
- readonly id: 42161;
5
- readonly name: "Arbitrum One";
6
- readonly network: "arbitrum";
7
- readonly nativeCurrency: {
8
- readonly name: "Ether";
9
- readonly symbol: "ETH";
10
- readonly decimals: 18;
11
- };
12
- readonly rpcUrls: {
13
- readonly alchemy: {
14
- readonly http: readonly ["https://arb-mainnet.g.alchemy.com/v2"];
15
- readonly webSocket: readonly ["wss://arb-mainnet.g.alchemy.com/v2"];
16
- };
17
- readonly infura: {
18
- readonly http: readonly ["https://arbitrum-mainnet.infura.io/v3"];
19
- readonly webSocket: readonly ["wss://arbitrum-mainnet.infura.io/ws/v3"];
20
- };
21
- readonly default: {
22
- readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
23
- };
24
- readonly public: {
25
- readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
26
- };
27
- };
28
- readonly blockExplorers: {
29
- readonly etherscan: {
30
- readonly name: "Arbiscan";
31
- readonly url: "https://arbiscan.io";
32
- };
33
- readonly default: {
34
- readonly name: "Arbiscan";
35
- readonly url: "https://arbiscan.io";
36
- };
37
- };
38
- readonly contracts: {
39
- readonly multicall3: {
40
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
41
- readonly blockCreated: 7654707;
42
- };
43
- };
44
- };
45
- export declare const arbitrumGoerli: {
46
- readonly id: 421613;
47
- readonly name: "Arbitrum Goerli";
48
- readonly network: "arbitrum-goerli";
49
- readonly nativeCurrency: {
50
- readonly name: "Arbitrum Goerli Ether";
51
- readonly symbol: "ETH";
52
- readonly decimals: 18;
53
- };
54
- readonly rpcUrls: {
55
- readonly alchemy: {
56
- readonly http: readonly ["https://arb-goerli.g.alchemy.com/v2"];
57
- readonly webSocket: readonly ["wss://arb-goerli.g.alchemy.com/v2"];
58
- };
59
- readonly infura: {
60
- readonly http: readonly ["https://arbitrum-goerli.infura.io/v3"];
61
- readonly webSocket: readonly ["wss://arbitrum-goerli.infura.io/ws/v3"];
62
- };
63
- readonly default: {
64
- readonly http: readonly ["https://goerli-rollup.arbitrum.io/rpc"];
65
- };
66
- readonly public: {
67
- readonly http: readonly ["https://goerli-rollup.arbitrum.io/rpc"];
68
- };
69
- };
70
- readonly blockExplorers: {
71
- readonly etherscan: {
72
- readonly name: "Arbiscan";
73
- readonly url: "https://goerli.arbiscan.io/";
74
- };
75
- readonly default: {
76
- readonly name: "Arbiscan";
77
- readonly url: "https://goerli.arbiscan.io/";
78
- };
79
- };
80
- readonly contracts: {
81
- readonly multicall3: {
82
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
83
- readonly blockCreated: 88114;
84
- };
85
- };
86
- readonly testnet: true;
87
- };
88
- export declare const aurora: {
89
- readonly id: 1313161554;
90
- readonly name: "Aurora";
91
- readonly network: "aurora";
92
- readonly nativeCurrency: {
93
- readonly decimals: 18;
94
- readonly name: "Ether";
95
- readonly symbol: "ETH";
96
- };
97
- readonly rpcUrls: {
98
- readonly infura: {
99
- readonly http: readonly ["https://aurora-mainnet.infura.io/v3"];
100
- };
101
- readonly default: {
102
- readonly http: readonly ["https://mainnet.aurora.dev"];
103
- };
104
- readonly public: {
105
- readonly http: readonly ["https://mainnet.aurora.dev"];
106
- };
107
- };
108
- readonly blockExplorers: {
109
- readonly etherscan: {
110
- readonly name: "Aurorascan";
111
- readonly url: "https://aurorascan.dev";
112
- };
113
- readonly default: {
114
- readonly name: "Aurorascan";
115
- readonly url: "https://aurorascan.dev";
116
- };
117
- };
118
- };
119
- export declare const auroraTestnet: {
120
- readonly id: 1313161555;
121
- readonly name: "Aurora Testnet";
122
- readonly network: "aurora-testnet";
123
- readonly nativeCurrency: {
124
- readonly decimals: 18;
125
- readonly name: "Ether";
126
- readonly symbol: "ETH";
127
- };
128
- readonly rpcUrls: {
129
- readonly infura: {
130
- readonly http: readonly ["https://aurora-testnet.infura.io/v3"];
131
- };
132
- readonly default: {
133
- readonly http: readonly ["https://testnet.aurora.dev"];
134
- };
135
- readonly public: {
136
- readonly http: readonly ["https://testnet.aurora.dev"];
137
- };
138
- };
139
- readonly blockExplorers: {
140
- readonly etherscan: {
141
- readonly name: "Aurorascan";
142
- readonly url: "https://testnet.aurorascan.dev";
143
- };
144
- readonly default: {
145
- readonly name: "Aurorascan";
146
- readonly url: "https://testnet.aurorascan.dev";
147
- };
148
- };
149
- readonly testnet: true;
150
- };
151
- export declare const avalanche: {
152
- readonly id: 43114;
153
- readonly name: "Avalanche";
154
- readonly network: "avalanche";
155
- readonly nativeCurrency: {
156
- readonly decimals: 18;
157
- readonly name: "Avalanche";
158
- readonly symbol: "AVAX";
159
- };
160
- readonly rpcUrls: {
161
- readonly default: {
162
- readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
163
- };
164
- readonly public: {
165
- readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
166
- };
167
- };
168
- readonly blockExplorers: {
169
- readonly etherscan: {
170
- readonly name: "SnowTrace";
171
- readonly url: "https://snowtrace.io";
172
- };
173
- readonly default: {
174
- readonly name: "SnowTrace";
175
- readonly url: "https://snowtrace.io";
176
- };
177
- };
178
- readonly contracts: {
179
- readonly multicall3: {
180
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
181
- readonly blockCreated: 11907934;
182
- };
183
- };
184
- };
185
- export declare const avalancheFuji: {
186
- readonly id: 43113;
187
- readonly name: "Avalanche Fuji";
188
- readonly network: "avalanche-fuji";
189
- readonly nativeCurrency: {
190
- readonly decimals: 18;
191
- readonly name: "Avalanche Fuji";
192
- readonly symbol: "AVAX";
193
- };
194
- readonly rpcUrls: {
195
- readonly default: {
196
- readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
197
- };
198
- readonly public: {
199
- readonly http: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
200
- };
201
- };
202
- readonly blockExplorers: {
203
- readonly etherscan: {
204
- readonly name: "SnowTrace";
205
- readonly url: "https://testnet.snowtrace.io";
206
- };
207
- readonly default: {
208
- readonly name: "SnowTrace";
209
- readonly url: "https://testnet.snowtrace.io";
210
- };
211
- };
212
- readonly contracts: {
213
- readonly multicall3: {
214
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
215
- readonly blockCreated: 7096959;
216
- };
217
- };
218
- readonly testnet: true;
219
- };
220
- export declare const baseGoerli: {
221
- readonly id: 84531;
222
- readonly network: "base-goerli";
223
- readonly name: "Base Goerli";
224
- readonly nativeCurrency: {
225
- readonly name: "Base Goerli";
226
- readonly symbol: "ETH";
227
- readonly decimals: 18;
228
- };
229
- readonly rpcUrls: {
230
- readonly default: {
231
- readonly http: readonly ["https://goerli.base.org"];
232
- };
233
- readonly public: {
234
- readonly http: readonly ["https://goerli.base.org"];
235
- };
236
- };
237
- readonly blockExplorers: {
238
- readonly etherscan: {
239
- readonly name: "Basescan";
240
- readonly url: "https://goerli.basescan.org";
241
- };
242
- readonly default: {
243
- readonly name: "Basescan";
244
- readonly url: "https://goerli.basescan.org";
245
- };
246
- };
247
- readonly testnet: true;
248
- };
249
- export declare const boba: {
250
- readonly id: 288;
251
- readonly name: "Boba Network";
252
- readonly network: "boba";
253
- readonly nativeCurrency: {
254
- readonly decimals: 18;
255
- readonly name: "Boba";
256
- readonly symbol: "BOBA";
257
- };
258
- readonly rpcUrls: {
259
- readonly default: {
260
- readonly http: readonly ["https://mainnet.boba.network"];
261
- };
262
- readonly public: {
263
- readonly http: readonly ["https://mainnet.boba.network"];
264
- };
265
- };
266
- readonly blockExplorers: {
267
- readonly etherscan: {
268
- readonly name: "BOBAScan";
269
- readonly url: "https://bobascan.com";
270
- };
271
- readonly default: {
272
- readonly name: "BOBAScan";
273
- readonly url: "https://bobascan.com";
274
- };
275
- };
276
- readonly contracts: {
277
- readonly multicall3: {
278
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
279
- readonly blockCreated: 446859;
280
- };
281
- };
282
- };
283
- export declare const bronos: {
284
- readonly id: 1039;
285
- readonly name: "Bronos";
286
- readonly network: "bronos";
287
- readonly nativeCurrency: {
288
- readonly decimals: 18;
289
- readonly name: "BRO";
290
- readonly symbol: "BRO";
291
- };
292
- readonly rpcUrls: {
293
- readonly default: {
294
- readonly http: readonly ["https://evm.bronos.org"];
295
- };
296
- readonly public: {
297
- readonly http: readonly ["https://evm.bronos.org"];
298
- };
299
- };
300
- readonly blockExplorers: {
301
- readonly default: {
302
- readonly name: "BronoScan";
303
- readonly url: "https://broscan.bronos.org";
304
- };
305
- };
306
- };
307
- export declare const bronosTestnet: {
308
- readonly id: 1038;
309
- readonly name: "Bronos Testnet";
310
- readonly network: "bronos-testnet";
311
- readonly nativeCurrency: {
312
- readonly decimals: 18;
313
- readonly name: "Bronos Coin";
314
- readonly symbol: "tBRO";
315
- };
316
- readonly rpcUrls: {
317
- readonly default: {
318
- readonly http: readonly ["https://evm-testnet.bronos.org"];
319
- };
320
- readonly public: {
321
- readonly http: readonly ["https://evm-testnet.bronos.org"];
322
- };
323
- };
324
- readonly blockExplorers: {
325
- readonly default: {
326
- readonly name: "BronoScan";
327
- readonly url: "https://tbroscan.bronos.org";
328
- };
329
- };
330
- readonly testnet: true;
331
- };
332
- export declare const bsc: {
333
- readonly id: 56;
334
- readonly name: "BNB Smart Chain";
335
- readonly network: "bsc";
336
- readonly nativeCurrency: {
337
- readonly decimals: 18;
338
- readonly name: "BNB";
339
- readonly symbol: "BNB";
340
- };
341
- readonly rpcUrls: {
342
- readonly default: {
343
- readonly http: readonly ["https://rpc.ankr.com/bsc"];
344
- };
345
- readonly public: {
346
- readonly http: readonly ["https://rpc.ankr.com/bsc"];
347
- };
348
- };
349
- readonly blockExplorers: {
350
- readonly etherscan: {
351
- readonly name: "BscScan";
352
- readonly url: "https://bscscan.com";
353
- };
354
- readonly default: {
355
- readonly name: "BscScan";
356
- readonly url: "https://bscscan.com";
357
- };
358
- };
359
- readonly contracts: {
360
- readonly multicall3: {
361
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
362
- readonly blockCreated: 15921452;
363
- };
364
- };
365
- };
366
- export declare const bscTestnet: {
367
- readonly id: 97;
368
- readonly name: "Binance Smart Chain Testnet";
369
- readonly network: "bsc-testnet";
370
- readonly nativeCurrency: {
371
- readonly decimals: 18;
372
- readonly name: "BNB";
373
- readonly symbol: "tBNB";
374
- };
375
- readonly rpcUrls: {
376
- readonly default: {
377
- readonly http: readonly ["https://data-seed-prebsc-1-s1.binance.org:8545"];
378
- };
379
- readonly public: {
380
- readonly http: readonly ["https://data-seed-prebsc-1-s1.binance.org:8545"];
381
- };
382
- };
383
- readonly blockExplorers: {
384
- readonly etherscan: {
385
- readonly name: "BscScan";
386
- readonly url: "https://testnet.bscscan.com";
387
- };
388
- readonly default: {
389
- readonly name: "BscScan";
390
- readonly url: "https://testnet.bscscan.com";
391
- };
392
- };
393
- readonly contracts: {
394
- readonly multicall3: {
395
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
396
- readonly blockCreated: 17422483;
397
- };
398
- };
399
- readonly testnet: true;
400
- };
401
- export declare const canto: {
402
- readonly id: 7700;
403
- readonly name: "Canto";
404
- readonly network: "canto";
405
- readonly nativeCurrency: {
406
- readonly decimals: 18;
407
- readonly name: "Canto";
408
- readonly symbol: "CANTO";
409
- };
410
- readonly rpcUrls: {
411
- readonly default: {
412
- readonly http: readonly ["https://canto.slingshot.finance"];
413
- };
414
- readonly public: {
415
- readonly http: readonly ["https://canto.slingshot.finance"];
416
- };
417
- };
418
- readonly blockExplorers: {
419
- readonly default: {
420
- readonly name: "Canto EVM Explorer (Blockscout)";
421
- readonly url: "https://evm.explorer.canto.io";
422
- };
423
- };
424
- readonly contracts: {
425
- readonly multicall3: {
426
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
427
- readonly blockCreated: 2905789;
428
- };
429
- };
430
- };
431
- export declare const celo: {
432
- formatters: {
433
- block: (data: Partial<import("./types/rpc.js").RpcBlock> & {
434
- [key: string]: unknown;
435
- }) => import("./index.js").Block & {
436
- randomness: {
437
- committed: Hex;
438
- revealed: Hex;
439
- };
440
- } & {
441
- nonce: never;
442
- difficulty: never;
443
- gasLimit: never;
444
- mixHash: never;
445
- uncles: never;
446
- };
447
- transaction: (data: Partial<import("./types/rpc.js").RpcTransaction> & {
448
- [key: string]: unknown;
449
- }) => import("./index.js").Transaction & {
450
- feeCurrency: `0x${string}` | null;
451
- gatewayFee: bigint | null;
452
- gatewayFeeRecipient: `0x${string}` | null;
453
- } & {};
454
- transactionReceipt: (data: Partial<import("./types/rpc.js").RpcTransactionReceipt> & {
455
- [key: string]: unknown;
456
- }) => import("./index.js").TransactionReceipt & {
457
- feeCurrency: `0x${string}` | null;
458
- gatewayFee: bigint | null;
459
- gatewayFeeRecipient: `0x${string}` | null;
460
- } & {};
461
- transactionRequest: (data: Partial<import("./index.js").TransactionRequest> & {
462
- [key: string]: unknown;
463
- }) => import("./types/rpc.js").RpcTransactionRequest & {
464
- feeCurrency: `0x${string}` | undefined;
465
- gatewayFee: `0x${string}` | undefined;
466
- gatewayFeeRecipient: `0x${string}` | undefined;
467
- } & {};
468
- };
469
- id: 42220;
470
- name: "Celo";
471
- network: "celo";
472
- nativeCurrency: {
473
- readonly decimals: 18;
474
- readonly name: "CELO";
475
- readonly symbol: "CELO";
476
- };
477
- rpcUrls: {
478
- readonly default: {
479
- readonly http: readonly ["https://forno.celo.org"];
480
- };
481
- readonly infura: {
482
- readonly http: readonly ["https://celo-mainnet.infura.io/v3"];
483
- };
484
- readonly public: {
485
- readonly http: readonly ["https://forno.celo.org"];
486
- };
487
- };
488
- blockExplorers: {
489
- readonly default: {
490
- readonly name: "Celo Explorer";
491
- readonly url: "https://explorer.celo.org/mainnet";
492
- };
493
- readonly etherscan: {
494
- readonly name: "CeloScan";
495
- readonly url: "https://celoscan.io";
496
- };
497
- };
498
- contracts: {
499
- readonly multicall3: {
500
- readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
501
- readonly blockCreated: 13112599;
502
- };
503
- };
504
- testnet: false;
505
- };
506
- export declare const celoAlfajores: {
507
- formatters: {
508
- block: (data: Partial<import("./types/rpc.js").RpcBlock> & {
509
- [key: string]: unknown;
510
- }) => import("./index.js").Block & {
511
- randomness: {
512
- committed: Hex;
513
- revealed: Hex;
514
- };
515
- } & {
516
- nonce: never;
517
- difficulty: never;
518
- gasLimit: never;
519
- mixHash: never;
520
- uncles: never;
521
- };
522
- transaction: (data: Partial<import("./types/rpc.js").RpcTransaction> & {
523
- [key: string]: unknown;
524
- }) => import("./index.js").Transaction & {
525
- feeCurrency: `0x${string}` | null;
526
- gatewayFee: bigint | null;
527
- gatewayFeeRecipient: `0x${string}` | null;
528
- } & {};
529
- transactionReceipt: (data: Partial<import("./types/rpc.js").RpcTransactionReceipt> & {
530
- [key: string]: unknown;
531
- }) => import("./index.js").TransactionReceipt & {
532
- feeCurrency: `0x${string}` | null;
533
- gatewayFee: bigint | null;
534
- gatewayFeeRecipient: `0x${string}` | null;
535
- } & {};
536
- transactionRequest: (data: Partial<import("./index.js").TransactionRequest> & {
537
- [key: string]: unknown;
538
- }) => import("./types/rpc.js").RpcTransactionRequest & {
539
- feeCurrency: `0x${string}` | undefined;
540
- gatewayFee: `0x${string}` | undefined;
541
- gatewayFeeRecipient: `0x${string}` | undefined;
542
- } & {};
543
- };
544
- id: 44787;
545
- name: "Alfajores";
546
- network: "celo-alfajores";
547
- nativeCurrency: {
548
- readonly decimals: 18;
549
- readonly name: "CELO";
550
- readonly symbol: "A-CELO";
551
- };
552
- rpcUrls: {
553
- readonly default: {
554
- readonly http: readonly ["https://alfajores-forno.celo-testnet.org"];
555
- };
556
- readonly infura: {
557
- readonly http: readonly ["https://celo-alfajores.infura.io/v3"];
558
- };
559
- readonly public: {
560
- readonly http: readonly ["https://alfajores-forno.celo-testnet.org"];
561
- };
562
- };
563
- blockExplorers: {
564
- readonly default: {
565
- readonly name: "Celo Explorer";
566
- readonly url: "https://explorer.celo.org/alfajores";
567
- };
568
- readonly etherscan: {
569
- readonly name: "CeloScan";
570
- readonly url: "https://alfajores.celoscan.io/";
571
- };
572
- };
573
- contracts: {
574
- readonly multicall3: {
575
- readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
576
- readonly blockCreated: 14569001;
577
- };
578
- };
579
- testnet: true;
580
- };
581
- export declare const celoCannoli: {
582
- formatters: {
583
- block: (data: Partial<import("./types/rpc.js").RpcBlock> & {
584
- [key: string]: unknown;
585
- }) => import("./index.js").Block & {
586
- randomness: {
587
- committed: Hex;
588
- revealed: Hex;
589
- };
590
- } & {
591
- nonce: never;
592
- difficulty: never;
593
- gasLimit: never;
594
- mixHash: never;
595
- uncles: never;
596
- };
597
- transaction: (data: Partial<import("./types/rpc.js").RpcTransaction> & {
598
- [key: string]: unknown;
599
- }) => import("./index.js").Transaction & {
600
- feeCurrency: `0x${string}` | null;
601
- gatewayFee: bigint | null;
602
- gatewayFeeRecipient: `0x${string}` | null;
603
- } & {};
604
- transactionReceipt: (data: Partial<import("./types/rpc.js").RpcTransactionReceipt> & {
605
- [key: string]: unknown;
606
- }) => import("./index.js").TransactionReceipt & {
607
- feeCurrency: `0x${string}` | null;
608
- gatewayFee: bigint | null;
609
- gatewayFeeRecipient: `0x${string}` | null;
610
- } & {};
611
- transactionRequest: (data: Partial<import("./index.js").TransactionRequest> & {
612
- [key: string]: unknown;
613
- }) => import("./types/rpc.js").RpcTransactionRequest & {
614
- feeCurrency: `0x${string}` | undefined;
615
- gatewayFee: `0x${string}` | undefined;
616
- gatewayFeeRecipient: `0x${string}` | undefined;
617
- } & {};
618
- };
619
- id: 17323;
620
- name: "Cannoli";
621
- network: "celo-cannoli";
622
- nativeCurrency: {
623
- readonly decimals: 18;
624
- readonly name: "CELO";
625
- readonly symbol: "C-CELO";
626
- };
627
- rpcUrls: {
628
- readonly default: {
629
- readonly http: readonly ["https://forno.cannoli.celo-testnet.org"];
630
- };
631
- readonly public: {
632
- readonly http: readonly ["https://forno.cannoli.celo-testnet.org"];
633
- };
634
- };
635
- blockExplorers: {
636
- readonly default: {
637
- readonly name: "Celo Explorer";
638
- readonly url: "https://explorer.celo.org/cannoli";
639
- };
640
- };
641
- contracts: {
642
- readonly multicall3: {
643
- readonly address: "0x5Acb0aa8BF4E8Ff0d882Ee187140713C12BF9718";
644
- readonly blockCreated: 87429;
645
- };
646
- };
647
- testnet: true;
648
- };
649
- export declare const cronos: {
650
- readonly id: 25;
651
- readonly name: "Cronos";
652
- readonly network: "cronos";
653
- readonly nativeCurrency: {
654
- readonly decimals: 18;
655
- readonly name: "Cronos";
656
- readonly symbol: "CRO";
657
- };
658
- readonly rpcUrls: {
659
- readonly default: {
660
- readonly http: readonly ["https://node.croswap.com/rpc"];
661
- };
662
- readonly public: {
663
- readonly http: readonly ["https://node.croswap.com/rpc"];
664
- };
665
- };
666
- readonly blockExplorers: {
667
- readonly etherscan: {
668
- readonly name: "CronosScan";
669
- readonly url: "https://cronoscan.com";
670
- };
671
- readonly default: {
672
- readonly name: "CronosScan";
673
- readonly url: "https://cronoscan.com";
674
- };
675
- };
676
- readonly contracts: {
677
- readonly multicall3: {
678
- readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
679
- readonly blockCreated: 1963112;
680
- };
681
- };
682
- };
683
- export declare const crossbell: {
684
- readonly id: 3737;
685
- readonly network: "crossbell";
686
- readonly name: "Crossbell";
687
- readonly nativeCurrency: {
688
- readonly decimals: 18;
689
- readonly name: "CSB";
690
- readonly symbol: "CSB";
691
- };
692
- readonly rpcUrls: {
693
- readonly default: {
694
- readonly http: readonly ["https://rpc.crossbell.io"];
695
- };
696
- readonly public: {
697
- readonly http: readonly ["https://rpc.crossbell.io"];
698
- };
699
- };
700
- readonly blockExplorers: {
701
- readonly default: {
702
- readonly name: "CrossScan";
703
- readonly url: "https://scan.crossbell.io";
704
- };
705
- };
706
- readonly contracts: {
707
- readonly multicall3: {
708
- readonly address: "0xBB9759009cDaC82774EfC84D94cD9F7440f75Fcf";
709
- readonly blockCreated: 23499787;
710
- };
711
- };
712
- };
713
- export declare const dfk: {
714
- readonly id: 53935;
715
- readonly name: "DFK Chain";
716
- readonly network: "dfk";
717
- readonly nativeCurrency: {
718
- readonly decimals: 18;
719
- readonly name: "Jewel";
720
- readonly symbol: "JEWEL";
721
- };
722
- readonly rpcUrls: {
723
- readonly default: {
724
- readonly http: readonly ["https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc"];
725
- };
726
- readonly public: {
727
- readonly http: readonly ["https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc"];
728
- };
729
- };
730
- readonly blockExplorers: {
731
- readonly etherscan: {
732
- readonly name: "DFKSubnetScan";
733
- readonly url: "https://subnets.avax.network/defi-kingdoms";
734
- };
735
- readonly default: {
736
- readonly name: "DFKSubnetScan";
737
- readonly url: "https://subnets.avax.network/defi-kingdoms";
738
- };
739
- };
740
- };
741
- export declare const dogechain: {
742
- readonly id: 2000;
743
- readonly name: "Dogechain";
744
- readonly network: "dogechain";
745
- readonly nativeCurrency: {
746
- readonly decimals: 18;
747
- readonly name: "Dogechain";
748
- readonly symbol: "DC";
749
- };
750
- readonly rpcUrls: {
751
- readonly default: {
752
- readonly http: readonly ["https://rpc.dogechain.dog"];
753
- };
754
- readonly public: {
755
- readonly http: readonly ["https://rpc.dogechain.dog"];
756
- };
757
- };
758
- readonly blockExplorers: {
759
- readonly etherscan: {
760
- readonly name: "DogeChainExplorer";
761
- readonly url: "https://explorer.dogechain.dog";
762
- };
763
- readonly default: {
764
- readonly name: "DogeChainExplorer";
765
- readonly url: "https://explorer.dogechain.dog";
766
- };
767
- };
768
- };
769
- export declare const evmos: {
770
- readonly id: 9001;
771
- readonly name: "Evmos";
772
- readonly network: "evmos";
773
- readonly nativeCurrency: {
774
- readonly decimals: 18;
775
- readonly name: "Evmos";
776
- readonly symbol: "EVMOS";
777
- };
778
- readonly rpcUrls: {
779
- readonly default: {
780
- readonly http: readonly ["https://eth.bd.evmos.org:8545"];
781
- };
782
- readonly public: {
783
- readonly http: readonly ["https://eth.bd.evmos.org:8545"];
784
- };
785
- };
786
- readonly blockExplorers: {
787
- readonly default: {
788
- readonly name: "Evmos Block Explorer";
789
- readonly url: "https://escan.live/";
790
- };
791
- };
792
- };
793
- export declare const evmosTestnet: {
794
- readonly id: 9000;
795
- readonly name: "Evmos Testnet";
796
- readonly network: "evmos-testnet";
797
- readonly nativeCurrency: {
798
- readonly decimals: 18;
799
- readonly name: "Evmos";
800
- readonly symbol: "EVMOS";
801
- };
802
- readonly rpcUrls: {
803
- readonly default: {
804
- readonly http: readonly ["https://eth.bd.evmos.dev:8545"];
805
- };
806
- readonly public: {
807
- readonly http: readonly ["https://eth.bd.evmos.dev:8545"];
808
- };
809
- };
810
- readonly blockExplorers: {
811
- readonly default: {
812
- readonly name: "Evmos Testnet Block Explorer";
813
- readonly url: "https://evm.evmos.dev/";
814
- };
815
- };
816
- };
817
- export declare const fantom: {
818
- readonly id: 250;
819
- readonly name: "Fantom";
820
- readonly network: "fantom";
821
- readonly nativeCurrency: {
822
- readonly decimals: 18;
823
- readonly name: "Fantom";
824
- readonly symbol: "FTM";
825
- };
826
- readonly rpcUrls: {
827
- readonly default: {
828
- readonly http: readonly ["https://rpc.ankr.com/fantom"];
829
- };
830
- readonly public: {
831
- readonly http: readonly ["https://rpc.ankr.com/fantom"];
832
- };
833
- };
834
- readonly blockExplorers: {
835
- readonly etherscan: {
836
- readonly name: "FTMScan";
837
- readonly url: "https://ftmscan.com";
838
- };
839
- readonly default: {
840
- readonly name: "FTMScan";
841
- readonly url: "https://ftmscan.com";
842
- };
843
- };
844
- readonly contracts: {
845
- readonly multicall3: {
846
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
847
- readonly blockCreated: 33001987;
848
- };
849
- };
850
- };
851
- export declare const fantomTestnet: {
852
- readonly id: 4002;
853
- readonly name: "Fantom Testnet";
854
- readonly network: "fantom-testnet";
855
- readonly nativeCurrency: {
856
- readonly decimals: 18;
857
- readonly name: "Fantom";
858
- readonly symbol: "FTM";
859
- };
860
- readonly rpcUrls: {
861
- readonly default: {
862
- readonly http: readonly ["https://rpc.testnet.fantom.network"];
863
- };
864
- readonly public: {
865
- readonly http: readonly ["https://rpc.testnet.fantom.network"];
866
- };
867
- };
868
- readonly blockExplorers: {
869
- readonly etherscan: {
870
- readonly name: "FTMScan";
871
- readonly url: "https://testnet.ftmscan.com";
872
- };
873
- readonly default: {
874
- readonly name: "FTMScan";
875
- readonly url: "https://testnet.ftmscan.com";
876
- };
877
- };
878
- readonly contracts: {
879
- readonly multicall3: {
880
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
881
- readonly blockCreated: 8328688;
882
- };
883
- };
884
- };
885
- export declare const filecoin: {
886
- readonly id: 314;
887
- readonly name: "Filecoin Mainnet";
888
- readonly network: "filecoin-mainnet";
889
- readonly nativeCurrency: {
890
- readonly decimals: 18;
891
- readonly name: "filecoin";
892
- readonly symbol: "FIL";
893
- };
894
- readonly rpcUrls: {
895
- readonly default: {
896
- readonly http: readonly ["https://api.node.glif.io/rpc/v1"];
897
- };
898
- readonly public: {
899
- readonly http: readonly ["https://api.node.glif.io/rpc/v1"];
900
- };
901
- };
902
- readonly blockExplorers: {
903
- readonly default: {
904
- readonly name: "Filfox";
905
- readonly url: "https://filfox.info/en";
906
- };
907
- readonly filscan: {
908
- readonly name: "Filscan";
909
- readonly url: "https://filscan.io";
910
- };
911
- readonly filscout: {
912
- readonly name: "Filscout";
913
- readonly url: "https://filscout.io/en";
914
- };
915
- readonly glif: {
916
- readonly name: "Glif";
917
- readonly url: "https://explorer.glif.io";
918
- };
919
- };
920
- };
921
- export declare const filecoinCalibration: chains.Chain;
922
- export declare const filecoinHyperspace: {
923
- readonly id: 3141;
924
- readonly name: "Filecoin Hyperspace";
925
- readonly network: "filecoin-hyperspace";
926
- readonly nativeCurrency: {
927
- readonly decimals: 18;
928
- readonly name: "testnet filecoin";
929
- readonly symbol: "tFIL";
930
- };
931
- readonly rpcUrls: {
932
- readonly default: {
933
- readonly http: readonly ["https://api.hyperspace.node.glif.io/rpc/v1"];
934
- };
935
- readonly public: {
936
- readonly http: readonly ["https://api.hyperspace.node.glif.io/rpc/v1"];
937
- };
938
- };
939
- readonly blockExplorers: {
940
- readonly default: {
941
- readonly name: "Filfox";
942
- readonly url: "https://hyperspace.filfox.info/en";
943
- };
944
- readonly filscan: {
945
- readonly name: "Filscan";
946
- readonly url: "https://hyperspace.filscan.io";
947
- };
948
- };
949
- };
950
- export declare const flare: chains.Chain;
951
- export declare const flareTestnet: chains.Chain;
952
- export declare const foundry: {
953
- readonly id: 31337;
954
- readonly name: "Foundry";
955
- readonly network: "foundry";
956
- readonly nativeCurrency: {
957
- readonly decimals: 18;
958
- readonly name: "Ether";
959
- readonly symbol: "ETH";
960
- };
961
- readonly rpcUrls: {
962
- readonly default: {
963
- readonly http: readonly ["http://127.0.0.1:8545"];
964
- readonly webSocket: readonly ["ws://127.0.0.1:8545"];
965
- };
966
- readonly public: {
967
- readonly http: readonly ["http://127.0.0.1:8545"];
968
- readonly webSocket: readonly ["ws://127.0.0.1:8545"];
969
- };
970
- };
971
- };
972
- export declare const iotex: {
973
- readonly id: 4689;
974
- readonly name: "IoTeX";
975
- readonly network: "iotex";
976
- readonly nativeCurrency: {
977
- readonly decimals: 18;
978
- readonly name: "IoTeX";
979
- readonly symbol: "IOTX";
980
- };
981
- readonly rpcUrls: {
982
- readonly default: {
983
- readonly http: readonly ["https://babel-api.mainnet.iotex.io"];
984
- readonly webSocket: readonly ["wss://babel-api.mainnet.iotex.io"];
985
- };
986
- readonly public: {
987
- readonly http: readonly ["https://babel-api.mainnet.iotex.io"];
988
- readonly webSocket: readonly ["wss://babel-api.mainnet.iotex.io"];
989
- };
990
- };
991
- readonly blockExplorers: {
992
- readonly default: {
993
- readonly name: "IoTeXScan";
994
- readonly url: "https://iotexscan.io";
995
- };
996
- };
997
- };
998
- export declare const iotexTestnet: {
999
- readonly id: 4690;
1000
- readonly name: "IoTeX Testnet";
1001
- readonly network: "iotex-testnet";
1002
- readonly nativeCurrency: {
1003
- readonly decimals: 18;
1004
- readonly name: "IoTeX";
1005
- readonly symbol: "IOTX";
1006
- };
1007
- readonly rpcUrls: {
1008
- readonly default: {
1009
- readonly http: readonly ["https://babel-api.testnet.iotex.io"];
1010
- readonly webSocket: readonly ["wss://babel-api.testnet.iotex.io"];
1011
- };
1012
- readonly public: {
1013
- readonly http: readonly ["https://babel-api.testnet.iotex.io"];
1014
- readonly webSocket: readonly ["wss://babel-api.testnet.iotex.io"];
1015
- };
1016
- };
1017
- readonly blockExplorers: {
1018
- readonly default: {
1019
- readonly name: "IoTeXScan";
1020
- readonly url: "https://testnet.iotexscan.io";
1021
- };
1022
- };
1023
- };
1024
- export declare const goerli: {
1025
- readonly id: 5;
1026
- readonly network: "goerli";
1027
- readonly name: "Goerli";
1028
- readonly nativeCurrency: {
1029
- readonly name: "Goerli Ether";
1030
- readonly symbol: "ETH";
1031
- readonly decimals: 18;
1032
- };
1033
- readonly rpcUrls: {
1034
- readonly alchemy: {
1035
- readonly http: readonly ["https://eth-goerli.g.alchemy.com/v2"];
1036
- readonly webSocket: readonly ["wss://eth-goerli.g.alchemy.com/v2"];
1037
- };
1038
- readonly infura: {
1039
- readonly http: readonly ["https://goerli.infura.io/v3"];
1040
- readonly webSocket: readonly ["wss://goerli.infura.io/ws/v3"];
1041
- };
1042
- readonly default: {
1043
- readonly http: readonly ["https://rpc.ankr.com/eth_goerli"];
1044
- };
1045
- readonly public: {
1046
- readonly http: readonly ["https://rpc.ankr.com/eth_goerli"];
1047
- };
1048
- };
1049
- readonly blockExplorers: {
1050
- readonly etherscan: {
1051
- readonly name: "Etherscan";
1052
- readonly url: "https://goerli.etherscan.io";
1053
- };
1054
- readonly default: {
1055
- readonly name: "Etherscan";
1056
- readonly url: "https://goerli.etherscan.io";
1057
- };
1058
- };
1059
- readonly contracts: {
1060
- readonly ensRegistry: {
1061
- readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
1062
- };
1063
- readonly ensUniversalResolver: {
1064
- readonly address: "0x56522D00C410a43BFfDF00a9A569489297385790";
1065
- readonly blockCreated: 8765204;
1066
- };
1067
- readonly multicall3: {
1068
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1069
- readonly blockCreated: 6507670;
1070
- };
1071
- };
1072
- readonly testnet: true;
1073
- };
1074
- export declare const gnosis: {
1075
- readonly id: 100;
1076
- readonly name: "Gnosis";
1077
- readonly network: "gnosis";
1078
- readonly nativeCurrency: {
1079
- readonly decimals: 18;
1080
- readonly name: "Gnosis";
1081
- readonly symbol: "xDAI";
1082
- };
1083
- readonly rpcUrls: {
1084
- readonly default: {
1085
- readonly http: readonly ["https://rpc.gnosischain.com"];
1086
- };
1087
- readonly public: {
1088
- readonly http: readonly ["https://rpc.gnosischain.com"];
1089
- };
1090
- };
1091
- readonly blockExplorers: {
1092
- readonly etherscan: {
1093
- readonly name: "Gnosisscan";
1094
- readonly url: "https://gnosisscan.io/";
1095
- };
1096
- readonly default: {
1097
- readonly name: "Gnosis Chain Explorer";
1098
- readonly url: "https://blockscout.com/xdai/mainnet/";
1099
- };
1100
- };
1101
- };
1102
- export declare const gnosisChiado: {
1103
- readonly id: 10200;
1104
- readonly name: "Gnosis Chiado";
1105
- readonly network: "chiado";
1106
- readonly nativeCurrency: {
1107
- readonly decimals: 18;
1108
- readonly name: "Gnosis";
1109
- readonly symbol: "xDAI";
1110
- };
1111
- readonly rpcUrls: {
1112
- readonly default: {
1113
- readonly http: readonly ["https://rpc.chiadochain.net"];
1114
- };
1115
- readonly public: {
1116
- readonly http: readonly ["https://rpc.chiadochain.net"];
1117
- };
1118
- };
1119
- readonly blockExplorers: {
1120
- readonly default: {
1121
- readonly name: "Blockscout";
1122
- readonly url: "https://blockscout.chiadochain.net";
1123
- };
1124
- };
1125
- };
1126
- export declare const haqqMainnet: {
1127
- readonly id: 11235;
1128
- readonly name: "HAQQ Mainnet";
1129
- readonly network: "haqq-mainnet";
1130
- readonly nativeCurrency: {
1131
- readonly decimals: 18;
1132
- readonly name: "Islamic Coin";
1133
- readonly symbol: "ISLM";
1134
- };
1135
- readonly rpcUrls: {
1136
- readonly default: {
1137
- readonly http: readonly ["https://rpc.eth.haqq.network"];
1138
- };
1139
- readonly public: {
1140
- readonly http: readonly ["https://rpc.eth.haqq.network"];
1141
- };
1142
- };
1143
- readonly blockExplorers: {
1144
- readonly default: {
1145
- readonly name: "HAQQ Explorer";
1146
- readonly url: "https://explorer.haqq.network";
1147
- };
1148
- };
1149
- };
1150
- export declare const haqqTestedge2: {
1151
- readonly id: 54211;
1152
- readonly name: "HAQQ Testedge 2";
1153
- readonly network: "haqq-testedge-2";
1154
- readonly nativeCurrency: {
1155
- readonly decimals: 18;
1156
- readonly name: "Islamic Coin";
1157
- readonly symbol: "ISLMT";
1158
- };
1159
- readonly rpcUrls: {
1160
- readonly default: {
1161
- readonly http: readonly ["https://rpc.eth.testedge2.haqq.network"];
1162
- };
1163
- readonly public: {
1164
- readonly http: readonly ["https://rpc.eth.testedge2.haqq.network"];
1165
- };
1166
- };
1167
- readonly blockExplorers: {
1168
- readonly default: {
1169
- readonly name: "HAQQ Explorer";
1170
- readonly url: "https://explorer.testedge2.haqq.network";
1171
- };
1172
- };
1173
- };
1174
- export declare const hardhat: {
1175
- readonly id: 31337;
1176
- readonly name: "Hardhat";
1177
- readonly network: "hardhat";
1178
- readonly nativeCurrency: {
1179
- readonly decimals: 18;
1180
- readonly name: "Ether";
1181
- readonly symbol: "ETH";
1182
- };
1183
- readonly rpcUrls: {
1184
- readonly default: {
1185
- readonly http: readonly ["http://127.0.0.1:8545"];
1186
- };
1187
- readonly public: {
1188
- readonly http: readonly ["http://127.0.0.1:8545"];
1189
- };
1190
- };
1191
- };
1192
- export declare const harmonyOne: {
1193
- readonly id: 1666600000;
1194
- readonly name: "Harmony One";
1195
- readonly network: "harmony";
1196
- readonly nativeCurrency: {
1197
- readonly name: "Harmony";
1198
- readonly symbol: "ONE";
1199
- readonly decimals: 18;
1200
- };
1201
- readonly rpcUrls: {
1202
- readonly public: {
1203
- readonly http: readonly ["https://rpc.ankr.com/harmony"];
1204
- };
1205
- readonly default: {
1206
- readonly http: readonly ["https://rpc.ankr.com/harmony"];
1207
- };
1208
- };
1209
- readonly blockExplorers: {
1210
- readonly default: {
1211
- readonly name: "Harmony Explorer";
1212
- readonly url: "https://explorer.harmony.one";
1213
- };
1214
- };
1215
- readonly contracts: {
1216
- readonly multicall3: {
1217
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1218
- readonly blockCreated: 24185753;
1219
- };
1220
- };
1221
- };
1222
- export declare const klaytn: {
1223
- readonly id: 8217;
1224
- readonly name: "Klaytn";
1225
- readonly network: "klaytn";
1226
- readonly nativeCurrency: {
1227
- readonly decimals: 18;
1228
- readonly name: "Klaytn";
1229
- readonly symbol: "KLAY";
1230
- };
1231
- readonly rpcUrls: {
1232
- readonly default: {
1233
- readonly http: readonly ["https://cypress.fautor.app/archive"];
1234
- };
1235
- readonly public: {
1236
- readonly http: readonly ["https://cypress.fautor.app/archive"];
1237
- };
1238
- };
1239
- readonly blockExplorers: {
1240
- readonly etherscan: {
1241
- readonly name: "KlaytnScope";
1242
- readonly url: "https://scope.klaytn.com";
1243
- };
1244
- readonly default: {
1245
- readonly name: "KlaytnScope";
1246
- readonly url: "https://scope.klaytn.com";
1247
- };
1248
- };
1249
- };
1250
- export declare const lineaTestnet: {
1251
- readonly id: 59140;
1252
- readonly name: "Linea Goerli Testnet";
1253
- readonly network: "linea-testnet";
1254
- readonly nativeCurrency: {
1255
- readonly name: "Linea Ether";
1256
- readonly symbol: "ETH";
1257
- readonly decimals: 18;
1258
- };
1259
- readonly rpcUrls: {
1260
- readonly infura: {
1261
- readonly http: readonly ["https://consensys-zkevm-goerli-prealpha.infura.io/v3"];
1262
- readonly webSocket: readonly ["wss://consensys-zkevm-goerli-prealpha.infura.io/ws/v3"];
1263
- };
1264
- readonly default: {
1265
- readonly http: readonly ["https://rpc.goerli.linea.build"];
1266
- readonly webSocket: readonly ["wss://rpc.goerli.linea.build"];
1267
- };
1268
- readonly public: {
1269
- readonly http: readonly ["https://rpc.goerli.linea.build"];
1270
- readonly webSocket: readonly ["wss://rpc.goerli.linea.build"];
1271
- };
1272
- };
1273
- readonly blockExplorers: {
1274
- readonly default: {
1275
- readonly name: "BlockScout";
1276
- readonly url: "https://explorer.goerli.linea.build";
1277
- };
1278
- };
1279
- readonly contracts: {
1280
- readonly multicall3: {
1281
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1282
- readonly blockCreated: 498623;
1283
- };
1284
- };
1285
- readonly testnet: true;
1286
- };
1287
- export declare const localhost: {
1288
- readonly id: 1337;
1289
- readonly name: "Localhost";
1290
- readonly network: "localhost";
1291
- readonly nativeCurrency: {
1292
- readonly decimals: 18;
1293
- readonly name: "Ether";
1294
- readonly symbol: "ETH";
1295
- };
1296
- readonly rpcUrls: {
1297
- readonly default: {
1298
- readonly http: readonly ["http://127.0.0.1:8545"];
1299
- };
1300
- readonly public: {
1301
- readonly http: readonly ["http://127.0.0.1:8545"];
1302
- };
1303
- };
1304
- };
1305
- export declare const mainnet: {
1306
- readonly id: 1;
1307
- readonly network: "homestead";
1308
- readonly name: "Ethereum";
1309
- readonly nativeCurrency: {
1310
- readonly name: "Ether";
1311
- readonly symbol: "ETH";
1312
- readonly decimals: 18;
1313
- };
1314
- readonly rpcUrls: {
1315
- readonly alchemy: {
1316
- readonly http: readonly ["https://eth-mainnet.g.alchemy.com/v2"];
1317
- readonly webSocket: readonly ["wss://eth-mainnet.g.alchemy.com/v2"];
1318
- };
1319
- readonly infura: {
1320
- readonly http: readonly ["https://mainnet.infura.io/v3"];
1321
- readonly webSocket: readonly ["wss://mainnet.infura.io/ws/v3"];
1322
- };
1323
- readonly default: {
1324
- readonly http: readonly ["https://cloudflare-eth.com"];
1325
- };
1326
- readonly public: {
1327
- readonly http: readonly ["https://cloudflare-eth.com"];
1328
- };
1329
- };
1330
- readonly blockExplorers: {
1331
- readonly etherscan: {
1332
- readonly name: "Etherscan";
1333
- readonly url: "https://etherscan.io";
1334
- };
1335
- readonly default: {
1336
- readonly name: "Etherscan";
1337
- readonly url: "https://etherscan.io";
1338
- };
1339
- };
1340
- readonly contracts: {
1341
- readonly ensRegistry: {
1342
- readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
1343
- };
1344
- readonly ensUniversalResolver: {
1345
- readonly address: "0xc0497E381f536Be9ce14B0dD3817cBcAe57d2F62";
1346
- readonly blockCreated: 16966585;
1347
- };
1348
- readonly multicall3: {
1349
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1350
- readonly blockCreated: 14353601;
1351
- };
1352
- };
1353
- };
1354
- export declare const metis: {
1355
- readonly id: 1088;
1356
- readonly name: "Metis";
1357
- readonly network: "andromeda";
1358
- readonly nativeCurrency: {
1359
- readonly decimals: 18;
1360
- readonly name: "Metis";
1361
- readonly symbol: "METIS";
1362
- };
1363
- readonly rpcUrls: {
1364
- readonly default: {
1365
- readonly http: readonly ["https://andromeda.metis.io/?owner=1088"];
1366
- };
1367
- readonly public: {
1368
- readonly http: readonly ["https://andromeda.metis.io/?owner=1088"];
1369
- };
1370
- };
1371
- readonly blockExplorers: {
1372
- readonly default: {
1373
- readonly name: "Andromeda Explorer";
1374
- readonly url: "https://andromeda-explorer.metis.io";
1375
- };
1376
- };
1377
- readonly contracts: {
1378
- readonly multicall3: {
1379
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1380
- readonly blockCreated: 2338552;
1381
- };
1382
- };
1383
- };
1384
- export declare const metisGoerli: {
1385
- readonly id: 599;
1386
- readonly name: "Metis Goerli";
1387
- readonly network: "metis-goerli";
1388
- readonly nativeCurrency: {
1389
- readonly decimals: 18;
1390
- readonly name: "Metis Goerli";
1391
- readonly symbol: "METIS";
1392
- };
1393
- readonly rpcUrls: {
1394
- readonly default: {
1395
- readonly http: readonly ["https://goerli.gateway.metisdevops.link"];
1396
- };
1397
- readonly public: {
1398
- readonly http: readonly ["https://goerli.gateway.metisdevops.link"];
1399
- };
1400
- };
1401
- readonly blockExplorers: {
1402
- readonly default: {
1403
- readonly name: "Metis Goerli Explorer";
1404
- readonly url: "https://goerli.explorer.metisdevops.link";
1405
- };
1406
- };
1407
- readonly contracts: {
1408
- readonly multicall3: {
1409
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1410
- readonly blockCreated: 1006207;
1411
- };
1412
- };
1413
- };
1414
- export declare const moonbaseAlpha: {
1415
- readonly id: 1287;
1416
- readonly name: "Moonbase Alpha";
1417
- readonly network: "moonbase-alpha";
1418
- readonly nativeCurrency: {
1419
- readonly decimals: 18;
1420
- readonly name: "DEV";
1421
- readonly symbol: "DEV";
1422
- };
1423
- readonly rpcUrls: {
1424
- readonly default: {
1425
- readonly http: readonly ["https://rpc.api.moonbase.moonbeam.network"];
1426
- readonly webSocket: readonly ["wss://wss.api.moonbase.moonbeam.network"];
1427
- };
1428
- readonly public: {
1429
- readonly http: readonly ["https://rpc.api.moonbase.moonbeam.network"];
1430
- readonly webSocket: readonly ["wss://wss.api.moonbase.moonbeam.network"];
1431
- };
1432
- };
1433
- readonly blockExplorers: {
1434
- readonly default: {
1435
- readonly name: "Moonscan";
1436
- readonly url: "https://moonbase.moonscan.io";
1437
- };
1438
- readonly etherscan: {
1439
- readonly name: "Moonscan";
1440
- readonly url: "https://moonbase.moonscan.io";
1441
- };
1442
- };
1443
- readonly contracts: {
1444
- readonly multicall3: {
1445
- readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
1446
- readonly blockCreated: 1850686;
1447
- };
1448
- };
1449
- readonly testnet: true;
1450
- };
1451
- export declare const moonbeam: {
1452
- readonly id: 1284;
1453
- readonly name: "Moonbeam";
1454
- readonly network: "moonbeam";
1455
- readonly nativeCurrency: {
1456
- readonly decimals: 18;
1457
- readonly name: "GLMR";
1458
- readonly symbol: "GLMR";
1459
- };
1460
- readonly rpcUrls: {
1461
- readonly public: {
1462
- readonly http: readonly ["https://moonbeam.public.blastapi.io"];
1463
- readonly webSocket: readonly ["wss://moonbeam.public.blastapi.io"];
1464
- };
1465
- readonly default: {
1466
- readonly http: readonly ["https://moonbeam.public.blastapi.io"];
1467
- readonly webSocket: readonly ["wss://moonbeam.public.blastapi.io"];
1468
- };
1469
- };
1470
- readonly blockExplorers: {
1471
- readonly default: {
1472
- readonly name: "Moonscan";
1473
- readonly url: "https://moonscan.io";
1474
- };
1475
- readonly etherscan: {
1476
- readonly name: "Moonscan";
1477
- readonly url: "https://moonscan.io";
1478
- };
1479
- };
1480
- readonly contracts: {
1481
- readonly multicall3: {
1482
- readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
1483
- readonly blockCreated: 609002;
1484
- };
1485
- };
1486
- readonly testnet: false;
1487
- };
1488
- export declare const moonriver: {
1489
- readonly id: 1285;
1490
- readonly name: "Moonriver";
1491
- readonly network: "moonriver";
1492
- readonly nativeCurrency: {
1493
- readonly decimals: 18;
1494
- readonly name: "MOVR";
1495
- readonly symbol: "MOVR";
1496
- };
1497
- readonly rpcUrls: {
1498
- readonly public: {
1499
- readonly http: readonly ["https://moonriver.public.blastapi.io"];
1500
- readonly webSocket: readonly ["wss://moonriver.public.blastapi.io"];
1501
- };
1502
- readonly default: {
1503
- readonly http: readonly ["https://moonriver.public.blastapi.io"];
1504
- readonly webSocket: readonly ["wss://moonriver.public.blastapi.io"];
1505
- };
1506
- };
1507
- readonly blockExplorers: {
1508
- readonly default: {
1509
- readonly name: "Moonscan";
1510
- readonly url: "https://moonriver.moonscan.io";
1511
- };
1512
- readonly etherscan: {
1513
- readonly name: "Moonscan";
1514
- readonly url: "https://moonriver.moonscan.io";
1515
- };
1516
- };
1517
- readonly contracts: {
1518
- readonly multicall3: {
1519
- readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
1520
- readonly blockCreated: 1597904;
1521
- };
1522
- };
1523
- readonly testnet: false;
1524
- };
1525
- export declare const nexi: {
1526
- readonly id: 4242;
1527
- readonly name: "Nexi";
1528
- readonly network: "nexi";
1529
- readonly nativeCurrency: {
1530
- readonly name: "Nexi";
1531
- readonly symbol: "NEXI";
1532
- readonly decimals: 18;
1533
- };
1534
- readonly rpcUrls: {
1535
- readonly default: {
1536
- readonly http: readonly ["https://rpc.chain.nexi.technology"];
1537
- };
1538
- readonly public: {
1539
- readonly http: readonly ["https://rpc.chain.nexi.technology"];
1540
- };
1541
- };
1542
- readonly blockExplorers: {
1543
- readonly etherscan: {
1544
- readonly name: "NexiScan";
1545
- readonly url: "https://www.nexiscan.com";
1546
- };
1547
- readonly default: {
1548
- readonly name: "NexiScan";
1549
- readonly url: "https://www.nexiscan.com";
1550
- };
1551
- };
1552
- readonly contracts: {
1553
- readonly multicall3: {
1554
- readonly address: "0x0277A46Cc69A57eE3A6C8c158bA874832F718B8E";
1555
- readonly blockCreated: 25770160;
1556
- };
1557
- };
1558
- };
1559
- export declare const okc: {
1560
- readonly id: 66;
1561
- readonly name: "OKC";
1562
- readonly network: "okc";
1563
- readonly nativeCurrency: {
1564
- readonly decimals: 18;
1565
- readonly name: "OKT";
1566
- readonly symbol: "OKT";
1567
- };
1568
- readonly rpcUrls: {
1569
- readonly default: {
1570
- readonly http: readonly ["https://exchainrpc.okex.org"];
1571
- };
1572
- readonly public: {
1573
- readonly http: readonly ["https://exchainrpc.okex.org"];
1574
- };
1575
- };
1576
- readonly blockExplorers: {
1577
- readonly default: {
1578
- readonly name: "oklink";
1579
- readonly url: "https://www.oklink.com/okc";
1580
- };
1581
- };
1582
- readonly contracts: {
1583
- readonly multicall3: {
1584
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1585
- readonly blockCreated: 10364792;
1586
- };
1587
- };
1588
- };
1589
- export declare const optimism: {
1590
- readonly id: 10;
1591
- readonly name: "Optimism";
1592
- readonly network: "optimism";
1593
- readonly nativeCurrency: {
1594
- readonly name: "Ether";
1595
- readonly symbol: "ETH";
1596
- readonly decimals: 18;
1597
- };
1598
- readonly rpcUrls: {
1599
- readonly alchemy: {
1600
- readonly http: readonly ["https://opt-mainnet.g.alchemy.com/v2"];
1601
- readonly webSocket: readonly ["wss://opt-mainnet.g.alchemy.com/v2"];
1602
- };
1603
- readonly infura: {
1604
- readonly http: readonly ["https://optimism-mainnet.infura.io/v3"];
1605
- readonly webSocket: readonly ["wss://optimism-mainnet.infura.io/ws/v3"];
1606
- };
1607
- readonly default: {
1608
- readonly http: readonly ["https://mainnet.optimism.io"];
1609
- };
1610
- readonly public: {
1611
- readonly http: readonly ["https://mainnet.optimism.io"];
1612
- };
1613
- };
1614
- readonly blockExplorers: {
1615
- readonly etherscan: {
1616
- readonly name: "Etherscan";
1617
- readonly url: "https://optimistic.etherscan.io";
1618
- };
1619
- readonly default: {
1620
- readonly name: "Optimism Explorer";
1621
- readonly url: "https://explorer.optimism.io";
1622
- };
1623
- };
1624
- readonly contracts: {
1625
- readonly multicall3: {
1626
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1627
- readonly blockCreated: 4286263;
1628
- };
1629
- };
1630
- };
1631
- export declare const optimismGoerli: {
1632
- readonly id: 420;
1633
- readonly name: "Optimism Goerli";
1634
- readonly network: "optimism-goerli";
1635
- readonly nativeCurrency: {
1636
- readonly name: "Goerli Ether";
1637
- readonly symbol: "ETH";
1638
- readonly decimals: 18;
1639
- };
1640
- readonly rpcUrls: {
1641
- readonly alchemy: {
1642
- readonly http: readonly ["https://opt-goerli.g.alchemy.com/v2"];
1643
- readonly webSocket: readonly ["wss://opt-goerli.g.alchemy.com/v2"];
1644
- };
1645
- readonly infura: {
1646
- readonly http: readonly ["https://optimism-goerli.infura.io/v3"];
1647
- readonly webSocket: readonly ["wss://optimism-goerli.infura.io/ws/v3"];
1648
- };
1649
- readonly default: {
1650
- readonly http: readonly ["https://goerli.optimism.io"];
1651
- };
1652
- readonly public: {
1653
- readonly http: readonly ["https://goerli.optimism.io"];
1654
- };
1655
- };
1656
- readonly blockExplorers: {
1657
- readonly etherscan: {
1658
- readonly name: "Etherscan";
1659
- readonly url: "https://goerli-optimism.etherscan.io";
1660
- };
1661
- readonly default: {
1662
- readonly name: "Etherscan";
1663
- readonly url: "https://goerli-optimism.etherscan.io";
1664
- };
1665
- };
1666
- readonly contracts: {
1667
- readonly multicall3: {
1668
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1669
- readonly blockCreated: 49461;
1670
- };
1671
- };
1672
- readonly testnet: true;
1673
- };
1674
- export declare const polygon: {
1675
- readonly id: 137;
1676
- readonly name: "Polygon";
1677
- readonly network: "matic";
1678
- readonly nativeCurrency: {
1679
- readonly name: "MATIC";
1680
- readonly symbol: "MATIC";
1681
- readonly decimals: 18;
1682
- };
1683
- readonly rpcUrls: {
1684
- readonly alchemy: {
1685
- readonly http: readonly ["https://polygon-mainnet.g.alchemy.com/v2"];
1686
- readonly webSocket: readonly ["wss://polygon-mainnet.g.alchemy.com/v2"];
1687
- };
1688
- readonly infura: {
1689
- readonly http: readonly ["https://polygon-mainnet.infura.io/v3"];
1690
- readonly webSocket: readonly ["wss://polygon-mainnet.infura.io/ws/v3"];
1691
- };
1692
- readonly default: {
1693
- readonly http: readonly ["https://polygon-rpc.com"];
1694
- };
1695
- readonly public: {
1696
- readonly http: readonly ["https://polygon-rpc.com"];
1697
- };
1698
- };
1699
- readonly blockExplorers: {
1700
- readonly etherscan: {
1701
- readonly name: "PolygonScan";
1702
- readonly url: "https://polygonscan.com";
1703
- };
1704
- readonly default: {
1705
- readonly name: "PolygonScan";
1706
- readonly url: "https://polygonscan.com";
1707
- };
1708
- };
1709
- readonly contracts: {
1710
- readonly multicall3: {
1711
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1712
- readonly blockCreated: 25770160;
1713
- };
1714
- };
1715
- };
1716
- export declare const polygonMumbai: {
1717
- readonly id: 80001;
1718
- readonly name: "Polygon Mumbai";
1719
- readonly network: "maticmum";
1720
- readonly nativeCurrency: {
1721
- readonly name: "MATIC";
1722
- readonly symbol: "MATIC";
1723
- readonly decimals: 18;
1724
- };
1725
- readonly rpcUrls: {
1726
- readonly alchemy: {
1727
- readonly http: readonly ["https://polygon-mumbai.g.alchemy.com/v2"];
1728
- readonly webSocket: readonly ["wss://polygon-mumbai.g.alchemy.com/v2"];
1729
- };
1730
- readonly infura: {
1731
- readonly http: readonly ["https://polygon-mumbai.infura.io/v3"];
1732
- readonly webSocket: readonly ["wss://polygon-mumbai.infura.io/ws/v3"];
1733
- };
1734
- readonly default: {
1735
- readonly http: readonly ["https://matic-mumbai.chainstacklabs.com"];
1736
- };
1737
- readonly public: {
1738
- readonly http: readonly ["https://matic-mumbai.chainstacklabs.com"];
1739
- };
1740
- };
1741
- readonly blockExplorers: {
1742
- readonly etherscan: {
1743
- readonly name: "PolygonScan";
1744
- readonly url: "https://mumbai.polygonscan.com";
1745
- };
1746
- readonly default: {
1747
- readonly name: "PolygonScan";
1748
- readonly url: "https://mumbai.polygonscan.com";
1749
- };
1750
- };
1751
- readonly contracts: {
1752
- readonly multicall3: {
1753
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1754
- readonly blockCreated: 25770160;
1755
- };
1756
- };
1757
- readonly testnet: true;
1758
- };
1759
- export declare const polygonZkEvm: {
1760
- readonly id: 1101;
1761
- readonly name: "Polygon zkEVM";
1762
- readonly network: "polygon-zkevm";
1763
- readonly nativeCurrency: {
1764
- readonly name: "Ether";
1765
- readonly symbol: "ETH";
1766
- readonly decimals: 18;
1767
- };
1768
- readonly rpcUrls: {
1769
- readonly default: {
1770
- readonly http: readonly ["https://zkevm-rpc.com"];
1771
- };
1772
- readonly public: {
1773
- readonly http: readonly ["https://zkevm-rpc.com"];
1774
- };
1775
- };
1776
- readonly blockExplorers: {
1777
- readonly default: {
1778
- readonly name: "PolygonScan";
1779
- readonly url: "https://zkevm.polygonscan.com";
1780
- };
1781
- };
1782
- };
1783
- export declare const polygonZkEvmTestnet: {
1784
- readonly id: 1442;
1785
- readonly name: "Polygon zkEVM Testnet";
1786
- readonly network: "polygon-zkevm-testnet";
1787
- readonly nativeCurrency: {
1788
- readonly name: "Ether";
1789
- readonly symbol: "ETH";
1790
- readonly decimals: 18;
1791
- };
1792
- readonly rpcUrls: {
1793
- readonly default: {
1794
- readonly http: readonly ["https://rpc.public.zkevm-test.net"];
1795
- };
1796
- readonly public: {
1797
- readonly http: readonly ["https://rpc.public.zkevm-test.net"];
1798
- };
1799
- };
1800
- readonly blockExplorers: {
1801
- readonly default: {
1802
- readonly name: "Blockscout";
1803
- readonly url: "https://explorer.public.zkevm-test.net";
1804
- };
1805
- };
1806
- readonly testnet: true;
1807
- };
1808
- export declare const pulsechain: {
1809
- readonly id: 369;
1810
- readonly network: "pulsechain";
1811
- readonly name: "Pulsechain";
1812
- readonly nativeCurrency: {
1813
- readonly name: "Pulse";
1814
- readonly symbol: "PLS";
1815
- readonly decimals: 18;
1816
- };
1817
- readonly rpcUrls: {
1818
- readonly default: {
1819
- readonly http: readonly ["https://rpc.pulsechain.com"];
1820
- readonly webSocket: readonly ["wss://ws.pulsechain.com"];
1821
- };
1822
- readonly public: {
1823
- readonly http: readonly ["https://rpc.pulsechain.com"];
1824
- readonly webSocket: readonly ["wss://ws.pulsechain.com"];
1825
- };
1826
- };
1827
- readonly blockExplorers: {
1828
- readonly default: {
1829
- readonly name: "Etherscan";
1830
- readonly url: "https://scan.pulsechain.com";
1831
- };
1832
- };
1833
- readonly contracts: {
1834
- readonly ensRegistry: {
1835
- readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
1836
- };
1837
- readonly multicall3: {
1838
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1839
- readonly blockCreated: 14353601;
1840
- };
1841
- };
1842
- };
1843
- export declare const pulsechainV4: {
1844
- readonly id: 943;
1845
- readonly network: "pulsechainV4";
1846
- readonly name: "Pulsechain V4";
1847
- readonly testnet: true;
1848
- readonly nativeCurrency: {
1849
- readonly name: "Pulse";
1850
- readonly symbol: "PLS";
1851
- readonly decimals: 18;
1852
- };
1853
- readonly rpcUrls: {
1854
- readonly default: {
1855
- readonly http: readonly ["https://rpc.v4.testnet.pulsechain.com"];
1856
- readonly webSocket: readonly ["wss://ws.v4.testnet.pulsechain.com"];
1857
- };
1858
- readonly public: {
1859
- readonly http: readonly ["https://rpc.v4.testnet.pulsechain.com"];
1860
- readonly webSocket: readonly ["wss://ws.v4.testnet.pulsechain.com"];
1861
- };
1862
- };
1863
- readonly blockExplorers: {
1864
- readonly default: {
1865
- readonly name: "Blockscout";
1866
- readonly url: "https://scan.v4.testnet.pulsechain.com";
1867
- };
1868
- };
1869
- readonly contracts: {
1870
- readonly ensRegistry: {
1871
- readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
1872
- };
1873
- readonly multicall3: {
1874
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1875
- readonly blockCreated: 14353601;
1876
- };
1877
- };
1878
- };
1879
- export declare const scrollTestnet: {
1880
- readonly id: 534353;
1881
- readonly name: "Scroll Testnet";
1882
- readonly network: "scroll-testnet";
1883
- readonly nativeCurrency: {
1884
- readonly name: "Ether";
1885
- readonly symbol: "ETH";
1886
- readonly decimals: 18;
1887
- };
1888
- readonly rpcUrls: {
1889
- readonly default: {
1890
- readonly http: readonly ["https://alpha-rpc.scroll.io/l2"];
1891
- readonly webSocket: readonly ["wss://alpha-rpc.scroll.io/l2/ws"];
1892
- };
1893
- readonly public: {
1894
- readonly http: readonly ["https://alpha-rpc.scroll.io/l2"];
1895
- readonly webSocket: readonly ["wss://alpha-rpc.scroll.io/l2/ws"];
1896
- };
1897
- };
1898
- readonly blockExplorers: {
1899
- readonly default: {
1900
- readonly name: "Blockscout";
1901
- readonly url: "https://blockscout.scroll.io";
1902
- };
1903
- };
1904
- readonly testnet: true;
1905
- };
1906
- export declare const sepolia: {
1907
- readonly id: 11155111;
1908
- readonly network: "sepolia";
1909
- readonly name: "Sepolia";
1910
- readonly nativeCurrency: {
1911
- readonly name: "Sepolia Ether";
1912
- readonly symbol: "SEP";
1913
- readonly decimals: 18;
1914
- };
1915
- readonly rpcUrls: {
1916
- readonly alchemy: {
1917
- readonly http: readonly ["https://eth-sepolia.g.alchemy.com/v2"];
1918
- readonly webSocket: readonly ["wss://eth-sepolia.g.alchemy.com/v2"];
1919
- };
1920
- readonly infura: {
1921
- readonly http: readonly ["https://sepolia.infura.io/v3"];
1922
- readonly webSocket: readonly ["wss://sepolia.infura.io/ws/v3"];
1923
- };
1924
- readonly default: {
1925
- readonly http: readonly ["https://rpc.sepolia.org"];
1926
- };
1927
- readonly public: {
1928
- readonly http: readonly ["https://rpc.sepolia.org"];
1929
- };
1930
- };
1931
- readonly blockExplorers: {
1932
- readonly etherscan: {
1933
- readonly name: "Etherscan";
1934
- readonly url: "https://sepolia.etherscan.io";
1935
- };
1936
- readonly default: {
1937
- readonly name: "Etherscan";
1938
- readonly url: "https://sepolia.etherscan.io";
1939
- };
1940
- };
1941
- readonly contracts: {
1942
- readonly multicall3: {
1943
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1944
- readonly blockCreated: 6507670;
1945
- };
1946
- };
1947
- readonly testnet: true;
1948
- };
1949
- export declare const skaleBlockBrawlers: {
1950
- readonly id: 391845894;
1951
- readonly name: "SKALE | Block Brawlers";
1952
- readonly network: "skale-brawl";
1953
- readonly nativeCurrency: {
1954
- readonly name: "BRAWL";
1955
- readonly symbol: "BRAWL";
1956
- readonly decimals: 18;
1957
- };
1958
- readonly rpcUrls: {
1959
- readonly default: {
1960
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/frayed-decent-antares"];
1961
- };
1962
- readonly public: {
1963
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/frayed-decent-antares"];
1964
- };
1965
- };
1966
- readonly blockExplorers: {
1967
- readonly etherscan: {
1968
- readonly name: "SKALE Explorer";
1969
- readonly url: "https://frayed-decent-antares.explorer.mainnet.skalenodes.com";
1970
- };
1971
- readonly default: {
1972
- readonly name: "SKALE Explorer";
1973
- readonly url: "https://frayed-decent-antares.explorer.mainnet.skalenodes.com";
1974
- };
1975
- };
1976
- readonly contracts: {};
1977
- };
1978
- export declare const skaleCalypso: {
1979
- readonly id: 1564830818;
1980
- readonly name: "SKALE | Calypso NFT Hub";
1981
- readonly network: "skale-calypso";
1982
- readonly nativeCurrency: {
1983
- readonly name: "sFUEL";
1984
- readonly symbol: "sFUEL";
1985
- readonly decimals: 18;
1986
- };
1987
- readonly rpcUrls: {
1988
- readonly default: {
1989
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague"];
1990
- };
1991
- readonly public: {
1992
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague"];
1993
- };
1994
- };
1995
- readonly blockExplorers: {
1996
- readonly etherscan: {
1997
- readonly name: "SKALE Explorer";
1998
- readonly url: "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com";
1999
- };
2000
- readonly default: {
2001
- readonly name: "SKALE Explorer";
2002
- readonly url: "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com";
2003
- };
2004
- };
2005
- readonly contracts: {};
2006
- };
2007
- export declare const skaleCalypsoTestnet: {
2008
- readonly id: 344106930;
2009
- readonly name: "SKALE | Calypso NFT Hub Testnet";
2010
- readonly network: "skale-calypso-testnet";
2011
- readonly nativeCurrency: {
2012
- readonly name: "sFUEL";
2013
- readonly symbol: "sFUEL";
2014
- readonly decimals: 18;
2015
- };
2016
- readonly rpcUrls: {
2017
- readonly default: {
2018
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar"];
2019
- };
2020
- readonly public: {
2021
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar"];
2022
- };
2023
- };
2024
- readonly blockExplorers: {
2025
- readonly etherscan: {
2026
- readonly name: "SKALE Explorer";
2027
- readonly url: "https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com";
2028
- };
2029
- readonly default: {
2030
- readonly name: "SKALE Explorer";
2031
- readonly url: "https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com";
2032
- };
2033
- };
2034
- readonly contracts: {};
2035
- readonly testnet: true;
2036
- };
2037
- export declare const skaleChaosTestnet: {
2038
- readonly id: 1351057110;
2039
- readonly name: "SKALE | Chaos Testnet";
2040
- readonly network: "skale-chaos-testnet";
2041
- readonly nativeCurrency: {
2042
- readonly name: "sFUEL";
2043
- readonly symbol: "sFUEL";
2044
- readonly decimals: 18;
2045
- };
2046
- readonly rpcUrls: {
2047
- readonly default: {
2048
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix"];
2049
- };
2050
- readonly public: {
2051
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix"];
2052
- };
2053
- };
2054
- readonly blockExplorers: {
2055
- readonly etherscan: {
2056
- readonly name: "SKALE Explorer";
2057
- readonly url: "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com";
2058
- };
2059
- readonly default: {
2060
- readonly name: "SKALE Explorer";
2061
- readonly url: "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com";
2062
- };
2063
- };
2064
- readonly contracts: {};
2065
- readonly testnet: true;
2066
- };
2067
- export declare const skaleCryptoBlades: {
2068
- readonly id: 1026062157;
2069
- readonly name: "SKALE | CryptoBlades";
2070
- readonly network: "skale-cryptoblades";
2071
- readonly nativeCurrency: {
2072
- readonly name: "sFUEL";
2073
- readonly symbol: "sFUEL";
2074
- readonly decimals: 18;
2075
- };
2076
- readonly rpcUrls: {
2077
- readonly default: {
2078
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/affectionate-immediate-pollux"];
2079
- };
2080
- readonly public: {
2081
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/affectionate-immediate-pollux"];
2082
- };
2083
- };
2084
- readonly blockExplorers: {
2085
- readonly etherscan: {
2086
- readonly name: "SKALE Explorer";
2087
- readonly url: "https://affectionate-immediate-pollux.explorer.mainnet.skalenodes.com";
2088
- };
2089
- readonly default: {
2090
- readonly name: "SKALE Explorer";
2091
- readonly url: "https://affectionate-immediate-pollux.explorer.mainnet.skalenodes.com";
2092
- };
2093
- };
2094
- readonly contracts: {};
2095
- };
2096
- export declare const skaleCryptoColosseum: {
2097
- readonly id: 2046399126;
2098
- readonly name: "SKALE | Crypto Colosseum";
2099
- readonly network: "skale-crypto-coloseeum";
2100
- readonly nativeCurrency: {
2101
- readonly name: "sFUEL";
2102
- readonly symbol: "sFUEL";
2103
- readonly decimals: 18;
2104
- };
2105
- readonly rpcUrls: {
2106
- readonly default: {
2107
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/haunting-devoted-deneb"];
2108
- };
2109
- readonly public: {
2110
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/haunting-devoted-deneb"];
2111
- };
2112
- };
2113
- readonly blockExplorers: {
2114
- readonly etherscan: {
2115
- readonly name: "SKALE Explorer";
2116
- readonly url: "https://haunting-devoted-deneb.explorer.mainnet.skalenodes.com";
2117
- };
2118
- readonly default: {
2119
- readonly name: "SKALE Explorer";
2120
- readonly url: "https://haunting-devoted-deneb.explorer.mainnet.skalenodes.com";
2121
- };
2122
- };
2123
- readonly contracts: {};
2124
- };
2125
- export declare const skaleEuropa: {
2126
- readonly id: 2046399126;
2127
- readonly name: "SKALE | Europa Liquidity Hub";
2128
- readonly network: "skale-europa";
2129
- readonly nativeCurrency: {
2130
- readonly name: "sFUEL";
2131
- readonly symbol: "sFUEL";
2132
- readonly decimals: 18;
2133
- };
2134
- readonly rpcUrls: {
2135
- readonly default: {
2136
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/elated-tan-skat"];
2137
- };
2138
- readonly public: {
2139
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/elated-tan-skat"];
2140
- };
2141
- };
2142
- readonly blockExplorers: {
2143
- readonly etherscan: {
2144
- readonly name: "SKALE Explorer";
2145
- readonly url: "https://elated-tan-skat.explorer.mainnet.skalenodes.com";
2146
- };
2147
- readonly default: {
2148
- readonly name: "SKALE Explorer";
2149
- readonly url: "https://elated-tan-skat.explorer.mainnet.skalenodes.com";
2150
- };
2151
- };
2152
- readonly contracts: {};
2153
- };
2154
- export declare const skaleEuropaTestnet: {
2155
- readonly id: 476158412;
2156
- readonly name: "SKALE | Europa Liquidity Hub Testnet";
2157
- readonly network: "skale-europa-testnet";
2158
- readonly nativeCurrency: {
2159
- readonly name: "sFUEL";
2160
- readonly symbol: "sFUEL";
2161
- readonly decimals: 18;
2162
- };
2163
- readonly rpcUrls: {
2164
- readonly default: {
2165
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor"];
2166
- };
2167
- readonly public: {
2168
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor"];
2169
- };
2170
- };
2171
- readonly blockExplorers: {
2172
- readonly etherscan: {
2173
- readonly name: "SKALE Explorer";
2174
- readonly url: "https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com";
2175
- };
2176
- readonly default: {
2177
- readonly name: "SKALE Explorer";
2178
- readonly url: "https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com";
2179
- };
2180
- };
2181
- readonly contracts: {};
2182
- readonly testnet: true;
2183
- };
2184
- export declare const skaleExorde: {
2185
- readonly id: 2139927552;
2186
- readonly name: "SKALE | Exorde";
2187
- readonly network: "skale-exorde";
2188
- readonly nativeCurrency: {
2189
- readonly name: "sFUEL";
2190
- readonly symbol: "sFUEL";
2191
- readonly decimals: 18;
2192
- };
2193
- readonly rpcUrls: {
2194
- readonly default: {
2195
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/light-vast-diphda"];
2196
- };
2197
- readonly public: {
2198
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/light-vast-diphda"];
2199
- };
2200
- };
2201
- readonly blockExplorers: {
2202
- readonly etherscan: {
2203
- readonly name: "SKALE Explorer";
2204
- readonly url: "https://light-vast-diphda.explorer.mainnet.skalenodes.com";
2205
- };
2206
- readonly default: {
2207
- readonly name: "SKALE Explorer";
2208
- readonly url: "https://light-vast-diphda.explorer.mainnet.skalenodes.com";
2209
- };
2210
- };
2211
- readonly contracts: {};
2212
- };
2213
- export declare const skaleHumanProtocol: {
2214
- readonly id: 1273227453;
2215
- readonly name: "SKALE | Human Protocol";
2216
- readonly network: "skale-human-protocol";
2217
- readonly nativeCurrency: {
2218
- readonly name: "sFUEL";
2219
- readonly symbol: "sFUEL";
2220
- readonly decimals: 18;
2221
- };
2222
- readonly rpcUrls: {
2223
- readonly default: {
2224
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/wan-red-ain"];
2225
- };
2226
- readonly public: {
2227
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/wan-red-ain"];
2228
- };
2229
- };
2230
- readonly blockExplorers: {
2231
- readonly etherscan: {
2232
- readonly name: "SKALE Explorer";
2233
- readonly url: "https://wan-red-ain.explorer.mainnet.skalenodes.com";
2234
- };
2235
- readonly default: {
2236
- readonly name: "SKALE Explorer";
2237
- readonly url: "https://wan-red-ain.explorer.mainnet.skalenodes.com";
2238
- };
2239
- };
2240
- readonly contracts: {};
2241
- };
2242
- export declare const skaleNebula: {
2243
- readonly id: 1482601649;
2244
- readonly name: "SKALE | Nebula Gaming Hub";
2245
- readonly network: "skale-nebula";
2246
- readonly nativeCurrency: {
2247
- readonly name: "sFUEL";
2248
- readonly symbol: "sFUEL";
2249
- readonly decimals: 18;
2250
- };
2251
- readonly rpcUrls: {
2252
- readonly default: {
2253
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/green-giddy-denebola"];
2254
- };
2255
- readonly public: {
2256
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/green-giddy-denebola"];
2257
- };
2258
- };
2259
- readonly blockExplorers: {
2260
- readonly etherscan: {
2261
- readonly name: "SKALE Explorer";
2262
- readonly url: "https://green-giddy-denebola.explorer.mainnet.skalenodes.com";
2263
- };
2264
- readonly default: {
2265
- readonly name: "SKALE Explorer";
2266
- readonly url: "https://green-giddy-denebola.explorer.mainnet.skalenodes.com";
2267
- };
2268
- };
2269
- readonly contracts: {};
2270
- };
2271
- export declare const skaleNebulaTestnet: {
2272
- readonly id: 503129905;
2273
- readonly name: "SKALE | Nebula Gaming Hub Testnet";
2274
- readonly network: "skale-nebula-testnet";
2275
- readonly nativeCurrency: {
2276
- readonly name: "sFUEL";
2277
- readonly symbol: "sFUEL";
2278
- readonly decimals: 18;
2279
- };
2280
- readonly rpcUrls: {
2281
- readonly default: {
2282
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird"];
2283
- };
2284
- readonly public: {
2285
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird"];
2286
- };
2287
- };
2288
- readonly blockExplorers: {
2289
- readonly etherscan: {
2290
- readonly name: "SKALE Explorer";
2291
- readonly url: "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com";
2292
- };
2293
- readonly default: {
2294
- readonly name: "SKALE Explorer";
2295
- readonly url: "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com";
2296
- };
2297
- };
2298
- readonly contracts: {};
2299
- readonly testnet: true;
2300
- };
2301
- export declare const skaleRazor: {
2302
- readonly id: 278611351;
2303
- readonly name: "SKALE | Razor Network";
2304
- readonly network: "skale-razor";
2305
- readonly nativeCurrency: {
2306
- readonly name: "sFUEL";
2307
- readonly symbol: "sFUEL";
2308
- readonly decimals: 18;
2309
- };
2310
- readonly rpcUrls: {
2311
- readonly default: {
2312
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/turbulent-unique-scheat"];
2313
- };
2314
- readonly public: {
2315
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/turbulent-unique-scheat"];
2316
- };
2317
- };
2318
- readonly blockExplorers: {
2319
- readonly etherscan: {
2320
- readonly name: "SKALE Explorer";
2321
- readonly url: "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com";
2322
- };
2323
- readonly default: {
2324
- readonly name: "SKALE Explorer";
2325
- readonly url: "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com";
2326
- };
2327
- };
2328
- readonly contracts: {};
2329
- };
2330
- export declare const skaleTitan: {
2331
- readonly id: 1350216234;
2332
- readonly name: "SKALE | Titan Community Hub";
2333
- readonly network: "skale-titan";
2334
- readonly nativeCurrency: {
2335
- readonly name: "sFUEL";
2336
- readonly symbol: "sFUEL";
2337
- readonly decimals: 18;
2338
- };
2339
- readonly rpcUrls: {
2340
- readonly default: {
2341
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/parallel-stormy-spica"];
2342
- };
2343
- readonly public: {
2344
- readonly http: readonly ["https://mainnet.skalenodes.com/v1/parallel-stormy-spica"];
2345
- };
2346
- };
2347
- readonly blockExplorers: {
2348
- readonly etherscan: {
2349
- readonly name: "SKALE Explorer";
2350
- readonly url: "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com";
2351
- };
2352
- readonly default: {
2353
- readonly name: "SKALE Explorer";
2354
- readonly url: "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com";
2355
- };
2356
- };
2357
- readonly contracts: {};
2358
- };
2359
- export declare const skaleTitanTestnet: {
2360
- readonly id: 1517929550;
2361
- readonly name: "SKALE | Titan Community Hub Testnet";
2362
- readonly network: "skale-titan-testnet";
2363
- readonly nativeCurrency: {
2364
- readonly name: "sFUEL";
2365
- readonly symbol: "sFUEL";
2366
- readonly decimals: 18;
2367
- };
2368
- readonly rpcUrls: {
2369
- readonly default: {
2370
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar"];
2371
- };
2372
- readonly public: {
2373
- readonly http: readonly ["https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar"];
2374
- };
2375
- };
2376
- readonly blockExplorers: {
2377
- readonly etherscan: {
2378
- readonly name: "SKALE Explorer";
2379
- readonly url: "https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com";
2380
- };
2381
- readonly default: {
2382
- readonly name: "SKALE Explorer";
2383
- readonly url: "https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com";
2384
- };
2385
- };
2386
- readonly contracts: {};
2387
- readonly testnet: true;
2388
- };
2389
- export declare const songbird: chains.Chain;
2390
- export declare const songbirdTestnet: chains.Chain;
2391
- export declare const shardeumSphinx: {
2392
- readonly id: 8082;
2393
- readonly name: "Shardeum Sphinx";
2394
- readonly network: "shmSphinx";
2395
- readonly nativeCurrency: {
2396
- readonly name: "SHARDEUM";
2397
- readonly symbol: "SHM";
2398
- readonly decimals: 18;
2399
- };
2400
- readonly rpcUrls: {
2401
- readonly default: {
2402
- readonly http: readonly ["https://sphinx.shardeum.org"];
2403
- };
2404
- readonly public: {
2405
- readonly http: readonly ["https://sphinx.shardeum.org"];
2406
- };
2407
- };
2408
- readonly blockExplorers: {
2409
- readonly default: {
2410
- readonly name: "Shardeum Explorer";
2411
- readonly url: "https://explorer-sphinx.shardeum.org";
2412
- };
2413
- };
2414
- readonly testnet: true;
2415
- };
2416
- export declare const syscoin: {
2417
- readonly id: 57;
2418
- readonly name: "Syscoin Mainnet";
2419
- readonly network: "syscoin";
2420
- readonly nativeCurrency: {
2421
- readonly decimals: 8;
2422
- readonly name: "Syscoin";
2423
- readonly symbol: "SYS";
2424
- };
2425
- readonly rpcUrls: {
2426
- readonly default: {
2427
- readonly http: readonly ["https://rpc.syscoin.org"];
2428
- };
2429
- readonly public: {
2430
- readonly http: readonly ["https://rpc.syscoin.org"];
2431
- };
2432
- };
2433
- readonly blockExplorers: {
2434
- readonly default: {
2435
- readonly name: "SyscoinExplorer";
2436
- readonly url: "https://explorer.syscoin.org";
2437
- };
2438
- };
2439
- readonly contracts: {
2440
- readonly multicall3: {
2441
- readonly address: "0x000562033783B1136159E10d976B519C929cdE8e";
2442
- readonly blockCreated: 80637;
2443
- };
2444
- };
2445
- };
2446
- export declare const taraxa: {
2447
- readonly id: 841;
2448
- readonly name: "Taraxa Mainnet";
2449
- readonly network: "taraxa";
2450
- readonly nativeCurrency: {
2451
- readonly name: "Tara";
2452
- readonly symbol: "TARA";
2453
- readonly decimals: 18;
2454
- };
2455
- readonly rpcUrls: {
2456
- readonly default: {
2457
- readonly http: readonly ["https://rpc.mainnet.taraxa.io"];
2458
- };
2459
- readonly public: {
2460
- readonly http: readonly ["https://rpc.mainnet.taraxa.io"];
2461
- };
2462
- };
2463
- readonly blockExplorers: {
2464
- readonly default: {
2465
- readonly name: "Taraxa Explorer";
2466
- readonly url: "https://explorer.mainnet.taraxa.io";
2467
- };
2468
- };
2469
- };
2470
- export declare const taraxaTestnet: {
2471
- readonly id: 842;
2472
- readonly name: "Taraxa Testnet";
2473
- readonly network: "taraxa-testnet";
2474
- readonly nativeCurrency: {
2475
- readonly name: "Tara";
2476
- readonly symbol: "TARA";
2477
- readonly decimals: 18;
2478
- };
2479
- readonly rpcUrls: {
2480
- readonly default: {
2481
- readonly http: readonly ["https://rpc.testnet.taraxa.io"];
2482
- };
2483
- readonly public: {
2484
- readonly http: readonly ["https://rpc.testnet.taraxa.io"];
2485
- };
2486
- };
2487
- readonly blockExplorers: {
2488
- readonly default: {
2489
- readonly name: "Taraxa Explorer";
2490
- readonly url: "https://explorer.testnet.taraxa.io";
2491
- };
2492
- };
2493
- readonly testnet: true;
2494
- };
2495
- export declare const telos: {
2496
- readonly id: 40;
2497
- readonly name: "Telos";
2498
- readonly network: "telos";
2499
- readonly nativeCurrency: {
2500
- readonly decimals: 18;
2501
- readonly name: "Telos";
2502
- readonly symbol: "TLOS";
2503
- };
2504
- readonly rpcUrls: {
2505
- readonly default: {
2506
- readonly http: readonly ["https://mainnet.telos.net/evm"];
2507
- };
2508
- readonly public: {
2509
- readonly http: readonly ["https://mainnet.telos.net/evm"];
2510
- };
2511
- };
2512
- readonly blockExplorers: {
2513
- readonly default: {
2514
- readonly name: "Teloscan";
2515
- readonly url: "https://www.teloscan.io/";
2516
- };
2517
- };
2518
- readonly contracts: {
2519
- readonly multicall3: {
2520
- readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
2521
- readonly blockCreated: 246530709;
2522
- };
2523
- };
2524
- };
2525
- export declare const telosTestnet: {
2526
- readonly id: 41;
2527
- readonly name: "Telos";
2528
- readonly network: "telosTestnet";
2529
- readonly nativeCurrency: {
2530
- readonly decimals: 18;
2531
- readonly name: "Telos";
2532
- readonly symbol: "TLOS";
2533
- };
2534
- readonly rpcUrls: {
2535
- readonly default: {
2536
- readonly http: readonly ["https://testnet.telos.net/evm"];
2537
- };
2538
- readonly public: {
2539
- readonly http: readonly ["https://testnet.telos.net/evm"];
2540
- };
2541
- };
2542
- readonly blockExplorers: {
2543
- readonly default: {
2544
- readonly name: "Teloscan (testnet)";
2545
- readonly url: "https://testnet.teloscan.io/";
2546
- };
2547
- };
2548
- readonly testnet: true;
2549
- };
2550
- export declare const thunderTestnet: {
2551
- readonly id: 997;
2552
- readonly name: "5ireChain Thunder Testnet";
2553
- readonly network: "5ireChain";
2554
- readonly nativeCurrency: {
2555
- readonly name: "5ire Token";
2556
- readonly symbol: "5IRE";
2557
- readonly decimals: 18;
2558
- };
2559
- readonly rpcUrls: {
2560
- readonly default: {
2561
- readonly http: readonly ["https://rpc-testnet.5ire.network"];
2562
- };
2563
- readonly public: {
2564
- readonly http: readonly ["https://rpc-testnet.5ire.network"];
2565
- };
2566
- };
2567
- readonly blockExplorers: {
2568
- readonly default: {
2569
- readonly name: "5ireChain Explorer";
2570
- readonly url: "https://explorer.5ire.network";
2571
- };
2572
- };
2573
- readonly testnet: true;
2574
- };
2575
- export declare const wanchain: {
2576
- readonly id: 888;
2577
- readonly name: "Wanchain";
2578
- readonly network: "wanchain";
2579
- readonly nativeCurrency: {
2580
- readonly name: "WANCHAIN";
2581
- readonly symbol: "WAN";
2582
- readonly decimals: 18;
2583
- };
2584
- readonly rpcUrls: {
2585
- readonly default: {
2586
- readonly http: readonly ["https://gwan-ssl.wandevs.org:56891", "https://gwan2-ssl.wandevs.org"];
2587
- };
2588
- readonly public: {
2589
- readonly http: readonly ["https://gwan-ssl.wandevs.org:56891", "https://gwan2-ssl.wandevs.org"];
2590
- };
2591
- };
2592
- readonly blockExplorers: {
2593
- readonly etherscan: {
2594
- readonly name: "WanScan";
2595
- readonly url: "https://wanscan.org";
2596
- };
2597
- readonly default: {
2598
- readonly name: "WanScan";
2599
- readonly url: "https://wanscan.org";
2600
- };
2601
- };
2602
- readonly contracts: {
2603
- readonly multicall3: {
2604
- readonly address: "0xcDF6A1566e78EB4594c86Fe73Fcdc82429e97fbB";
2605
- readonly blockCreated: 25312390;
2606
- };
2607
- };
2608
- };
2609
- export declare const wanchainTestnet: {
2610
- readonly id: 999;
2611
- readonly name: "Wanchain Testnet";
2612
- readonly network: "wanchainTestnet";
2613
- readonly nativeCurrency: {
2614
- readonly name: "WANCHAIN";
2615
- readonly symbol: "WANt";
2616
- readonly decimals: 18;
2617
- };
2618
- readonly rpcUrls: {
2619
- readonly default: {
2620
- readonly http: readonly ["https://gwan-ssl.wandevs.org:46891"];
2621
- };
2622
- readonly public: {
2623
- readonly http: readonly ["https://gwan-ssl.wandevs.org:46891"];
2624
- };
2625
- };
2626
- readonly blockExplorers: {
2627
- readonly etherscan: {
2628
- readonly name: "WanScanTest";
2629
- readonly url: "https://wanscan.org";
2630
- };
2631
- readonly default: {
2632
- readonly name: "WanScanTest";
2633
- readonly url: "https://wanscan.org";
2634
- };
2635
- };
2636
- readonly contracts: {
2637
- readonly multicall3: {
2638
- readonly address: "0x11c89bF4496c39FB80535Ffb4c92715839CC5324";
2639
- readonly blockCreated: 24743448;
2640
- };
2641
- };
2642
- readonly testnet: true;
2643
- };
2644
- export declare const xdc: {
2645
- readonly id: 50;
2646
- readonly name: "XinFin Network";
2647
- readonly network: "xdc";
2648
- readonly nativeCurrency: {
2649
- readonly decimals: 18;
2650
- readonly name: "XDC";
2651
- readonly symbol: "XDC";
2652
- };
2653
- readonly rpcUrls: {
2654
- readonly default: {
2655
- readonly http: readonly ["https://rpc.xinfin.network"];
2656
- };
2657
- readonly public: {
2658
- readonly http: readonly ["https://rpc.xinfin.network"];
2659
- };
2660
- };
2661
- readonly blockExplorers: {
2662
- readonly xinfin: {
2663
- readonly name: "XinFin";
2664
- readonly url: "https://explorer.xinfin.network";
2665
- };
2666
- readonly default: {
2667
- readonly name: "Blocksscan";
2668
- readonly url: "https://xdc.blocksscan.io";
2669
- };
2670
- };
2671
- };
2672
- export declare const xdcTestnet: {
2673
- readonly id: 51;
2674
- readonly name: "Apothem Network";
2675
- readonly network: "xdc-testnet";
2676
- readonly nativeCurrency: {
2677
- readonly decimals: 18;
2678
- readonly name: "TXDC";
2679
- readonly symbol: "TXDC";
2680
- };
2681
- readonly rpcUrls: {
2682
- readonly default: {
2683
- readonly http: readonly ["https://erpc.apothem.network"];
2684
- };
2685
- readonly public: {
2686
- readonly http: readonly ["https://erpc.apothem.network"];
2687
- };
2688
- };
2689
- readonly blockExplorers: {
2690
- readonly xinfin: {
2691
- readonly name: "XinFin";
2692
- readonly url: "https://explorer.apothem.network";
2693
- };
2694
- readonly default: {
2695
- readonly name: "Blocksscan";
2696
- readonly url: "https://apothem.blocksscan.io";
2697
- };
2698
- };
2699
- };
2700
- export declare const zhejiang: {
2701
- readonly id: 1337803;
2702
- readonly network: "zhejiang";
2703
- readonly name: "Zhejiang";
2704
- readonly nativeCurrency: {
2705
- readonly name: "Zhejiang Ether";
2706
- readonly symbol: "ZhejETH";
2707
- readonly decimals: 18;
2708
- };
2709
- readonly rpcUrls: {
2710
- readonly default: {
2711
- readonly http: readonly ["https://rpc.zhejiang.ethpandaops.io"];
2712
- };
2713
- readonly public: {
2714
- readonly http: readonly ["https://rpc.zhejiang.ethpandaops.io"];
2715
- };
2716
- };
2717
- readonly blockExplorers: {
2718
- readonly beaconchain: {
2719
- readonly name: "Etherscan";
2720
- readonly url: "https://zhejiang.beaconcha.in";
2721
- };
2722
- readonly blockscout: {
2723
- readonly name: "Blockscout";
2724
- readonly url: "https://blockscout.com/eth/zhejiang-testnet";
2725
- };
2726
- readonly default: {
2727
- readonly name: "Beaconchain";
2728
- readonly url: "https://zhejiang.beaconcha.in";
2729
- };
2730
- };
2731
- readonly testnet: true;
2732
- };
2733
- export declare const zkSync: {
2734
- readonly id: 324;
2735
- readonly name: "zkSync Era";
2736
- readonly network: "zksync-era";
2737
- readonly nativeCurrency: {
2738
- readonly decimals: 18;
2739
- readonly name: "Ether";
2740
- readonly symbol: "ETH";
2741
- };
2742
- readonly rpcUrls: {
2743
- readonly default: {
2744
- readonly http: readonly ["https://mainnet.era.zksync.io"];
2745
- readonly webSocket: readonly ["wss://mainnet.era.zksync.io/ws"];
2746
- };
2747
- readonly public: {
2748
- readonly http: readonly ["https://mainnet.era.zksync.io"];
2749
- readonly webSocket: readonly ["wss://mainnet.era.zksync.io/ws"];
2750
- };
2751
- };
2752
- readonly blockExplorers: {
2753
- readonly default: {
2754
- readonly name: "zkExplorer";
2755
- readonly url: "https://explorer.zksync.io";
2756
- };
2757
- };
2758
- readonly contracts: {
2759
- readonly multicall3: {
2760
- readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
2761
- };
2762
- };
2763
- };
2764
- export declare const zkSyncTestnet: {
2765
- readonly id: 280;
2766
- readonly name: "zkSync Era Testnet";
2767
- readonly network: "zksync-era-testnet";
2768
- readonly nativeCurrency: {
2769
- readonly name: "Ether";
2770
- readonly symbol: "ETH";
2771
- readonly decimals: 18;
2772
- };
2773
- readonly rpcUrls: {
2774
- readonly default: {
2775
- readonly http: readonly ["https://testnet.era.zksync.dev"];
2776
- readonly webSocket: readonly ["wss://testnet.era.zksync.dev/ws"];
2777
- };
2778
- readonly public: {
2779
- readonly http: readonly ["https://testnet.era.zksync.dev"];
2780
- readonly webSocket: readonly ["wss://testnet.era.zksync.dev/ws"];
2781
- };
2782
- };
2783
- readonly blockExplorers: {
2784
- readonly default: {
2785
- readonly name: "zkExplorer";
2786
- readonly url: "https://goerli.explorer.zksync.io";
2787
- };
2788
- };
2789
- readonly contracts: {
2790
- readonly multicall3: {
2791
- readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
2792
- };
2793
- };
2794
- readonly testnet: true;
2795
- };
2796
- export declare const zoraTestnet: {
2797
- readonly id: 999;
2798
- readonly name: "ZORA Goerli Testnet";
2799
- readonly network: "zora-testnet";
2800
- readonly nativeCurrency: {
2801
- readonly decimals: 18;
2802
- readonly name: "ZORA Goerli";
2803
- readonly symbol: "ETH";
2804
- };
2805
- readonly rpcUrls: {
2806
- readonly default: {
2807
- readonly http: readonly ["https://testnet.rpc.zora.co"];
2808
- readonly webSocket: readonly ["wss://testnet.rpc.zora.co"];
2809
- };
2810
- readonly public: {
2811
- readonly http: readonly ["https://testnet.rpc.zora.co"];
2812
- readonly webSocket: readonly ["wss://testnet.rpc.zora.co"];
2813
- };
2814
- };
2815
- readonly blockExplorers: {
2816
- readonly etherscan: {
2817
- readonly name: "ZORA";
2818
- readonly url: "https://testnet.explorer.zora.co";
2819
- };
2820
- readonly default: {
2821
- readonly name: "ZORA";
2822
- readonly url: "https://testnet.explorer.zora.co";
2823
- };
2824
- };
2825
- readonly contracts: {
2826
- readonly multicall3: {
2827
- readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
2828
- readonly blockCreated: 189123;
2829
- };
2830
- };
2831
- readonly testnet: true;
2832
- };
2833
- export type { Chain } from './types/chain.js';
2834
- //# sourceMappingURL=chains.d.ts.map