Helium went to Solana Blockchain, on April 18, 2023.
Helium addresses are not available on the Solana blockchain as addresses on the Solana blockchain are base-58 encoded.
Here is a quick snippet on how to translate an existing Helium wallet address to a Solana wallet address using Python.
You will need the base58 module for this, get it here:
pip install base58 |
Code Chunk:
def convert_hnt_wallet_addr_to_sol(helium_wallet_address): return base58.b58encode(base58.b58decode(hnt_wallet_address)[2:-4]).decode()
Using this convert your Helium wallet address to a Solana address!
You can further explore our blog for interesting reads OR - you can contact us to learn a bit more over a FREE personal Skype coaching session. Just click on "Leave a message" and reach out to us. We get a lot of volume these days so FREE Sessions won't be here for a long time, Grab this opportunity while you can!
Comments
Post a Comment