You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/shared/models/loopModels.ts

22 lines
416 B
TypeScript

export interface LoopTerms {
min_swap_amount?: string;
max_swap_amount?: string;
}
export interface LoopQuote {
amount?: number;
swap_fee?: string;
miner_fee?: string;
prepay_amt?: string;
cltv_delta?: number;
swap_payment_dest?: string;
off_chain_swap_routing_fee_percentage?: number;
}
export interface LoopStatus {
htlc_address?: string;
id_bytes?: string;
id?: string;
error?: any;
}