Skip to content

Commit dac191c

Browse files
authored
Merge pull request #695 from api3dao/update-providers
Update RPC provider configurations
2 parents e96e0ac + 76f1b97 commit dac191c

6 files changed

Lines changed: 32 additions & 5 deletions

File tree

.changeset/nine-ideas-study.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
'@api3/contracts': patch
3+
---
4+
5+
Update RPC provider configurations:
6+
7+
- Update default provider for blast-sepolia-testnet
8+
- Add nodies for blast-sepolia-testnet
9+
- Replace nirvanalabs with dwellir for manta
10+
- Add dwellir for ronin and world

data/chains/blast-sepolia-testnet.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77
"providers": [
88
{
99
"alias": "default",
10-
"rpcUrl": "https://rpc.ankr.com/blast_testnet_sepolia"
10+
"rpcUrl": "https://sepolia.blast.io"
11+
},
12+
{
13+
"alias": "nodies",
14+
"rpcUrl": "https://blast-testnet-public.nodies.app"
1115
}
1216
],
1317
"symbol": "ETH",

data/chains/manta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"rpcUrl": "https://manta-pacific-gascap.calderachain.xyz/http"
1515
},
1616
{
17-
"alias": "nirvanalabs",
18-
"rpcUrl": "https://manta.nirvanalabs.xyz/mantapublic"
17+
"alias": "dwellir",
18+
"homepageUrl": "https://dwellir.com"
1919
}
2020
],
2121
"symbol": "ETH",

data/chains/ronin.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
{
1717
"alias": "tenderly",
1818
"homepageUrl": "https://tenderly.co/"
19+
},
20+
{
21+
"alias": "dwellir",
22+
"homepageUrl": "https://dwellir.com"
1923
}
2024
],
2125
"symbol": "RON",

data/chains/world.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
{
1717
"alias": "tenderly",
1818
"homepageUrl": "https://tenderly.co/"
19+
},
20+
{
21+
"alias": "dwellir",
22+
"homepageUrl": "https://dwellir.com"
1923
}
2024
],
2125
"symbol": "ETH",

src/generated/chains.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,10 @@ export const CHAINS: Chain[] = [
180180
decimals: 18,
181181
id: '168587773',
182182
name: 'Blast testnet',
183-
providers: [{ alias: 'default', rpcUrl: 'https://rpc.ankr.com/blast_testnet_sepolia' }],
183+
providers: [
184+
{ alias: 'default', rpcUrl: 'https://sepolia.blast.io' },
185+
{ alias: 'nodies', rpcUrl: 'https://blast-testnet-public.nodies.app' },
186+
],
184187
symbol: 'ETH',
185188
testnet: true,
186189
verificationApi: { type: 'etherscan' },
@@ -513,7 +516,7 @@ export const CHAINS: Chain[] = [
513516
providers: [
514517
{ alias: 'default', rpcUrl: 'https://pacific-rpc.manta.network/http' },
515518
{ alias: 'public', rpcUrl: 'https://manta-pacific-gascap.calderachain.xyz/http' },
516-
{ alias: 'nirvanalabs', rpcUrl: 'https://manta.nirvanalabs.xyz/mantapublic' },
519+
{ alias: 'dwellir', homepageUrl: 'https://dwellir.com' },
517520
],
518521
symbol: 'ETH',
519522
testnet: false,
@@ -697,6 +700,7 @@ export const CHAINS: Chain[] = [
697700
{ alias: 'default', rpcUrl: 'https://api.roninchain.com/rpc/' },
698701
{ alias: 'alchemy', homepageUrl: 'https://alchemy.com' },
699702
{ alias: 'tenderly', homepageUrl: 'https://tenderly.co/' },
703+
{ alias: 'dwellir', homepageUrl: 'https://dwellir.com' },
700704
],
701705
symbol: 'RON',
702706
testnet: false,
@@ -922,6 +926,7 @@ export const CHAINS: Chain[] = [
922926
{ alias: 'default', rpcUrl: 'https://worldchain-mainnet.g.alchemy.com/public' },
923927
{ alias: 'quicknode', homepageUrl: 'https://quicknode.com' },
924928
{ alias: 'tenderly', homepageUrl: 'https://tenderly.co/' },
929+
{ alias: 'dwellir', homepageUrl: 'https://dwellir.com' },
925930
],
926931
symbol: 'ETH',
927932
testnet: false,

0 commit comments

Comments
 (0)