@@ -3,7 +3,11 @@ import type { Connection } from "@solana/web3.js";
3
3
import type { z } from "zod" ;
4
4
import { balanceOf } from "../methods/balance" ;
5
5
import { transfer } from "../methods/transfer" ;
6
- import { getBalanceParametersSchema , transferParametersSchema } from "../parameters" ;
6
+ import {
7
+ getBalanceParametersSchema ,
8
+ getTokenBalanceByMintAddressParametersSchema ,
9
+ transferParametersSchema ,
10
+ } from "../parameters" ;
7
11
import type { NetworkSpecificToken } from "../tokens" ;
8
12
9
13
export function getTools (
@@ -14,15 +18,15 @@ export function getTools(
14
18
15
19
for ( const token of tokenList ) {
16
20
const balanceTool : DeferredTool < SolanaWalletClient > = {
17
- name : `get_ ${ token . symbol } _balance` ,
21
+ name : `get_solana_ ${ token . symbol } _balance` ,
18
22
description : `This {{tool}} gets the balance of ${ token . symbol } ` ,
19
23
parameters : getBalanceParametersSchema ,
20
24
method : async ( walletClient : SolanaWalletClient , parameters : z . infer < typeof getBalanceParametersSchema > ) =>
21
- balanceOf ( connection , parameters . wallet , token ) ,
25
+ balanceOf ( connection , parameters . wallet , token . mintAddress ) ,
22
26
} ;
23
27
24
28
const transferTool : DeferredTool < SolanaWalletClient > = {
25
- name : `transfer_ ${ token . symbol } ` ,
29
+ name : `transfer_solana_ ${ token . symbol } ` ,
26
30
description : `This {{tool}} transfers ${ token . symbol } ` ,
27
31
parameters : transferParametersSchema ,
28
32
method : async ( walletClient : SolanaWalletClient , parameters : z . infer < typeof transferParametersSchema > ) =>
@@ -32,5 +36,15 @@ export function getTools(
32
36
tools . push ( balanceTool , transferTool ) ;
33
37
}
34
38
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
+
35
49
return tools ;
36
50
}
0 commit comments