Skip to content
This repository was archived by the owner on Jul 10, 2026. It is now read-only.

Commit 7c9c901

Browse files
authored
chore: upgrade 5.0.0-rc.1 (#134)
1 parent 832eda1 commit 7c9c901

4 files changed

Lines changed: 302 additions & 978 deletions

File tree

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aztec-boilerplate",
3-
"version": "4.3.0",
3+
"version": "5.0.0-rc.1",
44
"repository": "https://github.com/defi-wonderland/aztec-boilerplate.git",
55
"author": "Wonderland",
66
"license": "MIT",
@@ -21,14 +21,14 @@
2121
"*.{js,ts}": "prettier --write -u"
2222
},
2323
"dependencies": {
24-
"@aztec/accounts": "4.3.0",
25-
"@aztec/aztec.js": "4.3.0",
26-
"@aztec/entrypoints": "4.3.0",
27-
"@aztec/noir-contracts.js": "4.3.0",
28-
"@aztec/pxe": "4.3.0",
29-
"@aztec/stdlib": "4.3.0",
30-
"@aztec/wallets": "4.3.0",
31-
"@defi-wonderland/aztec-benchmark": "https://github.com/defi-wonderland/aztec-benchmark/releases/download/prerelease-022ee63/defi-wonderland-aztec-benchmark-4.2.0-prerelease.022ee63.tgz",
24+
"@aztec/accounts": "5.0.0-rc.1",
25+
"@aztec/aztec.js": "5.0.0-rc.1",
26+
"@aztec/entrypoints": "5.0.0-rc.1",
27+
"@aztec/noir-contracts.js": "5.0.0-rc.1",
28+
"@aztec/pxe": "5.0.0-rc.1",
29+
"@aztec/stdlib": "5.0.0-rc.1",
30+
"@aztec/wallets": "5.0.0-rc.1",
31+
"@defi-wonderland/aztec-benchmark": "5.0.0-rc.1",
3232
"@types/node": "25.0.10"
3333
},
3434
"devDependencies": {
@@ -43,7 +43,7 @@
4343
"vitest": "4.0.17"
4444
},
4545
"config": {
46-
"aztecVersion": "4.3.0"
46+
"aztecVersion": "5.0.0-rc.1"
4747
},
4848
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
4949
"engines": {
@@ -52,6 +52,6 @@
5252
},
5353
"resolutions": {
5454
"@noble/hashes": "1.8.0",
55-
"@aztec/foundation": "4.3.0"
55+
"@aztec/foundation": "5.0.0-rc.1"
5656
}
5757
}

src/nr/counter_contract/Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ compiler_version = ">=1.0.0"
55
authors = [""]
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.3.0", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v5.0.0-rc.1", directory = "noir-projects/aztec-nr/aztec" }

src/ts/counter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe("Counter Contract", () => {
1414
beforeAll(async () => {
1515
const aztecNode = await createAztecNodeClient("http://localhost:8080", {});
1616
wallet = await EmbeddedWallet.create(aztecNode, {
17-
pxeConfig: {
17+
pxe: {
1818
dataDirectory: "pxe-test",
1919
proverEnabled: false,
2020
},

0 commit comments

Comments
 (0)