You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@ This is an example web app that demonstrates how to interact with an Aztec contr
4
4
5
5
- Uses the [Private Voting](https://docs.aztec.network/developers/tutorials/codealong/contract_tutorials/private_voting_contract) example
6
6
- Includes an embedded wallet. This is only for demonstration purposes and not for production use.
7
-
- Works on top of the Sandbox, but can be adapted to work with a testnet.
7
+
- Works on top of the local network, but can be adapted to work with a testnet.
8
8
9
9
### Setup
10
10
11
11
1. Install the Aztec tools from the first few steps in [Quick Start Guide](https://docs.aztec.network/developers/getting_started).
12
12
13
-
Please note that this project uses `3.0.0-devnet.4` version of Aztec SDK. If you wish to use a different version, please update the dependencies in the `app/package.json` and in `contracts/Nargo.toml` file to match your version.
13
+
Please note that this project uses `3.0.0-devnet.20251212` version of Aztec SDK. If you wish to use a different version, please update the dependencies in the `package.json` and in `contracts/Nargo.toml` file to match your version.
14
14
15
-
You can install a specific version of Aztec tools by running `aztec-up 3.0.0-devnet.4`
15
+
You can install a specific version of Aztec tools by running `aztec-up 3.0.0-devnet.20251212`
16
16
17
17
2. Compile smart contracts in `/contracts`:
18
18
@@ -31,11 +31,11 @@ yarn install
31
31
yarn deploy-contracts
32
32
```
33
33
34
-
The deploy script generates a random account and deploys the voting contract with it. It also uses the SponsoredFPC contract for fee payment. This is sufficient for testing with Sandbox, but is not suitable for production setup.
34
+
The deploy script generates a random account and deploys the voting contract with it. It also uses the SponsoredFPC contract for fee payment. This is sufficient for testing with local network, but is not suitable for production setup.
35
35
36
36
The script also writes the deployment info to `.env` (which our web-app reads from).
37
37
38
-
> Note that the script generates client proofs and it may take a couple of seconds. For faster development, you can disable proving by calling with `PROVER_ENABLED=false` (Sandbox accepts transactions without a valid proof).
38
+
> Note that the script generates client proofs and it may take a couple of seconds. For faster development, you can disable proving by calling with `PROVER_ENABLED=false` (The local network accepts transactions without a valid proof).
39
39
40
40
4. Run the app (development mode):
41
41
@@ -65,7 +65,7 @@ yarn test
65
65
66
66
## Disable client proofs
67
67
68
-
The Sandbox will accept transactions without a valid proof. You can disable proof generation when working against the Sandbox as it will save time during development.
68
+
The local network will accept transactions without a valid proof. You can disable proof generation when working against the local network as it will save time during development.
0 commit comments