Skip to content

Commit

Permalink
Add KYVE testnet (#550)
Browse files Browse the repository at this point in the history
* Add Kyve Korellia testnet

* Adjust codebase

* Fix seed

* Fix denom

* Add ECO Stake APIs

* Update name casing

* Fix asset
  • Loading branch information
tombeynon authored Jul 27, 2022
1 parent a64fd04 commit badc744
Show file tree
Hide file tree
Showing 3 changed files with 128 additions and 0 deletions.
26 changes: 26 additions & 0 deletions testnets/korellia/assetlist.json
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"
}
}
]
}
79 changes: 79 additions & 0 deletions testnets/korellia/chain.json
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}"
}
]
}
Loading

0 comments on commit badc744

Please sign in to comment.