diff --git a/Makefile b/Makefile index 5fbaed709c..cce8ef5ff8 100644 --- a/Makefile +++ b/Makefile @@ -1128,6 +1128,30 @@ docker_batcher_send_groth16_burst: --rpc_url $(DOCKER_RPC_URL) \ --max_fee 0.1ether +docker_batcher_send_mina_burst: + @echo "Sending Mina state task to Batcher..." + docker exec $(shell docker ps | grep batcher | awk '{print $$1}') aligned submit \ + --private_key $(DOCKER_PROOFS_PRIVATE_KEY) \ + --proving_system Mina \ + --proof ./scripts/test_files/mina/mina_state.proof \ + --public_input ./scripts/test_files/mina/mina_state.pub \ + --repetitions $(DOCKER_BURST_SIZE) \ + --proof_generator_addr $(PROOF_GENERATOR_ADDRESS) \ + --rpc_url $(DOCKER_RPC_URL) \ + --max_fee 0.1ether + +docker_batcher_send_mina_account_burst: + @echo "Sending Mina account task to Batcher..." + docker exec $(shell docker ps | grep batcher | awk '{print $$1}') aligned submit \ + --private_key $(DOCKER_PROOFS_PRIVATE_KEY) \ + --proving_system MinaAccount \ + --proof ./scripts/test_files/mina_account/mina_account.proof \ + --public_input ./scripts/test_files/mina_account/mina_account.pub \ + --repetitions $(DOCKER_BURST_SIZE) \ + --proof_generator_addr $(PROOF_GENERATOR_ADDRESS) \ + --rpc_url $(DOCKER_RPC_URL) \ + --max_fee 0.1ether + # Update target as new proofs are supported. docker_batcher_send_all_proofs_burst: @$(MAKE) docker_batcher_send_sp1_burst @@ -1135,6 +1159,8 @@ docker_batcher_send_all_proofs_burst: @$(MAKE) docker_batcher_send_plonk_bn254_burst @$(MAKE) docker_batcher_send_plonk_bls12_381_burst @$(MAKE) docker_batcher_send_groth16_burst + @$(MAKE) docker_batcher_send_mina_burst + @$(MAKE) docker_batcher_send_mina_account_burst docker_batcher_send_infinite_groth16: docker exec $(shell docker ps | grep batcher | awk '{print $$1}') \