rubic-sdk
Version:
Simplify dApp creation
9 lines (8 loc) • 322 B
TypeScript
export declare const SYMBIOSIS_SWAP_STATUS: {
readonly STUCKED: "Stucked";
readonly REVERTED: "Reverted";
readonly SUCCESS: "Success";
readonly PENDING: "Pending";
readonly NOT_FOUND: "Not found";
};
export type SymbiosisSwapStatus = (typeof SYMBIOSIS_SWAP_STATUS)[keyof typeof SYMBIOSIS_SWAP_STATUS];