6

Is there is any python library is available that allow creation of Multisignature HD wallets ?

3 Answers 3

3

Stepan Snigirev's embit library: https://github.com/diybitcoinhardware/embit/blob/master/src/embit/bip32.py

It powers the Specter DIY hardware wallet, Specter Desktop software wallet, and the SeedSigner and Krux DIY signing devices.

2
  • Welcome to Bitcoin SE Keith! Commented Jan 9 at 15:53
  • 1
    Thanks @MichaelFolkson! Looking forward to finding the niches where I can provide some value and moreso to learning a ton while I lurk! Commented Jan 9 at 16:41
0

Python bitcoinlib maybe? See: https://coineva.com/create-multisig-wallet-bitcoin-python.html

0

you can create them by combining existing Python libraries for HD wallets (e.g., "pycoin" or "hd-wallet-derive") with Bitcoin libraries (e.g., "python-bitcoinlib" or "pycryptodomex") that handle multisignature functionality.

Not the answer you're looking for? Browse other questions tagged or ask your own question.