@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
|
@@ -124,9 +124,10 @@ export declare enum Protocol {
|
|
|
124
124
|
PtMumbaii = "PtMumbaiiFFEGbew1rRjzSPyzRbA51Tm3RVZL5suHPxSZYDhCEc",
|
|
125
125
|
PtMumbai2 = "PtMumbai2TmsJHNGRkD8v8YDbtao7BLUC3wjASn1inAKLFCjaH1",
|
|
126
126
|
PtNairobi = "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf",
|
|
127
|
+
ProxfordS = "ProxfordSW2S7fvchT1Zgj2avb5UES194neRyYVXoaDGvF9egt8",
|
|
127
128
|
ProtoALpha = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK"
|
|
128
129
|
}
|
|
129
|
-
export declare const DefaultProtocol = Protocol.
|
|
130
|
+
export declare const DefaultProtocol = Protocol.ProxfordS;
|
|
130
131
|
export declare type ProtocolID = `${Protocol}`;
|
|
131
132
|
export declare function ProtoGreaterOrEqual(a: ProtocolID, b: ProtocolID): boolean;
|
|
132
133
|
export declare function ProtoInferiorTo(a: ProtocolID, b: ProtocolID): boolean;
|
package/dist/types/utils.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ export interface UnpackAnnotationsOptions {
|
|
|
62
62
|
emptyFields?: boolean;
|
|
63
63
|
}
|
|
64
64
|
export declare function unpackAnnotations(p: Prim | Expr[], opt?: UnpackAnnotationsOptions): UnpackedAnnotations;
|
|
65
|
-
export declare type TezosIDType = 'BlockHash' | 'OperationHash' | 'OperationListHash' | 'OperationListListHash' | 'ProtocolHash' | 'ContextHash' | 'ED25519PublicKeyHash' | 'SECP256K1PublicKeyHash' | 'P256PublicKeyHash' | 'ContractHash' | 'CryptoboxPublicKeyHash' | 'ED25519Seed' | 'ED25519PublicKey' | 'SECP256K1SecretKey' | 'P256SecretKey' | 'ED25519EncryptedSeed' | 'SECP256K1EncryptedSecretKey' | 'P256EncryptedSecretKey' | 'SECP256K1PublicKey' | 'P256PublicKey' | 'SECP256K1Scalar' | 'SECP256K1Element' | 'ED25519SecretKey' | 'ED25519Signature' | 'SECP256K1Signature' | 'P256Signature' | 'GenericSignature' | 'ChainID' | 'RollupAddress'
|
|
65
|
+
export declare type TezosIDType = 'BlockHash' | 'OperationHash' | 'OperationListHash' | 'OperationListListHash' | 'ProtocolHash' | 'ContextHash' | 'ED25519PublicKeyHash' | 'SECP256K1PublicKeyHash' | 'P256PublicKeyHash' | 'ContractHash' | 'CryptoboxPublicKeyHash' | 'ED25519Seed' | 'ED25519PublicKey' | 'SECP256K1SecretKey' | 'P256SecretKey' | 'ED25519EncryptedSeed' | 'SECP256K1EncryptedSecretKey' | 'P256EncryptedSecretKey' | 'SECP256K1PublicKey' | 'P256PublicKey' | 'SECP256K1Scalar' | 'SECP256K1Element' | 'ED25519SecretKey' | 'ED25519Signature' | 'SECP256K1Signature' | 'P256Signature' | 'GenericSignature' | 'ChainID' | 'RollupAddress';
|
|
66
66
|
export declare type TezosIDPrefix = [number, number[]];
|
|
67
67
|
export declare const tezosPrefix: Record<TezosIDType, TezosIDPrefix>;
|
|
68
68
|
export declare function checkDecodeTezosID<T extends TezosIDType[]>(id: string, ...types: T): [T[number], number[]] | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/michel-codec",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "18.0.0-RC.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": "^18.0.0-RC.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": "998e588c7c72f45bb8d95bed54152b618aa18ec3"
|
|
96
96
|
}
|