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
2 changes: 1 addition & 1 deletion .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
timeout-minutes: 60

env:
PROJECT_NAME: '@aztec/aztec-standards'
PROJECT_NAME: '@aztec-foundation/aztec-standards'

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
secrets: inherit

benchmark:
uses: AztecProtocol/aztec-benchmark/.github/workflows/pr-benchmark.yml@c55ffd7470d4792ca106c31f2c1d1d5c5697079a # v5.0.0
uses: AztecProtocol/aztec-benchmark/.github/workflows/pr-benchmark.yml@39244c9306f7b460aec570297100f3513f7ef936 # v5.0.1
with:
runner: ubuntu-latest
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
pre-release:
uses: AztecProtocol/aztec-ci-actions/.github/workflows/pre-release.yml@431859e477234b8690eb1f80d1305d2e34f10f1b # v0.1.1
with:
package-dir: export/@aztec/aztec-standards
package-dir: export/@aztec-foundation/aztec-standards
runner: ubuntu-latest
secrets: inherit
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id-token: write # OIDC token for npm provenance

env:
PROJECT_NAME: '@aztec/aztec-standards'
PROJECT_NAME: '@aztec-foundation/aztec-standards'

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
baseline:
uses: AztecProtocol/aztec-benchmark/.github/workflows/update-baseline.yml@c55ffd7470d4792ca106c31f2c1d1d5c5697079a # v5.0.0
uses: AztecProtocol/aztec-benchmark/.github/workflows/update-baseline.yml@39244c9306f7b460aec570297100f3513f7ef936 # v5.0.1
with:
runner: ubuntu-latest
permissions:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Aztec Standards

[![npm version](https://img.shields.io/npm/v/@aztec/aztec-standards.svg)](https://www.npmjs.com/package/@aztec/aztec-standards)
[![npm version](https://img.shields.io/npm/v/@aztec-foundation/aztec-standards.svg)](https://www.npmjs.com/package/@aztec-foundation/aztec-standards)

Aztec Standards is a comprehensive collection of reusable, standardized contracts for the Aztec Network. It provides a robust foundation of token primitives and utilities that support both private and public operations, empowering developers to build innovative privacy-preserving applications with ease.

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/escrow_contract.benchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { AztecAddress } from '@aztec/aztec.js/addresses';
import type { ContractFunctionInteractionCallIntent } from '@aztec/aztec.js/authorization';

// Import the new Benchmark base class and context
import { Benchmark, BenchmarkContext } from '@aztec/aztec-benchmark';
import type { NamedBenchmarkedInteraction } from '@aztec/aztec-benchmark/dist/types.js';
import { Benchmark, BenchmarkContext } from '@aztec-foundation/aztec-benchmark';
import type { NamedBenchmarkedInteraction } from '@aztec-foundation/aztec-benchmark/dist/types.js';

// Import artifacts
import { TokenContract } from '../src/artifacts/Token.js';
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/logic_contract.benchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { getContractClassFromArtifact } from '@aztec/aztec.js/contracts';
import type { ContractFunctionInteractionCallIntent } from '@aztec/aztec.js/authorization';

// Import the new Benchmark base class and context
import { Benchmark, BenchmarkContext } from '@aztec/aztec-benchmark';
import { Benchmark, BenchmarkContext } from '@aztec-foundation/aztec-benchmark';

// Import artifacts
import { EscrowContract, EscrowContractArtifact } from '../src/artifacts/Escrow.js';
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/multitoken_contract.benchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AztecAddress } from '@aztec/aztec.js/addresses';
import type { ContractFunctionInteractionCallIntent } from '@aztec/aztec.js/authorization';

// Import the new Benchmark base class and context
import { Benchmark, BenchmarkContext } from '@aztec/aztec-benchmark';
import { Benchmark, BenchmarkContext } from '@aztec-foundation/aztec-benchmark';

import { MultiTokenContract } from '../src/artifacts/MultiToken.js';
import {
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/nft_contract.benchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AztecAddress } from '@aztec/aztec.js/addresses';
import type { ContractFunctionInteractionCallIntent } from '@aztec/aztec.js/authorization';

// Import the new Benchmark base class and context
import { Benchmark, BenchmarkContext } from '@aztec/aztec-benchmark';
import { Benchmark, BenchmarkContext } from '@aztec-foundation/aztec-benchmark';

import { NFTContract } from '../src/artifacts/NFT.js';
import { deployNFTWithMinter, setupTestSuite } from '../src/ts/test/utils.js';
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/token_contract.benchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Fr, GrumpkinScalar } from '@aztec/aztec.js/fields';
import { parseUnits } from 'viem';

// Import the new Benchmark base class and context
import { Benchmark, BenchmarkContext } from '@aztec/aztec-benchmark';
import { Benchmark, BenchmarkContext } from '@aztec-foundation/aztec-benchmark';

import { TokenContract } from '../src/artifacts/Token.js';
import { deployTokenWithMinter, initializeTransferCommitment, setupTestSuite } from '../src/ts/test/utils.js';
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/vault_contract.benchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { ContractFunctionInteractionCallIntent } from '@aztec/aztec.js/auth
import { parseUnits } from 'viem';

// Import the new Benchmark base class and context
import { Benchmark, BenchmarkContext } from '@aztec/aztec-benchmark';
import { Benchmark, BenchmarkContext } from '@aztec-foundation/aztec-benchmark';

import { TokenContract } from '../src/artifacts/Token.js';
import { VaultContract } from '../src/artifacts/Vault.js';
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aztec/aztec-standards",
"version": "5.0.0",
"name": "@aztec-foundation/aztec-standards",
"version": "5.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/AztecProtocol/aztec-standards.git"
Expand All @@ -27,15 +27,15 @@
"*.ts": "prettier --write -u"
},
"dependencies": {
"@aztec/accounts": "5.0.0",
"@aztec/aztec.js": "5.0.0",
"@aztec/noir-contracts.js": "5.0.0",
"@aztec/protocol-contracts": "5.0.0",
"@aztec/pxe": "5.0.0",
"@aztec/stdlib": "5.0.0",
"@aztec/wallet-sdk": "5.0.0",
"@aztec/wallets": "5.0.0",
"@aztec/aztec-benchmark": "5.0.0",
"@aztec/accounts": "5.0.1",
"@aztec/aztec.js": "5.0.1",
"@aztec/noir-contracts.js": "5.0.1",
"@aztec/protocol-contracts": "5.0.1",
"@aztec/pxe": "5.0.1",
"@aztec/stdlib": "5.0.1",
"@aztec/wallet-sdk": "5.0.1",
"@aztec/wallets": "5.0.1",
"@aztec-foundation/aztec-benchmark": "5.0.1",
"commander": "14.0.1",
"dotenv": "16.4.7"
},
Expand All @@ -51,7 +51,7 @@
"vitest": "4.0.17"
},
"config": {
"aztecVersion": "5.0.0"
"aztecVersion": "5.0.1"
},
"engines": {
"node": ">=22"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-package.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail

PROJECT_NAME="@aztec/aztec-standards"
PROJECT_NAME="@aztec-foundation/aztec-standards"
EXPORT_DIR="export/${PROJECT_NAME}"

# ── Compile artifacts to JS ──────────────────────────────────────────────────
Expand Down
2 changes: 1 addition & 1 deletion src/dripper/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
token = { path = "../token_contract" }
4 changes: 2 additions & 2 deletions src/escrow_contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
serde = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/noir-protocol-circuits/crates/serde" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
serde = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/noir-protocol-circuits/crates/serde" }
token = { path = "../token_contract" }
nft = { path = "../nft_contract" }
sha512 = { git = "https://github.com/noir-lang/sha512", tag = "mv/use-bool-over-u1" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
escrow_contract = { path = "../../../" }
token = { path = "../../../../token_contract" }
nft = { path = "../../../../nft_contract" }
2 changes: 1 addition & 1 deletion src/generic_proxy/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler_version = ">=0.25.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
4 changes: 2 additions & 2 deletions src/multitoken_contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/compressed-string" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/compressed-string" }
multitoken_authorization_contract = { path = "src/test/multitoken_authorization_contract" }
generic_proxy = { path = "../generic_proxy" }
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
4 changes: 2 additions & 2 deletions src/nft_contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/compressed-string" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/compressed-string" }
generic_proxy = { path = "../generic_proxy" }
8 changes: 4 additions & 4 deletions src/token_contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/uint-note" }
balance_set = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/balance-set" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/compressed-string" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/uint-note" }
balance_set = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/balance-set" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/compressed-string" }
generic_proxy = { path = "../generic_proxy" }
authorization_contract = { path = "src/test/test_authorization_contract" }
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
2 changes: 1 addition & 1 deletion src/vault_contract/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
token_contract = { path = "../token_contract" }
generic_proxy = { path = "../generic_proxy" }
2 changes: 1 addition & 1 deletion src/vault_deployer/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ compiler_version = ">=1.0.0"
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.1", directory = "noir-projects/aztec-nr/aztec" }
vault_contract = { path = "../vault_contract" }
token_contract = { path = "../token_contract" }
Loading
Loading