Type alias RevertOrchestrator

RevertOrchestrator: ExternalOrchestratorBase & {
    recallUnclaimedTransfer: (() => Promise<void>);
    revertTransfer: (() => Promise<void>);
}

Type declaration

  • recallUnclaimedTransfer: (() => Promise<void>)

    Recall a transfer which reached the target chain, but which was not claimed by the recipient within the timeout period

      • (): Promise<void>
      • Returns Promise<void>

  • revertTransfer: (() => Promise<void>)

    Reverts a transfer that was initiated but which did not reach its destination within the timeout period

      • (): Promise<void>
      • Returns Promise<void>