UNPKG

@agentek/tools

Version:

Blockchain tools for AI agents

17 lines 565 B
import { createToolCollection } from "../client.js"; import { getBalance, getCode, getTransactionCount, getBlock, getBlockNumber, getGasPrice, estimateGas, getFeeHistory, getTransaction, getTransactionReceipt, } from "./tools.js"; export function rpcTools() { return createToolCollection([ getBalance, getCode, getTransactionCount, getBlock, getBlockNumber, getGasPrice, estimateGas, getFeeHistory, getTransaction, getTransactionReceipt, ]); } //# sourceMappingURL=index.js.map