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
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,9 @@
10
10
11
11
This repo is meant to be a starting point for learning to write Aztec contracts and tests on the Aztec sandbox (local development environment). It includes an example contract, useful commands in `package.json` and helpful scripts in `./scripts`.
12
12
13
-
You can find the **Easy Private Voting contract** in `./src/main.nr`. A simple integration test is in `./src/test/e2e/index.test.ts`.
13
+
You can find the **Pod Racing Game contract** in `./src/main.nr`. A simple integration test is in `./src/test/e2e/index.test.ts`.
14
+
15
+
The Pod Racing contract is a two-player competitive game where players allocate points across 5 tracks over multiple rounds. The game demonstrates Aztec's private state capabilities - round choices remain private until players reveal their final scores.
14
16
15
17
## Devnet
16
18
@@ -176,7 +178,7 @@ You can find a handful of scripts in the `./scripts` folder.
176
178
-`./scripts/fees.ts` is an example of how to pay for a contract deployment using various fee payment methods.
177
179
-`./scripts/multiple_wallet.ts` is an example of how to deploy a contract from one wallet instance and interact with it from another.
178
180
-`./scripts/profile_deploy.ts` shows how to profile a transaction and print the results.
179
-
-`./scripts/interaction_existing_contract.ts` demonstrates how to interact with an already deployed voting contract, including casting votes and checking vote counts.
181
+
-`./scripts/interaction_existing_contract.ts` demonstrates how to interact with an already deployed pod racing contract, including creating games.
180
182
-`./scripts/get_block.ts` is an example of how to retrieve and display block information from the Aztec node.
0 commit comments