@rash2x/bridge-widget 0.6.50 → 0.6.51

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.
package/dist/index.d.ts CHANGED
@@ -153,6 +153,7 @@ declare interface CurrentTransaction {
153
153
  srcTxHash?: string;
154
154
  dstTxHash?: string;
155
155
  messageId?: string;
156
+ tonTransactionHash?: string;
156
157
  createdAt: number;
157
158
  updatedAt: number;
158
159
  errorCode?: string;
@@ -623,8 +624,10 @@ declare interface TransactionActions {
623
624
  updateStatus: (status: TxStatus_2) => void;
624
625
  setSrcHash: (hash?: string) => void;
625
626
  setDstHash: (hash?: string) => void;
627
+ setTonTransactionHash: (hash?: string) => void;
626
628
  setError: (errorCode: string, errorParams?: Record<string, any>) => void;
627
629
  updateActualFee: (feeValue: number, feeSymbol: string) => void;
630
+ updateLayerZeroTotalFee: (feeValue: number, feeSymbol: string, feeUsd?: number) => void;
628
631
  reset: () => void;
629
632
  }
630
633
 
@@ -644,6 +647,9 @@ declare interface TransactionMetadata {
644
647
  dstAmountHuman: number;
645
648
  actualFeeValue?: number;
646
649
  actualFeeSymbol?: string;
650
+ layerZeroTotalFeeValue?: number;
651
+ layerZeroTotalFeeSymbol?: string;
652
+ layerZeroTotalFeeUsd?: number;
647
653
  }
648
654
 
649
655
  declare interface TransactionState {