13 lines
214 B
TypeScript
13 lines
214 B
TypeScript
|
|
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;
|