Interface QuoteSaverWithdrawResponse

Export

QuoteSaverWithdrawResponse

interface QuoteSaverWithdrawResponse {
    dust_amount: string;
    dust_threshold?: string;
    expected_amount_out: string;
    expiry: number;
    fees: QuoteFees;
    inbound_address: string;
    inbound_confirmation_blocks?: number;
    inbound_confirmation_seconds?: number;
    memo: string;
    notes: string;
    outbound_delay_blocks: number;
    outbound_delay_seconds: number;
    recommended_min_amount_in?: string;
    router?: string;
    slippage_bps: number;
    streaming_slippage_bps?: number;
    warning: string;
}

Properties

dust_amount: string

the dust amount of the target asset the user should send to initialize the withdraw, the client can send this OR provide the memo

Memberof

QuoteSaverWithdrawResponse

dust_threshold?: string

Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transactions with asset amounts lower than the dust_threshold are ignored.

Memberof

QuoteSaverWithdrawResponse

expected_amount_out: string

the amount of the target asset the user can expect to withdraw after fees in 1e8 decimals

Memberof

QuoteSaverWithdrawResponse

expiry: number

expiration timestamp in unix seconds

Memberof

QuoteSaverWithdrawResponse

fees: QuoteFees

Memberof

QuoteSaverWithdrawResponse

inbound_address: string

the inbound address for the transaction on the source chain

Memberof

QuoteSaverWithdrawResponse

inbound_confirmation_blocks?: number

the approximate number of source chain blocks required before processing

Memberof

QuoteSaverWithdrawResponse

inbound_confirmation_seconds?: number

the approximate seconds for block confirmations required before processing

Memberof

QuoteSaverWithdrawResponse

memo: string

generated memo for the withdraw, the client can use this OR send the dust amount

Memberof

QuoteSaverWithdrawResponse

notes: string

chain specific quote notes

Memberof

QuoteSaverWithdrawResponse

outbound_delay_blocks: number

the number of thorchain blocks the outbound will be delayed

Memberof

QuoteSaverWithdrawResponse

outbound_delay_seconds: number

the approximate seconds for the outbound delay before it will be sent

Memberof

QuoteSaverWithdrawResponse

recommended_min_amount_in?: string

The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.

Memberof

QuoteSaverWithdrawResponse

router?: string

the EVM chain router contract address

Memberof

QuoteSaverWithdrawResponse

slippage_bps: number

Deprecated - migrate to fees object.

Memberof

QuoteSaverWithdrawResponse

streaming_slippage_bps?: number

Deprecated - migrate to fees object.

Memberof

QuoteSaverWithdrawResponse

warning: string

static warning message

Memberof

QuoteSaverWithdrawResponse

Generated using TypeDoc