rubic-sdk
Version:
Simplify dApp creation
9 lines (8 loc) • 328 B
TypeScript
export interface ChangellyExchangeStatusResponse {
id: string;
payinHash: string | null;
payoutHash: string | null;
status: ChangellyTxStatus;
}
type ChangellyTxStatus = 'new' | 'waiting' | 'confirming' | 'exchanging' | 'sending' | 'finished' | 'failed' | 'refunded' | 'hold' | 'overdue' | 'expired';
export {};