We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ff2d4c commit 0217c99Copy full SHA for 0217c99
aggregation-mode/readme.md
@@ -1,3 +1,23 @@
1
2
-## Aligned aggregation mode
+# Aligned aggregation mode
3
4
+## How to run it locally
5
+
6
+1. Deploy aligned contracts on anvil:
7
+```shell
8
+make deploy_aligned_contracts
9
+```
10
11
+2. Start anvil:
12
13
+make anvil_start_with_block_time
14
15
16
+2. Compile and run aggregator (this might take long as it uses more aggressive optimization leves):
17
18
+cd aggregation-mode
19
+# This will compile with a mock prover
20
+cargo run --release
21
+# This will run the prover (requires powerful machine)
22
+cargo build --release --features prove
23
0 commit comments