Skip to content

Commit

Permalink
Add Lumia and Lumia testnet chains
Browse files Browse the repository at this point in the history
  • Loading branch information
hiletmis committed Aug 20, 2024
1 parent 0af7bc0 commit 0db4dd4
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
23 changes: 23 additions & 0 deletions chains/lumia-testnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"alias": "lumia-testnet",
"decimals": 18,
"explorer": {
"api": {
"key": {
"required": false
},
"url": "https://testnet-explorer.lumia.org/api/"
},
"browserUrl": "https://testnet-explorer.lumia.org/"
},
"id": "1952959480",
"name": "Lumia testnet",
"providers": [
{
"alias": "default",
"rpcUrl": "https://testnet-rpc.lumia.org"
}
],
"symbol": "LUMIA",
"testnet": true
}
23 changes: 23 additions & 0 deletions chains/lumia.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"alias": "lumia",
"decimals": 18,
"explorer": {
"api": {
"key": {
"required": false
},
"url": "https://explorer.lumia.org/api/"
},
"browserUrl": "https://explorer.lumia.org/"
},
"id": "994873017",
"name": "Lumia",
"providers": [
{
"alias": "default",
"rpcUrl": "https://mainnet-rpc.lumia.org"
}
],
"symbol": "LUMIA",
"testnet": false
}
26 changes: 26 additions & 0 deletions src/generated/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -897,6 +897,32 @@ export const CHAINS: Chain[] = [
symbol: 'LYX',
testnet: false,
},
{
alias: 'lumia-testnet',
decimals: 18,
explorer: {
api: { key: { required: false }, url: 'https://testnet-explorer.lumia.org/api/' },
browserUrl: 'https://testnet-explorer.lumia.org/',
},
id: '1952959480',
name: 'Lumia testnet',
providers: [{ alias: 'default', rpcUrl: 'https://testnet-rpc.lumia.org' }],
symbol: 'LUMIA',
testnet: true,
},
{
alias: 'lumia',
decimals: 18,
explorer: {
api: { key: { required: false }, url: 'https://explorer.lumia.org/api/' },
browserUrl: 'https://explorer.lumia.org/',
},
id: '994873017',
name: 'Lumia',
providers: [{ alias: 'default', rpcUrl: 'https://mainnet-rpc.lumia.org' }],
symbol: 'LUMIA',
testnet: false,
},
{
alias: 'manta-sepolia-testnet',
decimals: 18,
Expand Down

0 comments on commit 0db4dd4

Please sign in to comment.