@coinbase/agentkit
Version:
Coinbase AgentKit core primitives
17 lines (16 loc) • 454 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FindTokenSchema = void 0;
const zod_1 = require("zod");
/**
* Input schema for find token action
*/
exports.FindTokenSchema = zod_1.z
.object({
search: zod_1.z
.string()
.min(2)
.describe("Either the (partial or complete) symbol OR the address of the token to find"),
})
.strip()
.describe("Instructions for finding a token");