Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
unconst authored Jun 28, 2023
1 parent 0a1df05 commit 7eed407
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,12 @@ $ btcli --help
list_delegates List all delegates on the network.
regen_coldkeypub Regenerates a public coldkey from the public part of the coldkey.
recycle_register Register a wallet to a network.
senate View senate and it's members
proposals View active triumvirate proposals and their status
proposal_votes View an active proposal's votes by address.
senate_register Register as a senate member to participate in proposals
senate_leave Discard senate membership in the governance protocol
senate_vote Vote on an active proposal by hash.
optional arguments:
-h,
Expand All @@ -284,6 +290,42 @@ $ btcli --help
--strict If flagged, config will check that only exact arguemnts have been set.
```
# Senate
List all active proposals for the Senate to vote on. Usage: btcli proposals
```bash
btcli proposals
```
View Senate
View all delegates currently registered to Senate. Usage: btcli senate
```bash
btcli senate
```
Proposal Votes
Inspect the votes for a single proposal. Usage: btcli proposal_votes [OPTIONS]
```bash
btcli proposal_votes --proposal=[PROPOSAL_HASH]
```
Senate Register
Elect to join the Senate with your nominated hotkey. Usage: btcli senate_register [OPTIONS]
```bash
btcli senate_register
```
Senate Leave
Disown your membership of a Senate seat with your nominated hotkey. Usage: btcli senate_leave [OPTIONS]
```bash
btcli senate_leave
```
Senate Vote
Participate in a triumvirate proposal by voting with your senate hotkey. Usage: btcli senate_vote [OPTIONS]
```bash
btcli senate_vote --proposal=[PROPOSAL_HASH]
```
# The Bittensor Package
The bittensor package contains data structures for interacting with the bittensor ecosystem, writing miners, validators and querying the network. Additionally, it provides many utilities for efficient serialization of Tensors over the wire, performing data analysis of the network, and other useful utilities.
Expand Down

0 comments on commit 7eed407

Please sign in to comment.