UNPKG

@agentek/tools

Version:

Blockchain tools for AI agents

11 lines 362 B
import { createToolCollection } from "../client.js"; import { getLatestBtcBlock, getBlockTxids, getBtcTxDetails, getBtcAddressInfo } from "./tools.js"; export function btcRpcTools() { return createToolCollection([ getLatestBtcBlock, getBlockTxids, getBtcTxDetails, getBtcAddressInfo ]); } //# sourceMappingURL=index.js.map