robosats/frontend/src/models/Limit.model.ts
2022-09-09 10:25:55 -07:00

14 lines
223 B
TypeScript

export interface Limit {
code: string;
price: number;
min_amount: number;
max_amount: number;
max_bondless_amount: number;
}
export interface LimitList {
[currencyCode: string]: Limit;
}
export default Limit;