Skip to content

Commit

Permalink
Adds Latent to networks
Browse files Browse the repository at this point in the history
  • Loading branch information
ibraheem-opentensor committed Feb 7, 2025
1 parent 81c13a9 commit 9948bc9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bittensor_cli/src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,22 @@


class Constants:
networks = ["local", "finney", "test", "archive", "rao", "dev"]
networks = ["local", "finney", "test", "archive", "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"
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"
network_map = {
"finney": finney_entrypoint,
"test": finney_test_entrypoint,
"archive": archive_entrypoint,
"local": local_entrypoint,
"dev": dev_entrypoint,
"rao": rao_entrypoint,
"latent-lite": latent_lite_entrypoint,
}
delegates_detail_url = "https://raw.githubusercontent.com/opentensor/bittensor-delegates/main/public/delegates.json"

Expand Down

0 comments on commit 9948bc9

Please sign in to comment.