Andre
Andre
> Is there any way to generate the Native segwit address ``` python from bit import PrivateKey def get_bech32_address(): byte_public_key_comp = PrivateKey("your_private_key")._pk.public_key.format() witprog = ripemd160_sha256(byte_public_key_comp) bech32_address = encode('bc', 0, witprog)...
I had this problem, today I managed to solve it by uninstalling the soundcloud app with all its data and then installing the old version (2021.12.05 or 2021.12.15, I don't...
Try installing latest version from this git repo: #### Install git ```bash sudo dnf install git -y ``` #### Install neofetch ```bash git clone https://github.com/dylanaraps/neofetch cd neofetch && sudo make...
I've checked the code, now we have 3 types of events: start (OS family, Bruno version): https://github.com/usebruno/bruno/blob/9b382fa0911536a0bfa27ae0d8a67007cc1364f7/packages/bruno-app/src/providers/App/useTelemetry.js#L60 golden-edition-modal-opened (OS family): https://github.com/usebruno/bruno/blob/9b382fa0911536a0bfa27ae0d8a67007cc1364f7/packages/bruno-app/src/components/Sidebar/GoldenEdition/index.js#L69 golden-edition-buy-clicked (OS family): https://github.com/usebruno/bruno/blob/9b382fa0911536a0bfa27ae0d8a67007cc1364f7/packages/bruno-app/src/components/Sidebar/GoldenEdition/index.js#L81 As a developer myself, I...