plebiolira
plebiolira
Thanks for your reply. Cmd+A, Cmd+Delete is pretty quick and I can do that every now and then, thanks for the suggestion!
Hi Enrico, I ran into the same issue last night. Instead of implementing `__rmul__` to FieldElement, I updated the `__add__` method on class Point to the following. From ``` if...
+1 A bitcoin address or Lightning address would suffice in my and my community's case. Wallet of Satoshi is a great and simple bitcoin and LN wallet, available on mobile.
Thanks. I ended up using the hex_to_bech32 method from the monstr library, which I added to my python-nostr. ` @staticmethod def hex_to_bech32(key_str: str, spec, prefix='npub'): as_int = [int(key_str[i:i+2], 16) for...