open-aea-bip-utils


Nameopen-aea-bip-utils JSON
Version 2.7.2 PyPI version JSON
download
home_pagehttps://github.com/ebellocchia/bip_utils
SummaryGeneration of mnemonics, seeds, private/public keys and addresses for different types of cryptocurrencies
upload_time2023-07-28 07:34:52
maintainerEmanuele Bellocchia
docs_urlNone
authorEmanuele Bellocchia
requires_python>=3.7
licenseMIT
keywords python cryptography ecdsa ed25519 ed25519-blake2b nist256p1 secp256k1 sr25519 wallet hd-wallet slip10 slip32 bip38 bip39 bip39-substrate bip32 bip44 bip49 bip84 bip86 bip173 bip350 base58 ss58 bech32 bech32m segwit electrum substrate taproot daedalus byron shelley akash algorand aptos atom avalanche avax axelar band protocol binance chain binance smart chain bitcoin bitcoin cash bitcoinsv bnb cardano cardano-byron cardano-shelley celo certik cosmos dash dogecoin ecash elrond eos ethereum ethereum classic fantom opera filecoin harmony one huobi chain icon iris irisnet kava litecoin matic monero okex chain ontology osmosis nano near near protocol neo pi network polygon ripple secret solana stellar substrate terra tezos theta tron vechain verge zcash zilliqa acala bifrost chainx edgeware karura kusama moonbeam moonriver phala plasm sora stafi polkadot
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # BIP Utility Library
[![PyPI version](https://badge.fury.io/py/bip-utils.svg)](https://badge.fury.io/py/bip-utils)
[![Build Status](https://travis-ci.com/ebellocchia/bip_utils.svg?branch=master)](https://travis-ci.com/ebellocchia/bip_utils)
[![Documentation Status](https://readthedocs.org/projects/bip-utils/badge/?version=latest)](https://bip-utils.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/ebellocchia/bip_utils/branch/master/graph/badge.svg)](https://codecov.io/gh/ebellocchia/bip_utils)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/9a0c9c6a3d6444fab91f58fe8ec9e35c)](https://www.codacy.com/gh/ebellocchia/bip_utils/dashboard?utm_source=github.com&utm_medium=referral&utm_content=ebellocchia/bip_utils&utm_campaign=Badge_Grade)
[![CodeFactor](https://www.codefactor.io/repository/github/ebellocchia/bip_utils/badge)](https://www.codefactor.io/repository/github/ebellocchia/bip_utils)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://raw.githubusercontent.com/ebellocchia/bip_utils/master/LICENSE)

## Introduction

This package allows generating mnemonics, seeds, private/public keys and addresses for different types of cryptocurrencies. In particular:
- Mnemonic and seed generation as defined by [BIP-0039](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki)
- Private key encryption/decryption as defined by [BIP-0038](https://github.com/bitcoin/bips/blob/master/bip-0038.mediawiki)
- Keys derivation as defined by:
  - [BIP-0032](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)
  - [SLIP-0010](https://github.com/satoshilabs/slips/blob/master/slip-0010.md)
  - [BIP32-Ed25519 (Khovratovich/Law)](https://github.com/LedgerHQ/orakolo/blob/master/papers/Ed25519_BIP%20Final.pdf)
- Derivation of a hierarchy of keys as defined by:
  - [BIP-0044](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki)
  - [BIP-0049](https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki) (Bitcoin Segwit)
  - [BIP-0084](https://github.com/bitcoin/bips/blob/master/bip-0084.mediawiki) (Bitcoin Native Segwit)
  - [BIP-0086](https://github.com/bitcoin/bips/blob/master/bip-0086.mediawiki) (Bitcoin Taproot)
  - [CIP-1852](https://cips.cardano.org/cips/cip1852)
- Mnemonic and seed generation for [Substrate](https://wiki.polkadot.network/docs/learn-accounts#seed-generation) (Polkadot/Kusama ecosystem)
- Keys derivation for [Substrate](https://wiki.polkadot.network/docs/learn-accounts#derivation-paths) (Polkadot/Kusama ecosystem, same of Polkadot-JS)
- Keys and addresses generation for Cardano (Byron-Legacy, Byron-Icarus and Shelley, same of Ledger and AdaLite/Yoroi wallets)
- Mnemonic and seed generation for Monero
- Keys and addresses/subaddresses generation for Monero (same of official Monero wallet)
- Mnemonic and seed generation for Algorand (Algorand 25-word mnemonic)
- Mnemonic and seed generation like Electrum wallet (v1 and v2)
- Keys derivation like Electrum wallet (v1 and v2)

Other implemented functionalities:
- Parse BIP-0032 derivation paths
- Parse Substrate derivation paths
- Extended key serialization as defined by [SLIP-0032](https://github.com/satoshilabs/slips/blob/master/slip-0032.md)
- Encode/Decode addresses for all the supported coins
- Encode/Decode [WIF](https://en.bitcoin.it/wiki/Wallet_import_format)
- Encode/Decode [base58](https://en.bitcoin.it/wiki/Base58Check_encoding#Background) and [base58 monero](https://monerodocs.org/cryptography/base58)
- Encode/Decode [ss58](https://github.com/paritytech/substrate/wiki/External-Address-Format-(SS58))
- Encode/Decode [bech32](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki) and [bech32m](https://github.com/bitcoin/bips/blob/master/bip-0350.mediawiki)
- Encode/Decode [Bitcoin Cash bech32](https://github.com/bitcoincashorg/bitcoincash.org/blob/master/spec/cashaddr.md)
- Get token account addresses for SPL tokens (i.e. Solana tokens)

Package dependencies:
- [cbor2](https://pypi.org/project/cbor2/) for CBOR encoding/decoding
- [crcmod](https://pypi.org/project/crcmod/) for CRC computation
- [pycryptodome](https://pypi.org/project/pycryptodome/) for cryptographic functions
- [coincurve](https://pypi.org/project/coincurve/) for secp256k1 curve
- [ecdsa](https://pypi.org/project/ecdsa/) for nist256p1 and secp256k1 curves
- [ed25519-blake2b](https://pypi.org/project/ed25519-blake2b/) for ed25519-blake2b curve
- [pynacl](https://pypi.org/project/PyNaCl/) for ed25519 curve
- [py-sr25519-bindings](https://pypi.org/project/py-sr25519-bindings/) for sr25519 curve

Please note that, for the py-sr25519-bindings library, Rust is required to be installed.

## Supported coins

Supported BIP coins:
- Akash Network
- Algorand
- Aptos
- Avalanche (all the 3 chains)
- Axelar
- Band Protocol
- Binance Chain
- Binance Smart Chain
- Bitcoin (and related test net)
- Bitcoin Cash (and related test net)
- Bitcoin Cash Simple Ledger Protocol (and related test net)
- BitcoinSV (and related test net)
- Cardano (Byron-Legacy, Byron-Icarus and Shelley)
- Celo
- Certik
- Cosmos
- Dash (and related test net)
- Dogecoin (and related test net)
- eCash (and related test net)
- Elrond
- EOS
- Ergo (and related test net)
- Ethereum
- Ethereum Classic
- Fantom Opera
- Filecoin
- Harmony One (Ethereum and Cosmos addresses)
- Huobi Heco Chain
- IRIS Network
- Kava
- Kusama (based on BIP44 and ed25519 SLIP-0010, like TrustWallet, it won't generate the same addresses of Polkadot-JS)
- Litecoin (and related test net)
- Monero (based on BIP44 and secp256k1 or ed25519 SLIP-0010, it won't generate the same addresses of the official wallets, but it supports subaddresses generation)
- Nano
- Near Protocol
- NEO
- OKEx Chain (Ethereum and Cosmos addresses)
- Ontology
- Osmosis
- Pi Network
- Polkadot (based on BIP44 and ed25519 SLIP-0010, like TrustWallet, it won't generate the same addresses of Polkadot-JS)
- Polygon
- Ripple
- Secret Network
- Solana
- Stellar
- Terra
- Tezos
- Theta Network
- Tron
- VeChain
- Verge
- Zcash (and related test net)
- Zilliqa

Supported Substrate coins:
- Acala
- Bifrost
- Chainx
- Edgeware
- Karura
- Kusama
- Moonbeam
- Moonriver
- Phala Network
- Plasm Network
- Sora
- Stafi
- Polkadot
- Generic Substrate coin

For what regards Monero, it's also possible to generate the same addresses of the official wallets without using BIP44 derivation.

Clearly, for those coins that support Smart Contracts (e.g. Ethereum, Tron, ...), the generated keys and addresses are valid for all the related tokens.

## Install the package

For the secp256k1 curve, it's possible to use either the *coincurve* or the *ecdsa* library. *coincurve* is much faster since it's a Python wrapper to the secp256k1 C library, while *ecdsa* is a pure Python implementation.\
By default *coincurve* will be used, but it's possible to disable it when installing.

To install the package:
- Default installation (*coincurve* will be used for secp256k1)
    - Using *pip*, from this directory (local):

            pip install .

    - Using *pip*, from PyPI:

            pip install bip_utils

- Alternative installation (*ecdsa* will be used for secp256k1)
    - Using *setuptools*:

            python setup.py install --coincurve=0

    - Using *pip*, from this directory (local):

            pip install . --install-option="--coincurve=0"

    - Using *pip*, from PyPI:

            pip install bip_utils --install-option="--coincurve=0"

**NOTES:**
- if you are using an Apple M1, please make sure to update *coincurve* to version 17.0.0
- in case of problems when building the *ed25519_blake2b* library, you can try one of the prebuilt wheels [here](https://github.com/ebellocchia/bip_utils/tree/master/libs_wheels)

To run tests:

    python -m unittest discover

Or you can install *tox*:

    pip install tox

And then simply run it:

    tox

This will run code coverage with different Python versions and perform style and code analysis.\
For quick test:

    tox -e unittest

## Modules description

- [BIP-0039](https://github.com/ebellocchia/bip_utils/tree/master/readme/bip39.md)
- [Algorand mnemonic](https://github.com/ebellocchia/bip_utils/tree/master/readme/algorand_mnemonic.md)
- [Electrum mnemonic](https://github.com/ebellocchia/bip_utils/tree/master/readme/electrum_mnemonic.md)
- [Monero mnemonic](https://github.com/ebellocchia/bip_utils/tree/master/readme/monero_mnemonic.md)
- [BIP-0038](https://github.com/ebellocchia/bip_utils/tree/master/readme/bip38.md)
- [BIP-0032](https://github.com/ebellocchia/bip_utils/tree/master/readme/bip32.md)
- [BIP-0044](https://github.com/ebellocchia/bip_utils/tree/master/readme/bip44.md)
- [Cardano](https://github.com/ebellocchia/bip_utils/tree/master/readme/cardano.md)
- [Electrum](https://github.com/ebellocchia/bip_utils/tree/master/readme/electrum.md)
- [Monero](https://github.com/ebellocchia/bip_utils/tree/master/readme/monero.md)
- [Substrate](https://github.com/ebellocchia/bip_utils/tree/master/readme/substrate.md)
- [Utility libraries](https://github.com/ebellocchia/bip_utils/tree/master/readme/utility_libs.md)

## Documentation

The library documentation is available at [bip-utils.readthedocs.io](https://bip-utils.readthedocs.io).

## Code examples

For some complete code examples (from mnemonic to keys generation), refer to the [examples](https://github.com/ebellocchia/bip_utils/tree/master/examples) folder.

# Buy me a coffee

You know, I'm italian and I love drinking coffee (especially while coding 😃). So, if you'd like to buy me one:
- BTC: `bc1qq4r9cglwzd6f2hzxvdkucmdejvr9h8me5hy0k8`
- ERC20/BEP20: `0xf84e4898E5E10bf1fBe9ffA3EEC845e82e364b5B`

Thank you very much for your support.

# License

This software is available under the MIT license.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ebellocchia/bip_utils",
    "name": "open-aea-bip-utils",
    "maintainer": "Emanuele Bellocchia",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "ebellocchia@gmail.com",
    "keywords": "python,cryptography,ecdsa,ed25519,ed25519-blake2b,nist256p1,secp256k1,sr25519,wallet,hd-wallet,slip10,slip32,bip38,bip39,bip39-substrate,bip32,bip44,bip49,bip84,bip86,bip173,bip350,base58,ss58,bech32,bech32m,segwit,electrum,substrate,taproot,daedalus,byron,shelley,akash,algorand,aptos,atom,avalanche,avax,axelar,band protocol,binance chain,binance smart chain,bitcoin,bitcoin cash,bitcoinsv,bnb,cardano,cardano-byron,cardano-shelley,celo,certik,cosmos,dash,dogecoin,ecash,elrond,eos,ethereum,ethereum classic,fantom opera,filecoin,harmony one,huobi chain,icon,iris,irisnet,kava,litecoin,matic,monero,okex chain,ontology,osmosis,nano,near,near protocol,neo,pi network,polygon,ripple,secret,solana,stellar,substrate,terra,tezos,theta,tron,vechain,verge,zcash,zilliqa,acala,bifrost,chainx,edgeware,karura,kusama,moonbeam,moonriver,phala,plasm,sora,stafi,polkadot",
    "author": "Emanuele Bellocchia",
    "author_email": "ebellocchia@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/44/9a/b1064242f4852e0a689dc27c41dea1c85b5fea0ad0732cf1e432e04641cb/open-aea-bip-utils-2.7.2.tar.gz",
    "platform": "any",
    "description": "# BIP Utility Library\n[![PyPI version](https://badge.fury.io/py/bip-utils.svg)](https://badge.fury.io/py/bip-utils)\n[![Build Status](https://travis-ci.com/ebellocchia/bip_utils.svg?branch=master)](https://travis-ci.com/ebellocchia/bip_utils)\n[![Documentation Status](https://readthedocs.org/projects/bip-utils/badge/?version=latest)](https://bip-utils.readthedocs.io/en/latest/?badge=latest)\n[![codecov](https://codecov.io/gh/ebellocchia/bip_utils/branch/master/graph/badge.svg)](https://codecov.io/gh/ebellocchia/bip_utils)\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/9a0c9c6a3d6444fab91f58fe8ec9e35c)](https://www.codacy.com/gh/ebellocchia/bip_utils/dashboard?utm_source=github.com&utm_medium=referral&utm_content=ebellocchia/bip_utils&utm_campaign=Badge_Grade)\n[![CodeFactor](https://www.codefactor.io/repository/github/ebellocchia/bip_utils/badge)](https://www.codefactor.io/repository/github/ebellocchia/bip_utils)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://raw.githubusercontent.com/ebellocchia/bip_utils/master/LICENSE)\n\n## Introduction\n\nThis package allows generating mnemonics, seeds, private/public keys and addresses for different types of cryptocurrencies. In particular:\n- Mnemonic and seed generation as defined by [BIP-0039](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki)\n- Private key encryption/decryption as defined by [BIP-0038](https://github.com/bitcoin/bips/blob/master/bip-0038.mediawiki)\n- Keys derivation as defined by:\n  - [BIP-0032](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)\n  - [SLIP-0010](https://github.com/satoshilabs/slips/blob/master/slip-0010.md)\n  - [BIP32-Ed25519 (Khovratovich/Law)](https://github.com/LedgerHQ/orakolo/blob/master/papers/Ed25519_BIP%20Final.pdf)\n- Derivation of a hierarchy of keys as defined by:\n  - [BIP-0044](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki)\n  - [BIP-0049](https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki) (Bitcoin Segwit)\n  - [BIP-0084](https://github.com/bitcoin/bips/blob/master/bip-0084.mediawiki) (Bitcoin Native Segwit)\n  - [BIP-0086](https://github.com/bitcoin/bips/blob/master/bip-0086.mediawiki) (Bitcoin Taproot)\n  - [CIP-1852](https://cips.cardano.org/cips/cip1852)\n- Mnemonic and seed generation for [Substrate](https://wiki.polkadot.network/docs/learn-accounts#seed-generation) (Polkadot/Kusama ecosystem)\n- Keys derivation for [Substrate](https://wiki.polkadot.network/docs/learn-accounts#derivation-paths) (Polkadot/Kusama ecosystem, same of Polkadot-JS)\n- Keys and addresses generation for Cardano (Byron-Legacy, Byron-Icarus and Shelley, same of Ledger and AdaLite/Yoroi wallets)\n- Mnemonic and seed generation for Monero\n- Keys and addresses/subaddresses generation for Monero (same of official Monero wallet)\n- Mnemonic and seed generation for Algorand (Algorand 25-word mnemonic)\n- Mnemonic and seed generation like Electrum wallet (v1 and v2)\n- Keys derivation like Electrum wallet (v1 and v2)\n\nOther implemented functionalities:\n- Parse BIP-0032 derivation paths\n- Parse Substrate derivation paths\n- Extended key serialization as defined by [SLIP-0032](https://github.com/satoshilabs/slips/blob/master/slip-0032.md)\n- Encode/Decode addresses for all the supported coins\n- Encode/Decode [WIF](https://en.bitcoin.it/wiki/Wallet_import_format)\n- Encode/Decode [base58](https://en.bitcoin.it/wiki/Base58Check_encoding#Background) and [base58 monero](https://monerodocs.org/cryptography/base58)\n- Encode/Decode [ss58](https://github.com/paritytech/substrate/wiki/External-Address-Format-(SS58))\n- Encode/Decode [bech32](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki) and [bech32m](https://github.com/bitcoin/bips/blob/master/bip-0350.mediawiki)\n- Encode/Decode [Bitcoin Cash bech32](https://github.com/bitcoincashorg/bitcoincash.org/blob/master/spec/cashaddr.md)\n- Get token account addresses for SPL tokens (i.e. Solana tokens)\n\nPackage dependencies:\n- [cbor2](https://pypi.org/project/cbor2/) for CBOR encoding/decoding\n- [crcmod](https://pypi.org/project/crcmod/) for CRC computation\n- [pycryptodome](https://pypi.org/project/pycryptodome/) for cryptographic functions\n- [coincurve](https://pypi.org/project/coincurve/) for secp256k1 curve\n- [ecdsa](https://pypi.org/project/ecdsa/) for nist256p1 and secp256k1 curves\n- [ed25519-blake2b](https://pypi.org/project/ed25519-blake2b/) for ed25519-blake2b curve\n- [pynacl](https://pypi.org/project/PyNaCl/) for ed25519 curve\n- [py-sr25519-bindings](https://pypi.org/project/py-sr25519-bindings/) for sr25519 curve\n\nPlease note that, for the py-sr25519-bindings library, Rust is required to be installed.\n\n## Supported coins\n\nSupported BIP coins:\n- Akash Network\n- Algorand\n- Aptos\n- Avalanche (all the 3 chains)\n- Axelar\n- Band Protocol\n- Binance Chain\n- Binance Smart Chain\n- Bitcoin (and related test net)\n- Bitcoin Cash (and related test net)\n- Bitcoin Cash Simple Ledger Protocol (and related test net)\n- BitcoinSV (and related test net)\n- Cardano (Byron-Legacy, Byron-Icarus and Shelley)\n- Celo\n- Certik\n- Cosmos\n- Dash (and related test net)\n- Dogecoin (and related test net)\n- eCash (and related test net)\n- Elrond\n- EOS\n- Ergo (and related test net)\n- Ethereum\n- Ethereum Classic\n- Fantom Opera\n- Filecoin\n- Harmony One (Ethereum and Cosmos addresses)\n- Huobi Heco Chain\n- IRIS Network\n- Kava\n- Kusama (based on BIP44 and ed25519 SLIP-0010, like TrustWallet, it won't generate the same addresses of Polkadot-JS)\n- Litecoin (and related test net)\n- Monero (based on BIP44 and secp256k1 or ed25519 SLIP-0010, it won't generate the same addresses of the official wallets, but it supports subaddresses generation)\n- Nano\n- Near Protocol\n- NEO\n- OKEx Chain (Ethereum and Cosmos addresses)\n- Ontology\n- Osmosis\n- Pi Network\n- Polkadot (based on BIP44 and ed25519 SLIP-0010, like TrustWallet, it won't generate the same addresses of Polkadot-JS)\n- Polygon\n- Ripple\n- Secret Network\n- Solana\n- Stellar\n- Terra\n- Tezos\n- Theta Network\n- Tron\n- VeChain\n- Verge\n- Zcash (and related test net)\n- Zilliqa\n\nSupported Substrate coins:\n- Acala\n- Bifrost\n- Chainx\n- Edgeware\n- Karura\n- Kusama\n- Moonbeam\n- Moonriver\n- Phala Network\n- Plasm Network\n- Sora\n- Stafi\n- Polkadot\n- Generic Substrate coin\n\nFor what regards Monero, it's also possible to generate the same addresses of the official wallets without using BIP44 derivation.\n\nClearly, for those coins that support Smart Contracts (e.g. Ethereum, Tron, ...), the generated keys and addresses are valid for all the related tokens.\n\n## Install the package\n\nFor the secp256k1 curve, it's possible to use either the *coincurve* or the *ecdsa* library. *coincurve* is much faster since it's a Python wrapper to the secp256k1 C library, while *ecdsa* is a pure Python implementation.\\\nBy default *coincurve* will be used, but it's possible to disable it when installing.\n\nTo install the package:\n- Default installation (*coincurve* will be used for secp256k1)\n    - Using *pip*, from this directory (local):\n\n            pip install .\n\n    - Using *pip*, from PyPI:\n\n            pip install bip_utils\n\n- Alternative installation (*ecdsa* will be used for secp256k1)\n    - Using *setuptools*:\n\n            python setup.py install --coincurve=0\n\n    - Using *pip*, from this directory (local):\n\n            pip install . --install-option=\"--coincurve=0\"\n\n    - Using *pip*, from PyPI:\n\n            pip install bip_utils --install-option=\"--coincurve=0\"\n\n**NOTES:**\n- if you are using an Apple M1, please make sure to update *coincurve* to version 17.0.0\n- in case of problems when building the *ed25519_blake2b* library, you can try one of the prebuilt wheels [here](https://github.com/ebellocchia/bip_utils/tree/master/libs_wheels)\n\nTo run tests:\n\n    python -m unittest discover\n\nOr you can install *tox*:\n\n    pip install tox\n\nAnd then simply run it:\n\n    tox\n\nThis will run code coverage with different Python versions and perform style and code analysis.\\\nFor quick test:\n\n    tox -e unittest\n\n## Modules description\n\n- [BIP-0039](https://github.com/ebellocchia/bip_utils/tree/master/readme/bip39.md)\n- [Algorand mnemonic](https://github.com/ebellocchia/bip_utils/tree/master/readme/algorand_mnemonic.md)\n- [Electrum mnemonic](https://github.com/ebellocchia/bip_utils/tree/master/readme/electrum_mnemonic.md)\n- [Monero mnemonic](https://github.com/ebellocchia/bip_utils/tree/master/readme/monero_mnemonic.md)\n- [BIP-0038](https://github.com/ebellocchia/bip_utils/tree/master/readme/bip38.md)\n- [BIP-0032](https://github.com/ebellocchia/bip_utils/tree/master/readme/bip32.md)\n- [BIP-0044](https://github.com/ebellocchia/bip_utils/tree/master/readme/bip44.md)\n- [Cardano](https://github.com/ebellocchia/bip_utils/tree/master/readme/cardano.md)\n- [Electrum](https://github.com/ebellocchia/bip_utils/tree/master/readme/electrum.md)\n- [Monero](https://github.com/ebellocchia/bip_utils/tree/master/readme/monero.md)\n- [Substrate](https://github.com/ebellocchia/bip_utils/tree/master/readme/substrate.md)\n- [Utility libraries](https://github.com/ebellocchia/bip_utils/tree/master/readme/utility_libs.md)\n\n## Documentation\n\nThe library documentation is available at [bip-utils.readthedocs.io](https://bip-utils.readthedocs.io).\n\n## Code examples\n\nFor some complete code examples (from mnemonic to keys generation), refer to the [examples](https://github.com/ebellocchia/bip_utils/tree/master/examples) folder.\n\n# Buy me a coffee\n\nYou know, I'm italian and I love drinking coffee (especially while coding \ud83d\ude03). So, if you'd like to buy me one:\n- BTC: `bc1qq4r9cglwzd6f2hzxvdkucmdejvr9h8me5hy0k8`\n- ERC20/BEP20: `0xf84e4898E5E10bf1fBe9ffA3EEC845e82e364b5B`\n\nThank you very much for your support.\n\n# License\n\nThis software is available under the MIT license.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Generation of mnemonics, seeds, private/public keys and addresses for different types of cryptocurrencies",
    "version": "2.7.2",
    "project_urls": {
        "Download": "https://github.com/ebellocchia/bip_utils/archive/v2.7.2.tar.gz",
        "Homepage": "https://github.com/ebellocchia/bip_utils"
    },
    "split_keywords": [
        "python",
        "cryptography",
        "ecdsa",
        "ed25519",
        "ed25519-blake2b",
        "nist256p1",
        "secp256k1",
        "sr25519",
        "wallet",
        "hd-wallet",
        "slip10",
        "slip32",
        "bip38",
        "bip39",
        "bip39-substrate",
        "bip32",
        "bip44",
        "bip49",
        "bip84",
        "bip86",
        "bip173",
        "bip350",
        "base58",
        "ss58",
        "bech32",
        "bech32m",
        "segwit",
        "electrum",
        "substrate",
        "taproot",
        "daedalus",
        "byron",
        "shelley",
        "akash",
        "algorand",
        "aptos",
        "atom",
        "avalanche",
        "avax",
        "axelar",
        "band protocol",
        "binance chain",
        "binance smart chain",
        "bitcoin",
        "bitcoin cash",
        "bitcoinsv",
        "bnb",
        "cardano",
        "cardano-byron",
        "cardano-shelley",
        "celo",
        "certik",
        "cosmos",
        "dash",
        "dogecoin",
        "ecash",
        "elrond",
        "eos",
        "ethereum",
        "ethereum classic",
        "fantom opera",
        "filecoin",
        "harmony one",
        "huobi chain",
        "icon",
        "iris",
        "irisnet",
        "kava",
        "litecoin",
        "matic",
        "monero",
        "okex chain",
        "ontology",
        "osmosis",
        "nano",
        "near",
        "near protocol",
        "neo",
        "pi network",
        "polygon",
        "ripple",
        "secret",
        "solana",
        "stellar",
        "substrate",
        "terra",
        "tezos",
        "theta",
        "tron",
        "vechain",
        "verge",
        "zcash",
        "zilliqa",
        "acala",
        "bifrost",
        "chainx",
        "edgeware",
        "karura",
        "kusama",
        "moonbeam",
        "moonriver",
        "phala",
        "plasm",
        "sora",
        "stafi",
        "polkadot"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "449ab1064242f4852e0a689dc27c41dea1c85b5fea0ad0732cf1e432e04641cb",
                "md5": "55bca9f135fb03fa5039e99674131287",
                "sha256": "ecaf369cc9538074f1cb42a165a4e8a123485048b4ad021b5034e09f150c7cef"
            },
            "downloads": -1,
            "filename": "open-aea-bip-utils-2.7.2.tar.gz",
            "has_sig": false,
            "md5_digest": "55bca9f135fb03fa5039e99674131287",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 323469,
            "upload_time": "2023-07-28T07:34:52",
            "upload_time_iso_8601": "2023-07-28T07:34:52.801634Z",
            "url": "https://files.pythonhosted.org/packages/44/9a/b1064242f4852e0a689dc27c41dea1c85b5fea0ad0732cf1e432e04641cb/open-aea-bip-utils-2.7.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-28 07:34:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ebellocchia",
    "github_project": "bip_utils",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "open-aea-bip-utils"
}
        
Elapsed time: 0.09610s