Created
November 29, 2024 08:57
-
-
Save billythedummy/ea4900e0c7708cd092bd2769684aab59 to your computer and use it in GitHub Desktop.
base64_to_base58.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import base58 | |
import base64 | |
B64 = "<BASE64-STRING-TO-CONVERT>" | |
base58.b58encode(base64.b64decode(B64)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment