Skip to content

Commit

Permalink
Merge pull request #417 from api3dao/main
Browse files Browse the repository at this point in the history
Add new chains for CSUR-2024-08-20
  • Loading branch information
hiletmis authored Aug 20, 2024
2 parents 6e38e69 + ba65061 commit ef6ab6f
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .changeset/fluffy-buttons-cough.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@api3/chains": major
---

Update URLs and chain id for `bob-sepolia-testnet`
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
8 changes: 4 additions & 4 deletions chains/bob-sepolia-testnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
"key": {
"required": false
},
"url": "https://testnet-explorer.gobob.xyz/api"
"url": "https://bob-sepolia.explorer.gobob.xyz/api"
},
"browserUrl": "https://testnet-explorer.gobob.xyz/"
"browserUrl": "https://bob-sepolia.explorer.gobob.xyz/"
},
"id": "111",
"id": "808813",
"name": "BOB testnet",
"providers": [
{
"alias": "default",
"rpcUrl": "https://testnet.rpc.gobob.xyz/"
"rpcUrl": "https://bob-sepolia.rpc.gobob.xyz/"
}
],
"symbol": "ETH",
Expand Down
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
}
34 changes: 30 additions & 4 deletions src/generated/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,12 +300,12 @@ export const CHAINS: Chain[] = [
alias: 'bob-sepolia-testnet',
decimals: 18,
explorer: {
api: { key: { required: false }, url: 'https://testnet-explorer.gobob.xyz/api' },
browserUrl: 'https://testnet-explorer.gobob.xyz/',
api: { key: { required: false }, url: 'https://bob-sepolia.explorer.gobob.xyz/api' },
browserUrl: 'https://bob-sepolia.explorer.gobob.xyz/',
},
id: '111',
id: '808813',
name: 'BOB testnet',
providers: [{ alias: 'default', rpcUrl: 'https://testnet.rpc.gobob.xyz/' }],
providers: [{ alias: 'default', rpcUrl: 'https://bob-sepolia.rpc.gobob.xyz/' }],
symbol: 'ETH',
testnet: true,
},
Expand Down 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 ef6ab6f

Please sign in to comment.