Docs

BuyWithCryptoStatus

The object returned by the getBuyWithCryptoStatus function to represent the status of a quoted transaction

type BuyWithCryptoStatus =
| { status: "NOT_FOUND" }
| {
bridge?: string;
failureMessage?: string;
fromAddress: string;
quote: BuyWithCryptoQuoteSummary;
status: BuyWithCryptoStatuses;
subStatus: BuyWithCryptoSubStatuses;
swapType: SwapType;
toAddress: string;
};