Skip to content

roonchain-labs/chainlist

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2,140 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chainlist

Add a chain

Submit a PR that adds a new file to the constants/additionalChainRegistry folder. The new file should be named chainid-{chainid_number}.js and the contents should follow this structure:

{
  "name": "Ethereum Mainnet",
  "chain": "ETH",
  "rpc": [
    "https://eth.llamarpc.com",
  ],
  "faucets": [],
  "nativeCurrency": {
    "name": "Ether",
    "symbol": "ETH",
    "decimals": 18
  },
  "features": [{ "name": "EIP155" }, { "name": "EIP1559" }],
  "infoURL": "https://ethereum.org",
  "shortName": "eth",
  "chainId": 1,
  "networkId": 1,
  "icon": "ethereum",
  "explorers": [{
    "name": "etherscan",
    "url": "https://etherscan.io",
    "icon": "etherscan",
    "standard": "EIP3091"
  }]
}

Add an RPC to a chain that is already listed

If you wish to add your RPC, please submit a PR modifying constants/extraRpcs.js to add your RPC to the given chains.

API

The following API returns all the data in our website, including chain data along with all of their RPCs:

https://chainlist.org/rpcs.json

About

Repository for submitting and maintaining RoonChain mainnet metadata to Chainlist, including chain ID, RPC endpoints, native currency parameters, explorer references, and EVM compatibility details, with an emphasis on accuracy, reproducibility, and long-term network interoperability.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 99.2%
  • Other 0.8%