@meshsdk/common 1.7.13 → 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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -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
|
@@ -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
|
|