node-bithumb
Version:
NodeJS wrapped for Bithumb API
19 lines (18 loc) • 470 B
TypeScript
import { IBithumbResponse } from './bithumb-response.interface';
interface IUserTransactions {
search: string;
transfer_date: number;
order_currenecy: string;
payment_currency: string;
units: string;
price: string;
amount: string;
fee_currency: string;
fee: string;
order_balance: string;
payment_balance: string;
}
export interface IPostUserTransactions extends IBithumbResponse {
data: IUserTransactions[];
}
export {};