@agentek/tools
Version:
Blockchain tools for AI agents
18 lines • 606 B
JavaScript
import { createToolCollection } from "../client.js";
import { intentApproveTool } from "./intents.js";
import { getAllowanceTool, getBalanceOfTool, getTotalSupplyTool, getDecimalsTool, getNameTool, getSymbolTool, getTokenMetadataTool, } from "./tools.js";
export function erc20Tools() {
return createToolCollection([
// tools
getAllowanceTool,
getBalanceOfTool,
getTotalSupplyTool,
getDecimalsTool,
getNameTool,
getSymbolTool,
getTokenMetadataTool,
// intents
intentApproveTool,
]);
}
//# sourceMappingURL=index.js.map