@aztec/constants 0.0.1-commit.2e2504e2 → 0.0.1-commit.2eb6648a
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/dest/constants.gen.d.ts +3 -3
- package/dest/constants.gen.js +3 -3
- package/package.json +2 -2
- package/src/constants.gen.ts +3 -3
package/dest/constants.gen.d.ts
CHANGED
|
@@ -252,9 +252,9 @@ export declare const MEM_TAG_U128 = 6;
|
|
|
252
252
|
export declare const AVM_HIGHEST_MEM_ADDRESS = 4294967295;
|
|
253
253
|
export declare const AVM_MEMORY_NUM_BITS = 32;
|
|
254
254
|
export declare const AVM_MEMORY_SIZE = 4294967296;
|
|
255
|
-
export declare const AVM_BITWISE_AND_OP_ID =
|
|
256
|
-
export declare const AVM_BITWISE_OR_OP_ID =
|
|
257
|
-
export declare const AVM_BITWISE_XOR_OP_ID =
|
|
255
|
+
export declare const AVM_BITWISE_AND_OP_ID = 1;
|
|
256
|
+
export declare const AVM_BITWISE_OR_OP_ID = 2;
|
|
257
|
+
export declare const AVM_BITWISE_XOR_OP_ID = 4;
|
|
258
258
|
export declare const AVM_KECCAKF1600_NUM_ROUNDS = 24;
|
|
259
259
|
export declare const AVM_KECCAKF1600_STATE_SIZE = 25;
|
|
260
260
|
export declare const AVM_TX_PHASE_VALUE_START = 0;
|
package/dest/constants.gen.js
CHANGED
|
@@ -253,9 +253,9 @@ export const MEM_TAG_U128 = 6;
|
|
|
253
253
|
export const AVM_HIGHEST_MEM_ADDRESS = 4294967295;
|
|
254
254
|
export const AVM_MEMORY_NUM_BITS = 32;
|
|
255
255
|
export const AVM_MEMORY_SIZE = 4294967296;
|
|
256
|
-
export const AVM_BITWISE_AND_OP_ID =
|
|
257
|
-
export const AVM_BITWISE_OR_OP_ID =
|
|
258
|
-
export const AVM_BITWISE_XOR_OP_ID =
|
|
256
|
+
export const AVM_BITWISE_AND_OP_ID = 1;
|
|
257
|
+
export const AVM_BITWISE_OR_OP_ID = 2;
|
|
258
|
+
export const AVM_BITWISE_XOR_OP_ID = 4;
|
|
259
259
|
export const AVM_KECCAKF1600_NUM_ROUNDS = 24;
|
|
260
260
|
export const AVM_KECCAKF1600_STATE_SIZE = 25;
|
|
261
261
|
export const AVM_TX_PHASE_VALUE_START = 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/constants",
|
|
3
|
-
"version": "0.0.1-commit.
|
|
3
|
+
"version": "0.0.1-commit.2eb6648a",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"inherits": [
|
|
6
6
|
"../package.common.json"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@aztec/foundation": "0.0.1-commit.
|
|
26
|
+
"@aztec/foundation": "0.0.1-commit.2eb6648a",
|
|
27
27
|
"tslib": "^2.4.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
package/src/constants.gen.ts
CHANGED
|
@@ -253,9 +253,9 @@ export const MEM_TAG_U128 = 6;
|
|
|
253
253
|
export const AVM_HIGHEST_MEM_ADDRESS = 4294967295;
|
|
254
254
|
export const AVM_MEMORY_NUM_BITS = 32;
|
|
255
255
|
export const AVM_MEMORY_SIZE = 4294967296;
|
|
256
|
-
export const AVM_BITWISE_AND_OP_ID =
|
|
257
|
-
export const AVM_BITWISE_OR_OP_ID =
|
|
258
|
-
export const AVM_BITWISE_XOR_OP_ID =
|
|
256
|
+
export const AVM_BITWISE_AND_OP_ID = 1;
|
|
257
|
+
export const AVM_BITWISE_OR_OP_ID = 2;
|
|
258
|
+
export const AVM_BITWISE_XOR_OP_ID = 4;
|
|
259
259
|
export const AVM_KECCAKF1600_NUM_ROUNDS = 24;
|
|
260
260
|
export const AVM_KECCAKF1600_STATE_SIZE = 25;
|
|
261
261
|
export const AVM_TX_PHASE_VALUE_START = 0;
|