feat: added Lumia Testnet network

This commit is contained in:
Mikhail Gladchenko
2024-07-15 15:23:14 +01:00
parent 7664409aae
commit 1c4e05c9d1
6 changed files with 35 additions and 2 deletions

View File

@@ -77,6 +77,19 @@
"curveRegistry": ""
}
},
"1952959480": {
"chainId": "1952959480",
"explorer": "https://testnet-explorer.lumia.org/",
"label": "Lumia Testnet",
"shortName": "Lumia Testnet",
"code": "lumia",
"rpc": "https://testnet-rpc.lumia.org",
"baseCurrencyName": "LUMIA",
"contracts": {
"WETH": "0x1a1aF9C78704D3a0Ab9e031C92E7bd808711A582",
"curveRegistry": ""
}
},
"42161": {
"chainId": "42161",
"explorer": "https://arbiscan.io/",

View File

@@ -262,6 +262,24 @@
"http": "/orion-indexer/"
}
}
},
"1952959480": {
"api": "https://testing.orion.xyz/lumia-testnet",
"services": {
"aggregator": {
"http": "/backend",
"ws": "/v1"
},
"blockchain": {
"http": ""
},
"priceFeed": {
"all": "/price-feed"
},
"indexer": {
"http": "/orion-indexer/"
}
}
}
}
},

View File

@@ -4,6 +4,7 @@ export const developmentChains = [
SupportedChainId.BSC_TESTNET,
SupportedChainId.SEPOLIA,
SupportedChainId.EVENT_HORIZON_TESTNET,
SupportedChainId.LUMIA_TESTNET,
];
export const productionChains = [
SupportedChainId.MAINNET,

View File

@@ -1 +1 @@
export default ['ftm', 'bsc', 'eth', 'polygon', 'okc', 'arb', 'drip', 'opbnb', 'inevm', 'linea', 'avax', 'base'] as const;
export default ['ftm', 'bsc', 'eth', 'polygon', 'okc', 'arb', 'drip', 'opbnb', 'inevm', 'linea', 'avax', 'base', 'lumia'] as const;

View File

@@ -1 +1 @@
export default ['FTM', 'BSC', 'ETH', 'POLYGON', 'OKC', 'ARB', 'OPBNB', 'INEVM', 'LINEA', 'AVAX', 'BASE'] as const;
export default ['FTM', 'BSC', 'ETH', 'POLYGON', 'OKC', 'ARB', 'OPBNB', 'INEVM', 'LINEA', 'AVAX', 'BASE', 'LUMIA'] as const;

View File

@@ -96,6 +96,7 @@ export enum SupportedChainId {
BSC_TESTNET = '97',
SEPOLIA = '11155111',
EVENT_HORIZON_TESTNET = '123420000034',
LUMIA_TESTNET = '1952959480',
// For testing and debug purpose
// BROKEN = '0',