@taquito/local-forging 20.0.2-beta.1 → 20.1.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/constants.js
CHANGED
|
@@ -93,8 +93,8 @@ exports.opMapping = {
|
|
|
93
93
|
'19': 'COMPARE',
|
|
94
94
|
'1a': 'CONCAT',
|
|
95
95
|
'1b': 'CONS',
|
|
96
|
-
'1c': 'CREATE_ACCOUNT',
|
|
97
|
-
'1d': 'CREATE_CONTRACT',
|
|
96
|
+
'1c': 'CREATE_ACCOUNT', // Removed in Edo
|
|
97
|
+
'1d': 'CREATE_CONTRACT', // Removed in Edo
|
|
98
98
|
'1e': 'IMPLICIT_ACCOUNT',
|
|
99
99
|
'1f': 'DIP',
|
|
100
100
|
'20': 'DROP',
|
|
@@ -139,7 +139,7 @@ exports.opMapping = {
|
|
|
139
139
|
'47': 'SOURCE',
|
|
140
140
|
'48': 'SENDER',
|
|
141
141
|
'49': 'SELF',
|
|
142
|
-
'4a': 'STEPS_TO_QUOTA',
|
|
142
|
+
'4a': 'STEPS_TO_QUOTA', // Removed in Edo
|
|
143
143
|
'4b': 'SUB',
|
|
144
144
|
'4c': 'SWAP',
|
|
145
145
|
'4d': 'TRANSFER_TOKENS',
|
package/dist/lib/protocols.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ProtocolsHash = void 0;
|
|
4
|
+
exports.ProtoInferiorTo = ProtoInferiorTo;
|
|
4
5
|
var ProtocolsHash;
|
|
5
6
|
(function (ProtocolsHash) {
|
|
6
7
|
ProtocolsHash["Pt24m4xi"] = "Pt24m4xiPbLDhVgVfABUjirbmda3yohdN82Sp9FeuAXJ4eV9otd";
|
|
@@ -49,4 +50,3 @@ const protoLevel = {
|
|
|
49
50
|
function ProtoInferiorTo(a, b) {
|
|
50
51
|
return protoLevel[a] < protoLevel[b];
|
|
51
52
|
}
|
|
52
|
-
exports.ProtoInferiorTo = ProtoInferiorTo;
|
|
@@ -18,7 +18,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
18
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
19
19
|
};
|
|
20
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
-
exports.localForger = exports.LocalForger = exports.
|
|
21
|
+
exports.localForger = exports.LocalForger = exports.ProtocolsHash = exports.VERSION = exports.opMappingReverse = exports.opMapping = exports.CODEC = void 0;
|
|
22
|
+
exports.getCodec = getCodec;
|
|
22
23
|
const constants_1 = require("./constants");
|
|
23
24
|
const decoder_1 = require("./decoder");
|
|
24
25
|
const encoder_1 = require("./encoder");
|
|
@@ -50,7 +51,6 @@ function getCodec(codec, _proto) {
|
|
|
50
51
|
},
|
|
51
52
|
};
|
|
52
53
|
}
|
|
53
|
-
exports.getCodec = getCodec;
|
|
54
54
|
//
|
|
55
55
|
class LocalForger {
|
|
56
56
|
constructor(protocolHash = PROTOCOL_CURRENT) {
|
package/dist/lib/version.js
CHANGED
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
5
5
|
exports.VERSION = {
|
|
6
|
-
"commitHash": "
|
|
7
|
-
"version": "20.0
|
|
6
|
+
"commitHash": "f903ced4144b4fd7b2afd585612dcf342912299b",
|
|
7
|
+
"version": "20.1.0-RC.0"
|
|
8
8
|
};
|
|
@@ -98,8 +98,8 @@ const opMapping = {
|
|
|
98
98
|
'19': 'COMPARE',
|
|
99
99
|
'1a': 'CONCAT',
|
|
100
100
|
'1b': 'CONS',
|
|
101
|
-
'1c': 'CREATE_ACCOUNT',
|
|
102
|
-
'1d': 'CREATE_CONTRACT',
|
|
101
|
+
'1c': 'CREATE_ACCOUNT', // Removed in Edo
|
|
102
|
+
'1d': 'CREATE_CONTRACT', // Removed in Edo
|
|
103
103
|
'1e': 'IMPLICIT_ACCOUNT',
|
|
104
104
|
'1f': 'DIP',
|
|
105
105
|
'20': 'DROP',
|
|
@@ -144,7 +144,7 @@ const opMapping = {
|
|
|
144
144
|
'47': 'SOURCE',
|
|
145
145
|
'48': 'SENDER',
|
|
146
146
|
'49': 'SELF',
|
|
147
|
-
'4a': 'STEPS_TO_QUOTA',
|
|
147
|
+
'4a': 'STEPS_TO_QUOTA', // Removed in Edo
|
|
148
148
|
'4b': 'SUB',
|
|
149
149
|
'4c': 'SWAP',
|
|
150
150
|
'4d': 'TRANSFER_TOKENS',
|
|
@@ -1600,8 +1600,8 @@ var ProtocolsHash;
|
|
|
1600
1600
|
|
|
1601
1601
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
1602
1602
|
const VERSION = {
|
|
1603
|
-
"commitHash": "
|
|
1604
|
-
"version": "20.0
|
|
1603
|
+
"commitHash": "f903ced4144b4fd7b2afd585612dcf342912299b",
|
|
1604
|
+
"version": "20.1.0-RC.0"
|
|
1605
1605
|
};
|
|
1606
1606
|
|
|
1607
1607
|
/**
|
|
@@ -100,8 +100,8 @@
|
|
|
100
100
|
'19': 'COMPARE',
|
|
101
101
|
'1a': 'CONCAT',
|
|
102
102
|
'1b': 'CONS',
|
|
103
|
-
'1c': 'CREATE_ACCOUNT',
|
|
104
|
-
'1d': 'CREATE_CONTRACT',
|
|
103
|
+
'1c': 'CREATE_ACCOUNT', // Removed in Edo
|
|
104
|
+
'1d': 'CREATE_CONTRACT', // Removed in Edo
|
|
105
105
|
'1e': 'IMPLICIT_ACCOUNT',
|
|
106
106
|
'1f': 'DIP',
|
|
107
107
|
'20': 'DROP',
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
'47': 'SOURCE',
|
|
147
147
|
'48': 'SENDER',
|
|
148
148
|
'49': 'SELF',
|
|
149
|
-
'4a': 'STEPS_TO_QUOTA',
|
|
149
|
+
'4a': 'STEPS_TO_QUOTA', // Removed in Edo
|
|
150
150
|
'4b': 'SUB',
|
|
151
151
|
'4c': 'SWAP',
|
|
152
152
|
'4d': 'TRANSFER_TOKENS',
|
|
@@ -1602,8 +1602,8 @@
|
|
|
1602
1602
|
|
|
1603
1603
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
1604
1604
|
const VERSION = {
|
|
1605
|
-
"commitHash": "
|
|
1606
|
-
"version": "20.0
|
|
1605
|
+
"commitHash": "f903ced4144b4fd7b2afd585612dcf342912299b",
|
|
1606
|
+
"version": "20.1.0-RC.0"
|
|
1607
1607
|
};
|
|
1608
1608
|
|
|
1609
1609
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/local-forging",
|
|
3
|
-
"version": "20.0
|
|
3
|
+
"version": "20.1.0-RC.0",
|
|
4
4
|
"description": "Provide local forging functionality to be with taquito",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tezos",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"engines": {
|
|
27
|
-
"node": ">=
|
|
27
|
+
"node": ">=20"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"test": "jest --coverage",
|
|
@@ -67,42 +67,42 @@
|
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@taquito/core": "^20.0
|
|
71
|
-
"@taquito/utils": "^20.0
|
|
70
|
+
"@taquito/core": "^20.1.0-RC.0",
|
|
71
|
+
"@taquito/utils": "^20.1.0-RC.0",
|
|
72
72
|
"bignumber.js": "^9.1.2"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@taquito/rpc": "^20.0
|
|
76
|
-
"@types/bluebird": "^3.5.
|
|
77
|
-
"@types/estree": "^1.0.
|
|
78
|
-
"@types/jest": "^29.5.
|
|
79
|
-
"@types/node": "^
|
|
80
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
81
|
-
"@typescript-eslint/parser": "^6.
|
|
75
|
+
"@taquito/rpc": "^20.1.0-RC.0",
|
|
76
|
+
"@types/bluebird": "^3.5.42",
|
|
77
|
+
"@types/estree": "^1.0.5",
|
|
78
|
+
"@types/jest": "^29.5.12",
|
|
79
|
+
"@types/node": "^22",
|
|
80
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
81
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
82
82
|
"colors": "^1.4.0",
|
|
83
83
|
"coveralls": "^3.1.1",
|
|
84
84
|
"cross-env": "^7.0.3",
|
|
85
|
-
"eslint": "^8.
|
|
85
|
+
"eslint": "^8.57.0",
|
|
86
86
|
"jest": "^29.7.0",
|
|
87
87
|
"jest-config": "^29.7.0",
|
|
88
|
-
"lint-staged": "^
|
|
88
|
+
"lint-staged": "^15.2.7",
|
|
89
89
|
"lodash.camelcase": "^4.3.0",
|
|
90
|
-
"prettier": "^3.
|
|
90
|
+
"prettier": "^3.3.3",
|
|
91
91
|
"prompt": "^1.3.0",
|
|
92
|
-
"replace-in-file": "^
|
|
93
|
-
"rimraf": "^
|
|
94
|
-
"rollup": "^4.
|
|
92
|
+
"replace-in-file": "^8.1.0",
|
|
93
|
+
"rimraf": "^6.0.1",
|
|
94
|
+
"rollup": "^4.22.4",
|
|
95
95
|
"rollup-plugin-json": "^4.0.0",
|
|
96
96
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
97
97
|
"shelljs": "^0.8.5",
|
|
98
98
|
"stream-browserify": "^3.0.0",
|
|
99
|
-
"ts-jest": "^29.
|
|
100
|
-
"ts-loader": "^9.5.
|
|
101
|
-
"ts-node": "^10.9.
|
|
99
|
+
"ts-jest": "^29.2.3",
|
|
100
|
+
"ts-loader": "^9.5.1",
|
|
101
|
+
"ts-node": "^10.9.2",
|
|
102
102
|
"ts-toolbelt": "^9.6.0",
|
|
103
|
-
"typescript": "~5.
|
|
104
|
-
"webpack": "^5.
|
|
103
|
+
"typescript": "~5.5.4",
|
|
104
|
+
"webpack": "^5.94.0",
|
|
105
105
|
"webpack-cli": "^5.1.4"
|
|
106
106
|
},
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "5300ba83c6cbd62d82138fd831ac60feaff60d6e"
|
|
108
108
|
}
|