You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
20
20
21
21
## Documentation
22
22
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.
24
24
25
25
---
26
26
27
27
## Before you proceed
28
28
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.
31
30
32
31
## Install
33
32
@@ -38,9 +37,9 @@ Follow the below steps to install the Bittensor Wallet SDK:
38
37
Use this option if you want to use the Wallet SDK.
39
38
40
39
```bash
41
-
$ python3 -m venv btwallet-venv # create a virtual env
42
-
$ source btwallet-venv/bin/activate # activate the env
@@ -70,17 +69,17 @@ You will see `bittensor-wallet` in the list on installed packages. This means th
70
69
71
70
In the `python3` interpreter, run the below code to verify that your installation was successful. See an example output below:
72
71
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
+
importbittensor_wallet
78
+
print(bittensor_wallet.__version__)
79
+
>>>3.x.x
81
80
```
82
81
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.
84
83
85
84
---
86
85
@@ -100,7 +99,7 @@ wallet.create()
100
99
101
100
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)**:
102
101
103
-
```
102
+
```bash
104
103
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.
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.
155
145
156
-
```
146
+
from bittensor_wallet import Wallet
157
147
158
-
The above will create a wallet with "my_wallet_name".
>>> 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.
165
156
```
157
+
The above will create a wallet with "my_wallet_name".
0 commit comments