@meshsdk/common 1.9.0-beta.2 → 1.9.0-beta.4
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 +3 -4
- package/dist/index.d.ts +3 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1528,11 +1528,10 @@ interface IFetcher {
|
|
|
1528
1528
|
}
|
|
1529
1529
|
|
|
1530
1530
|
interface IInitiator {
|
|
1531
|
-
getChangeAddress():
|
|
1532
|
-
getCollateral():
|
|
1533
|
-
getUtxos():
|
|
1531
|
+
getChangeAddress(): Promise<string>;
|
|
1532
|
+
getCollateral(): Promise<UTxO[]>;
|
|
1533
|
+
getUtxos(): Promise<UTxO[]>;
|
|
1534
1534
|
}
|
|
1535
|
-
type SometimesPromise<T> = Promise<T> | T;
|
|
1536
1535
|
|
|
1537
1536
|
interface IListener {
|
|
1538
1537
|
onTxConfirmed(txHash: string, callback: () => void, limit?: number): void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1528,11 +1528,10 @@ interface IFetcher {
|
|
|
1528
1528
|
}
|
|
1529
1529
|
|
|
1530
1530
|
interface IInitiator {
|
|
1531
|
-
getChangeAddress():
|
|
1532
|
-
getCollateral():
|
|
1533
|
-
getUtxos():
|
|
1531
|
+
getChangeAddress(): Promise<string>;
|
|
1532
|
+
getCollateral(): Promise<UTxO[]>;
|
|
1533
|
+
getUtxos(): Promise<UTxO[]>;
|
|
1534
1534
|
}
|
|
1535
|
-
type SometimesPromise<T> = Promise<T> | T;
|
|
1536
1535
|
|
|
1537
1536
|
interface IListener {
|
|
1538
1537
|
onTxConfirmed(txHash: string, callback: () => void, limit?: number): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshsdk/common",
|
|
3
|
-
"version": "1.9.0-beta.
|
|
3
|
+
"version": "1.9.0-beta.4",
|
|
4
4
|
"description": "Contains constants, types and interfaces used across the SDK and different serialization libraries",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"browser": "./dist/index.js",
|