@hyperbridge/sdk 1.3.13 → 1.3.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2761,7 +2761,6 @@ declare class IntentGateway {
2761
2761
  failedHeight?: undefined;
2762
2762
  error?: undefined;
2763
2763
  deadline?: undefined;
2764
- height?: undefined;
2765
2764
  };
2766
2765
  } | {
2767
2766
  status: string;
@@ -2772,7 +2771,6 @@ declare class IntentGateway {
2772
2771
  proof?: undefined;
2773
2772
  failedHeight?: undefined;
2774
2773
  error?: undefined;
2775
- height?: undefined;
2776
2774
  };
2777
2775
  } | {
2778
2776
  status: string;
@@ -2781,16 +2779,6 @@ declare class IntentGateway {
2781
2779
  error: string;
2782
2780
  deadline: bigint;
2783
2781
  proof?: undefined;
2784
- height?: undefined;
2785
- };
2786
- } | {
2787
- status: string;
2788
- data: {
2789
- proof: `0x${string}`;
2790
- height: bigint;
2791
- failedHeight?: undefined;
2792
- error?: undefined;
2793
- deadline?: undefined;
2794
2782
  };
2795
2783
  } | {
2796
2784
  status: string;
@@ -12423,7 +12423,7 @@ var IntentGateway = class {
12423
12423
  proof: proofHex,
12424
12424
  stateMachine: destStateMachine
12425
12425
  };
12426
- yield { status: "DESTINATION_FINALIZED", data: { proof: destIProof.proof, height: destIProof.height } };
12426
+ yield { status: "DESTINATION_FINALIZED", data: { proof: destIProof } };
12427
12427
  }
12428
12428
  const getRequest = storedData?.getRequest ?? (yield { status: "AWAITING_GET_REQUEST" });
12429
12429
  if (!getRequest) throw new Error("[Cancel Order]: Get Request not provided");