@synapsecns/widget
Version:
Widget library for interacting with the Synapse Protocol
13 lines (12 loc) • 467 B
TypeScript
interface UseBridgeTxStatusProps {
synapseSDK: any;
originChainId: number;
destinationChainId: number;
originTxHash: string;
bridgeModuleName?: string;
kappa?: string;
checkStatus: boolean;
currentTime: number;
}
export declare const useBridgeTxStatus: ({ synapseSDK, originChainId, destinationChainId, originTxHash, bridgeModuleName, kappa, checkStatus, currentTime, }: UseBridgeTxStatusProps) => [boolean, string | null];
export {};