@alejoamiras/aztec-benchmark 5.0.0 → 5.0.1
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/README.md +2 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -219,7 +219,7 @@ If you return a `feePaymentMethod` in the `BenchmarkContext`, it is automaticall
|
|
|
219
219
|
|
|
220
220
|
### Usage Example
|
|
221
221
|
|
|
222
|
-
See how this monorepo benchmarks its own contracts in [`packages/aztec-
|
|
222
|
+
See how this monorepo benchmarks its own contracts in [`packages/aztec-fee-payment/benchmarks`](https://github.com/alejoamiras/ecosystem-tooling/tree/main/packages/aztec-fee-payment/benchmarks).
|
|
223
223
|
|
|
224
224
|
---
|
|
225
225
|
|
|
@@ -234,7 +234,7 @@ Each entry in the output will be identified by the custom `name` you provided (i
|
|
|
234
234
|
|
|
235
235
|
### Inside this monorepo
|
|
236
236
|
|
|
237
|
-
The per-package
|
|
237
|
+
The per-package gate (`aztec-fee-payment.yml`) calls the repo's reusable workflows:
|
|
238
238
|
|
|
239
239
|
- **`_pr-benchmark.yml`** — on every PR: runs the suites on the PR head (`--skip-proving`), downloads the `main` baseline artifact, generates a comparison report (regressions beyond 2.5% highlighted), and posts it as a PR comment. Security split: the job executing PR code is read-only; a separate write-permission job posts the comment without executing anything from the PR.
|
|
240
240
|
- **`_update-baseline.yml`** — on pushes to `main` (+ monthly cron via `update-baselines.yml`): refreshes the baseline artifacts (`benchmark-baseline-<package>-main`).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alejoamiras/aztec-benchmark",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "CLI tool and GitHub Action for Aztec contract benchmarking",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"typescript": "5.8.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@aztec/aztec.js": "5.0.
|
|
40
|
-
"@aztec/stdlib": "5.0.
|
|
41
|
-
"@aztec/wallets": "5.0.
|
|
39
|
+
"@aztec/aztec.js": "5.0.1",
|
|
40
|
+
"@aztec/stdlib": "5.0.1",
|
|
41
|
+
"@aztec/wallets": "5.0.1",
|
|
42
42
|
"@types/node": "22.15.3",
|
|
43
43
|
"@vercel/ncc": "0.38.3"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@aztec/aztec.js": "5.0.
|
|
47
|
-
"@aztec/wallets": "5.0.
|
|
46
|
+
"@aztec/aztec.js": "5.0.1",
|
|
47
|
+
"@aztec/wallets": "5.0.1"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=22"
|