cosmospy
cosmospy copied to clipboard
Python tools for Cosmos wallet management and offline transaction signing
updates: - [github.com/psf/black: 19f6aa8208154de4560ee1e4a3e638e120dcdba5 → f1d4e742c91dd5179d742b0db9293c4472b765f8](https://github.com/psf/black/compare/19f6aa8208154de4560ee1e4a3e638e120dcdba5...f1d4e742c91dd5179d742b0db9293c4472b765f8) - [github.com/executablebooks/mdformat: 427df9181bd4d8e65c1108b912ad47a81628f03b → 0c0af8f5055b092cc0ffb90e20ae4a03af3a0e8a](https://github.com/executablebooks/mdformat/compare/427df9181bd4d8e65c1108b912ad47a81628f03b...0c0af8f5055b092cc0ffb90e20ae4a03af3a0e8a)
Prior discussion in https://github.com/hukkin/cosmospy/pull/32
Committed via https://github.com/asottile/all-repos
# Python 3.10.4 (tags/v3.10.4:9d38120, Mar 23 2022, 23:13:41) [MSC v.1929 64 bit (AMD64)] on win32 from cosmospy import BIP32DerivationError, seed_to_privkey seed = ("angry mouse") try: privkey = seed_to_privkey(seed,"m/44'/118'/1'/0/0") except BIP32DerivationError:...
Hi, I see REST endpoint /txs has been migrated now and replaced by /cosmos/tx/v1beta1/txs And that needs enoded transaction string using protobuf. Any plans to support this? https://docs.cosmos.network/master/migrations/rest.html Thanks
I added a function that allows sending multi tx in a single block. Here's how to use it: `data_input` is send `data_output` is the one who receives ```python data_input =...
Added python native ripemd-160 algorithm implemented by user @sipa. Fixed *pubkey_to_address* function that wasn't working anymore. *generate_wallets* (and probably more) is broken without it Solution found in this [Bitcoin issue](https://github.com/bitcoin/bitcoin/issues/23710).
since ripemd160 is deprecated we need to use sha-256 instead.