Skip to content

Commit

Permalink
Merge pull request #416 from api3dao/1384-add-new-chains-for-csur-dat…
Browse files Browse the repository at this point in the history
…e-lumia

Add new chains
  • Loading branch information
hiletmis authored Aug 20, 2024
2 parents 0af7bc0 + 62f2a6c commit d0ee58d
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .changeset/young-days-swim.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@api3/chains": minor
---

Add following chains:

- Lumia
- Lumia testnet
23 changes: 23 additions & 0 deletions chains/lumia-sepolia-testnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"alias": "lumia-sepolia-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-sepolia-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 d0ee58d

Please sign in to comment.