tokens.getToken
Gets the metadata for an SPL token from the SPL token registry
Last updated
Gets the metadata for an SPL token from the SPL token registry
(async() => {
let token_info_1 = await SOLPay.tokens.getToken("TOKEN_ADDRESS"); // {...}
let token_info_2 = await SOLPay.tokens.getToken("TOKEN_ADDRESS", true); // {...}
})();address: string - the mint address of the token with which to get the info from the SPL token registry
skip_validation (optional, default: false): boolean - whether to skip validation on if a token in the SPL token registry is a valid SPL token (true for skipping validation, false for not skipping validation)
object ({...}) - the token information (see https://github.com/solana-labs/token-list/blob/main/src/tokens/solana.tokenlist.json for format)
SOL Pay SDK Fatal Error: Invalid address ${address}. - an invalid address was used
SOL Pay SDK Fatal Error: No connection found. Use SOLPay.connectNetwork() to connect to the Solana network. - could not find a connection to the Solana network
SOL Pay SDK Fatal Error: Connection did not respond. Use SOLPay.connectNetwork() to connect to the Solana network. - did not receive response from Solana network
Last updated