mirror of
https://github.com/d0zingcat/solana-agent-kit.git
synced 2026-05-24 07:36:45 +00:00
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
import { LAMPORTS_PER_SOL, type PublicKey } from "@solana/web3.js";
|
|
import type { SolanaAgentKit } from "../../index";
|
|
import { TOKEN_PROGRAM_ID } from "@solana/spl-token";
|
|
import { getTokenMetadata } from "../../utils/tokenMetadata";
|
|
|
|
/**
|
|
* Get the token balances of a Solana wallet
|
|
* @param agent - SolanaAgentKit instance
|
|
* @param token_address - Optional SPL token mint address. If not provided, returns SOL balance
|
|
* @returns Promise resolving to the balance as an object containing sol balance and token balances with their respective mints, symbols, names and decimals
|
|
*/
|
|
export async function get_token_balance(
|
|
agent: SolanaAgentKit,
|
|
walletAddress?: PublicKey,
|
|
): Promise<{
|
|
sol: number;
|
|
tokens: Array<{
|
|
tokenAddress: string;
|
|
name: string;
|
|
symbol: string;
|
|
balance: number;
|
|
decimals: number;
|
|
}>;
|
|
}> {
|
|
const [lamportsBalance, tokenAccountData] = await Promise.all([
|
|
agent.connection.getBalance(walletAddress ?? agent.wallet_address),
|
|
agent.connection.getParsedTokenAccountsByOwner(
|
|
walletAddress ?? agent.wallet_address,
|
|
{
|
|
programId: TOKEN_PROGRAM_ID,
|
|
},
|
|
),
|
|
]);
|
|
|
|
const removedZeroBalance = tokenAccountData.value.filter(
|
|
(v) => v.account.data.parsed.info.tokenAmount.uiAmount !== 0,
|
|
);
|
|
|
|
const tokenBalances = await Promise.all(
|
|
removedZeroBalance.map(async (v) => {
|
|
const mint = v.account.data.parsed.info.mint;
|
|
const mintInfo = await getTokenMetadata(agent.connection, mint);
|
|
return {
|
|
tokenAddress: mint,
|
|
name: mintInfo.name ?? "",
|
|
symbol: mintInfo.symbol ?? "",
|
|
balance: v.account.data.parsed.info.tokenAmount.uiAmount as number,
|
|
decimals: v.account.data.parsed.info.tokenAmount.decimals as number,
|
|
};
|
|
}),
|
|
);
|
|
|
|
const solBalance = lamportsBalance / LAMPORTS_PER_SOL;
|
|
|
|
return {
|
|
sol: solBalance,
|
|
tokens: tokenBalances,
|
|
};
|
|
}
|