Skip to content

Commit 67f536e

Browse files
authored
Merge pull request #788 from api3dao/main
Initiate release
2 parents 28577ba + b7b4768 commit 67f536e

9 files changed

Lines changed: 1221 additions & 1166 deletions

File tree

.changeset/spicy-donuts-jump.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
'@api3/contracts': patch
3+
---
4+
5+
Update RPC provider configurations:
6+
7+
- Make publicnode default and keep previous default as public for base
8+
- Remove icecreamswap from core
9+
- Remove conduit from katana
10+
- Remove unitedbloc from moonbeam
11+
- Remove unresponsive default provider and promote public to default for sei-testnet

data/chains/base.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"providers": [
88
{
99
"alias": "default",
10-
"rpcUrl": "https://mainnet.base.org"
10+
"rpcUrl": "https://base-rpc.publicnode.com"
1111
},
1212
{
13-
"alias": "publicnode",
14-
"rpcUrl": "https://base-rpc.publicnode.com"
13+
"alias": "public",
14+
"rpcUrl": "https://mainnet.base.org"
1515
},
1616
{
1717
"alias": "quicknode",

data/chains/core.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
{
1313
"alias": "public",
1414
"rpcUrl": "https://rpcar.coredao.org/"
15-
},
16-
{
17-
"alias": "icecreamswap",
18-
"rpcUrl": "https://rpc-core.icecreamswap.com/"
1915
}
2016
],
2117
"symbol": "CORE",

data/chains/katana.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
"alias": "default",
1010
"rpcUrl": "https://rpc.katana.network"
1111
},
12-
{
13-
"alias": "conduit",
14-
"homepageUrl": "https://conduit.xyz"
15-
},
1612
{
1713
"alias": "tenderly",
1814
"homepageUrl": "https://tenderly.co/"

data/chains/moonbeam.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313
"alias": "public",
1414
"rpcUrl": "https://rpc.api.moonbeam.network"
1515
},
16-
{
17-
"alias": "unitedbloc",
18-
"rpcUrl": "https://moonbeam.unitedbloc.com"
19-
},
2016
{
2117
"alias": "reblok",
2218
"homepageUrl": "https://reblok.io"

data/chains/sei-testnet.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
"providers": [
88
{
99
"alias": "default",
10-
"rpcUrl": "https://sei-testnet-public.nodies.app"
11-
},
12-
{
13-
"alias": "public",
1410
"rpcUrl": "https://evm-rpc-testnet.sei-apis.com"
1511
}
1612
],

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,21 +95,21 @@
9595
"hardhat-deploy": "^1.0.4",
9696
"hardhat-gas-reporter": "^2.3.0",
9797
"keycard-hardhat-provider": "^0.1.4",
98-
"jest": "^30.3.0",
99-
"prettier": "^3.8.3",
98+
"jest": "^30.4.2",
99+
"prettier": "^3.8.4",
100100
"prettier-plugin-solidity": "^2.3.1",
101101
"solhint": "^5.2.0",
102102
"solidity-coverage": "^0.8.17",
103-
"ts-jest": "^29.4.9",
103+
"ts-jest": "^29.4.11",
104104
"ts-node": "^10.9.2",
105105
"typechain": "^8.3.2",
106106
"typescript": "^5.9.3"
107107
},
108108
"dependencies": {
109-
"ethers": "^6.16.0",
110-
"viem": "^2.48.1",
111-
"yargs": "^17.7.2",
112-
"zod": "^4.3.6"
109+
"ethers": "^6.17.0",
110+
"viem": "^2.52.2",
111+
"yargs": "^17.7.3",
112+
"zod": "^4.4.3"
113113
},
114114
"packageManager": "pnpm@10.28.0"
115115
}

pnpm-lock.yaml

Lines changed: 1197 additions & 1131 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/generated/chains.ts

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ export const CHAINS: Chain[] = [
118118
id: '8453',
119119
name: 'Base',
120120
providers: [
121-
{ alias: 'default', rpcUrl: 'https://mainnet.base.org' },
122-
{ alias: 'publicnode', rpcUrl: 'https://base-rpc.publicnode.com' },
121+
{ alias: 'default', rpcUrl: 'https://base-rpc.publicnode.com' },
122+
{ alias: 'public', rpcUrl: 'https://mainnet.base.org' },
123123
{ alias: 'quicknode', homepageUrl: 'https://quicknode.com' },
124124
{ alias: 'reblok', homepageUrl: 'https://reblok.io' },
125125
{ alias: 'blockpi', homepageUrl: 'https://blockpi.io' },
@@ -203,7 +203,6 @@ export const CHAINS: Chain[] = [
203203
providers: [
204204
{ alias: 'default', rpcUrl: 'https://rpc.coredao.org/' },
205205
{ alias: 'public', rpcUrl: 'https://rpcar.coredao.org/' },
206-
{ alias: 'icecreamswap', rpcUrl: 'https://rpc-core.icecreamswap.com/' },
207206
],
208207
symbol: 'CORE',
209208
testnet: false,
@@ -364,7 +363,6 @@ export const CHAINS: Chain[] = [
364363
name: 'Katana',
365364
providers: [
366365
{ alias: 'default', rpcUrl: 'https://rpc.katana.network' },
367-
{ alias: 'conduit', homepageUrl: 'https://conduit.xyz' },
368366
{ alias: 'tenderly', homepageUrl: 'https://tenderly.co/' },
369367
{ alias: 'quicknode', homepageUrl: 'https://quicknode.com' },
370368
],
@@ -517,7 +515,6 @@ export const CHAINS: Chain[] = [
517515
providers: [
518516
{ alias: 'default', rpcUrl: 'https://moonbeam-rpc.publicnode.com' },
519517
{ alias: 'public', rpcUrl: 'https://rpc.api.moonbeam.network' },
520-
{ alias: 'unitedbloc', rpcUrl: 'https://moonbeam.unitedbloc.com' },
521518
{ alias: 'reblok', homepageUrl: 'https://reblok.io' },
522519
],
523520
symbol: 'GLMR',
@@ -648,10 +645,7 @@ export const CHAINS: Chain[] = [
648645
decimals: 18,
649646
id: '1328',
650647
name: 'Sei testnet',
651-
providers: [
652-
{ alias: 'default', rpcUrl: 'https://sei-testnet-public.nodies.app' },
653-
{ alias: 'public', rpcUrl: 'https://evm-rpc-testnet.sei-apis.com' },
654-
],
648+
providers: [{ alias: 'default', rpcUrl: 'https://evm-rpc-testnet.sei-apis.com' }],
655649
symbol: 'SEI',
656650
testnet: true,
657651
verificationApi: { type: 'etherscan' },

0 commit comments

Comments
 (0)