@coinbase/agentkit
Version:
Coinbase AgentKit core primitives
16 lines (15 loc) • 523 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetWalletPortfolioSchema = void 0;
const zod_1 = require("zod");
/**
* Input schema for getting wallet portfolio.
*/
exports.GetWalletPortfolioSchema = zod_1.z
.object({
walletAddress: zod_1.z
.string()
.describe("The wallet address to fetch portfolio for. Defaults is empty string, which will raise an error later if not provided."),
})
.strip()
.describe("Input schema for fetching wallet portfolio");