Apps and Actions
Learn about apps and actions in Vity Toolkit
What are tools?
What are Apps and Actions?
import { App, Action, LangchainToolkit } from "vity-toolkit";
const toolKit = new LangchainToolkit();
// Get all actions/tools from the app
const tools = toolKit.getTools({ apps: [App.SOLANA_WALLET] });
// Get specific actions/tools
const tools = toolKit.getTools({ actions: [Action.SOLANA_WALLET_GENERATE_KEYPAIR, Action.SOLANA_WALLET_GET_BALANCE, Action.SOLANA_WALLET_GET_MY_PUBLIC_KEY] });Last updated