genlayer-js 0.28.4 → 0.28.6

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.
@@ -2916,6 +2916,14 @@ type GenLayerClient<TGenLayerChain extends GenLayerChain> = Omit<Client<Transpor
2916
2916
  txId: `0x${string}`;
2917
2917
  value?: bigint;
2918
2918
  }) => Promise<any>;
2919
+ finalizeTransaction: (args: {
2920
+ account?: Account;
2921
+ txId: `0x${string}`;
2922
+ }) => Promise<`0x${string}`>;
2923
+ finalizeIdlenessTxs: (args: {
2924
+ account?: Account;
2925
+ txIds: readonly `0x${string}`[];
2926
+ }) => Promise<`0x${string}`>;
2919
2927
  getMinAppealBond: (args: {
2920
2928
  txId: `0x${string}`;
2921
2929
  }) => Promise<bigint>;
@@ -2916,6 +2916,14 @@ type GenLayerClient<TGenLayerChain extends GenLayerChain> = Omit<Client<Transpor
2916
2916
  txId: `0x${string}`;
2917
2917
  value?: bigint;
2918
2918
  }) => Promise<any>;
2919
+ finalizeTransaction: (args: {
2920
+ account?: Account;
2921
+ txId: `0x${string}`;
2922
+ }) => Promise<`0x${string}`>;
2923
+ finalizeIdlenessTxs: (args: {
2924
+ account?: Account;
2925
+ txIds: readonly `0x${string}`[];
2926
+ }) => Promise<`0x${string}`>;
2919
2927
  getMinAppealBond: (args: {
2920
2928
  txId: `0x${string}`;
2921
2929
  }) => Promise<bigint>;