@hashgraphonline/hashinal-wc 1.0.65 → 1.0.67
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/es/hashinal-wc.es.js +12 -1
- package/dist/es/hashinal-wc.es.js.map +1 -1
- package/dist/es/index.d.ts +69 -0
- package/dist/es/logger/logger.d.ts +14 -0
- package/dist/es/types.d.ts +179 -0
- package/dist/es/utils/retry.d.ts +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/types.d.ts +180 -0
- package/dist/umd/hashinal-wc.umd.js +2 -2
- package/dist/umd/hashinal-wc.umd.js.map +1 -1
- package/dist/umd/index.d.ts +69 -0
- package/dist/umd/logger/logger.d.ts +14 -0
- package/dist/umd/types.d.ts +179 -0
- package/dist/umd/utils/retry.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1799,6 +1799,15 @@ class DefaultLogger {
|
|
|
1799
1799
|
const fetchWithRetry = () => retryFetch(fetch, {
|
|
1800
1800
|
retries: 3
|
|
1801
1801
|
});
|
|
1802
|
+
var Name = /* @__PURE__ */ ((Name2) => {
|
|
1803
|
+
Name2["Contractcall"] = "CONTRACTCALL";
|
|
1804
|
+
Name2["Cryptotransfer"] = "CRYPTOTRANSFER";
|
|
1805
|
+
return Name2;
|
|
1806
|
+
})(Name || {});
|
|
1807
|
+
var Result = /* @__PURE__ */ ((Result2) => {
|
|
1808
|
+
Result2["Success"] = "SUCCESS";
|
|
1809
|
+
return Result2;
|
|
1810
|
+
})(Result || {});
|
|
1802
1811
|
class HashinalsWalletConnectSDK {
|
|
1803
1812
|
constructor(logger, network) {
|
|
1804
1813
|
this.logger = logger || new DefaultLogger();
|
|
@@ -2315,6 +2324,8 @@ class HashinalsWalletConnectSDK {
|
|
|
2315
2324
|
}
|
|
2316
2325
|
export {
|
|
2317
2326
|
HashgraphSDK,
|
|
2318
|
-
HashinalsWalletConnectSDK
|
|
2327
|
+
HashinalsWalletConnectSDK,
|
|
2328
|
+
Name,
|
|
2329
|
+
Result
|
|
2319
2330
|
};
|
|
2320
2331
|
//# sourceMappingURL=hashinal-wc.es.js.map
|