@taquito/michelson-encoder 23.0.2 → 23.1.0
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/lib/constants.js +11 -0
- package/dist/lib/michelson-map.js +8 -14
- package/dist/lib/schema/parameter.js +1 -8
- package/dist/lib/schema/storage.js +18 -25
- package/dist/lib/schema/view-schema.js +2 -2
- package/dist/lib/taquito-michelson-encoder.js +3 -2
- package/dist/lib/tokens/bigmap.js +0 -12
- package/dist/lib/tokens/bls12-381-fr.js +0 -7
- package/dist/lib/tokens/bls12-381-g1.js +0 -7
- package/dist/lib/tokens/bls12-381-g2.js +0 -7
- package/dist/lib/tokens/chain-id.js +0 -7
- package/dist/lib/tokens/chest-key.js +0 -7
- package/dist/lib/tokens/chest.js +0 -7
- package/dist/lib/tokens/comparable/address.js +0 -7
- package/dist/lib/tokens/comparable/bool.js +0 -7
- package/dist/lib/tokens/comparable/bytes.js +0 -7
- package/dist/lib/tokens/comparable/int.js +0 -7
- package/dist/lib/tokens/comparable/key_hash.js +0 -7
- package/dist/lib/tokens/comparable/mutez.js +0 -7
- package/dist/lib/tokens/comparable/nat.js +0 -7
- package/dist/lib/tokens/comparable/string.js +0 -7
- package/dist/lib/tokens/comparable/timestamp.js +0 -7
- package/dist/lib/tokens/constant.js +0 -7
- package/dist/lib/tokens/contract.js +0 -7
- package/dist/lib/tokens/key.js +10 -29
- package/dist/lib/tokens/lambda.js +0 -12
- package/dist/lib/tokens/list.js +0 -9
- package/dist/lib/tokens/map.js +0 -12
- package/dist/lib/tokens/never.js +0 -7
- package/dist/lib/tokens/operation.js +0 -7
- package/dist/lib/tokens/option.js +0 -7
- package/dist/lib/tokens/or.js +7 -13
- package/dist/lib/tokens/pair.js +3 -10
- package/dist/lib/tokens/sapling-state.js +0 -11
- package/dist/lib/tokens/sapling-transaction-deprecated.js +0 -11
- package/dist/lib/tokens/sapling-transaction.js +0 -11
- package/dist/lib/tokens/set.js +0 -7
- package/dist/lib/tokens/signature.js +0 -7
- package/dist/lib/tokens/ticket-deprecated.js +0 -11
- package/dist/lib/tokens/ticket.js +0 -11
- package/dist/lib/tokens/token.js +1 -1
- package/dist/lib/tokens/unit.js +3 -10
- package/dist/lib/version.js +2 -2
- package/dist/taquito-michelson-encoder.es6.js +63 -374
- package/dist/taquito-michelson-encoder.es6.js.map +1 -1
- package/dist/taquito-michelson-encoder.umd.js +65 -376
- package/dist/taquito-michelson-encoder.umd.js.map +1 -1
- package/dist/types/constants.d.ts +8 -0
- package/dist/types/schema/parameter.d.ts +1 -6
- package/dist/types/schema/storage.d.ts +8 -12
- package/dist/types/schema/view-schema.d.ts +2 -2
- package/dist/types/taquito-michelson-encoder.d.ts +1 -2
- package/dist/types/tokens/bigmap.d.ts +0 -10
- package/dist/types/tokens/bls12-381-fr.d.ts +0 -5
- package/dist/types/tokens/bls12-381-g1.d.ts +0 -5
- package/dist/types/tokens/bls12-381-g2.d.ts +0 -5
- package/dist/types/tokens/chain-id.d.ts +0 -5
- package/dist/types/tokens/chest-key.d.ts +0 -5
- package/dist/types/tokens/chest.d.ts +0 -5
- package/dist/types/tokens/comparable/address.d.ts +0 -5
- package/dist/types/tokens/comparable/bool.d.ts +0 -5
- package/dist/types/tokens/comparable/bytes.d.ts +0 -5
- package/dist/types/tokens/comparable/int.d.ts +0 -5
- package/dist/types/tokens/comparable/key_hash.d.ts +0 -5
- package/dist/types/tokens/comparable/mutez.d.ts +0 -5
- package/dist/types/tokens/comparable/nat.d.ts +0 -5
- package/dist/types/tokens/comparable/string.d.ts +0 -5
- package/dist/types/tokens/comparable/timestamp.d.ts +0 -5
- package/dist/types/tokens/constant.d.ts +0 -5
- package/dist/types/tokens/contract.d.ts +0 -5
- package/dist/types/tokens/key.d.ts +0 -6
- package/dist/types/tokens/lambda.d.ts +0 -10
- package/dist/types/tokens/list.d.ts +0 -7
- package/dist/types/tokens/map.d.ts +0 -10
- package/dist/types/tokens/never.d.ts +0 -5
- package/dist/types/tokens/operation.d.ts +0 -5
- package/dist/types/tokens/option.d.ts +1 -8
- package/dist/types/tokens/or.d.ts +0 -5
- package/dist/types/tokens/pair.d.ts +0 -5
- package/dist/types/tokens/sapling-state.d.ts +0 -9
- package/dist/types/tokens/sapling-transaction-deprecated.d.ts +0 -9
- package/dist/types/tokens/sapling-transaction.d.ts +0 -9
- package/dist/types/tokens/set.d.ts +0 -5
- package/dist/types/tokens/signature.d.ts +0 -5
- package/dist/types/tokens/ticket-deprecated.d.ts +0 -9
- package/dist/types/tokens/ticket.d.ts +0 -9
- package/dist/types/tokens/token.d.ts +1 -6
- package/dist/types/tokens/unit.d.ts +0 -5
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/michelson-encoder",
|
|
3
|
-
"version": "23.0
|
|
3
|
+
"version": "23.1.0",
|
|
4
4
|
"description": "converts michelson data and types into convenient JS/TS objects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tezos",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": ">=
|
|
28
|
+
"node": ">=20"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"test": "jest --coverage",
|
|
@@ -67,17 +67,17 @@
|
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@taquito/core": "^23.0
|
|
71
|
-
"@taquito/rpc": "^23.0
|
|
72
|
-
"@taquito/
|
|
70
|
+
"@taquito/core": "^23.1.0",
|
|
71
|
+
"@taquito/rpc": "^23.1.0",
|
|
72
|
+
"@taquito/signer": "^23.1.0",
|
|
73
|
+
"@taquito/utils": "^23.1.0",
|
|
73
74
|
"bignumber.js": "^9.1.2",
|
|
74
|
-
"elliptic": "^6.6.1",
|
|
75
75
|
"fast-json-stable-stringify": "^2.1.0"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@types/bluebird": "^3.5.42",
|
|
79
79
|
"@types/jest": "^29.5.12",
|
|
80
|
-
"@types/node": "^
|
|
80
|
+
"@types/node": "^20",
|
|
81
81
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
82
82
|
"@typescript-eslint/parser": "^6.21.0",
|
|
83
83
|
"colors": "^1.4.0",
|
|
@@ -94,6 +94,7 @@
|
|
|
94
94
|
"rimraf": "^6.0.1",
|
|
95
95
|
"rollup": "^4.22.4",
|
|
96
96
|
"rollup-plugin-json": "^4.0.0",
|
|
97
|
+
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
97
98
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
98
99
|
"shelljs": "^0.8.5",
|
|
99
100
|
"ts-jest": "^29.2.3",
|
|
@@ -101,5 +102,5 @@
|
|
|
101
102
|
"ts-toolbelt": "^9.6.0",
|
|
102
103
|
"typescript": "~5.5.4"
|
|
103
104
|
},
|
|
104
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "bcf60513cade1e3272cd50c47a786d4bd45f70c8"
|
|
105
106
|
}
|