@fleet-sdk/serializer 0.3.2 → 0.3.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/CHANGELOG.md
CHANGED
@@ -935,4 +935,4 @@ function getDistinctTokenIds(outputs) {
|
|
935
935
|
|
936
936
|
export { DataSerializer, SBigInt, SBigIntType, SBool, SBoolType, SByte, SByteType, SColl, SCollType, SConstant, SGenericType, SGroupElement, SGroupElementType, SInt, SIntType, SLong, SLongType, SMonomorphicType, SPair, SPrimitiveType, SShort, SShortType, SSigmaProp, SSigmaPropType, STupleType, SType, SUnit, SUnitType, TypeSerializer, estimateBoxSize, estimateVLQSize, isColl, isTuple, parse, serializeBox, serializeTransaction };
|
937
937
|
//# sourceMappingURL=out.js.map
|
938
|
-
//# sourceMappingURL=index.
|
938
|
+
//# sourceMappingURL=index.mjs.map
|
package/package.json
CHANGED
@@ -1,14 +1,21 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fleet-sdk/serializer",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.4",
|
4
4
|
"description": "Ergo constant serializer and parser.",
|
5
|
-
"main": "./dist/index.
|
6
|
-
"module": "./dist/index.
|
5
|
+
"main": "./dist/index.js",
|
6
|
+
"module": "./dist/index.mjs",
|
7
7
|
"types": "./dist/index.d.ts",
|
8
8
|
"exports": {
|
9
|
-
"
|
10
|
-
|
11
|
-
|
9
|
+
".": {
|
10
|
+
"import": {
|
11
|
+
"types": "./dist/index.d.mts",
|
12
|
+
"default": "./dist/index.mjs"
|
13
|
+
},
|
14
|
+
"require": {
|
15
|
+
"types": "./dist/index.d.ts",
|
16
|
+
"default": "./dist/index.js"
|
17
|
+
}
|
18
|
+
}
|
12
19
|
},
|
13
20
|
"sideEffects": false,
|
14
21
|
"repository": "fleet-sdk/fleet",
|
@@ -24,8 +31,8 @@
|
|
24
31
|
"serialization"
|
25
32
|
],
|
26
33
|
"dependencies": {
|
27
|
-
"@fleet-sdk/common": "^0.3.
|
28
|
-
"@fleet-sdk/crypto": "^0.3.
|
34
|
+
"@fleet-sdk/common": "^0.3.4",
|
35
|
+
"@fleet-sdk/crypto": "^0.3.4"
|
29
36
|
},
|
30
37
|
"engines": {
|
31
38
|
"node": ">=14"
|
File without changes
|
File without changes
|