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

Commit dedf125

Browse files
authored
Merge pull request #558 from api3dao/main
Initiate release
2 parents b85de2d + 4788205 commit dedf125

6 files changed

Lines changed: 38 additions & 6 deletions

File tree

.changeset/plenty-hats-breathe.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@api3/chains': patch
3+
---
4+
5+
* Add `quicknode` to `ink`
6+
* Update browser and RPC URLs for `sonic` and `sonic-testnet`
7+
* Check `skipProviderCheck` flag to true for `astar-sepolia-testnet`

chains/astar-sepolia-testnet.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"rpcUrl": "https://rpc.startale.com/zkyoto"
1919
}
2020
],
21+
"skipProviderCheck": true,
2122
"symbol": "ETH",
2223
"testnet": true
2324
}

chains/ink.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
{
2929
"alias": "alchemy",
3030
"homepageUrl": "https://alchemy.com"
31+
},
32+
{
33+
"alias": "quicknode",
34+
"homepageUrl": "https://quicknode.com"
3135
}
3236
],
3337
"symbol": "ETH",

chains/sonic-testnet.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
"alias": "sonic-testnet",
33
"decimals": 18,
44
"explorer": {
5-
"browserUrl": "https://blaze.soniclabs.com/"
5+
"api": {
6+
"key": {
7+
"required": true
8+
},
9+
"url": "https://api-testnet.sonicscan.org/api"
10+
},
11+
"browserUrl": "https://testnet.sonicscan.org/"
612
},
713
"id": "57054",
814
"name": "Sonic testnet",

chains/sonic.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22
"alias": "sonic",
33
"decimals": 18,
44
"explorer": {
5-
"browserUrl": "https://explorer.soniclabs.com/"
5+
"api": {
6+
"key": {
7+
"required": true
8+
},
9+
"url": "https://api.sonicscan.org/api"
10+
},
11+
"browserUrl": "https://sonicscan.org/"
612
},
713
"id": "146",
814
"name": "Sonic",
915
"providers": [
1016
{
1117
"alias": "default",
12-
"rpcUrl": "https://rpc.sonic.soniclabs.com"
18+
"rpcUrl": "https://rpc.soniclabs.com"
1319
},
1420
{
1521
"alias": "ankr",

src/generated/chains.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ export const CHAINS: Chain[] = [
102102
name: 'Astar zkEVM testnet',
103103
providers: [{ alias: 'default', rpcUrl: 'https://rpc.startale.com/zkyoto' }],
104104
symbol: 'ETH',
105+
skipProviderCheck: true,
105106
testnet: true,
106107
},
107108
{
@@ -830,6 +831,7 @@ export const CHAINS: Chain[] = [
830831
{ alias: 'public', rpcUrl: 'https://rpc-qnd.inkonchain.com' },
831832
{ alias: 'tenderly', homepageUrl: 'https://tenderly.co/' },
832833
{ alias: 'alchemy', homepageUrl: 'https://alchemy.com' },
834+
{ alias: 'quicknode', homepageUrl: 'https://quicknode.com' },
833835
],
834836
symbol: 'ETH',
835837
testnet: false,
@@ -1636,7 +1638,10 @@ export const CHAINS: Chain[] = [
16361638
{
16371639
alias: 'sonic-testnet',
16381640
decimals: 18,
1639-
explorer: { browserUrl: 'https://blaze.soniclabs.com/' },
1641+
explorer: {
1642+
api: { key: { required: true }, url: 'https://api-testnet.sonicscan.org/api' },
1643+
browserUrl: 'https://testnet.sonicscan.org/',
1644+
},
16401645
id: '57054',
16411646
name: 'Sonic testnet',
16421647
providers: [{ alias: 'default', rpcUrl: 'https://rpc.blaze.soniclabs.com' }],
@@ -1646,11 +1651,14 @@ export const CHAINS: Chain[] = [
16461651
{
16471652
alias: 'sonic',
16481653
decimals: 18,
1649-
explorer: { browserUrl: 'https://explorer.soniclabs.com/' },
1654+
explorer: {
1655+
api: { key: { required: true }, url: 'https://api.sonicscan.org/api' },
1656+
browserUrl: 'https://sonicscan.org/',
1657+
},
16501658
id: '146',
16511659
name: 'Sonic',
16521660
providers: [
1653-
{ alias: 'default', rpcUrl: 'https://rpc.sonic.soniclabs.com' },
1661+
{ alias: 'default', rpcUrl: 'https://rpc.soniclabs.com' },
16541662
{ alias: 'ankr', homepageUrl: 'https://ankr.com' },
16551663
{ alias: 'alchemy', homepageUrl: 'https://alchemy.com' },
16561664
{ alias: 'drpc', homepageUrl: 'https://drpc.com' },

0 commit comments

Comments
 (0)