File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -511,7 +511,11 @@ batcher_send_burst_groth16: batcher/target/release/aligned
511511 @./batcher/aligned/send_burst_tasks.sh $(BURST_SIZE ) $(START_COUNTER )
512512
513513batcher_send_proof_with_random_address :
514- @./batcher/aligned/send_proof_with_random_address.sh
514+ @cd batcher/aligned && ./send_proof_with_random_address.sh
515+
516+
517+ batcher_send_burst_with_random_address :
518+ @cd batcher/aligned && ./send_burst_with_random_address.sh
515519
516520__TASK_SENDER__ :
517521BURST_TIME_SECS ?= 3
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # This script send periodically a burst of proof with a specific amount of repetitions
4+ # the proofs always have a random address
5+ # Params:
6+ # PROOF_TYPE = sp1|groth16|plonk|risc0 (default sp1)
7+ # RPC_URL (default localhost:8545)
8+ # NETWORK devnet|holesky-stage|holesky
9+ # REPETITIONS (default 1)
10+ # BURST_DELAY in secs (default 10)
11+
12+ if [ -z $BURST_DELAY ]; then
13+ echo " Using default burst delay 10"
14+ BURST_DELAY=10
15+ fi
16+
17+ while true
18+ do
19+ . ./send_proof_with_random_address.sh &
20+ sleep $BURST_DELAY
21+ done
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ # Params:
4+ # PROOF_TYPE = sp1|groth16|plonk|risc0 (default sp1)
5+ # RPC_URL (default localhost:8545)
6+ # NETWORK devnet|holesky-stage|holesky
7+ # REPETITIONS (default 1)
8+
39if [ -z " $NETWORK " ]; then
410 echo " NETWORK is not set. Setting it to devnet"
511 NETWORK=" devnet"
You can’t perform that action at this time.
0 commit comments