cosmos-explorer/chains
ping 17f2c24607
Merge pull request #478 from encrypt3dw4lrus/qom-testnet
added qom testnet json and png logo
2023-07-19 18:57:08 +08:00
..
mainnet Update echelon.json 2023-07-17 22:04:24 +03:00
testnet added qom testnet json and png logo 2023-07-11 22:36:41 +01:00
README.md add readme for config 2023-06-20 07:53:51 +08:00

Directory Layout

We accept all blockchains which have 10+ independent validators.

Sample of Config

{
    "chain_name": "cosmos",
    "api": [
        {
            "address": "https://cosmos.api.ping.pub", 
            "provider": "Ping"
        }
    ], 
    "rpc": [
        {
            "address": "https://cosmos.api.ping.pub", 
            "provider": "Ping"
        }
    ],
    "sdk_version": "0.42.6",
    "coin_type": "118",
    "min_tx_fee": "800",
    "assets": [{
        "base": "uatom",
        "symbol": "ATOM",
        "exponent": "6",
        "coingecko_id": "cosmos", 
        "logo": "https://dl.airtable.com/.attachments/e54f814bba8c0f9af8a3056020210de0/2d1155fb/cosmos-hub.svg"
    }],
    "addr_prefix": "cosmos",
    "theme_color": "#ce4747",
    "logo": "https://dl.airtable.com/.attachments/e54f814bba8c0f9af8a3056020210de0/2d1155fb/cosmos-hub.svg"
}
  • chain_name the name to identify the chain on ping.pub, would be better to use the same one as regitstry
  • api the rest api endpoint.(make sure that CORS is enabled: Allow-Control-Allow-Origin: *)
  • rpc the rpc endpoint, make sure that the port is added. rpc endpoint is only used for state sync. it's optional.
  • assets Native Assets on blockchain.

Endpoint providers will be listed in the "Popular" tab of the staking.

Test

please add these check points in comments with your PR, and adding your test result by clicking the checkbox of each line

Test Result:
- [ ] Connect wallet, check if address is correct? 
- [ ] Transfer
- [ ] Delegate
- [ ] Redelegate
- [ ] Unbond
- [ ] withdraw Validator's Commission
- [ ] withdraw Rewards

Test is very important for us and our users.