@agentek/tools
Version:
Blockchain tools for AI agents
14 lines • 491 B
JavaScript
import { createToolCollection } from "../client.js";
import { getAaveUserData, getAaveReserveData } from "./tools.js";
import { intentAaveDeposit, intentAaveWithdraw, intentAaveBorrow, intentAaveRepay, } from "./intents.js";
export function aaveTools() {
return createToolCollection([
getAaveUserData,
getAaveReserveData,
intentAaveDeposit,
intentAaveWithdraw,
intentAaveBorrow,
intentAaveRepay,
]);
}
//# sourceMappingURL=index.js.map