@heliofi/common-fe 0.2.291 → 0.2.293
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 +2 -0
- package/dist/index.js +2 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ declare enum BlockchainSymbol {
|
|
|
9
9
|
BSC = "BSC",
|
|
10
10
|
TRON = "TRON",
|
|
11
11
|
DOGE = "DOGE",
|
|
12
|
+
TON = "TON",
|
|
12
13
|
}
|
|
13
14
|
//#endregion
|
|
14
15
|
//#region ../common/src/domain/model/blockchainEngine/constants/BlockchainEngineType.d.ts
|
|
@@ -19,6 +20,7 @@ declare enum BlockchainEngineType {
|
|
|
19
20
|
TRON = "TRON",
|
|
20
21
|
HYPERCORE = "HYPERCORE",
|
|
21
22
|
DOGE = "DOGE",
|
|
23
|
+
TON = "TON",
|
|
22
24
|
}
|
|
23
25
|
//#endregion
|
|
24
26
|
//#region ../common/src/domain/constants/platform.d.ts
|
package/dist/index.js
CHANGED
|
@@ -9,6 +9,7 @@ let BlockchainSymbol = /* @__PURE__ */ function(BlockchainSymbol) {
|
|
|
9
9
|
BlockchainSymbol["BSC"] = "BSC";
|
|
10
10
|
BlockchainSymbol["TRON"] = "TRON";
|
|
11
11
|
BlockchainSymbol["DOGE"] = "DOGE";
|
|
12
|
+
BlockchainSymbol["TON"] = "TON";
|
|
12
13
|
return BlockchainSymbol;
|
|
13
14
|
}({});
|
|
14
15
|
//#endregion
|
|
@@ -20,6 +21,7 @@ let BlockchainEngineType = /* @__PURE__ */ function(BlockchainEngineType) {
|
|
|
20
21
|
BlockchainEngineType["TRON"] = "TRON";
|
|
21
22
|
BlockchainEngineType["HYPERCORE"] = "HYPERCORE";
|
|
22
23
|
BlockchainEngineType["DOGE"] = "DOGE";
|
|
24
|
+
BlockchainEngineType["TON"] = "TON";
|
|
23
25
|
return BlockchainEngineType;
|
|
24
26
|
}({});
|
|
25
27
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heliofi/common-fe",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.293",
|
|
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": "d27d7eb16aadbc9c7961932142dcb20db3856911"
|
|
33
33
|
}
|