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 |