@meshsdk/common 1.7.12 → 1.7.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.
package/dist/index.d.cts CHANGED
@@ -555,7 +555,7 @@ type MeshTxBuilderBody = {
555
555
  strategy: UtxoSelectionStrategy;
556
556
  includeTxFees: boolean;
557
557
  };
558
- network: string;
558
+ network: Network | number[][];
559
559
  };
560
560
  declare const emptyTxBuilderBody: () => MeshTxBuilderBody;
561
561
  type ValidityRange = {
@@ -674,7 +674,7 @@ interface IFetcher {
674
674
  fetchHandleAddress(handle: string): Promise<string>;
675
675
  fetchProtocolParameters(epoch: number): Promise<Protocol>;
676
676
  fetchTxInfo(hash: string): Promise<TransactionInfo>;
677
- fetchUTxOs(hash: string): Promise<UTxO[]>;
677
+ fetchUTxOs(hash: string, index?: number): Promise<UTxO[]>;
678
678
  get(url: string): Promise<any>;
679
679
  }
680
680
 
package/dist/index.d.ts CHANGED
@@ -555,7 +555,7 @@ type MeshTxBuilderBody = {
555
555
  strategy: UtxoSelectionStrategy;
556
556
  includeTxFees: boolean;
557
557
  };
558
- network: string;
558
+ network: Network | number[][];
559
559
  };
560
560
  declare const emptyTxBuilderBody: () => MeshTxBuilderBody;
561
561
  type ValidityRange = {
@@ -674,7 +674,7 @@ interface IFetcher {
674
674
  fetchHandleAddress(handle: string): Promise<string>;
675
675
  fetchProtocolParameters(epoch: number): Promise<Protocol>;
676
676
  fetchTxInfo(hash: string): Promise<TransactionInfo>;
677
- fetchUTxOs(hash: string): Promise<UTxO[]>;
677
+ fetchUTxOs(hash: string, index?: number): Promise<UTxO[]>;
678
678
  get(url: string): Promise<any>;
679
679
  }
680
680
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/common",
3
- "version": "1.7.12",
3
+ "version": "1.7.14",
4
4
  "description": "",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.js",