Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bip44

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bip44

Simple Python bip44 implementation. Mnemonic + bip32.

  • 0.1.4
  • PyPI
  • Socket score

Maintainers
1

python-bip44

Codacy Badge CI Codecov PyPI - Python Version PyPI License

Simple Python bip44 implementation. Mnemonic + bip32.

Install

pip install bip44

Quick Start

>>> from coincurve import PrivateKey
>>> from bip44 import Wallet
>>> from bip44.utils import get_eth_addr
>>> mnemonic = "purity tunnel grid error scout long fruit false embody caught skin gate"
>>> w = Wallet(mnemonic)
>>> sk, pk = w.derive_account("eth", account=0)
>>> sk = PrivateKey(sk)
>>> sk.public_key.format() == pk
True
>>> get_eth_addr(pk)
'0x7aD23D6eD9a1D98E240988BED0d78e8C81Ec296C'

Release Notes

0.1.1 ~ 0.1.4

  • Support Python 3.10, 3.11, 3.12
  • Bump dependencies
  • Drop Python 3.6, 3.7

0.1.0

  • First beta release
  • Bump dependencies

0.0.1 ~ 0.0.7

  • Alpha releases

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc