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.
- package/dist/chains/index.cjs +2 -2
- package/dist/chains/index.js +1 -1
- package/dist/{chunk-PZEHAYIU.cjs → chunk-N74TARFY.cjs} +2282 -2954
- package/dist/{chunk-SGAVFNGA.js → chunk-XCQTIUTU.js} +2282 -2954
- package/dist/{index-DDgbU3hK.d.ts → index-BpBLcwxn.d.ts} +8 -0
- package/dist/{index-DQCfqVjw.d.cts → index-D3H572Cz.d.cts} +8 -0
- package/dist/index.cjs +177 -122
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +108 -53
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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>;
|