UNPKG

@coinmeca/ui

Version:

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

23 lines 1 kB
export type AddressString = `0x${string}`; export type Category = 'Order' | 'Bid' | 'Ask' | 'Buy' | 'Sell' | 'Deposit' | 'Withdraw' | 'Stake' | 'Unstake' | 'Claim' | 'Long' | 'Short' | 'Futures' | 'Perpetual' | 'Earn' | 'Charge' | 'Grant' | 'Lockup' | 'Vesting' | 'Listing'; export type Option = 'general' | 'market' | 'limit' | 'debit' | 'prepaid' | 'postpaid' | 'linear' | 'cliff' | 'rate'; export type State = 'Pending' | 'Filled' | 'Claimable' | 'Complete' | 'Cancel' | 'Open' | 'Close' | 'Liquidated' | 'Requested' | 'Paid' | 'Shipping' | 'Proceeding' | 'Terminated' | 'Expired'; export declare const c: string[]; export declare const o: string[]; export declare const s: string[]; export interface History { key: string; category: Category; option: Option; state: State; time: number; price: number; amount: number; quantity: number; fees: number; pay: string; item: string; owner: string; market: string; } //# sourceMappingURL=history.d.ts.map