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
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,6 @@ aztec start --sandbox
60
60
61
61
## 📦 **Install Packages**
62
62
63
-
64
63
```bash
65
64
yarn install
66
65
```
@@ -136,6 +135,15 @@ You can find a handful of scripts in the `./scripts` folder.
136
135
-`./scripts/fees.ts` is an example of how to pay for a contract deployment using various fee payment methods.
137
136
-`./scripts/multiple_pxe.ts` is an example of how to deploy a contract from one PXE instance and interact with it from another.
138
137
-`./scripts/profile_deploy.ts` shows how to profile a transaction and print the results.
138
+
-`./scripts/interaction_existing_contract.ts` demonstrates how to interact with an already deployed voting contract, including casting votes and checking vote counts.
139
+
140
+
### Utility Functions
141
+
142
+
The `./src/utils/` folder contains utility functions:
143
+
144
+
-`./src/utils/create_account_from_env.ts` provides functions to create Schnorr accounts from environment variables (SECRET and SALT), useful for account management across different environments.
145
+
-`./src/utils/setup_pxe.ts` provides a function to set up and configure the Private Execution Environment (PXE) service with proper configuration for local development.
146
+
-`./src/utils/deploy_account.ts` provides a function to deploy Schnorr accounts to the network with sponsored fee payment, including key generation and deployment verification.
0 commit comments