|
| 1 | +import type { DeferredTool, SolanaWalletClient } from "@goat-sdk/core"; |
| 2 | +import type { Connection } from "@solana/web3.js"; |
| 3 | +import type { z } from "zod"; |
| 4 | +import { balanceOf } from "../methods/balance"; |
| 5 | +import { transfer } from "../methods/transfer"; |
| 6 | +import { |
| 7 | + getTokenBalanceByMintAddressParametersSchema, |
| 8 | + getTokenMintAddressBySymbolParametersSchema, |
| 9 | + transferTokenByMintAddressParametersSchema, |
| 10 | +} from "../parameters"; |
| 11 | +import type { SolanaNetwork } from "../tokens"; |
| 12 | +import { getTokenMintAddressBySymbol } from "./getTokenMintAddressBySymbol"; |
| 13 | + |
| 14 | +export function getTools(connection: Connection, network: SolanaNetwork): DeferredTool<SolanaWalletClient>[] { |
| 15 | + const tools: DeferredTool<SolanaWalletClient>[] = []; |
| 16 | + |
| 17 | + tools.push({ |
| 18 | + name: "get_token_mint_address_by_symbol", |
| 19 | + description: "This {{tool}} gets the mint address of an SPL token by its symbol", |
| 20 | + parameters: getTokenMintAddressBySymbolParametersSchema, |
| 21 | + method: async ( |
| 22 | + walletClient: SolanaWalletClient, |
| 23 | + parameters: z.infer<typeof getTokenMintAddressBySymbolParametersSchema>, |
| 24 | + ) => getTokenMintAddressBySymbol(parameters.symbol, network), |
| 25 | + }); |
| 26 | + |
| 27 | + tools.push({ |
| 28 | + name: "get_token_balance_by_mint_address", |
| 29 | + description: |
| 30 | + "This {{tool}} gets the balance of an SPL token by its mint address. Use get_token_mint_address_by_symbol to get the mint address first.", |
| 31 | + parameters: getTokenBalanceByMintAddressParametersSchema, |
| 32 | + method: async ( |
| 33 | + walletClient: SolanaWalletClient, |
| 34 | + parameters: z.infer<typeof getTokenBalanceByMintAddressParametersSchema>, |
| 35 | + ) => balanceOf(connection, parameters.walletAddress, parameters.mintAddress), |
| 36 | + }); |
| 37 | + |
| 38 | + tools.push({ |
| 39 | + name: "transfer_token_by_mint_address", |
| 40 | + description: |
| 41 | + "This {{tool}} transfers an SPL token by its mint address. Use get_token_mint_address_by_symbol to get the mint address first.", |
| 42 | + parameters: transferTokenByMintAddressParametersSchema, |
| 43 | + method: async ( |
| 44 | + walletClient: SolanaWalletClient, |
| 45 | + parameters: z.infer<typeof transferTokenByMintAddressParametersSchema>, |
| 46 | + ) => transfer(connection, network, walletClient, parameters.to, parameters.mintAddress, parameters.amount), |
| 47 | + }); |
| 48 | + |
| 49 | + return tools; |
| 50 | +} |
0 commit comments