@taquito/michel-codec 17.3.1-beta-RC.0 → 18.0.0-RC.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-typecheck.js +1 -1
- package/dist/lib/michelson-typecheck.js.map +1 -1
- package/dist/lib/michelson-types.js +4 -2
- package/dist/lib/michelson-types.js.map +1 -1
- package/dist/lib/utils.js +0 -1
- package/dist/lib/utils.js.map +1 -1
- package/dist/lib/version.js +2 -2
- package/dist/lib/version.js.map +1 -1
- package/dist/taquito-michel-codec.es6.js +7 -6
- package/dist/taquito-michel-codec.es6.js.map +1 -1
- package/dist/taquito-michel-codec.umd.js +7 -6
- package/dist/taquito-michel-codec.umd.js.map +1 -1
- package/dist/types/michelson-types.d.ts +2 -1
- package/dist/types/utils.d.ts +1 -1
- package/package.json +3 -3
|
@@ -160,9 +160,10 @@
|
|
|
160
160
|
Protocol["PtMumbaii"] = "PtMumbaiiFFEGbew1rRjzSPyzRbA51Tm3RVZL5suHPxSZYDhCEc";
|
|
161
161
|
Protocol["PtMumbai2"] = "PtMumbai2TmsJHNGRkD8v8YDbtao7BLUC3wjASn1inAKLFCjaH1";
|
|
162
162
|
Protocol["PtNairobi"] = "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf";
|
|
163
|
+
Protocol["ProxfordS"] = "ProxfordSW2S7fvchT1Zgj2avb5UES194neRyYVXoaDGvF9egt8";
|
|
163
164
|
Protocol["ProtoALpha"] = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK";
|
|
164
165
|
})(exports.Protocol || (exports.Protocol = {}));
|
|
165
|
-
const DefaultProtocol = exports.Protocol.
|
|
166
|
+
const DefaultProtocol = exports.Protocol.ProxfordS;
|
|
166
167
|
const protoLevel = {
|
|
167
168
|
Ps9mPmXaRzmzk35gbAYNCAw6UXdE2qoABTHbN2oEEc1qM7CwT9P: 0,
|
|
168
169
|
PtCJ7pwoxe8JasnHY8YonnLYjcVHmhiARPJvqcC6VfHT5s8k8sY: 1,
|
|
@@ -188,7 +189,8 @@
|
|
|
188
189
|
PtMumbaiiFFEGbew1rRjzSPyzRbA51Tm3RVZL5suHPxSZYDhCEc: 16,
|
|
189
190
|
PtMumbai2TmsJHNGRkD8v8YDbtao7BLUC3wjASn1inAKLFCjaH1: 16,
|
|
190
191
|
PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf: 17,
|
|
191
|
-
|
|
192
|
+
ProxfordSW2S7fvchT1Zgj2avb5UES194neRyYVXoaDGvF9egt8: 18,
|
|
193
|
+
ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK: 19,
|
|
192
194
|
};
|
|
193
195
|
function ProtoGreaterOrEqual(a, b) {
|
|
194
196
|
return protoLevel[a] >= protoLevel[b];
|
|
@@ -1794,7 +1796,6 @@
|
|
|
1794
1796
|
GenericSignature: [64, [4, 130, 43]],
|
|
1795
1797
|
ChainID: [4, [87, 82, 0]],
|
|
1796
1798
|
RollupAddress: [20, [1, 128, 120, 31]],
|
|
1797
|
-
TxRollupL2Address: [20, [6, 161, 166]],
|
|
1798
1799
|
};
|
|
1799
1800
|
function checkDecodeTezosID(id, ...types) {
|
|
1800
1801
|
const buf = decodeBase58Check(id);
|
|
@@ -4167,7 +4168,7 @@
|
|
|
4167
4168
|
// trim entry point
|
|
4168
4169
|
address = d.string.slice(0, ep);
|
|
4169
4170
|
}
|
|
4170
|
-
if (checkDecodeTezosID(address, 'ED25519PublicKeyHash', 'SECP256K1PublicKeyHash', 'P256PublicKeyHash', 'ContractHash', '
|
|
4171
|
+
if (checkDecodeTezosID(address, 'ED25519PublicKeyHash', 'SECP256K1PublicKeyHash', 'P256PublicKeyHash', 'ContractHash', 'RollupAddress') !== null) {
|
|
4171
4172
|
return;
|
|
4172
4173
|
}
|
|
4173
4174
|
}
|
|
@@ -5731,8 +5732,8 @@ ${err.data
|
|
|
5731
5732
|
|
|
5732
5733
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
5733
5734
|
const VERSION = {
|
|
5734
|
-
"commitHash": "
|
|
5735
|
-
"version": "
|
|
5735
|
+
"commitHash": "21f25a09b87809102b0214544d2c5396eeb5872e",
|
|
5736
|
+
"version": "18.0.0-RC.0"
|
|
5736
5737
|
};
|
|
5737
5738
|
|
|
5738
5739
|
exports.Contract = Contract;
|