Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bittensor_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6135,7 +6135,7 @@ def subnets_price(
self.verbosity_handler(quiet=quiet, verbose=verbose, json_output=json_output)

subtensor = self.initialize_chain(network)
non_archives = ["finney", "latent-lite", "subvortex"]
non_archives = ["finney", "latent-lite"]
if not current_only and subtensor.network in non_archives + [
Constants.network_map[x] for x in non_archives
]:
Expand Down
6 changes: 1 addition & 5 deletions bittensor_cli/src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,18 @@ class Constants:
"finney",
"test",
"archive",
"subvortex",
"rao",
"dev",
"latent-lite",
]
finney_entrypoint = "wss://entrypoint-finney.opentensor.ai:443"
finney_test_entrypoint = "wss://test.finney.opentensor.ai:443"
archive_entrypoint = "wss://archive.chain.opentensor.ai:443"
subvortex_entrypoint = "ws://subvortex.info:9944"
local_entrypoint = "ws://127.0.0.1:9944"
rao_entrypoint = "wss://rao.chain.opentensor.ai:443"
dev_entrypoint = "wss://dev.chain.opentensor.ai:443"
local_entrypoint = "ws://127.0.0.1:9944"
latent_lite_entrypoint = "wss://lite.sub.latent.to:443"
lite_nodes = [finney_entrypoint, subvortex_entrypoint, latent_lite_entrypoint]
lite_nodes = [finney_entrypoint, latent_lite_entrypoint]
network_map = {
"finney": finney_entrypoint,
"test": finney_test_entrypoint,
Expand All @@ -32,7 +29,6 @@ class Constants:
"dev": dev_entrypoint,
"rao": rao_entrypoint,
"latent-lite": latent_lite_entrypoint,
"subvortex": subvortex_entrypoint,
}
genesis_block_hash_map = {
"finney": "0x2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03",
Expand Down
Loading