Last active
July 17, 2024 07:33
-
-
Save Aviksaikat/9c2a35d1e844610adb8499c8aba79ab6 to your computer and use it in GitHub Desktop.
Get decimals of a token from SOLANA chain from a given address
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
from spl.token._layouts import MINT_LAYOUT | |
from solana.rpc.api import Client, Pubkey | |
http_client = Client("https://api.mainnet-beta.solana.com") | |
# USDC token address | |
addr = Pubkey.from_string("EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v") | |
info = http_client.get_account_info(addr) | |
decimals = MINT_LAYOUT.parse(info.value.data).decimals | |
print(decimals) | |
# Output: 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for pointing out. I have corrected it.