From 852dd27130c228bd9f46730d9d5182e8d59156fc Mon Sep 17 00:00:00 2001 From: Junghyun Colin Kim Date: Wed, 20 Jan 2021 21:22:10 +0900 Subject: [PATCH] Add ChainID for Klaytn (#151) * Add ChainID for Klaytn Klaytn is an enterprise-grade, service-centric blockchain platform developed by Ground X, the blockchain subsidiary of Korea's largest mobile platform Kakao. Klaytn uses two chain IDs: - 8217 for Klaytn Mainnet Cypress - 1001 for Klaytn Testnet Baobab * Fix duplicated shortName --- _data/chains/eip155-1001.json | 20 ++++++++++++++++++++ _data/chains/eip155-8217.json | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 _data/chains/eip155-1001.json create mode 100644 _data/chains/eip155-8217.json diff --git a/_data/chains/eip155-1001.json b/_data/chains/eip155-1001.json new file mode 100644 index 00000000..da0f663b --- /dev/null +++ b/_data/chains/eip155-1001.json @@ -0,0 +1,20 @@ +{ + "name": "Klaytn Testnet Baobab", + "chain": "KLAY", + "network": "baobab", + "rpc": [ + "https://node-api.klaytnapi.com/v1/klaytn" + ], + "faucets": [ + "https://baobab.wallet.klaytn.com/access?next=faucet" + ], + "nativeCurrency": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "infoURL": "https://www.klaytn.com/", + "shortName": "Baobab", + "chainId": 1001, + "networkId": 1001 +} diff --git a/_data/chains/eip155-8217.json b/_data/chains/eip155-8217.json new file mode 100644 index 00000000..bea84c46 --- /dev/null +++ b/_data/chains/eip155-8217.json @@ -0,0 +1,19 @@ +{ + "name": "Klaytn Mainnet Cypress", + "chain": "KLAY", + "network": "cypress", + "rpc": [ + "https://node-api.klaytnapi.com/v1/klaytn" + ], + "faucets": [], + "nativeCurrency": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "infoURL": "https://www.klaytn.com/", + "shortName": "Cypress", + "chainId": 8217, + "networkId": 8217, + "slip44": 8217 +}