add chain configs for pulsechain main and test net (#410)

* add chain configs for pulsechain main and test net

* added rpc prefix

* moved 5555 -> 940 and updated shortname
This commit is contained in:
3commascapital 2021-09-29 02:52:08 -05:00 committed by GitHub
parent db0d11f44c
commit a6e1bf1ab5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{
"name": "PulseChain Mainnet",
"shortName": "pls",
"chain": "PLS",
"network": "mainnet",
"chainId": 369,
"networkId": 369,
"infoURL": "https://pulsechain.com/",
"rpc": [
"https://rpc.mainnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}",
"wss://rpc.mainnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "Pulse",
"symbol": "PLS",
"decimals": 18
}
}

View File

@ -0,0 +1,19 @@
{
"name": "PulseChain Testnet",
"shortName": "tpls",
"chain": "tPLS",
"network": "testnet",
"chainId": 940,
"networkId": 940,
"infoURL": "https://pulsechain.com/",
"rpc": [
"https://rpc.testnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}",
"wss://rpc.testnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "Test Pulse",
"symbol": "tPLS",
"decimals": 18
}
}