mirror of
https://github.com/RoboSats/robosats.git
synced 2025-08-06 23:40:09 +00:00
12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
export interface Limit {
|
|
code: string;
|
|
price: number;
|
|
min_amount: number;
|
|
max_amount: number;
|
|
max_bondless_amount: number;
|
|
}
|
|
|
|
export type LimitList = Record<string, Limit>;
|
|
|
|
export default Limit;
|