Post
Topic
Board Development & Technical Discussion
Re: base58encode_check to a string
by
pbies
on 21/07/2025, 12:43:26 UTC
3. Convert your string to bytes and pad it with zeros until it is 160 bits (20 bytes)
4. Encode the result using Base58check (feed the 160-bit result to the encoder as if you are feeding the RIPEMD160 hash of a public key, it should add the address version byte to it and compute and append the checksum as well)

I need the result address to have the string, not the bytes before base58check encoding.