@agentek/tools
Version:
Blockchain tools for AI agents
9 lines • 413 B
JavaScript
import { createToolCollection } from "../client.js";
import { createMarketEventsTool } from "./tools.js";
export function createCoinMarketCalTools({ coinMarketCalApiKey, }) {
if (!coinMarketCalApiKey) {
throw new Error("CoinMarketCal API key is required for using these tools.");
}
return createToolCollection([createMarketEventsTool(coinMarketCalApiKey)]);
}
//# sourceMappingURL=index.js.map