Skip to content

Commit 6d8a3a2

Browse files
committed
fix: makefile targets
1 parent a0ebc25 commit 6d8a3a2

File tree

1 file changed

+53
-42
lines changed

1 file changed

+53
-42
lines changed

Makefile

Lines changed: 53 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ __ANVIL__: ## ____
222222

223223
anvil_start: ## Start Anvil with pre-deployed state
224224
@echo "Starting Anvil..."
225-
anvil --load-state contracts/scripts/anvil/state/alignedlayer-deployed-anvil-state.json --block-time 7
225+
anvil --load-state contracts/scripts/anvil/state/alignedlayer-deployed-anvil-state.json --block-time 2
226226

227227
anvil_start_with_more_prefunded_accounts:
228228
@echo "Starting Anvil..."
@@ -668,47 +668,6 @@ batcher_send_gnark_groth16_bn254_infinite: crates/target/release/aligned ## Send
668668
@mkdir -p scripts/test_files/gnark_groth16_bn254_infinite_script/infinite_proofs
669669
@./crates/cli/send_burst_tasks.sh $(BURST_SIZE) $(START_COUNTER)
670670

671-
batcher_send_mina_task:
672-
@echo "Sending Mina state task to Batcher..."
673-
@cd batcher/aligned/ && cargo run --release -- submit \
674-
--proving_system Mina \
675-
--proof ../../scripts/test_files/mina/devnet_mina_state.proof \
676-
--public_input ../../scripts/test_files/mina/devnet_mina_state.pub \
677-
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657
678-
679-
batcher_send_mina_task_bad_hash:
680-
@echo "Sending Mina state task to Batcher..."
681-
@cd batcher/aligned/ && cargo run --release -- submit \
682-
--proving_system Mina \
683-
--proof ../../scripts/test_files/mina/devnet_mina_state.proof \
684-
--public_input ../../scripts/test_files/mina/mina_state_bad_hash.pub \
685-
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657
686-
687-
batcher_send_mina_burst:
688-
@echo "Sending Mina state task to Batcher..."
689-
@cd batcher/aligned/ && cargo run --release -- submit \
690-
--proving_system Mina \
691-
--proof ../../scripts/test_files/mina/devnet_mina_state.proof \
692-
--public_input ../../scripts/test_files/mina/devnet_mina_state.pub \
693-
--repetitions 15 \
694-
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657
695-
696-
batcher_send_mina_account_task:
697-
@echo "Sending Mina account task to Batcher..."
698-
@cd batcher/aligned/ && cargo run --release -- submit \
699-
--proving_system MinaAccount \
700-
--proof ../../scripts/test_files/mina_account/mina_account.proof \
701-
--public_input ../../scripts/test_files/mina_account/mina_account.pub \
702-
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657
703-
704-
batcher_send_mina_account_burst:
705-
@echo "Sending Mina account task to Batcher..."
706-
@cd batcher/aligned/ && cargo run --release -- submit \
707-
--proving_system MinaAccount \
708-
--proof ../../scripts/test_files/mina_account/mina_account.proof \
709-
--public_input ../../scripts/test_files/mina_account/mina_account.pub \
710-
--repetitions 15 \
711-
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657
712671
batcher_send_circom_groth16_bn256_task: crates/target/release/aligned ## Send a Circom Groth16 BN256 proof to Batcher. Parameters: RPC_URL, NETWORK
713672
@echo "Sending Circom Groth16 BN256 proof to Batcher..."
714673
@cd crates/cli/ && cargo run --release -- submit \
@@ -744,6 +703,58 @@ batcher_send_circom_groth16_bn256_no_pub_input_burst: crates/target/release/alig
744703
--rpc_url $(RPC_URL) \
745704
--network $(NETWORK)
746705

706+
batcher_send_mina_task:
707+
@echo "Sending Mina state task to Batcher..."
708+
@cd crates/cli/ && cargo run --release -- submit \
709+
--proving_system Mina \
710+
--proof ../../scripts/test_files/mina/devnet_mina_state.proof \
711+
--public_input ../../scripts/test_files/mina/devnet_mina_state.pub \
712+
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657 \
713+
--rpc_url $(RPC_URL) \
714+
--network $(NETWORK)
715+
716+
batcher_send_mina_task_bad_hash:
717+
@echo "Sending Mina state task to Batcher..."
718+
@cd crates/cli/ && cargo run --release -- submit \
719+
--proving_system Mina \
720+
--proof ../../scripts/test_files/mina/devnet_mina_state.proof \
721+
--public_input ../../scripts/test_files/mina/mina_state_bad_hash.pub \
722+
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657 \
723+
--rpc_url $(RPC_URL) \
724+
--network $(NETWORK)
725+
726+
batcher_send_mina_burst:
727+
@echo "Sending Mina state task to Batcher..."
728+
@cd crates/cli/ && cargo run --release -- submit \
729+
--proving_system Mina \
730+
--proof ../../scripts/test_files/mina/devnet_mina_state.proof \
731+
--public_input ../../scripts/test_files/mina/devnet_mina_state.pub \
732+
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657 \
733+
--repetitions $(BURST_SIZE) \
734+
--rpc_url $(RPC_URL) \
735+
--network $(NETWORK)
736+
737+
batcher_send_mina_account_task:
738+
@echo "Sending Mina account task to Batcher..."
739+
@cd crates/cli/ && cargo run --release -- submit \
740+
--proving_system MinaAccount \
741+
--proof ../../scripts/test_files/mina_account/mina_account.proof \
742+
--public_input ../../scripts/test_files/mina_account/mina_account.pub \
743+
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657 \
744+
--rpc_url $(RPC_URL) \
745+
--network $(NETWORK)
746+
747+
batcher_send_mina_account_burst:
748+
@echo "Sending Mina account task to Batcher..."
749+
@cd crates/cli/ && cargo run --release -- submit \
750+
--proving_system MinaAccount \
751+
--proof ../../scripts/test_files/mina_account/mina_account.proof \
752+
--public_input ../../scripts/test_files/mina_account/mina_account.pub \
753+
--proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657 \
754+
--repetitions $(BURST_SIZE) \
755+
--rpc_url $(RPC_URL) \
756+
--network $(NETWORK)
757+
747758
batcher_send_proof_with_random_address: ## Send a proof with a random address to Batcher. Parameters: RPC_URL, NETWORK, PROOF_TYPE, REPETITIONS
748759
@cd crates/cli/ && ./send_proof_with_random_address.sh
749760

0 commit comments

Comments
 (0)