trade-backend/src/interfaces/database/ExchangeRow.ts

13 lines
214 B
TypeScript
Raw Normal View History

2025-07-01 21:07:46 +05:00
interface ExchangeRow {
id: string;
buy_order_id: string;
sell_order_id: string;
amount: number;
timestamp: string;
status: string;
creator: string;
hex_raw_proposal: string;
}
export default ExchangeRow;