mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 19:36:24 +00:00
14 lines
223 B
TypeScript
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;
|