Type Alias ProgressStep

ProgressStep: {
    data?:
        | {
            chainID: number;
            chainName: string;
        }
        | {
            confirmed: number;
            total: number;
        }
        | {
            amount: string;
            chainName: string;
            symbol: string;
        }
        | {
            explorerURL: string;
            intentHash: `0x${string}`;
        };
    type: string;
    typeID: string;
}