Skip to content

Commit f9a464e

Browse files
authored
Merge branch 'main' into main
2 parents cec14e6 + 560af59 commit f9a464e

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ All services are exposed through a consistent interface of MCP tools and resourc
114114
- Aurora
115115
- Canto
116116
- Flow
117+
- Lumia
117118

118119
### Testnets
119120
- Sepolia
@@ -138,6 +139,7 @@ All services are exposed through a consistent interface of MCP tools and resourc
138139
- Goerli
139140
- Holesky
140141
- Flow Testnet
142+
- Lumia Testnet
141143

142144
## 🛠️ Prerequisites
143145

@@ -148,7 +150,7 @@ All services are exposed through a consistent interface of MCP tools and resourc
148150

149151
```bash
150152
# Clone the repository
151-
git clone https://github.com/yourusername/mcp-evm-server.git
153+
git clone https://github.com/mcpdotdirect/mcp-evm-server.git
152154
cd mcp-evm-server
153155

154156
# Install dependencies with Bun

src/core/chains.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import {
1919
moonbeam,
2020
moonriver,
2121
cronos,
22+
lumiaMainnet,
2223
scroll,
2324
mantle,
2425
manta,
@@ -42,6 +43,7 @@ import {
4243
bscTestnet,
4344
zksyncSepoliaTestnet,
4445
lineaSepolia,
46+
lumiaTestnet,
4547
scrollSepolia,
4648
mantleSepoliaTestnet,
4749
mantaSepoliaTestnet,
@@ -85,6 +87,7 @@ export const chainMap: Record<number, Chain> = {
8587
534352: scroll,
8688
5000: mantle,
8789
169: manta,
90+
994873017: lumiaMainnet,
8891
81457: blast,
8992
252: fraxtal,
9093
34443: mode,
@@ -105,6 +108,7 @@ export const chainMap: Record<number, Chain> = {
105108
97: bscTestnet,
106109
300: zksyncSepoliaTestnet,
107110
59141: lineaSepolia,
111+
1952959480: lumiaTestnet,
108112
534351: scrollSepolia,
109113
5003: mantleSepoliaTestnet,
110114
3441006: mantaSepoliaTestnet,
@@ -156,6 +160,7 @@ export const networkNameMap: Record<string, number> = {
156160
'scroll': 534352,
157161
'mantle': 5000,
158162
'manta': 169,
163+
'lumia': 994873017,
159164
'blast': 81457,
160165
'fraxtal': 252,
161166
'mode': 34443,
@@ -185,6 +190,7 @@ export const networkNameMap: Record<string, number> = {
185190
'zksyncsepolia': 300,
186191
'linea-sepolia': 59141,
187192
'lineasepolia': 59141,
193+
'lumia-testnet': 1952959480,
188194
'scroll-sepolia': 534351,
189195
'scrollsepolia': 534351,
190196
'mantle-sepolia': 5003,
@@ -237,6 +243,7 @@ export const rpcUrlMap: Record<number, string> = {
237243
169: 'https://pacific-rpc.manta.network/http',
238244
81457: 'https://rpc.blast.io',
239245
252: 'https://rpc.frax.com',
246+
994873017: 'https://mainnet-rpc.lumia.org',
240247
34443: 'https://mainnet.mode.network',
241248
1088: 'https://andromeda.metis.io/?owner=1088',
242249
255: 'https://api.kroma.network',
@@ -258,6 +265,7 @@ export const rpcUrlMap: Record<number, string> = {
258265
534351: 'https://sepolia-rpc.scroll.io',
259266
5003: 'https://rpc.sepolia.mantle.xyz',
260267
3441006: 'https://pacific-rpc.sepolia.manta.network/http',
268+
1952959480: 'https://testnet-rpc.lumia.org',
261269
168587773: 'https://sepolia.blast.io',
262270
2522: 'https://rpc.testnet.frax.com',
263271
919: 'https://sepolia.mode.network',

0 commit comments

Comments
 (0)