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

Commit 9a77248

Browse files
authored
Merge pull request #478 from api3dao/main
Initiate release
2 parents a72c766 + 0614727 commit 9a77248

4 files changed

Lines changed: 86 additions & 0 deletions

File tree

.changeset/cool-peas-tan.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+
Adds following chains:
6+
* world
7+
* world-sepolia-testnet

chains/world-sepolia-testnet.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"alias": "world-sepolia-testnet",
3+
"decimals": 18,
4+
"explorer": {
5+
"api": {
6+
"key": {
7+
"required": false
8+
},
9+
"url": "https://worldchain-sepolia.explorer.alchemy.com/api"
10+
},
11+
"browserUrl": "https://worldchain-sepolia.explorer.alchemy.com/"
12+
},
13+
"id": "4801",
14+
"name": "World Chain testnet",
15+
"providers": [
16+
{
17+
"alias": "default",
18+
"rpcUrl": "https://worldchain-sepolia.g.alchemy.com/public"
19+
}
20+
],
21+
"symbol": "ETH",
22+
"testnet": true
23+
}

chains/world.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"alias": "world",
3+
"decimals": 18,
4+
"explorer": {
5+
"api": {
6+
"key": {
7+
"required": true
8+
},
9+
"url": "https://api.worldscan.org/api"
10+
},
11+
"browserUrl": "https://worldscan.org/"
12+
},
13+
"id": "480",
14+
"name": "World Chain",
15+
"providers": [
16+
{
17+
"alias": "default",
18+
"rpcUrl": "https://worldchain-mainnet.g.alchemy.com/public"
19+
},
20+
{
21+
"alias": "tenderly",
22+
"homepageUrl": "https://tenderly.co/"
23+
}
24+
],
25+
"symbol": "ETH",
26+
"testnet": false
27+
}

src/generated/chains.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,6 +1622,35 @@ export const CHAINS: Chain[] = [
16221622
symbol: 'ETH',
16231623
testnet: true,
16241624
},
1625+
{
1626+
alias: 'world-sepolia-testnet',
1627+
decimals: 18,
1628+
explorer: {
1629+
api: { key: { required: false }, url: 'https://worldchain-sepolia.explorer.alchemy.com/api' },
1630+
browserUrl: 'https://worldchain-sepolia.explorer.alchemy.com/',
1631+
},
1632+
id: '4801',
1633+
name: 'World Chain testnet',
1634+
providers: [{ alias: 'default', rpcUrl: 'https://worldchain-sepolia.g.alchemy.com/public' }],
1635+
symbol: 'ETH',
1636+
testnet: true,
1637+
},
1638+
{
1639+
alias: 'world',
1640+
decimals: 18,
1641+
explorer: {
1642+
api: { key: { required: true }, url: 'https://api.worldscan.org/api' },
1643+
browserUrl: 'https://worldscan.org/',
1644+
},
1645+
id: '480',
1646+
name: 'World Chain',
1647+
providers: [
1648+
{ alias: 'default', rpcUrl: 'https://worldchain-mainnet.g.alchemy.com/public' },
1649+
{ alias: 'tenderly', homepageUrl: 'https://tenderly.co/' },
1650+
],
1651+
symbol: 'ETH',
1652+
testnet: false,
1653+
},
16251654
{
16261655
alias: 'x-layer-sepolia-testnet',
16271656
decimals: 18,

0 commit comments

Comments
 (0)