Skip to content

Commit

Permalink
Merge branch 'ethereum-lists:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
paouvrard authored Sep 3, 2024
2 parents 68961d7 + b78a084 commit 45df9ea
Show file tree
Hide file tree
Showing 1,224 changed files with 18,340 additions and 567 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/action_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Github-Action linter
on: [pull_request]
jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1
2 changes: 1 addition & 1 deletion .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
else
echo "Trying to download the image..."
TARGET_FILE=icon
curl -Lo icon "https://cloudflare-ipfs.com/ipfs/$IPFS_HASH" 2>/dev/null
curl -Lo icon "https://dweb.link/ipfs/$IPFS_HASH" 2>/dev/null
fi
METADATA=$(exiftool $TARGET_FILE -json)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run prettier
name: Run prettier check

on:
push:
Expand Down
25 changes: 12 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ There are also aggregated json files with all chains automatically assembled:
The only way to get a chain reassigned is when the old chain gets deprecated. This can e.g. be used for testnets that are short-lived. But then you will get the redFlag "reusedChaiID" that should be displayed in clients to warn them about the dangers here.

## Getting your PR merged
### before PR is submited
### before PR is submitted

Before submitting a PR, please verify that checks pass with:

Expand All @@ -104,6 +104,13 @@ BUILD SUCCESSFUL in 7s
9 actionable tasks: 9 executed
```

Also please run the prettier to format your json according to the style [defined here ](https://github.com/ethereum-lists/chains/blob/master/.prettierrc.json)
e.g. run

```
npx prettier --write _data/*/*.json
```

### Once PR is submitted

* Make sure CI is green. There will likely be no review when the CI is red.
Expand All @@ -130,22 +137,14 @@ BUILD SUCCESSFUL in 7s
### Listing sites
* [chainid.network](https://chainid.network) / [chainlist.wtf](https://chainlist.wtf)
* [chainlist.org](https://chainlist.org)
* [networks.vercel.app](https://networks.vercel.app)
* [Chainlink docs](https://docs.chain.link/)
* [dRPC Chainlist - Load-balanced public nodes](https://drpc.org/chainlist)
* [eth-chains](https://github.com/taylorjdawson/eth-chains)
* [EVM-BOX](https://github.com/izayl/evm-box)
* [chaindirectory.xyz](https://www.chaindirectory.xyz)
* [chain-list.org](https://chain-list.org)
* [chainlist.network](https://chainlist.network/)
* [evmchain.info](https://evmchain.info)
* [evmchainlist.org](https://evmchainlist.org)
* [evmchainlist.com](https://evmchainlist.com)
* [thechainlist.io](https://thechainlist.io)
* [chainlist.info](https://chainlist.info)
* [chainmap.io](https://chainmap.io)
* [chainlist.in](https://www.chainlist.in)
* [chainz.me](https://chainz.me)
* [Chainlink docs](https://docs.chain.link/)
* [networks.vercel.app](https://networks.vercel.app)
* [Wagmi compatible chain configurations](https://spenhouet.com/chains)
* [evmchain.info](https://evmchain.info)

### Other
* [FaucETH](https://github.com/komputing/FaucETH)
Expand Down
8 changes: 5 additions & 3 deletions _data/chains/eip155-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}",
"https://api.mycryptoapi.com/eth",
"https://cloudflare-eth.com",
"https://ethereum.publicnode.com",
"wss://ethereum.publicnode.com",
"https://ethereum-rpc.publicnode.com",
"wss://ethereum-rpc.publicnode.com",
"https://mainnet.gateway.tenderly.co",
"wss://mainnet.gateway.tenderly.co",
"https://rpc.blocknative.com/boost",
Expand All @@ -17,7 +17,9 @@
"https://rpc.mevblocker.io",
"https://rpc.mevblocker.io/fast",
"https://rpc.mevblocker.io/noreverts",
"https://rpc.mevblocker.io/fullprivacy"
"https://rpc.mevblocker.io/fullprivacy",
"https://eth.drpc.org",
"wss://eth.drpc.org"
],
"features": [{ "name": "EIP155" }, { "name": "EIP1559" }],
"faucets": [],
Expand Down
8 changes: 5 additions & 3 deletions _data/chains/eip155-10.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
"chain": "ETH",
"rpc": [
"https://mainnet.optimism.io",
"https://optimism.publicnode.com",
"wss://optimism.publicnode.com",
"https://optimism-rpc.publicnode.com",
"wss://optimism-rpc.publicnode.com",
"https://optimism.gateway.tenderly.co",
"wss://optimism.gateway.tenderly.co"
"wss://optimism.gateway.tenderly.co",
"https://optimism.drpc.org",
"wss://optimism.drpc.org"
],
"faucets": [],
"nativeCurrency": {
Expand Down
4 changes: 2 additions & 2 deletions _data/chains/eip155-100.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"https://web3endpoints.com/gnosischain-mainnet",
"https://gnosis.oat.farm",
"wss://rpc.gnosischain.com/wss",
"https://gnosis.publicnode.com",
"wss://gnosis.publicnode.com"
"https://gnosis-rpc.publicnode.com",
"wss://gnosis-rpc.publicnode.com"
],
"faucets": [
"https://gnosisfaucet.com",
Expand Down
25 changes: 25 additions & 0 deletions _data/chains/eip155-100000000.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "Ethos",
"chain": "ETHOS",
"rpc": ["https://rpc.ethos.cool"],
"faucets": ["https://faucet.ethos.cool"],
"nativeCurrency": {
"name": "ETHOS",
"symbol": "ETHOS",
"decimals": 18
},
"features": [{ "name": "EIP155" }, { "name": "EIP1559" }],
"infoURL": "https://ethos.cool",
"shortName": "ETHOS",
"chainId": 100000000,
"networkId": 100000000,
"icon": "ethos",
"explorers": [
{
"name": "ethos scan",
"url": "https://scan.ethos.cool",
"icon": "ethos",
"standard": "EIP3091"
}
]
}
2 changes: 1 addition & 1 deletion _data/chains/eip155-100009.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "VeChain",
"chain": "VeChain",
"rpc": [],
"rpc": ["https://rpc-mainnet.vechain.energy"],
"faucets": [],
"nativeCurrency": {
"name": "VeChain",
Expand Down
2 changes: 1 addition & 1 deletion _data/chains/eip155-100010.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "VeChain Testnet",
"chain": "VeChain",
"rpc": [],
"rpc": ["https://rpc-testnet.vechain.energy"],
"faucets": ["https://faucet.vecha.in"],
"nativeCurrency": {
"name": "VeChain",
Expand Down
19 changes: 19 additions & 0 deletions _data/chains/eip155-100011.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "QuarkChain L2 Mainnet",
"chain": "QuarkChain",
"rpc": ["https://mainnet-l2-ethapi.quarkchain.io"],
"faucets": [],
"nativeCurrency": {
"name": "QKC",
"symbol": "QKC",
"decimals": 18
},
"infoURL": "https://www.quarkchain.io",
"shortName": "qkc-l2",
"chainId": 100011,
"networkId": 100011,
"parent": {
"type": "L2",
"chain": "eip155-100000"
}
}
23 changes: 14 additions & 9 deletions _data/chains/eip155-1001.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
{
"name": "Klaytn Testnet Baobab",
"chain": "KLAY",
"rpc": ["https://api.baobab.klaytn.net:8651"],
"faucets": ["https://baobab.wallet.klaytn.com/access?next=faucet"],
"name": "Kaia Testnet Kairos",
"chain": "KAIA",
"rpc": ["https://public-en.kairos.node.kaia.io"],
"faucets": ["https://faucet.kaia.io"],
"nativeCurrency": {
"name": "KLAY",
"name": "KAIA",
"symbol": "KLAY",
"decimals": 18
},
"infoURL": "https://www.klaytn.com/",
"shortName": "Baobab",
"infoURL": "https://kaia.io/",
"shortName": "kaia-kairos",
"chainId": 1001,
"networkId": 1001,
"slip44": 1,
"explorers": [
{
"name": "klaytnscope",
"url": "https://scope.klaytn.com",
"name": "Klaytnscope",
"url": "https://baobab.klaytnscope.com",
"standard": "EIP3091"
},
{
"name": "Klaytnfinder",
"url": "https://baobab.klaytnfinder.io",
"standard": "EIP3091"
}
]
Expand Down
3 changes: 2 additions & 1 deletion _data/chains/eip155-10081.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"chain": "JOCT",
"rpc": [
"https://rpc-1.testnet.japanopenchain.org:8545",
"https://rpc-2.testnet.japanopenchain.org:8545"
"https://rpc-2.testnet.japanopenchain.org:8545",
"https://rpc-3.testnet.japanopenchain.org"
],
"faucets": [],
"nativeCurrency": {
Expand Down
24 changes: 24 additions & 0 deletions _data/chains/eip155-1009.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "Jumbochain Mainnet",
"chain": "Jumbo",
"rpc": ["https://rpcpriv.jumbochain.org"],
"faucets": [],
"nativeCurrency": {
"name": "JNFTC",
"symbol": "JNFTC",
"decimals": 18
},
"features": [{ "name": "EIP155" }],
"infoURL": "https://jumbochain.org",
"shortName": "Jumboscan",
"chainId": 1009,
"networkId": 1009,
"slip44": 1,
"explorers": [
{
"name": "Jumboscan",
"url": "https://jumboscan.jumbochain.org",
"standard": "EIP3091"
}
]
}
28 changes: 28 additions & 0 deletions _data/chains/eip155-10096.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "MetaNova Verse",
"chain": "MNV",
"rpc": ["https://web3.metanovaverse.com"],
"faucets": [],
"nativeCurrency": {
"name": "MNV",
"symbol": "MNV",
"decimals": 18
},
"features": [],
"infoURL": "https://metanovaverse.com/",
"shortName": "mnv",
"chainId": 10096,
"networkId": 10096,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.metanovaverse.com",
"standard": "EIP3091"
},
{
"name": "Cosmos Explorer (Ping)",
"url": "https://ping.metanovaverse.com/metanovaverse",
"standard": "none"
}
]
}
26 changes: 13 additions & 13 deletions _data/chains/eip155-101010.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "Soverun Testnet",
"chain": "SVRN",
"icon": "soverunTestnet",
"rpc": ["https://testnet-rpc.soverun.com"],
"faucets": ["https://faucet.soverun.com"],
"name": "Global Trust Network",
"chain": "GTN",
"icon": "gtn",
"rpc": ["https://gtn.stabilityprotocol.com"],
"faucets": [],
"nativeCurrency": {
"name": "Soverun",
"symbol": "SVRN",
"name": "FREE",
"symbol": "FREE",
"decimals": 18
},
"infoURL": "https://soverun.com",
"shortName": "SVRNt",
"infoURL": "https://stabilityprotocol.com",
"shortName": "stabilityprotocol",
"chainId": 101010,
"networkId": 101010,
"slip44": 1,
"explorers": [
{
"name": "Soverun",
"url": "https://testnet.soverun.com",
"name": "blockscout",
"url": "https://stability.blockscout.com",
"standard": "EIP3091"
}
]
],
"redFlags": ["reusedChainId"]
}
31 changes: 31 additions & 0 deletions _data/chains/eip155-1011.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "Rebus Mainnet",
"title": "Rebuschain Mainnet",
"chain": "REBUS",
"rpc": ["https://apievm.rebuschain.com/rpc"],
"faucets": [],
"nativeCurrency": {
"name": "Rebus",
"symbol": "REBUS",
"decimals": 18
},
"infoURL": "https://www.rebuschain.com",
"shortName": "rebus",
"chainId": 1011,
"networkId": 1011,
"icon": "rebus",
"explorers": [
{
"name": "Rebus EVM Explorer (Blockscout)",
"url": "https://evm.rebuschain.com",
"icon": "rebus",
"standard": "none"
},
{
"name": "Rebus Cosmos Explorer (ping.pub)",
"url": "https://cosmos.rebuschain.com",
"icon": "rebus",
"standard": "none"
}
]
}
6 changes: 4 additions & 2 deletions _data/chains/eip155-10200.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
"https://rpc.chiadochain.net",
"https://rpc.chiado.gnosis.gateway.fm",
"wss://rpc.chiadochain.net/wss",
"https://gnosis-chiado.publicnode.com",
"wss://gnosis-chiado.publicnode.com"
"https://gnosis-chiado-rpc.publicnode.com",
"wss://gnosis-chiado-rpc.publicnode.com",
"https://gnosis-chiado.drpc.org",
"wss://gnosis-chiado.drpc.org"
],
"faucets": ["https://gnosisfaucet.com"],
"nativeCurrency": {
Expand Down
Loading

0 comments on commit 45df9ea

Please sign in to comment.