@agentek/tools
Version:
Blockchain tools for AI agents
12 lines • 558 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createCoinMarketCalTools = createCoinMarketCalTools;
const client_js_1 = require("../client.js");
const tools_js_1 = require("./tools.js");
function createCoinMarketCalTools({ coinMarketCalApiKey, }) {
if (!coinMarketCalApiKey) {
throw new Error("CoinMarketCal API key is required for using these tools.");
}
return (0, client_js_1.createToolCollection)([(0, tools_js_1.createMarketEventsTool)(coinMarketCalApiKey)]);
}
//# sourceMappingURL=index.js.map