lib-base.stabilitydepositchange

Home > @mosaic/lib-base > StabilityDepositChange

StabilityDepositChange type

Represents the change between two Stability Deposit states.

Signature:

export declare type StabilityDepositChange<T> = {
    depositMoUSD: T;
    withdrawMoUSD?: undefined;
} | {
    depositMoUSD?: undefined;
    withdrawMoUSD: T;
    withdrawAllMoUSD: boolean;
};

Last updated