Skip to content

Commit 43b064e

Browse files
readme (#112)
1 parent 16fae7f commit 43b064e

File tree

1 file changed

+30
-38
lines changed

1 file changed

+30
-38
lines changed

README.md

+30-38
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div align="center">
22

3-
# Bittensor Wallet SDK <!-- omit in toc -->
3+
# Bittensor Wallet <!-- omit in toc -->
44

55
[![Discord Chat](https://img.shields.io/discord/308323056592486420.svg)](https://discord.gg/bittensor)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -14,20 +14,19 @@
1414

1515
</div>
1616

17-
## Bittensor Wallet SDK
17+
## Bittensor Wallet
1818

1919
The Bittensor Wallet SDK is a Python interface for a powerful Rust-based Bittensor wallet functionality. You do not need to know Rust to use this Wallet SDK. However, if you want to contribute to the Rust components of this Wallet SDK, the Rust source is located in the [src](./src) directory. You can look at the development history by inspecting the Changelog.md.
2020

2121
## Documentation
2222

23-
For a full documentation on how to use `btwallet`, see the [Bittensor Wallet SDK section](https://docs.bittensor.com/btcli) on the developer documentation site.
23+
For a full documentation on how to use `btwallet`, see the [Bittensor Wallet SDK section](https://docs.bittensor.com/working-with-keys) on the developer documentation site.
2424

2525
---
2626

2727
## Before you proceed
2828

29-
1. If you installed either Bittensor SDK version `8.1.0` or BTCLI version `8.1.0` then the Wallet SDK 2.0.0 is already installed. The below installation steps are only for a standalone installation of the Wallet SDK 2.0.0 package.
30-
2. **IMPORTANT**: The Wallet SDK 2.0.0 is compatible only with Bittensor SDK version `8.1.0` and later versions and BTCLI version `8.1.0` and later versions. Earlier versions of Bittensor SDK and BTCLI are not compatible with Wallet SDK 2.0.0.
29+
If you installed either Bittensor SDK version `9.x.x` or BTCLI version `9.x.x` then the Wallet SDK 3.x.x is already installed. The below installation steps are only for a standalone installation of the Wallet SDK 3.x.x package.
3130

3231
## Install
3332

@@ -38,9 +37,9 @@ Follow the below steps to install the Bittensor Wallet SDK:
3837
Use this option if you want to use the Wallet SDK.
3938

4039
```bash
41-
$ python3 -m venv btwallet-venv # create a virtual env
42-
$ source btwallet-venv/bin/activate # activate the env
43-
$ pip install bittensor-wallet # install bittensor-wallet
40+
python3 -m venv btwallet-venv # create a virtual env
41+
source btwallet-venv/bin/activate # activate the env
42+
pip install bittensor-wallet # install bittensor-wallet
4443
```
4544

4645
### From source
@@ -70,17 +69,17 @@ You will see `bittensor-wallet` in the list on installed packages. This means th
7069

7170
In the `python3` interpreter, run the below code to verify that your installation was successful. See an example output below:
7271

73-
```bash
74-
python3
75-
Python 3.12.4 (v3.12.4:8e8a4baf65, Jun 6 2024, 17:33:18) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
76-
Type "help", "copyright", "credits" or "license" for more information.
77-
>>> import bittensor_wallet
78-
>>> print(bittensor_wallet.__version__)
79-
2.0.0
80-
>>>
72+
```py
73+
# python3
74+
# Python 3.12.4 (v3.12.4:8e8a4baf65, Jun 6 2024, 17:33:18) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
75+
# Type "help", "copyright", "credits" or "license" for more information.
76+
77+
import bittensor_wallet
78+
print(bittensor_wallet.__version__)
79+
>>> 3.x.x
8180
```
8281

83-
The above will print the Wallet SDK version you just installed, i.e., `2.0.0`, confirming that the installation was successful.
82+
The above will print the Wallet SDK version you just installed, i.e., `3.x.x`, confirming that the installation was successful.
8483

8584
---
8685

@@ -100,7 +99,7 @@ wallet.create()
10099

101100
If a wallet with the name "default" already exists, then you will see a message. If it doesn't exist, then the above code will create both a coldkey and a hotkey and displays the following information, including your mnemonic **(mnemonics are replaced with `x` in the below example for security)**:
102101

103-
```
102+
```bash
104103
IMPORTANT: Store this mnemonic in a secure (preferable offline place), as anyone who has possession of this mnemonic can use it to regenerate the key and access your tokens.
105104

106105
The mnemonic to the new coldkey is:
@@ -130,7 +129,7 @@ Wallet (Name: 'default', Hotkey: 'default', Path: '~/.bittensor/wallets/')
130129
131130
**2. Pass arguments to a class other than the default**
132131
133-
```
132+
```bash
134133
name (str): The name of the wallet, used to identify it among possibly multiple wallets.
135134
hotkey (str): String identifier for the hotkey.
136135
path (str): File system path where wallet keys are stored.
@@ -139,29 +138,22 @@ config (Config): Bittensor configuration object.
139138
140139
In the `python3` interpreter, run the below code. See an example below (only partial is shown):
141140
142-
```bash
143-
python3
144-
Python 3.12.4 (v3.12.4:8e8a4baf65, Jun 6 2024, 17:33:18) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
145-
Type "help", "copyright", "credits" or "license" for more information.
146-
>>> from bittensor_wallet import Wallet
147-
>>> my_name = "my_wallet_name"
148-
>>> my_path = "path_to_my_wallet"
149-
>>> my_hotkey = "name_of_my_hotkey"
150-
>>>
151-
>>> my_wallet = Wallet(name=my_name, path=my_path, hotkey=my_hotkey)
152-
>>> my_wallet.create()
153-
154-
IMPORTANT: Store this mnemonic in a secure (preferable offline place), as anyone who has possession of this mnemonic can use it to regenerate the key and access your tokens.
141+
```py
142+
# python3
143+
# Python 3.12.4 (v3.12.4:8e8a4baf65, Jun 6 2024, 17:33:18) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
144+
# Type "help", "copyright", "credits" or "license" for more information.
155145

156-
```
146+
from bittensor_wallet import Wallet
157147

158-
The above will create a wallet with "my_wallet_name".
148+
my_name = "my_wallet_name"
149+
my_path = "path_to_my_wallet"
150+
my_hotkey = "name_of_my_hotkey"
159151

160-
**3. Use your own config**
152+
my_wallet = Wallet(name=my_name, path=my_path, hotkey=my_hotkey)
153+
my_wallet.create()
161154

162-
```python
163-
from bittensor_wallet.config import Config
164-
config = Config()
155+
>>> IMPORTANT: Store this mnemonic in a secure (preferable offline place), as anyone who has possession of this mnemonic can use it to regenerate the key and access your tokens.
165156
```
157+
The above will create a wallet with "my_wallet_name".
166158
167159
---

0 commit comments

Comments
 (0)