@reservoir0x/relay-sdk
Version:
Relay is the Fastest and Cheapest Way to Bridge and Transact Across Chains.
16 lines • 499 B
TypeScript
import type { Execute, ExecuteStep, ExecuteStepItem } from '../types/Execute.js';
export type ProgressData = {
steps: Execute['steps'];
fees?: Execute['fees'];
breakdown?: Execute['breakdown'];
details?: Execute['details'];
currentStep?: ExecuteStep | null;
currentStepItem?: ExecuteStepItem;
txHashes?: {
txHash: string;
chainId: number;
}[];
error?: Execute['error'];
refunded?: Execute['refunded'];
};
//# sourceMappingURL=Progress.d.ts.map