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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,18 +183,18 @@ For example:
```bash
btcli subnets --help

usage: btcli <command> <command args> subnets [-h] {list,metagraph,lock_cost,create,register,recycle_register,hyperparameters} ...
usage: btcli <command> <command args> subnets [-h] {list,metagraph,lock_cost,create,register,pow_register,hyperparameters} ...

positional arguments:
{list,metagraph,lock_cost,create,register,recycle_register,hyperparameters}
{list,metagraph,lock_cost,create,register,pow_register,hyperparameters}
Commands for managing and viewing subnetworks.
list List all subnets on the network
list List all subnets on the network.
metagraph View a subnet metagraph information.
lock_cost Return the lock cost to register a subnet
lock_cost Return the lock cost to register a subnet.
create Create a new bittensor subnetwork on this chain.
register Register a wallet to a network.
recycle_register Register a wallet to a network.
hyperparameters View subnet hyperparameters
register Register a wallet to a network using PoW.
hyperparameters View subnet hyperparameters.

options:
-h, --help show this help message and exit
Expand Down
2 changes: 1 addition & 1 deletion bittensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def debug(on: bool = True):
# Wallet ss58 address length
__ss58_address_length__ = 48

__networks__ = ["local", "finney"]
__networks__ = ["local", "finney", "test"]

__finney_entrypoint__ = "wss://entrypoint-finney.opentensor.ai:443"

Expand Down
2 changes: 1 addition & 1 deletion bittensor/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
"metagraph": MetagraphCommand,
"lock_cost": SubnetLockCostCommand,
"create": RegisterSubnetworkCommand,
"pow_register": PowRegisterCommand,
"register": RegisterCommand,
"recycle_register": RecycleRegisterCommand,
"hyperparameters": SubnetHyperparamsCommand,
},
},
Expand Down
4 changes: 2 additions & 2 deletions bittensor/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{
"netuid": 1,
"subtensor": {"network": "finney", "chain_endpoint": None, "_mock": False},
"register": {
"pow_register": {
"num_processes": None,
"update_interval": 50000,
"output_in_place": True,
Expand Down Expand Up @@ -65,7 +65,7 @@
from .stake import StakeCommand, StakeShow
from .unstake import UnStakeCommand
from .overview import OverviewCommand
from .register import RegisterCommand, RecycleRegisterCommand, RunFaucetCommand
from .register import PowRegisterCommand, RegisterCommand, RunFaucetCommand
from .delegates import (
NominateCommand,
ListDelegatesCommand,
Expand Down
Loading