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

Commit 8b19e5c

Browse files
authored
Merge pull request #585 from api3dao/csur-2025-02-13
Csur 2025-02-13
2 parents 1e07ba0 + 007abee commit 8b19e5c

4 files changed

Lines changed: 73 additions & 0 deletions

File tree

.changeset/funny-pears-smoke.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@api3/chains': minor
3+
---
4+
5+
Add following chains:
6+
- ronin
7+
- ronin-testnet

chains/ronin-testnet.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"alias": "ronin-testnet",
3+
"decimals": 18,
4+
"explorer": {
5+
"browserUrl": "https://saigon-app.roninchain.com/"
6+
},
7+
"id": "2021",
8+
"name": "Ronin testnet",
9+
"providers": [
10+
{
11+
"alias": "default",
12+
"rpcUrl": "https://saigon-testnet.roninchain.com/rpc"
13+
}
14+
],
15+
"symbol": "RON",
16+
"testnet": true
17+
}

chains/ronin.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"alias": "ronin",
3+
"decimals": 18,
4+
"explorer": {
5+
"browserUrl": "https://app.roninchain.com/"
6+
},
7+
"id": "2020",
8+
"name": "Ronin",
9+
"providers": [
10+
{
11+
"alias": "default",
12+
"rpcUrl": "https://api.roninchain.com/rpc/"
13+
},
14+
{
15+
"alias": "drpc",
16+
"homepageUrl": "https://drpc.org"
17+
},
18+
{
19+
"alias": "alchemy",
20+
"homepageUrl": "https://alchemy.com"
21+
}
22+
],
23+
"symbol": "RON",
24+
"testnet": false
25+
}

src/generated/chains.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1554,6 +1554,30 @@ export const CHAINS: Chain[] = [
15541554
symbol: 'ETH',
15551555
testnet: false,
15561556
},
1557+
{
1558+
alias: 'ronin-testnet',
1559+
decimals: 18,
1560+
explorer: { browserUrl: 'https://saigon-app.roninchain.com/' },
1561+
id: '2021',
1562+
name: 'Ronin testnet',
1563+
providers: [{ alias: 'default', rpcUrl: 'https://saigon-testnet.roninchain.com/rpc' }],
1564+
symbol: 'RON',
1565+
testnet: true,
1566+
},
1567+
{
1568+
alias: 'ronin',
1569+
decimals: 18,
1570+
explorer: { browserUrl: 'https://app.roninchain.com/' },
1571+
id: '2020',
1572+
name: 'Ronin',
1573+
providers: [
1574+
{ alias: 'default', rpcUrl: 'https://api.roninchain.com/rpc/' },
1575+
{ alias: 'drpc', homepageUrl: 'https://drpc.org' },
1576+
{ alias: 'alchemy', homepageUrl: 'https://alchemy.com' },
1577+
],
1578+
symbol: 'RON',
1579+
testnet: false,
1580+
},
15571581
{
15581582
alias: 'rsk-testnet',
15591583
decimals: 18,

0 commit comments

Comments
 (0)