robosats/frontend/src/models/Limit.model.ts

14 lines
220 B
TypeScript
Raw Normal View History

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