Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit 1b2c048

Browse files
authored
Merge pull request #547 from api3dao/main
Initiate release
2 parents ae1a942 + a048c13 commit 1b2c048

7 files changed

Lines changed: 64 additions & 10 deletions

File tree

.changeset/beige-dancers-repeat.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
'@api3/chains': patch
3+
---
4+
5+
Update following RPC providers:
6+
7+
* sonic:
8+
* drpc added
9+
10+
* camp-sepolia-testnet:
11+
* default RPC changed to `https://rpc-campnetwork.xyz`
12+
13+
* polygon-zkevm-sepolia-testnet:
14+
* Official RPC set as default RPC

.changeset/lemon-eggs-behave.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@api3/chains': minor
3+
---
4+
5+
Adds following chain:
6+
* hashkey

chains/camp-sepolia-testnet.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"providers": [
1616
{
1717
"alias": "default",
18-
"rpcUrl": "https://rpc.camp-network-testnet.gelato.digital/"
18+
"rpcUrl": "https://rpc-campnetwork.xyz/"
1919
}
2020
],
2121
"symbol": "ETH",

chains/hashkey.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"alias": "hashkey",
3+
"decimals": 18,
4+
"explorer": {
5+
"api": {
6+
"key": {
7+
"required": false
8+
},
9+
"url": "https://explorer.hsk.xyz/api"
10+
},
11+
"browserUrl": "https://explorer.hsk.xyz/"
12+
},
13+
"id": "177",
14+
"name": "HashKey",
15+
"providers": [
16+
{
17+
"alias": "default",
18+
"rpcUrl": "https://mainnet.hsk.xyz"
19+
}
20+
],
21+
"symbol": "HSK",
22+
"testnet": false
23+
}

chains/polygon-zkevm-sepolia-testnet.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@
1515
"providers": [
1616
{
1717
"alias": "default",
18-
"rpcUrl": "https://endpoints.omniatech.io/v1/polygon-zkevm/testnet/public"
19-
},
20-
{
21-
"alias": "official",
2218
"rpcUrl": "https://rpc.cardona.zkevm-rpc.com"
2319
}
2420
],

chains/sonic.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
{
1919
"alias": "alchemy",
2020
"homepageUrl": "https://alchemy.com"
21+
},
22+
{
23+
"alias": "drpc",
24+
"homepageUrl": "https://drpc.com"
2125
}
2226
],
2327
"symbol": "S",

src/generated/chains.ts

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ export const CHAINS: Chain[] = [
456456
},
457457
id: '325000',
458458
name: 'Camp Network testnet',
459-
providers: [{ alias: 'default', rpcUrl: 'https://rpc.camp-network-testnet.gelato.digital/' }],
459+
providers: [{ alias: 'default', rpcUrl: 'https://rpc-campnetwork.xyz/' }],
460460
symbol: 'ETH',
461461
testnet: true,
462462
},
@@ -751,6 +751,19 @@ export const CHAINS: Chain[] = [
751751
symbol: 'HSK',
752752
testnet: true,
753753
},
754+
{
755+
alias: 'hashkey',
756+
decimals: 18,
757+
explorer: {
758+
api: { key: { required: false }, url: 'https://explorer.hsk.xyz/api' },
759+
browserUrl: 'https://explorer.hsk.xyz/',
760+
},
761+
id: '177',
762+
name: 'HashKey',
763+
providers: [{ alias: 'default', rpcUrl: 'https://mainnet.hsk.xyz' }],
764+
symbol: 'HSK',
765+
testnet: false,
766+
},
754767
{
755768
alias: 'immutable-sepolia-testnet',
756769
decimals: 18,
@@ -1440,10 +1453,7 @@ export const CHAINS: Chain[] = [
14401453
},
14411454
id: '2442',
14421455
name: 'Polygon zkEVM testnet',
1443-
providers: [
1444-
{ alias: 'default', rpcUrl: 'https://endpoints.omniatech.io/v1/polygon-zkevm/testnet/public' },
1445-
{ alias: 'official', rpcUrl: 'https://rpc.cardona.zkevm-rpc.com' },
1446-
],
1456+
providers: [{ alias: 'default', rpcUrl: 'https://rpc.cardona.zkevm-rpc.com' }],
14471457
symbol: 'ETH',
14481458
testnet: true,
14491459
},
@@ -1625,6 +1635,7 @@ export const CHAINS: Chain[] = [
16251635
{ alias: 'default', rpcUrl: 'https://rpc.sonic.soniclabs.com' },
16261636
{ alias: 'ankr', homepageUrl: 'https://ankr.com' },
16271637
{ alias: 'alchemy', homepageUrl: 'https://alchemy.com' },
1638+
{ alias: 'drpc', homepageUrl: 'https://drpc.com' },
16281639
],
16291640
symbol: 'S',
16301641
testnet: false,

0 commit comments

Comments
 (0)