@aztec/entrypoints 6.0.0-nightly.20260728 → 6.0.0-nightly.20260730
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/encoding.js +1 -1
- package/package.json +6 -6
- package/src/encoding.ts +1 -1
package/dest/encoding.js
CHANGED
|
@@ -5,7 +5,7 @@ import { Fr } from '@aztec/foundation/curves/bn254';
|
|
|
5
5
|
import { FunctionCall, FunctionType } from '@aztec/stdlib/abi';
|
|
6
6
|
import { HashedValues } from '@aztec/stdlib/tx';
|
|
7
7
|
// These must match the values defined in:
|
|
8
|
-
// - noir-projects/aztec-nr/aztec/src/entrypoint/app.nr
|
|
8
|
+
// - noir-projects/labs/aztec-nr/aztec/src/authwit/entrypoint/app.nr
|
|
9
9
|
export const APP_MAX_CALLS = 5;
|
|
10
10
|
/**
|
|
11
11
|
* Entrypoints derive their arguments from the calls that they'll ultimate make.
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@aztec/entrypoints",
|
|
3
3
|
"homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/entrypoints",
|
|
4
4
|
"description": "Implementation of sample contract entrypoints for the Aztec Network",
|
|
5
|
-
"version": "6.0.0-nightly.
|
|
5
|
+
"version": "6.0.0-nightly.20260730",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
"./account": "./dest/account_entrypoint.js",
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@aztec/constants": "6.0.0-nightly.
|
|
71
|
-
"@aztec/foundation": "6.0.0-nightly.
|
|
72
|
-
"@aztec/protocol-contracts": "6.0.0-nightly.
|
|
73
|
-
"@aztec/standard-contracts": "6.0.0-nightly.
|
|
74
|
-
"@aztec/stdlib": "6.0.0-nightly.
|
|
70
|
+
"@aztec/constants": "6.0.0-nightly.20260730",
|
|
71
|
+
"@aztec/foundation": "6.0.0-nightly.20260730",
|
|
72
|
+
"@aztec/protocol-contracts": "6.0.0-nightly.20260730",
|
|
73
|
+
"@aztec/standard-contracts": "6.0.0-nightly.20260730",
|
|
74
|
+
"@aztec/stdlib": "6.0.0-nightly.20260730",
|
|
75
75
|
"tslib": "^2.4.0",
|
|
76
76
|
"zod": "^4"
|
|
77
77
|
},
|
package/src/encoding.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { FunctionCall, FunctionType } from '@aztec/stdlib/abi';
|
|
|
7
7
|
import { HashedValues } from '@aztec/stdlib/tx';
|
|
8
8
|
|
|
9
9
|
// These must match the values defined in:
|
|
10
|
-
// - noir-projects/aztec-nr/aztec/src/entrypoint/app.nr
|
|
10
|
+
// - noir-projects/labs/aztec-nr/aztec/src/authwit/entrypoint/app.nr
|
|
11
11
|
export const APP_MAX_CALLS = 5;
|
|
12
12
|
|
|
13
13
|
/** Encoded function call for an Aztec entrypoint */
|