Skip to content

Commit e980ef8

Browse files
committed
get_solana_token_balance_by_mint_address
1 parent 9288b86 commit e980ef8

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import { getAssociatedTokenAddressSync } from "@solana/spl-token";
22
import { type Connection, PublicKey } from "@solana/web3.js";
3-
import type { NetworkSpecificToken } from "../tokens";
43

5-
export async function balanceOf(connection: Connection, walletAddress: string, token: NetworkSpecificToken) {
6-
const tokenAccount = getAssociatedTokenAddressSync(new PublicKey(token.mintAddress), new PublicKey(walletAddress));
4+
export async function balanceOf(connection: Connection, walletAddress: string, tokenAddress: string) {
5+
const tokenAccount = getAssociatedTokenAddressSync(new PublicKey(tokenAddress), new PublicKey(walletAddress));
76
const balance = await connection.getTokenAccountBalance(tokenAccount);
87
return balance;
98
}

typescript/packages/plugins/spl-token/src/parameters.ts

+4
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ export const transferParametersSchema = z.object({
88
to: z.string().describe("The address to transfer the token to"),
99
amount: z.string().describe("The amount of tokens to transfer"),
1010
});
11+
12+
export const getTokenBalanceByMintAddressParametersSchema = getBalanceParametersSchema.extend({
13+
mintAddress: z.string().describe("The mint address of the token to get the balance of"),
14+
});

typescript/packages/plugins/spl-token/src/utils/getTools.ts

+18-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ import type { Connection } from "@solana/web3.js";
33
import type { z } from "zod";
44
import { balanceOf } from "../methods/balance";
55
import { transfer } from "../methods/transfer";
6-
import { getBalanceParametersSchema, transferParametersSchema } from "../parameters";
6+
import {
7+
getBalanceParametersSchema,
8+
getTokenBalanceByMintAddressParametersSchema,
9+
transferParametersSchema,
10+
} from "../parameters";
711
import type { NetworkSpecificToken } from "../tokens";
812

913
export function getTools(
@@ -14,15 +18,15 @@ export function getTools(
1418

1519
for (const token of tokenList) {
1620
const balanceTool: DeferredTool<SolanaWalletClient> = {
17-
name: `get_${token.symbol}_balance`,
21+
name: `get_solana_${token.symbol}_balance`,
1822
description: `This {{tool}} gets the balance of ${token.symbol}`,
1923
parameters: getBalanceParametersSchema,
2024
method: async (walletClient: SolanaWalletClient, parameters: z.infer<typeof getBalanceParametersSchema>) =>
21-
balanceOf(connection, parameters.wallet, token),
25+
balanceOf(connection, parameters.wallet, token.mintAddress),
2226
};
2327

2428
const transferTool: DeferredTool<SolanaWalletClient> = {
25-
name: `transfer_${token.symbol}`,
29+
name: `transfer_solana_${token.symbol}`,
2630
description: `This {{tool}} transfers ${token.symbol}`,
2731
parameters: transferParametersSchema,
2832
method: async (walletClient: SolanaWalletClient, parameters: z.infer<typeof transferParametersSchema>) =>
@@ -32,5 +36,15 @@ export function getTools(
3236
tools.push(balanceTool, transferTool);
3337
}
3438

39+
tools.push({
40+
name: "get_solana_token_balance_by_mint_address",
41+
description: "This {{tool}} gets the balance of an SPL token by its mint address",
42+
parameters: getTokenBalanceByMintAddressParametersSchema,
43+
method: async (
44+
walletClient: SolanaWalletClient,
45+
parameters: z.infer<typeof getTokenBalanceByMintAddressParametersSchema>,
46+
) => balanceOf(connection, parameters.wallet, parameters.mintAddress),
47+
});
48+
3549
return tools;
3650
}

0 commit comments

Comments
 (0)