-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Kyve Korellia testnet * Adjust codebase * Fix seed * Fix denom * Add ECO Stake APIs * Update name casing * Fix asset
- Loading branch information
Showing
3 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"$schema": "../../assetlist.schema.json", | ||
"chain_name": "korellia", | ||
"assets": [ | ||
{ | ||
"description": "The native staking and governance token of the Korellia testnet version of KYVE.", | ||
"denom_units": [ | ||
{ | ||
"denom": "tkyve", | ||
"exponent": 0 | ||
}, | ||
{ | ||
"denom": "kyve", | ||
"exponent": 9 | ||
} | ||
], | ||
"base": "tkyve", | ||
"name": "KYVE", | ||
"display": "kyve", | ||
"symbol": "KYVE", | ||
"logo_URIs": { | ||
"svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/korellia/images/kyve.svg" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"$schema": "../../chain.schema.json", | ||
"chain_name": "korellia", | ||
"chain_id": "korellia", | ||
"pretty_name": "KYVE Korellia", | ||
"status": "live", | ||
"network_type": "testnet", | ||
"bech32_prefix": "kyve", | ||
"genesis": { | ||
"genesis_url": "https://github.com/KYVENetwork/chain/releases/download/v0.0.1/genesis.json" | ||
}, | ||
"daemon_name": "chaind", | ||
"node_home": "$HOME/.kyve", | ||
"key_algos": [ | ||
"secp256k1" | ||
], | ||
"slip44": 118, | ||
"fees": { | ||
"fee_tokens": [ | ||
{ | ||
"denom": "tkyve", | ||
"fixed_min_gas_price": 0 | ||
} | ||
] | ||
}, | ||
"codebase": { | ||
"git_repo": "https://github.com/KYVENetwork/chain", | ||
"recommended_version": "v0.6.3", | ||
"compatible_versions": [ | ||
"v0.6.3" | ||
], | ||
"binaries": { | ||
"linux/amd64": "https://github.com/KYVENetwork/chain/releases/download/v0.6.3/chain_linux_amd64.tar.gz" | ||
} | ||
}, | ||
"peers": { | ||
"seeds": [ | ||
{ | ||
"id": "02dd2c26948ea758a25d3dbc91744f8897681652", | ||
"address": "3.73.27.185:26656" | ||
} | ||
], | ||
"persistent_peers": [ | ||
{ | ||
"id": "70556c82352b9919fb6f339b9da0ebc587e9148c", | ||
"address": "3.68.232.117:26656" | ||
} | ||
] | ||
}, | ||
"apis": { | ||
"rpc": [ | ||
{ | ||
"address": "https://rpc.korellia.kyve.network", | ||
"provider": "kyve" | ||
}, | ||
{ | ||
"address": "https://rpc-kyve-test.ecostake.com", | ||
"provider": "ecostake" | ||
} | ||
], | ||
"rest": [ | ||
{ | ||
"address": "https://api.korellia.kyve.network", | ||
"provider": "kyve" | ||
}, | ||
{ | ||
"address": "https://rest-kyve-test.ecostake.com", | ||
"provider": "ecostake" | ||
} | ||
] | ||
}, | ||
"explorers": [ | ||
{ | ||
"kind": "explorers.guru", | ||
"url": "https://kyve.explorers.guru/", | ||
"tx_page": "https://kyve.explorers.guru/transaction/${txHash}" | ||
} | ||
] | ||
} |
Oops, something went wrong.