Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/pr-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,19 +95,19 @@ jobs:
path: ${{ env.BENCH_DIR }}
if_no_artifact_found: warn

# Requires @aztec/aztec-benchmark to be installed in the consuming repo
# (e.g. via yarn add -D @aztec/aztec-benchmark).
# Requires @aztec-foundation/aztec-benchmark to be installed in the consuming repo
# (e.g. via yarn add -D @aztec-foundation/aztec-benchmark).
- name: Generate comparison report
run: |
node -e "
let runComparison;
try {
({ runComparison } = require('@aztec/aztec-benchmark/action/comparison.cjs'));
({ runComparison } = require('@aztec-foundation/aztec-benchmark/action/comparison.cjs'));
} catch (e) {
if (e.code === 'MODULE_NOT_FOUND') {
console.error(
'ERROR: @aztec/aztec-benchmark is not installed.\n' +
'Add it as a dev-dependency (yarn add -D @aztec/aztec-benchmark) ' +
'ERROR: @aztec-foundation/aztec-benchmark is not installed.\n' +
'Add it as a dev-dependency (yarn add -D @aztec-foundation/aztec-benchmark) ' +
'and make sure dependencies are installed before this step.'
);
}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Aztec Benchmark
[![npm version](https://badge.fury.io/js/%40aztec%2Faztec-benchmark.svg)](https://www.npmjs.com/package/@aztec/aztec-benchmark)
[![npm version](https://badge.fury.io/js/%40aztec-foundation%2Faztec-benchmark.svg)](https://www.npmjs.com/package/@aztec-foundation/aztec-benchmark)

**CLI tool and reusable CI workflows for running Aztec contract benchmarks.**

Expand Down Expand Up @@ -27,9 +27,9 @@ Use the CLI to execute benchmark files written in TypeScript. For CI integration
## Installation

```sh
yarn add --dev @aztec/aztec-benchmark
yarn add --dev @aztec-foundation/aztec-benchmark
# or
npm install --save-dev @aztec/aztec-benchmark
npm install --save-dev @aztec-foundation/aztec-benchmark
```

---
Expand Down Expand Up @@ -99,7 +99,7 @@ import {
Benchmark, // Alias for BenchmarkBase
type BenchmarkContext,
type NamedBenchmarkedInteraction
} from '@aztec/aztec-benchmark';
} from '@aztec-foundation/aztec-benchmark';
import type { PXE } from '@aztec/pxe/server';
import type { Contract } from '@aztec/aztec.js/contracts'; // Generic Contract type from Aztec.js
import type { AztecAddress } from '@aztec/aztec.js/addresses';
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aztec/aztec-benchmark",
"version": "5.0.0",
"name": "@aztec-foundation/aztec-benchmark",
"version": "5.0.1",
"description": "CLI tool and GitHub Action for Aztec contract benchmarking",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -50,12 +50,12 @@
"@aztec/wallets": ">=5.0.0 <6"
},
"config": {
"aztecVersion": "5.0.0"
"aztecVersion": "5.0.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"devDependencies": {
"@aztec/aztec.js": "5.0.0",
"@aztec/wallets": "5.0.0",
"@aztec/aztec.js": "5.0.1",
"@aztec/wallets": "5.0.1",
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.2.0",
"@vercel/ncc": "0.38.3",
Expand Down
Loading
Loading