Type Alias NativeBridgeOperation

NativeBridgeOperation: {
    amount: string;
    demoAddress: string;
    destinationAddress: string;
    destinationChain: NativeBridgeSupportedEVMChain | SupportedNonEVMChain;
    destinationChainType: NativeBridgeSupportedChain;
    originAddress: string;
    originChain: NativeBridgeSupportedEVMChain | SupportedNonEVMChain;
    originChainType: NativeBridgeSupportedChain;
    status:
        | "empty"
        | "pending"
        | "completed"
        | "failed";
    token: NativeBridgeSupportedStablecoin;
    txHash: string;
}