mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-04-11 13:38:38 +03:00
16 lines
341 B
TypeScript
16 lines
341 B
TypeScript
import { z } from 'zod';
|
|
|
|
const cfdHistorySchema = z.array(z.object({
|
|
address: z.string(),
|
|
instrument: z.string(),
|
|
balance: z.string(),
|
|
position: z.string(),
|
|
reason: z.string(),
|
|
positionPrice: z.string(),
|
|
fundingRate: z.string(),
|
|
transactionHash: z.string(),
|
|
blockNumber: z.number(),
|
|
}));
|
|
|
|
export default cfdHistorySchema;
|