forked from cosmos/chain-registry
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
hard-nett
committed
Apr 6, 2024
1 parent
dcc4e1f
commit 74a8a99
Showing
3 changed files
with
248 additions
and
90 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
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,56 @@ | ||
{ | ||
"$schema": "../assetlist.schema.json", | ||
"chain_name": "terpnettestnet", | ||
"assets": [ | ||
{ | ||
"description": "Terp Token (TERP) is the Terp Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", | ||
"denom_units": [ | ||
{ | ||
"denom": "uterpx", | ||
"exponent": 0 | ||
}, | ||
{ | ||
"denom": "terpx", | ||
"exponent": 6 | ||
} | ||
], | ||
"base": "uterpx", | ||
"name": "Terp Testnet Token", | ||
"display": "terpx", | ||
"symbol": "TERPX", | ||
"logo_URIs": { | ||
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png" | ||
}, | ||
"images": [ | ||
{ | ||
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png" | ||
} | ||
] | ||
}, | ||
{ | ||
"description": "Persy Gas Token (Persy) is the Terp Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", | ||
"denom_units": [ | ||
{ | ||
"denom": "uthiolx", | ||
"exponent": 0 | ||
}, | ||
{ | ||
"denom": "thiolx", | ||
"exponent": 6 | ||
} | ||
], | ||
"base": "uthiolx", | ||
"name": "Thiol Testnet Gas Token", | ||
"display": "thiolx", | ||
"symbol": "THIOLX", | ||
"logo_URIs": { | ||
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" | ||
}, | ||
"images": [ | ||
{ | ||
"png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" | ||
} | ||
] | ||
} | ||
] | ||
} |
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,191 @@ | ||
{ | ||
"$schema": "../chain.schema.json", | ||
"chain_name": "terpnettestnet", | ||
"status": "live", | ||
"network_type": "testnet", | ||
"pretty_name": "Terp-Network", | ||
"chain_id": "90u-2", | ||
"bech32_prefix": "terp", | ||
"daemon_name": "terpd", | ||
"node_home": "$HOME/.terp", | ||
"key_algos": [ | ||
"secp256k1" | ||
], | ||
"slip44": 118, | ||
"fees": { | ||
"fee_tokens": [ | ||
{ | ||
"denom": "uthiolx", | ||
"fixed_min_gas_price": 0.5, | ||
"low_gas_price": 0.75, | ||
"average_gas_price": 1, | ||
"high_gas_price": 1.25 | ||
} | ||
] | ||
}, | ||
"staking": { | ||
"staking_tokens": [ | ||
{ | ||
"denom": "uterpx" | ||
} | ||
] | ||
}, | ||
|
||
"codebase": { | ||
"git_repo": "github.com/terpnetwork/terp-core.git", | ||
"recommended_version": "v4.1.testnet", | ||
"consensus": { | ||
"type": "cometbft", | ||
"version": "v0.37.2" | ||
}, | ||
"compatible_versions": [], | ||
"genesis": { | ||
"genesis_url": "https://raw.githubusercontent.com/terpnetwork/test-net/master/90u-2/genesis.json" | ||
}, | ||
"binaries": { | ||
"linux/amd64": "https://github.com/terpnetwork/terp-core/releases/download/v4.1.testnet/terpd-linux-amd64", | ||
"linux/arm64": "https://github.com/terpnetwork/terp-core/releases/download/v4.1.testnet/terpd-linux-arm64" | ||
}, | ||
"versions": [ | ||
{ | ||
"name": "v1.0.0-stable", | ||
"recommended_version": "v1.0.0-stable", | ||
"compatible_versions": [ | ||
"v1.0.0", | ||
"v1.0.0-stable" | ||
], | ||
"consensus": { | ||
"type": "cometbft", | ||
"version": "0.37.0" | ||
} | ||
}, | ||
{ | ||
"name": "huckleberry", | ||
"recommended_version": "huckleberry", | ||
"compatible_versions": [ | ||
"huckleberry" | ||
], | ||
"consensus": { | ||
"type": "cometbft", | ||
"version": "0.37.0" | ||
} | ||
}, | ||
{ | ||
"name": "barberry", | ||
"recommended_version": "barberry", | ||
"compatible_versions": [ | ||
"barberry" | ||
], | ||
"consensus": { | ||
"type": "cometbft", | ||
"version": "0.37.1" | ||
} | ||
}, | ||
{ | ||
"name": "v2.0.0", | ||
"recommended_version": "v2.0.0", | ||
"compatible_versions": [ | ||
"v2.0.0" | ||
], | ||
"consensus": { | ||
"type": "cometbft", | ||
"version": "0.37.2" | ||
} | ||
}, | ||
{ | ||
"name": "v3.0.0", | ||
"recommended_version": "v3.0.0", | ||
"compatible_versions": [ | ||
"v3.0.0" | ||
], | ||
"consensus": { | ||
"type": "cometbft", | ||
"version": "0.37.2" | ||
} | ||
}, | ||
{ | ||
"name": "v2-pigeonfall", | ||
"recommended_version": "v2-pigeonfall", | ||
"compatible_versions": [ | ||
"v2-pigeonfall" | ||
], | ||
"consensus": { | ||
"type": "cometbft", | ||
"version": "0.37.2" | ||
} | ||
}, | ||
{ | ||
"name": "v3-pigeonfall", | ||
"recommended_version": "v3-pigeonfall", | ||
"compatible_versions": [ | ||
"v3-pigeonfall" | ||
], | ||
"consensus": { | ||
"type": "cometbft", | ||
"version": "0.37.2" | ||
} | ||
}, | ||
{ | ||
"name": "v4.1.testnet", | ||
"recommended_version": "v4.1.testnet", | ||
"compatible_versions": [ | ||
"v4.1.testnet" | ||
], | ||
"consensus": { | ||
"type": "cometbft", | ||
"version": "0.37.2" | ||
} | ||
} | ||
] | ||
}, | ||
"peers": { | ||
"seeds": [], | ||
"persistent_peers": [ | ||
{ | ||
"id": "9e194721d68dd28d3c4b625c17b2cb287ef30327", | ||
"address": "testnet-peer.terp.network:26656" | ||
}, | ||
{ | ||
"id": "15f5bc75be9746fd1f712ca046502cae8a0f6ce7", | ||
"address": "terp-testnet.nodejumper.io:30656" | ||
}, | ||
{ | ||
"id": "51d48be3809bb8907c1ef5f747e53cdd0c9ded1b", | ||
"address": "terp-testnet-peer.itrocket.net:443" | ||
} | ||
] | ||
}, | ||
"apis": { | ||
"rpc": [ | ||
{ | ||
"address": "https://terp-testnet-rpc.itrocket.net:443/", | ||
"provider": "itrocket" | ||
} | ||
], | ||
"rest": [ | ||
{ | ||
"address": "https://terp-testnet-api.itrocket.net:443/", | ||
"provider": "itrocket" | ||
} | ||
], | ||
"grpc": [ | ||
{ | ||
"address": "terp-testnet-grpc.itrocket.net/", | ||
"provider": "itrocket" | ||
} | ||
] | ||
}, | ||
"explorers": [ | ||
{ | ||
"kind": "Ping Pub", | ||
"url": "https://explorer.nodestake.top/terp-testnet", | ||
"tx_page": "https://explorer.nodestake.top/terp-testnet/tx/${txHash}" | ||
}, | ||
{ | ||
"kind": "NODEXPLORER", | ||
"url": "https://explorer.nodexcapital.com", | ||
"tx_page": "https://explorer.nodexcapital.com/terp/tx/${txHash}", | ||
"account_page": "https://explorer.nodexcapital.com/terp/account/{$accountAddress}" | ||
} | ||
] | ||
} |