@heliofi/common-fe 0.2.279 → 0.2.280
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.ts +8 -1
- package/dist/index.js +9 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -61,4 +61,11 @@ declare enum SignedTransactionKind {
|
|
|
61
61
|
HYPERCORE = "hypercore",
|
|
62
62
|
}
|
|
63
63
|
//#endregion
|
|
64
|
-
|
|
64
|
+
//#region ../common/src/domain/constants/generalNetwork.d.ts
|
|
65
|
+
declare enum GeneralNetwork {
|
|
66
|
+
MAINNET = "mainnet",
|
|
67
|
+
TESTNET = "testnet",
|
|
68
|
+
DEVNET = "devnet",
|
|
69
|
+
}
|
|
70
|
+
//#endregion
|
|
71
|
+
export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, WithdrawalFeature, WithdrawalState };
|
package/dist/index.js
CHANGED
|
@@ -79,4 +79,12 @@ let SignedTransactionKind = /* @__PURE__ */ function(SignedTransactionKind) {
|
|
|
79
79
|
return SignedTransactionKind;
|
|
80
80
|
}({});
|
|
81
81
|
//#endregion
|
|
82
|
-
|
|
82
|
+
//#region ../common/src/domain/constants/generalNetwork.ts
|
|
83
|
+
let GeneralNetwork = /* @__PURE__ */ function(GeneralNetwork) {
|
|
84
|
+
GeneralNetwork["MAINNET"] = "mainnet";
|
|
85
|
+
GeneralNetwork["TESTNET"] = "testnet";
|
|
86
|
+
GeneralNetwork["DEVNET"] = "devnet";
|
|
87
|
+
return GeneralNetwork;
|
|
88
|
+
}({});
|
|
89
|
+
//#endregion
|
|
90
|
+
export { BlockchainEngineType, BlockchainSymbol, BroadcastAck, GeneralNetwork, Platform, SignedTransactionKind, WithdrawalFeature, WithdrawalState };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heliofi/common-fe",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.280",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Zero-dependency, frontend-safe shared enums (and, later, DTO type shapes) for Helio consumers. No class-validator / reflect-metadata / heavy blockchain deps.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"typescript": "5.*"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "909e229c87684ff7f0341c01ddac2067cab5119c"
|
|
33
33
|
}
|