Skip to content

Commit e25ca1c

Browse files
authored
Merge pull request #218 from AztecProtocol/jc/update-devnet.5
update to devnet.5
2 parents a038b7f + 4ba66e8 commit e25ca1c

File tree

7 files changed

+245
-244
lines changed

7 files changed

+245
-244
lines changed

.github/workflows/devnet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
env:
1919
AZTEC_ENV: devnet
20-
VERSION: 3.0.0-devnet.2
20+
VERSION: 3.0.0-devnet.5
2121

2222
steps:
2323
- name: Checkout repository

.github/workflows/sandbox.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
env:
1919
AZTEC_ENV: sandbox
20-
VERSION: 3.0.0-devnet.2
20+
VERSION: 3.0.0-devnet.5
2121

2222
steps:
2323
- name: Checkout repository

Nargo.toml

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

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v3.0.0-devnet.4", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v3.0.0-devnet.5", directory = "noir-projects/aztec-nr/aztec" }

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ bash -i <(curl -s https://install.aztec.network)
4545
Install the correct version of the toolkit with:
4646

4747
```bash
48-
aztec-up 3.0.0-devnet.4
48+
aztec-up 3.0.0-devnet.5
4949
```
5050

5151
### Environment Configuration
@@ -70,6 +70,7 @@ aztec start --sandbox
7070
Run scripts and tests with default sandbox configuration:
7171

7272
```bash
73+
yarn compile && yarn codegen # Compile contract and generate TS
7374
yarn deploy # Deploy to sandbox
7475
yarn test # Run tests on sandbox
7576
```

config/devnet.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"settings": {
1010
"skipSandbox": true,
11-
"version": "3.0.0-devnet.2"
11+
"version": "3.0.0-devnet.5"
1212
},
1313
"timeouts": {
1414
"deployTimeout": 1200000,

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
"update-readme-version": "node ./.github/scripts/update-readme-version.js"
3535
},
3636
"dependencies": {
37-
"@aztec/accounts": "3.0.0-devnet.4",
38-
"@aztec/aztec.js": "3.0.0-devnet.4",
39-
"@aztec/noir-contracts.js": "3.0.0-devnet.4",
40-
"@aztec/protocol-contracts": "3.0.0-devnet.4",
41-
"@aztec/pxe": "3.0.0-devnet.4",
42-
"@aztec/stdlib": "3.0.0-devnet.4",
43-
"@aztec/test-wallet": "3.0.0-devnet.4",
37+
"@aztec/accounts": "3.0.0-devnet.5",
38+
"@aztec/aztec.js": "3.0.0-devnet.5",
39+
"@aztec/noir-contracts.js": "3.0.0-devnet.5",
40+
"@aztec/protocol-contracts": "3.0.0-devnet.5",
41+
"@aztec/pxe": "3.0.0-devnet.5",
42+
"@aztec/stdlib": "3.0.0-devnet.5",
43+
"@aztec/test-wallet": "3.0.0-devnet.5",
4444
"dotenv": "^17.2.2"
4545
},
4646
"devDependencies": {

0 commit comments

Comments
 (0)