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
This commit is contained in:
Junghyun Colin Kim 2021-01-20 21:22:10 +09:00 committed by GitHub
parent 74a58fee6c
commit 852dd27130
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

@ -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
}

View File

@ -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
}