/** * Validation Schemas * * Runtime validation using Zod for all SDK inputs. * Catches errors before making API calls. * * **Shared Utilities:** * - {@link ValidationError} - User-friendly validation error class * - {@link validate} - Helper function for schema validation * * **Schema Modules:** * - Trading schemas (orders, trading pairs) * - Vault schemas (deposits, withdrawals) * - Market schemas (trading pairs, candlesticks) */ export * from "./common.js"; export * from "./margin-accounts.js"; export * from "./market.js"; export * from "./positions.js"; export * from "./profile.js"; export * from "./trading.js"; export * from "./vault.js";