UNPKG

@agentek/tools

Version:

Blockchain tools for AI agents

13 lines 405 B
import { createToolCollection } from "../client.js"; import { intentCreateCoinToken } from "./intents.js"; import { getCoinTokenMetadata, getCoinBalance } from "./tools.js"; export function erc6909Tools() { return createToolCollection([ // tools getCoinTokenMetadata, getCoinBalance, // intents intentCreateCoinToken, ]); } //# sourceMappingURL=index.js.map