@taquito/michel-codec 16.2.0 → 17.0.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/michelson-types.js +6 -4
- package/dist/lib/michelson-types.js.map +1 -1
- package/dist/lib/version.js +2 -2
- package/dist/taquito-michel-codec.es6.js +7 -5
- package/dist/taquito-michel-codec.es6.js.map +1 -1
- package/dist/taquito-michel-codec.umd.js +7 -5
- package/dist/taquito-michel-codec.umd.js.map +1 -1
- package/dist/types/michelson-types.d.ts +2 -1
- package/package.json +3 -3
|
@@ -123,11 +123,12 @@ export declare enum Protocol {
|
|
|
123
123
|
PtLimaPtL = "PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW",
|
|
124
124
|
PtMumbaii = "PtMumbaiiFFEGbew1rRjzSPyzRbA51Tm3RVZL5suHPxSZYDhCEc",
|
|
125
125
|
PtMumbai2 = "PtMumbai2TmsJHNGRkD8v8YDbtao7BLUC3wjASn1inAKLFCjaH1",
|
|
126
|
+
PtNairobi = "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf",
|
|
126
127
|
ProtoALpha = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK"
|
|
127
128
|
}
|
|
128
129
|
export declare const DefaultProtocol = Protocol.Psithaca2;
|
|
129
130
|
export declare type ProtocolID = `${Protocol}`;
|
|
130
|
-
export declare function
|
|
131
|
+
export declare function ProtoGreaterOrEqual(a: ProtocolID, b: ProtocolID): boolean;
|
|
131
132
|
export declare function ProtoInferiorTo(a: ProtocolID, b: ProtocolID): boolean;
|
|
132
133
|
export interface ProtocolOptions {
|
|
133
134
|
protocol?: ProtocolID;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/michel-codec",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"description": "Michelson parser/validator/formatter",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tezos",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@taquito/core": "^
|
|
70
|
+
"@taquito/core": "^17.0.0"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@types/bluebird": "^3.5.36",
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"ts-toolbelt": "^9.6.0",
|
|
93
93
|
"typescript": "~4.1.5"
|
|
94
94
|
},
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "388db853edd4d45c1e6e0121a96fa9b71fa699c0"
|
|
96
96
|
}
|