@koralabs/kora-labs-common 6.4.8 → 6.4.10

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.
@@ -19,11 +19,10 @@ export declare enum UTxOFunctionName {
19
19
  }
20
20
  export type UTxOFunctions = {
21
21
  [UTxOFunctionName.ADD_UTXO]: (utxo: UTxOWithTxInfo) => void;
22
- [UTxOFunctionName.UPDATE_HOLDER_INDEX]: (utxo: UTxOWithTxInfo, mintingData?: Map<string, MintingData[]>, holders?: Map<string, HolderHandleNames>) => void;
23
- [UTxOFunctionName.UPDATE_HANDLE_INDEXES]: (utxo: UTxOWithTxInfo, mintingData?: Map<string, MintingData[]>, handles?: Map<string, StoredHandle>) => void;
22
+ [UTxOFunctionName.UPDATE_HANDLE_INDEXES]: (utxo: UTxOWithTxInfo, mintingData?: Map<string, MintingData[]>, handles?: Map<string, StoredHandle>, holders?: Map<string, HolderHandleNames>) => void;
24
23
  };
25
24
  export interface IApiStore {
26
- initialize: () => Promise<IApiStore>;
25
+ initialize: () => IApiStore;
27
26
  destroy: () => void;
28
27
  rollBackToGenesis: () => void;
29
28
  pipeline: (commands: CallableFunction) => ApiIndexType | ApiIndexType[] | void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koralabs/kora-labs-common",
3
- "version": "6.4.8",
3
+ "version": "6.4.10",
4
4
  "description": "Kora Labs Common Utilities",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",