@0xtorch/evm 0.0.149 → 0.0.150
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_cjs/chain/definitions/abstract.js +63 -0
- package/_cjs/chain/definitions/abstract.js.map +1 -0
- package/_cjs/chain/definitions/apeChain.js +61 -0
- package/_cjs/chain/definitions/apeChain.js.map +1 -0
- package/_cjs/chain/definitions/arbitrumNova.js +83 -0
- package/_cjs/chain/definitions/arbitrumNova.js.map +1 -0
- package/_cjs/chain/definitions/bitTorrent.js +68 -0
- package/_cjs/chain/definitions/bitTorrent.js.map +1 -0
- package/_cjs/chain/definitions/celo.js +81 -0
- package/_cjs/chain/definitions/celo.js.map +1 -0
- package/_cjs/chain/definitions/fraxtal.js +71 -0
- package/_cjs/chain/definitions/fraxtal.js.map +1 -0
- package/_cjs/chain/definitions/immutableZkEvm.js +66 -0
- package/_cjs/chain/definitions/immutableZkEvm.js.map +1 -0
- package/_cjs/chain/definitions/katana.js +51 -0
- package/_cjs/chain/definitions/katana.js.map +1 -0
- package/_cjs/chain/definitions/memeCore.js +56 -0
- package/_cjs/chain/definitions/memeCore.js.map +1 -0
- package/_cjs/chain/definitions/sophon.js +61 -0
- package/_cjs/chain/definitions/sophon.js.map +1 -0
- package/_cjs/chain/definitions/swell.js +53 -0
- package/_cjs/chain/definitions/swell.js.map +1 -0
- package/_cjs/chain/definitions/xdcNetwork.js +102 -0
- package/_cjs/chain/definitions/xdcNetwork.js.map +1 -0
- package/_cjs/chain/index.js +65 -4
- package/_cjs/chain/index.js.map +1 -1
- package/_cjs/index.js +54 -5
- package/_cjs/index.js.map +1 -1
- package/_esm/chain/definitions/abstract.js +58 -0
- package/_esm/chain/definitions/abstract.js.map +1 -0
- package/_esm/chain/definitions/apeChain.js +56 -0
- package/_esm/chain/definitions/apeChain.js.map +1 -0
- package/_esm/chain/definitions/arbitrumNova.js +78 -0
- package/_esm/chain/definitions/arbitrumNova.js.map +1 -0
- package/_esm/chain/definitions/bitTorrent.js +63 -0
- package/_esm/chain/definitions/bitTorrent.js.map +1 -0
- package/_esm/chain/definitions/celo.js +76 -0
- package/_esm/chain/definitions/celo.js.map +1 -0
- package/_esm/chain/definitions/fraxtal.js +66 -0
- package/_esm/chain/definitions/fraxtal.js.map +1 -0
- package/_esm/chain/definitions/immutableZkEvm.js +61 -0
- package/_esm/chain/definitions/immutableZkEvm.js.map +1 -0
- package/_esm/chain/definitions/katana.js +46 -0
- package/_esm/chain/definitions/katana.js.map +1 -0
- package/_esm/chain/definitions/memeCore.js +51 -0
- package/_esm/chain/definitions/memeCore.js.map +1 -0
- package/_esm/chain/definitions/sophon.js +56 -0
- package/_esm/chain/definitions/sophon.js.map +1 -0
- package/_esm/chain/definitions/swell.js +48 -0
- package/_esm/chain/definitions/swell.js.map +1 -0
- package/_esm/chain/definitions/xdcNetwork.js +97 -0
- package/_esm/chain/definitions/xdcNetwork.js.map +1 -0
- package/_esm/chain/index.js +12 -0
- package/_esm/chain/index.js.map +1 -1
- package/_esm/index.js +1 -1
- package/_esm/index.js.map +1 -1
- package/_types/chain/definitions/abstract.d.ts +18 -0
- package/_types/chain/definitions/abstract.d.ts.map +1 -0
- package/_types/chain/definitions/apeChain.d.ts +18 -0
- package/_types/chain/definitions/apeChain.d.ts.map +1 -0
- package/_types/chain/definitions/arbitrumNova.d.ts +18 -0
- package/_types/chain/definitions/arbitrumNova.d.ts.map +1 -0
- package/_types/chain/definitions/bitTorrent.d.ts +18 -0
- package/_types/chain/definitions/bitTorrent.d.ts.map +1 -0
- package/_types/chain/definitions/celo.d.ts +18 -0
- package/_types/chain/definitions/celo.d.ts.map +1 -0
- package/_types/chain/definitions/fraxtal.d.ts +18 -0
- package/_types/chain/definitions/fraxtal.d.ts.map +1 -0
- package/_types/chain/definitions/immutableZkEvm.d.ts +18 -0
- package/_types/chain/definitions/immutableZkEvm.d.ts.map +1 -0
- package/_types/chain/definitions/katana.d.ts +18 -0
- package/_types/chain/definitions/katana.d.ts.map +1 -0
- package/_types/chain/definitions/memeCore.d.ts +18 -0
- package/_types/chain/definitions/memeCore.d.ts.map +1 -0
- package/_types/chain/definitions/sophon.d.ts +18 -0
- package/_types/chain/definitions/sophon.d.ts.map +1 -0
- package/_types/chain/definitions/swell.d.ts +18 -0
- package/_types/chain/definitions/swell.d.ts.map +1 -0
- package/_types/chain/definitions/xdcNetwork.d.ts +18 -0
- package/_types/chain/definitions/xdcNetwork.d.ts.map +1 -0
- package/_types/chain/index.d.ts +12 -0
- package/_types/chain/index.d.ts.map +1 -1
- package/_types/index.d.ts +1 -1
- package/_types/index.d.ts.map +1 -1
- package/chain/definitions/abstract.ts +82 -0
- package/chain/definitions/apeChain.ts +80 -0
- package/chain/definitions/arbitrumNova.ts +102 -0
- package/chain/definitions/bitTorrent.ts +87 -0
- package/chain/definitions/celo.ts +100 -0
- package/chain/definitions/fraxtal.ts +90 -0
- package/chain/definitions/immutableZkEvm.ts +83 -0
- package/chain/definitions/katana.ts +70 -0
- package/chain/definitions/memeCore.ts +75 -0
- package/chain/definitions/sophon.ts +80 -0
- package/chain/definitions/swell.ts +72 -0
- package/chain/definitions/xdcNetwork.ts +121 -0
- package/chain/index.ts +72 -0
- package/index.ts +48 -0
- package/package.json +1 -1
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { xdc } from 'viem/chains'
|
|
2
|
+
import type { Client } from '../../client'
|
|
3
|
+
import { createClient } from '../../client'
|
|
4
|
+
import type { Explorer } from '../../explorer'
|
|
5
|
+
import { createEtherscanV2 } from '../../explorer'
|
|
6
|
+
import type { Chain } from '../types/chain'
|
|
7
|
+
import type { HttpRpc } from '../types/rpc'
|
|
8
|
+
|
|
9
|
+
export const createXdcNetworkChain = ({
|
|
10
|
+
explorerApiKey: apiKey,
|
|
11
|
+
explorerProxyUrl: proxyUrl,
|
|
12
|
+
explorerPageSize: pageSize,
|
|
13
|
+
}: {
|
|
14
|
+
explorerApiKey?: string
|
|
15
|
+
explorerProxyUrl?: string
|
|
16
|
+
explorerPageSize?: number
|
|
17
|
+
}): Chain =>
|
|
18
|
+
createXdcNetworkChainCustom({
|
|
19
|
+
client: createClient({ chain: xdc, httpRpcs: xdcNetworkHttpRpcs }),
|
|
20
|
+
explorer: createEtherscanV2({
|
|
21
|
+
name: 'XDCScan',
|
|
22
|
+
baseUrl: 'https://xdcscan.com',
|
|
23
|
+
chainId: 50,
|
|
24
|
+
apiKey,
|
|
25
|
+
proxyUrl,
|
|
26
|
+
pageSize,
|
|
27
|
+
}),
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
type CreateXdcNetworkChainCustomParameters = {
|
|
31
|
+
client: Client
|
|
32
|
+
explorer: Explorer
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export const createXdcNetworkChainCustom = ({
|
|
36
|
+
client,
|
|
37
|
+
explorer,
|
|
38
|
+
}: CreateXdcNetworkChainCustomParameters): Chain => ({
|
|
39
|
+
id: 50,
|
|
40
|
+
network: 'xdc-network',
|
|
41
|
+
name: 'XDC Network',
|
|
42
|
+
nativeToken: {
|
|
43
|
+
name: 'XDC Network',
|
|
44
|
+
symbol: 'XDC',
|
|
45
|
+
decimals: 18,
|
|
46
|
+
currency: {
|
|
47
|
+
symbol: 'XDC',
|
|
48
|
+
type: 'CryptoCurrency',
|
|
49
|
+
id: 'xdce-crowd-sale',
|
|
50
|
+
name: 'XDC Network',
|
|
51
|
+
updatedAt: 0,
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
wrappedTokenAddresses: new Set([
|
|
55
|
+
'0x951857744785e80e2de051c32ee7b25f9c458c42',
|
|
56
|
+
]),
|
|
57
|
+
explorer,
|
|
58
|
+
client,
|
|
59
|
+
blockTime: undefined,
|
|
60
|
+
coingeckoId: 'xdc-network',
|
|
61
|
+
defillamaId: undefined,
|
|
62
|
+
})
|
|
63
|
+
|
|
64
|
+
export const xdcNetworkHttpRpcs: HttpRpc[] = [
|
|
65
|
+
{
|
|
66
|
+
url: 'https://rpc.xdcrpc.com',
|
|
67
|
+
getLogsIsUsable: true,
|
|
68
|
+
getLogsMaxBlockRange: 10_000n,
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
url: 'https://rpc1.xinfin.network',
|
|
72
|
+
getLogsIsUsable: true,
|
|
73
|
+
getLogsMaxBlockRange: 10_000n,
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
url: 'https://erpc.xinfin.network',
|
|
77
|
+
getLogsIsUsable: true,
|
|
78
|
+
getLogsMaxBlockRange: 10_000n,
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
url: 'https://erpc.xdcrpc.com',
|
|
82
|
+
getLogsIsUsable: true,
|
|
83
|
+
getLogsMaxBlockRange: 10_000n,
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
url: 'https://rpc.xdc.org',
|
|
87
|
+
getLogsIsUsable: true,
|
|
88
|
+
getLogsMaxBlockRange: 10_000n,
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
url: 'https://rpc.xdc.network',
|
|
92
|
+
getLogsIsUsable: true,
|
|
93
|
+
getLogsMaxBlockRange: 10_000n,
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
url: 'https://earpc.xinfin.network',
|
|
97
|
+
getLogsIsUsable: true,
|
|
98
|
+
getLogsMaxBlockRange: 10_000n,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
url: 'https://erpc.xinfin.network',
|
|
102
|
+
getLogsIsUsable: true,
|
|
103
|
+
getLogsMaxBlockRange: 10_000n,
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
url: 'https://rpc.ankr.com/xdc',
|
|
107
|
+
getLogsIsUsable: false,
|
|
108
|
+
getLogsMaxBlockRange: 0n,
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
url: 'https://xdc-mainnet.gateway.tatum.io',
|
|
112
|
+
getLogsIsUsable: true,
|
|
113
|
+
getLogsMaxBlockRange: 10_000n,
|
|
114
|
+
},
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
export const xdcNetworkWebsocketRpcUrls: string[] = [
|
|
118
|
+
'wss://rpc.xdcrpc.com/ws',
|
|
119
|
+
'wss://erpc.xdcrpc.com/ws',
|
|
120
|
+
'wss://ews.xinfin.network/ws',
|
|
121
|
+
]
|
package/chain/index.ts
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
export {
|
|
2
|
+
createAbstractChain,
|
|
3
|
+
createAbstractChainCustom,
|
|
4
|
+
abstractHttpRpcs,
|
|
5
|
+
abstractWebsocketRpcUrls,
|
|
6
|
+
} from './definitions/abstract'
|
|
7
|
+
export {
|
|
8
|
+
createApeChain,
|
|
9
|
+
createApeChainCustom,
|
|
10
|
+
apeHttpRpcs,
|
|
11
|
+
apeWebsocketRpcUrls,
|
|
12
|
+
} from './definitions/apeChain'
|
|
13
|
+
export {
|
|
14
|
+
createArbitrumNovaChain,
|
|
15
|
+
createArbitrumNovaChainCustom,
|
|
16
|
+
arbitrumNovaHttpRpcs,
|
|
17
|
+
arbitrumNovaWebsocketRpcUrls,
|
|
18
|
+
} from './definitions/arbitrumNova'
|
|
1
19
|
export {
|
|
2
20
|
createArbitrumOneChain,
|
|
3
21
|
createArbitrumOneChainCustom,
|
|
@@ -34,6 +52,12 @@ export {
|
|
|
34
52
|
berachainHttpRpcs,
|
|
35
53
|
berachainWebsocketRpcUrls,
|
|
36
54
|
} from './definitions/berachain'
|
|
55
|
+
export {
|
|
56
|
+
createBitTorrentChain,
|
|
57
|
+
createBitTorrentChainCustom,
|
|
58
|
+
bitTorrentHttpRpcs,
|
|
59
|
+
bitTorrentWebsocketRpcUrls,
|
|
60
|
+
} from './definitions/bitTorrent'
|
|
37
61
|
export {
|
|
38
62
|
createBlastChain,
|
|
39
63
|
createBlastChainCustom,
|
|
@@ -46,6 +70,12 @@ export {
|
|
|
46
70
|
bscHttpRpcs,
|
|
47
71
|
bscWebsocketRpcUrls,
|
|
48
72
|
} from './definitions/bsc'
|
|
73
|
+
export {
|
|
74
|
+
createCeloChain,
|
|
75
|
+
createCeloChainCustom,
|
|
76
|
+
celoHttpRpcs,
|
|
77
|
+
celoWebsocketRpcUrls,
|
|
78
|
+
} from './definitions/celo'
|
|
49
79
|
export {
|
|
50
80
|
createChainVerseChain,
|
|
51
81
|
createChainVerseChainCustom,
|
|
@@ -76,6 +106,12 @@ export {
|
|
|
76
106
|
fantomHttpRpcs,
|
|
77
107
|
fantomWebsocketRpcUrls,
|
|
78
108
|
} from './definitions/fantom'
|
|
109
|
+
export {
|
|
110
|
+
createFraxtalChain,
|
|
111
|
+
createFraxtalChainCustom,
|
|
112
|
+
fraxtalHttpRpcs,
|
|
113
|
+
fraxtalWebsocketRpcUrls,
|
|
114
|
+
} from './definitions/fraxtal'
|
|
79
115
|
export {
|
|
80
116
|
createGeekVerseChain,
|
|
81
117
|
createGeekVerseChainCustom,
|
|
@@ -106,6 +142,18 @@ export {
|
|
|
106
142
|
hyperEvmHttpRpcs,
|
|
107
143
|
hyperEvmWebsocketRpcUrls,
|
|
108
144
|
} from './definitions/hyperEvm'
|
|
145
|
+
export {
|
|
146
|
+
createImmutableZkEvmChain,
|
|
147
|
+
createImmutableZkEvmChainCustom,
|
|
148
|
+
immutableZkEvmHttpRpcs,
|
|
149
|
+
immutableZkEvmWebsocketRpcUrls,
|
|
150
|
+
} from './definitions/immutableZkEvm'
|
|
151
|
+
export {
|
|
152
|
+
createKatanaChain,
|
|
153
|
+
createKatanaChainCustom,
|
|
154
|
+
katanaHttpRpcs,
|
|
155
|
+
katanaWebsocketRpcUrls,
|
|
156
|
+
} from './definitions/katana'
|
|
109
157
|
export {
|
|
110
158
|
createLineaChain,
|
|
111
159
|
createLineaChainCustom,
|
|
@@ -124,6 +172,12 @@ export {
|
|
|
124
172
|
mchVerseHttpRpcs,
|
|
125
173
|
mchVerseWebsocketRpcUrls,
|
|
126
174
|
} from './definitions/mchVerse'
|
|
175
|
+
export {
|
|
176
|
+
createMemeCoreChain,
|
|
177
|
+
createMemeCoreChainCustom,
|
|
178
|
+
memeCoreHttpRpcs,
|
|
179
|
+
memeCoreWebsocketRpcUrls,
|
|
180
|
+
} from './definitions/memeCore'
|
|
127
181
|
export {
|
|
128
182
|
createMetisChain,
|
|
129
183
|
createMetisChainCustom,
|
|
@@ -214,6 +268,18 @@ export {
|
|
|
214
268
|
sonicHttpRpcs,
|
|
215
269
|
sonicWebsocketRpcUrls,
|
|
216
270
|
} from './definitions/sonic'
|
|
271
|
+
export {
|
|
272
|
+
createSophonChain,
|
|
273
|
+
createSophonChainCustom,
|
|
274
|
+
sophonHttpRpcs,
|
|
275
|
+
sophonWebsocketRpcUrls,
|
|
276
|
+
} from './definitions/sophon'
|
|
277
|
+
export {
|
|
278
|
+
createSwellChain,
|
|
279
|
+
createSwellChainCustom,
|
|
280
|
+
swellHttpRpcs,
|
|
281
|
+
swellWebsocketRpcUrls,
|
|
282
|
+
} from './definitions/swell'
|
|
217
283
|
export {
|
|
218
284
|
createTaikoChain,
|
|
219
285
|
createTaikoChainCustom,
|
|
@@ -238,6 +304,12 @@ export {
|
|
|
238
304
|
worldChainHttpRpcs,
|
|
239
305
|
worldChainWebsocketRpcUrls,
|
|
240
306
|
} from './definitions/worldChain'
|
|
307
|
+
export {
|
|
308
|
+
createXdcNetworkChain,
|
|
309
|
+
createXdcNetworkChainCustom,
|
|
310
|
+
xdcNetworkHttpRpcs,
|
|
311
|
+
xdcNetworkWebsocketRpcUrls,
|
|
312
|
+
} from './definitions/xdcNetwork'
|
|
241
313
|
export {
|
|
242
314
|
createYooldoVerseChain,
|
|
243
315
|
createYooldoVerseChainCustom,
|
package/index.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
export { erc1155Abi, erc20Abi, erc721Abi, wethAbi } from './abis'
|
|
2
2
|
export {
|
|
3
|
+
abstractHttpRpcs,
|
|
4
|
+
abstractWebsocketRpcUrls,
|
|
5
|
+
apeHttpRpcs,
|
|
6
|
+
apeWebsocketRpcUrls,
|
|
7
|
+
arbitrumNovaHttpRpcs,
|
|
8
|
+
arbitrumNovaWebsocketRpcUrls,
|
|
3
9
|
arbitrumOneHttpRpcs,
|
|
4
10
|
arbitrumOneWebsocketRpcUrls,
|
|
5
11
|
astarHttpRpcs,
|
|
@@ -12,12 +18,22 @@ export {
|
|
|
12
18
|
baseWebsocketRpcUrls,
|
|
13
19
|
berachainHttpRpcs,
|
|
14
20
|
berachainWebsocketRpcUrls,
|
|
21
|
+
bitTorrentHttpRpcs,
|
|
22
|
+
bitTorrentWebsocketRpcUrls,
|
|
15
23
|
blastHttpRpcs,
|
|
16
24
|
blastWebsocketRpcUrls,
|
|
17
25
|
bscHttpRpcs,
|
|
18
26
|
bscWebsocketRpcUrls,
|
|
27
|
+
celoHttpRpcs,
|
|
28
|
+
celoWebsocketRpcUrls,
|
|
19
29
|
chainVerseHttpRpcs,
|
|
20
30
|
chainVerseWebsocketRpcUrls,
|
|
31
|
+
createAbstractChain,
|
|
32
|
+
createAbstractChainCustom,
|
|
33
|
+
createApeChain,
|
|
34
|
+
createApeChainCustom,
|
|
35
|
+
createArbitrumNovaChain,
|
|
36
|
+
createArbitrumNovaChainCustom,
|
|
21
37
|
createArbitrumOneChain,
|
|
22
38
|
createArbitrumOneChainCustom,
|
|
23
39
|
createAstarChain,
|
|
@@ -30,10 +46,14 @@ export {
|
|
|
30
46
|
createBaseChainCustom,
|
|
31
47
|
createBerachain,
|
|
32
48
|
createBerachainCustom,
|
|
49
|
+
createBitTorrentChain,
|
|
50
|
+
createBitTorrentChainCustom,
|
|
33
51
|
createBlastChain,
|
|
34
52
|
createBlastChainCustom,
|
|
35
53
|
createBscChain,
|
|
36
54
|
createBscChainCustom,
|
|
55
|
+
createCeloChain,
|
|
56
|
+
createCeloChainCustom,
|
|
37
57
|
createChainVerseChain,
|
|
38
58
|
createChainVerseChainCustom,
|
|
39
59
|
createDefiVerseChain,
|
|
@@ -44,6 +64,8 @@ export {
|
|
|
44
64
|
createEthereumChainCustom,
|
|
45
65
|
createFantomChain,
|
|
46
66
|
createFantomChainCustom,
|
|
67
|
+
createFraxtalChain,
|
|
68
|
+
createFraxtalChainCustom,
|
|
47
69
|
createGeekVerseChain,
|
|
48
70
|
createGeekVerseChainCustom,
|
|
49
71
|
createGesoVerseChain,
|
|
@@ -54,6 +76,10 @@ export {
|
|
|
54
76
|
createHomeVerseChainCustom,
|
|
55
77
|
createHyperEvmChain,
|
|
56
78
|
createHyperEvmChainCustom,
|
|
79
|
+
createImmutableZkEvmChain,
|
|
80
|
+
createImmutableZkEvmChainCustom,
|
|
81
|
+
createKatanaChain,
|
|
82
|
+
createKatanaChainCustom,
|
|
57
83
|
createLineaChain,
|
|
58
84
|
createLineaChainCustom,
|
|
59
85
|
createMantaPacificChain,
|
|
@@ -62,6 +88,8 @@ export {
|
|
|
62
88
|
createMantleChainCustom,
|
|
63
89
|
createMchVerseChain,
|
|
64
90
|
createMchVerseChainCustom,
|
|
91
|
+
createMemeCoreChain,
|
|
92
|
+
createMemeCoreChainCustom,
|
|
65
93
|
createMetisChain,
|
|
66
94
|
createMetisChainCustom,
|
|
67
95
|
createMoonbeamChain,
|
|
@@ -90,6 +118,10 @@ export {
|
|
|
90
118
|
createSoneiumChainCustom,
|
|
91
119
|
createSonicChain,
|
|
92
120
|
createSonicChainCustom,
|
|
121
|
+
createSophonChain,
|
|
122
|
+
createSophonChainCustom,
|
|
123
|
+
createSwellChain,
|
|
124
|
+
createSwellChainCustom,
|
|
93
125
|
createTaikoChain,
|
|
94
126
|
createTaikoChainCustom,
|
|
95
127
|
createTcgVerseChain,
|
|
@@ -98,6 +130,8 @@ export {
|
|
|
98
130
|
createUnichainCustom,
|
|
99
131
|
createWorldChain,
|
|
100
132
|
createWorldChainCustom,
|
|
133
|
+
createXdcNetworkChain,
|
|
134
|
+
createXdcNetworkChainCustom,
|
|
101
135
|
createYooldoVerseChain,
|
|
102
136
|
createYooldoVerseChainCustom,
|
|
103
137
|
createZkFairChain,
|
|
@@ -114,6 +148,8 @@ export {
|
|
|
114
148
|
ethereumWebsocketRpcUrls,
|
|
115
149
|
fantomHttpRpcs,
|
|
116
150
|
fantomWebsocketRpcUrls,
|
|
151
|
+
fraxtalHttpRpcs,
|
|
152
|
+
fraxtalWebsocketRpcUrls,
|
|
117
153
|
geekVerseHttpRpcs,
|
|
118
154
|
geekVerseWebsocketRpcUrls,
|
|
119
155
|
gesoVerseHttpRpcs,
|
|
@@ -124,6 +160,10 @@ export {
|
|
|
124
160
|
homeVerseWebsocketRpcUrls,
|
|
125
161
|
hyperEvmHttpRpcs,
|
|
126
162
|
hyperEvmWebsocketRpcUrls,
|
|
163
|
+
immutableZkEvmHttpRpcs,
|
|
164
|
+
immutableZkEvmWebsocketRpcUrls,
|
|
165
|
+
katanaHttpRpcs,
|
|
166
|
+
katanaWebsocketRpcUrls,
|
|
127
167
|
lineaHttpRpcs,
|
|
128
168
|
lineaWebsocketRpcUrls,
|
|
129
169
|
mantaPacificHttpRpcs,
|
|
@@ -132,6 +172,8 @@ export {
|
|
|
132
172
|
mantleWebsocketRpcUrls,
|
|
133
173
|
mchVerseHttpRpcs,
|
|
134
174
|
mchVerseWebsocketRpcUrls,
|
|
175
|
+
memeCoreHttpRpcs,
|
|
176
|
+
memeCoreWebsocketRpcUrls,
|
|
135
177
|
metisHttpRpcs,
|
|
136
178
|
metisWebsocketRpcUrls,
|
|
137
179
|
moonbeamHttpRpcs,
|
|
@@ -160,6 +202,10 @@ export {
|
|
|
160
202
|
soneiumWebsocketRpcUrls,
|
|
161
203
|
sonicHttpRpcs,
|
|
162
204
|
sonicWebsocketRpcUrls,
|
|
205
|
+
sophonHttpRpcs,
|
|
206
|
+
sophonWebsocketRpcUrls,
|
|
207
|
+
swellHttpRpcs,
|
|
208
|
+
swellWebsocketRpcUrls,
|
|
163
209
|
taikoHttpRpcs,
|
|
164
210
|
taikoWebsocketRpcUrls,
|
|
165
211
|
tcgVerseHttpRpcs,
|
|
@@ -168,6 +214,8 @@ export {
|
|
|
168
214
|
unichainWebsocketRpcUrls,
|
|
169
215
|
worldChainHttpRpcs,
|
|
170
216
|
worldChainWebsocketRpcUrls,
|
|
217
|
+
xdcNetworkHttpRpcs,
|
|
218
|
+
xdcNetworkWebsocketRpcUrls,
|
|
171
219
|
yooldoVerseHttpRpcs,
|
|
172
220
|
yooldoVerseWebsocketRpcUrls,
|
|
173
221
|
zkFairHttpRpcs,
|