Skip to content

Instantly share code, notes, and snippets.

@billythedummy
Created November 29, 2024 08:57
Show Gist options
  • Save billythedummy/ea4900e0c7708cd092bd2769684aab59 to your computer and use it in GitHub Desktop.
Save billythedummy/ea4900e0c7708cd092bd2769684aab59 to your computer and use it in GitHub Desktop.
base64_to_base58.py
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