Is there a way to speed up this script?
First of all, I know absolutely nothing about c++. I develop with Python and I complained about speed, someone suggested I should use c++, so I went to chatgpt and got a c++ script but it is slower than my python script. My python script does 1400 iterations/s while the c++ script does 60 iterations/s.
It is a read and write script that loads a text file containing mnemonics, calculates the valid ones and write them out to another text file.
If i can get 5x the speed of my python script, I am ok. Any help would be appreciated.
Get Bech32 (Native SegWit) Bitcoin Address From the public key (ec_compressed) Using libbitcoin-system 3.8.0
How can I get the Bech32 (Native SegWit) Bitcoin Address from the ec_private without using HD Keys. My code is as follows and I am quite struggling to use libbitcoin documentation.
Get Segwit Bitcoin Address From Simple Private Key (ec_private) Using libbitcoin-system 3.8.0
How can I get the Legacy Bitcoin Address from the ec_private without using HD Keys. My code is as follows and I am quite struggling to use libbitcoin documentation.
Get Legacy, Segwit Bitcoin Addresses From Simple Private Key (ec_private) Using libbitcoin-system 3.8.0
How can I get the Legacy Bitcoin Address from the ec_private without using HD Keys. My code is as follows and I am quite struggling to use libbitcoin documentation.