@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;
@@ -12374,7 +12374,7 @@ var IntentGateway = class {
12374
12374
  proof: proofHex,
12375
12375
  stateMachine: destStateMachine
12376
12376
  };
12377
- yield { status: "DESTINATION_FINALIZED", data: { proof: destIProof.proof, height: destIProof.height } };
12377
+ yield { status: "DESTINATION_FINALIZED", data: { proof: destIProof } };
12378
12378
  }
12379
12379
  const getRequest = storedData?.getRequest ?? (yield { status: "AWAITING_GET_REQUEST" });
12380
12380
  if (!getRequest) throw new Error("[Cancel Order]: Get Request not provided");