mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-15 03:46:24 +00:00
14 lines
220 B
TypeScript
14 lines
220 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
|