Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initiate release #407

Merged
merged 12 commits into from
Aug 8, 2024
5 changes: 5 additions & 0 deletions .changeset/clean-windows-move.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@api3/chains": patch
---

Remove inconsistent RPCs from manta and zircuit chains
5 changes: 5 additions & 0 deletions .changeset/dry-mice-judge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@api3/chains": patch
---

Fix Zircuit RPC URL
5 changes: 5 additions & 0 deletions .changeset/silly-horses-refuse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@api3/chains": minor
---

Add conflux and conflux-testnet chains
31 changes: 31 additions & 0 deletions chains/conflux-testnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"alias": "conflux-testnet",
"decimals": 18,
"explorer": {
"api": {
"key": {
"required": false
},
"url": "https://evmapi-testnet.confluxscan.io/api/"
},
"browserUrl": "https://evmtestnet.confluxscan.io/"
},
"id": "71",
"name": "Conflux eSpace testnet",
"providers": [
{
"alias": "default",
"rpcUrl": "https://evmtestnet.confluxrpc.com/"
},
{
"alias": "public",
"rpcUrl": "https://evmtest.confluxrpc.com/"
},
{
"alias": "backup",
"rpcUrl": "https://evmtestnet.confluxrpc.org/"
}
],
"symbol": "CFX",
"testnet": true
}
31 changes: 31 additions & 0 deletions chains/conflux.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"alias": "conflux",
"decimals": 18,
"explorer": {
"api": {
"key": {
"required": false
},
"url": "https://evmapi.confluxscan.io/api/"
},
"browserUrl": "https://evm.confluxscan.io/"
},
"id": "1030",
"name": "Conflux eSpace",
"providers": [
{
"alias": "default",
"rpcUrl": "https://evm.confluxrpc.com/"
},
{
"alias": "public",
"rpcUrl": "https://evmmain-global.confluxrpc.com/"
},
{
"alias": "backup",
"rpcUrl": "https://evm.confluxrpc.org/"
}
],
"symbol": "CFX",
"testnet": false
}
8 changes: 0 additions & 8 deletions chains/manta.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,12 @@
"providers": [
{
"alias": "default",
"rpcUrl": "https://pacific-rpc.manta.network/http"
},
{
"alias": "public",
"rpcUrl": "https://r1.pacific.manta.systems/http"
},
{
"alias": "nirvanalabs",
"rpcUrl": "https://manta.nirvanalabs.xyz/mantapublic"
},
{
"alias": "tencentcloud",
"rpcUrl": "https://www.tencentcloud-rpc.com/v2/manta/manta-rpc"
},
{
"alias": "drpc",
"homepageUrl": "https://drpc.org"
Expand Down
4 changes: 0 additions & 4 deletions chains/zircuit.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
"alias": "default",
"rpcUrl": "https://zircuit1-mainnet.p2pify.com/"
},
{
"alias": "liquify",
"homepageUrl": "https://zircuit1-mainnet.liquify.com"
},
{
"alias": "drpc",
"homepageUrl": "https://drpc.org"
Expand Down
39 changes: 35 additions & 4 deletions src/generated/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,40 @@ export const CHAINS: Chain[] = [
symbol: 'CANTO',
testnet: false,
},
{
alias: 'conflux-testnet',
decimals: 18,
explorer: {
api: { key: { required: false }, url: 'https://evmapi-testnet.confluxscan.io/api/' },
browserUrl: 'https://evmtestnet.confluxscan.io/',
},
id: '71',
name: 'Conflux eSpace testnet',
providers: [
{ alias: 'default', rpcUrl: 'https://evmtestnet.confluxrpc.com/' },
{ alias: 'public', rpcUrl: 'https://evmtest.confluxrpc.com/' },
{ alias: 'backup', rpcUrl: 'https://evmtestnet.confluxrpc.org/' },
],
symbol: 'CFX',
testnet: true,
},
{
alias: 'conflux',
decimals: 18,
explorer: {
api: { key: { required: false }, url: 'https://evmapi.confluxscan.io/api/' },
browserUrl: 'https://evm.confluxscan.io/',
},
id: '1030',
name: 'Conflux eSpace',
providers: [
{ alias: 'default', rpcUrl: 'https://evm.confluxrpc.com/' },
{ alias: 'public', rpcUrl: 'https://evmmain-global.confluxrpc.com/' },
{ alias: 'backup', rpcUrl: 'https://evm.confluxrpc.org/' },
],
symbol: 'CFX',
testnet: false,
},
{
alias: 'core-testnet',
decimals: 18,
Expand Down Expand Up @@ -886,10 +920,8 @@ export const CHAINS: Chain[] = [
id: '169',
name: 'Manta',
providers: [
{ alias: 'default', rpcUrl: 'https://pacific-rpc.manta.network/http' },
{ alias: 'public', rpcUrl: 'https://r1.pacific.manta.systems/http' },
{ alias: 'default', rpcUrl: 'https://r1.pacific.manta.systems/http' },
{ alias: 'nirvanalabs', rpcUrl: 'https://manta.nirvanalabs.xyz/mantapublic' },
{ alias: 'tencentcloud', rpcUrl: 'https://www.tencentcloud-rpc.com/v2/manta/manta-rpc' },
{ alias: 'drpc', homepageUrl: 'https://drpc.org' },
],
symbol: 'ETH',
Expand Down Expand Up @@ -1556,7 +1588,6 @@ export const CHAINS: Chain[] = [
name: 'Zircuit',
providers: [
{ alias: 'default', rpcUrl: 'https://zircuit1-mainnet.p2pify.com/' },
{ alias: 'liquify', homepageUrl: 'https://zircuit1-mainnet.liquify.com' },
{ alias: 'drpc', homepageUrl: 'https://drpc.org' },
],
symbol: 'ETH',
Expand Down