Skip to main content

No project description provided

Project description

Bittensor Wallet

Discord Chat License: MIT PyPI version

Crates.io Documentation

Internet-scale Neural Networks

Bittensor SDKBTCLIResearch

Bittensor Wallet

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 directory. You can look at the development history by inspecting the Changelog.md.

Contributing

Signed Commits

All commits in pull requests must be signed. We require signed commits to verify the authenticity of contributions and ensure code integrity.

To sign your commits, you must have GPG signing configured in Git:

git commit -S -m "your commit message"

Or configure Git to sign all commits automatically:

git config --global commit.gpgsign true

For instructions on setting up GPG key signing, see GitHub's documentation on signing commits.

Note: Pull requests containing unsigned commits will not be merged.

Documentation

For a full documentation on how to use btwallet, see the Bittensor Wallet SDK section on the developer documentation site.


Before you proceed

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.

Install

Follow the below steps to install the Bittensor Wallet SDK:

From PyPI

Use this option if you want to use the Wallet SDK.

python3 -m venv btwallet-venv  # create a virtual env
source btwallet-venv/bin/activate  # activate the env
pip install bittensor-wallet  # install bittensor-wallet

From source

Use this option if you want to develop your application using the Wallet SDK.

python3 -m venv btwallet-venv  # create a virtual env
source venv/bin/activate  # activate the env
git clone https://github.com/opentensor/btwallet.git
cd btwallet
pip install maturin
maturin develop

After the maturin develop command completes, run the below command:

pip list

You will see bittensor-wallet in the list on installed packages. This means the installation was successful.


Verify your installation

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

# python3
# 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
# Type "help", "copyright", "credits" or "license" for more information.

import bittensor_wallet
print(bittensor_wallet.__version__)
>>> 3.x.x

The above will print the Wallet SDK version you just installed, i.e., 3.x.x, confirming that the installation was successful.


Usage examples

1. Create a wallet

In the python3 interpreter, run the below code:

from bittensor_wallet import Wallet

# creates wallet with name `default`
wallet = Wallet()
wallet.create()

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):

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.

The mnemonic to the new coldkey is:

forward xxxx xxx xxx xxxx xxxx xxxx xxx xx xx xx actress

You can use the mnemonic to recreate the key in case it gets lost. The command to use to regenerate the key using this mnemonic is:
btcli w regen-coldkey --mnemonic "forward xxxx xxx xxx xxxx xxxx xxxx xxx xx xx xx actress"

Specify password for key encryption:
Retype your password:

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.

The mnemonic to the new hotkey is:

fuel xxxx xxx xxx xxxx xxxx xxxx xxx xx xx xxx bind

You can use the mnemonic to recreate the key in case it gets lost. The command to use to regenerate the key using this mnemonic is:
btcli w regen-hotkey --mnemonic "fuel xxxx xxx xxx xxxx xxxx xxxx xxx xx xx xxx bind"

name: 'default', hotkey: 'default', path: '~/.bittensor/wallets/'
>>> print(wallet)
Wallet (Name: 'default', Hotkey: 'default', Path: '~/.bittensor/wallets/')
>>>

2. Pass arguments to a class other than the default

name (str): The name of the wallet, used to identify it among possibly multiple wallets.
hotkey (str): String identifier for the hotkey.
path (str): File system path where wallet keys are stored.
config (Config): Bittensor configuration object.

In the python3 interpreter, run the below code. See an example below (only partial is shown):

# python3
# 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
# Type "help", "copyright", "credits" or "license" for more information.

from bittensor_wallet import Wallet

my_name = "my_wallet_name"
my_path = "path_to_my_wallet"
my_hotkey = "name_of_my_hotkey"

my_wallet = Wallet(name=my_name, path=my_path, hotkey=my_hotkey)
my_wallet.create()

>>> 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.

The above will create a wallet with "my_wallet_name".


Rust crate

This project is also published as a pure Rust crate btwallet on crates.io for use without Python. See the crate documentation for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bittensor_wallet-4.1.0.tar.gz (63.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

bittensor_wallet-4.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bittensor_wallet-4.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

bittensor_wallet-4.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

bittensor_wallet-4.1.0-cp314-cp314-macosx_11_0_arm64.whl (888.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bittensor_wallet-4.1.0-cp314-cp314-macosx_10_12_x86_64.whl (944.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

bittensor_wallet-4.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bittensor_wallet-4.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

bittensor_wallet-4.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bittensor_wallet-4.1.0-cp313-cp313-macosx_11_0_arm64.whl (888.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bittensor_wallet-4.1.0-cp313-cp313-macosx_10_12_x86_64.whl (943.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bittensor_wallet-4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bittensor_wallet-4.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

bittensor_wallet-4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bittensor_wallet-4.1.0-cp312-cp312-macosx_11_0_arm64.whl (889.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bittensor_wallet-4.1.0-cp312-cp312-macosx_10_12_x86_64.whl (944.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bittensor_wallet-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bittensor_wallet-4.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

bittensor_wallet-4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bittensor_wallet-4.1.0-cp311-cp311-macosx_11_0_arm64.whl (894.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bittensor_wallet-4.1.0-cp311-cp311-macosx_10_12_x86_64.whl (948.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bittensor_wallet-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bittensor_wallet-4.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

bittensor_wallet-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bittensor_wallet-4.1.0-cp310-cp310-macosx_11_0_arm64.whl (895.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bittensor_wallet-4.1.0-cp310-cp310-macosx_10_12_x86_64.whl (948.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file bittensor_wallet-4.1.0.tar.gz.

File metadata

  • Download URL: bittensor_wallet-4.1.0.tar.gz
  • Upload date:
  • Size: 63.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for bittensor_wallet-4.1.0.tar.gz
Algorithm Hash digest
SHA256 f0f34641a4b9110def9e35fe22498195fcb31d143dc4f76dd9022db374ccd484
MD5 567fcb02623fe5c47d6f89885a21b8d6
BLAKE2b-256 a0307eb06cfd5d901d2cd3760a8b85d66c7b84f96f03d6d0402b306fdf8b6a2d

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcbac49f52f2d3c3cab0e98373a936443f4083c189bce72d72d25bb5b3dad264
MD5 63f8659695c337cecca6fd386ee66202
BLAKE2b-256 4decf6c005cf839491e478905db7caed3b19601575bed65905165a2c19e0bb76

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7db14417b84fd943667bd5eb2a307c20068eb63a22d2cdcba3aa556481d5b2dc
MD5 21cd9b532c30770b29f93ba130385cbd
BLAKE2b-256 3ff75da15f895350546f48a5fb3d5db4b2508fa24f32df82be699d9a74619811

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 485dd54b7f48b254f8ba4ffa6d7607dc19479947e35c21e2da927f39cc19d669
MD5 93d44f777f22722e2b8ce2283d5b5bc9
BLAKE2b-256 24452449b6f8e6f8e7c53339fcbdeca1a81adc67d1d9918a6e93458f4e5eddbc

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ffe957b65a9352914f860465719808a79b9a3f4d6638458a35896f7812c6f96
MD5 a90ef10da1899151346eab51e66495c7
BLAKE2b-256 b5a1a1e3c00b03de52f77020be94bb6b2f64fbeaa0b5a79676590505baf84c16

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9fe4143534ac288d5d451aed926d4933874a62172e23448b4a6b4ddf3a44cb3
MD5 f82a950f395d3e54b7baf171a1703022
BLAKE2b-256 d090f108a1c45582c529efafcde7d8e4b804eecb68e5901ee2fa98333075e4e6

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6758e23c38bcfb2184a3a9f79a667d16f90004c642cbbb0735fbaebefce01c8a
MD5 58c12aa02aa7a85db23ca1568f41bc5c
BLAKE2b-256 a4c30d393670a1bd59e6478b944a75845a75c0685261c201c6d750945b1195e6

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ec09575fb03cbd1ee39b8a74b9cf1726f3f37ebe523a990214c9cb167c5d2c6
MD5 f07f476d5f599730ca99a992d25619d2
BLAKE2b-256 9ec6d4feb8ac136ee063985e389c8f398be3afea85b41787de0b730e75140a3a

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c8a5d366a2010663103306a9b508d2efe0b5bf6b90b542a01fcb61f6215de13
MD5 55a07e78aa288b6aa02c12609886bee7
BLAKE2b-256 84d517c7a4f91c111d2dc5dd3fa79c98846c911b9c74c7269bae8beb198b0ee2

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96d8110410e110e7f1ebdaae892ccea2a4cda79b1664c6b2513cc3f4f30f3dfd
MD5 665c54bd517c803cff18d7c7276dfa6b
BLAKE2b-256 10ea58e10f9e46490ac5f00e06c0449b8322a810f7ca121475a96a3cf732592b

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e79ee6b95ee197902b38e0a768503bfd574412bfa982988ca4aa1011a5998434
MD5 38a73129368c3e88ebeb422f4b8b5775
BLAKE2b-256 e05446e32add1a0fa54fe4beca3bc9fdee333e3fc2d99e98fc8837f0bcffe704

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 796b924712e5306bd93bcf17483012a01fae8ba526d55d2424933ffb70a462a7
MD5 c2fcf3c9d3c5529c12996c8e6a445b7f
BLAKE2b-256 1c2d2035f3929a3827adaf69534d7ce43866d7e131398ad3a47d9c958a115b9f

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22b91e4c8b336ec5739c3c6262ea21cbff5e005d4e38963097f0ed0fed2bf80b
MD5 7dd58a9a04e7f05fb079154ea93c1cb6
BLAKE2b-256 14cbab34edd41c5ab8ee86c41b6343696bfb59bf75802fca3452c2150ca66026

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 856dd7e5f4bac933da3304cd5d29101d424b97ebd39996405b46882b0085079c
MD5 7671429c4f2ed946d22aeab90006e15a
BLAKE2b-256 40458a31bf6b5c8b0827ad001c58ec548fcce14c6b9d2c830b879cb8985ddccd

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eccee4cdef228ec4ef351ee5334fe2bd83a2db5ffc112b4e8c626056dff4d45
MD5 ac7101b12a80b70790e0faba453fc1d6
BLAKE2b-256 dd956406e9331b88a071529287e290ea64d37ab9c217be8a07f594a49d49fda3

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89c21a657f8f40b495b098d16aa77a58eb7e62f68879ea58febd8ca7536a4463
MD5 d8b1b3e9d5ab311c480222e88c07aa92
BLAKE2b-256 3c344e25a73bc54689c02a0915ebcd08ac4c514e42dd3d473967fcfa7fb11c7d

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b25d5cb6bdbc6d20d4c347ec82938420a367c75b03e5d957857ca4df973afc2e
MD5 d14d8d0ef0a147453dbd2f8dbab09c9f
BLAKE2b-256 76b951e8cf790af60c454407d43873352b8427a5dcbb878e3e49bfdbb87ad717

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d96e5202f898c3d1035d7844a946d4fb42fa522d65055e2f9d05224bf6ad6d2c
MD5 7de7065d1f222f4df344311410561b0d
BLAKE2b-256 976cfe5628407d7ba4dba93183cce5e8ae11fd3f6c4e2c55a90ff562e75f418d

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db5f506839402d680b7a0aadde893faa162ba746a75708f455f4f11a691fbdfb
MD5 de285e6b695e57ad4c89343974dcfc4c
BLAKE2b-256 d63befff96fe81de74c6e8d928e618a78692c88a169f69d0c06f5ffb8576c892

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 591c51f60bb8536750c3ce6092efe83f1a1f55778a5bf5db69dc8bedfd71872a
MD5 0fbfbb55313ab09730268c8bfa4f8010
BLAKE2b-256 f13e0cd3f82485b925dff44a73d999586e7273d7a33a459ebc7fb341a0ea9622

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0915cfc9327b15279e8d8d9e2a11b2ed9a559339545cc55fe0bce13fd39564e0
MD5 b318fed46af96d04d2c26062414e713b
BLAKE2b-256 639257bb987e9c0a9a8d49f52af718e48ef8a6c40a81d745dcd25f1e3cc31c8d

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0be6c6ebb592fe966c9d256cd3ed80a7ebd7ae9f9a8eaf24f53a3bee28fdda2c
MD5 b48d1ea8525ca43d7420e5927ffb8679
BLAKE2b-256 9db64f21d3b15629c8841f408ffe00fb424d21f8e6d02475d3dc529377d6148d

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28ea313f651f065963b875f77644f6d71e34cd0d8b284040abd6e11fde2de470
MD5 47c84fc0060bdc35420f96e07f0c5cd8
BLAKE2b-256 6252d27864b5fcb6d433eaba0dbd0493932b46c50fe003c7cd5b63c7f8237878

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e46350369af89f9c156fff8fc75908582648bbe71be05e4ac4b2366e174b07cc
MD5 c7de6ec073333603f9d57eae86e76a28
BLAKE2b-256 42f92c9a279b09412005614c6e1ec55d268089b84fcaa645e90b4daacd950504

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 060ad7ae6fb6972ee3e31600510d4393b5184325226fca32c1b064b9388de6ce
MD5 55ed9f710d29db5a431bb4e1160abcc2
BLAKE2b-256 b991dc955e0bc8b3d9bff8266aedb50d23d4a2626cf7b6a265938aaa245e2aa0

See more details on using hashes here.

File details

Details for the file bittensor_wallet-4.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bittensor_wallet-4.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92fbd6dd5361614bbb71512c7854e1d27ff53ec094225aceb6449205d61f8867
MD5 a94802e40db97d0db13ed29db8f7ffd7
BLAKE2b-256 fa15629fec8605755f8c8cf04490b61e329a3a44f0ece3ebf194bc420c9e8374

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page