Skip to content

Commit ccfc8be

Browse files
committed
move mina docker targets to the bottom
1 parent f2dfdf6 commit ccfc8be

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

Makefile

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1265,28 +1265,6 @@ docker_batcher_send_gnark_groth16_burst:
12651265
--rpc_url $(DOCKER_RPC_URL) \
12661266
--max_fee 0.1ether
12671267

1268-
docker_batcher_send_mina_burst:
1269-
@echo "Sending Mina state task to Batcher..."
1270-
docker exec $(shell docker ps | grep batcher | awk '{print $$1}') aligned submit \
1271-
--private_key $(DOCKER_PROOFS_PRIVATE_KEY) \
1272-
--proving_system Mina \
1273-
--proof ./scripts/test_files/mina/devnet_mina_state.proof \
1274-
--public_input ./scripts/test_files/mina/devnet_mina_state.pub \
1275-
--repetitions $(DOCKER_BURST_SIZE) \
1276-
--proof_generator_addr $(PROOF_GENERATOR_ADDRESS) \
1277-
--rpc_url $(DOCKER_RPC_URL) \
1278-
--max_fee 0.1ether
1279-
1280-
docker_batcher_send_mina_account_burst:
1281-
@echo "Sending Mina account task to Batcher..."
1282-
docker exec $(shell docker ps | grep batcher | awk '{print $$1}') aligned submit \
1283-
--private_key $(DOCKER_PROOFS_PRIVATE_KEY) \
1284-
--proving_system MinaAccount \
1285-
--proof ./scripts/test_files/mina_account/mina_account.proof \
1286-
--public_input ./scripts/test_files/mina_account/mina_account.pub \
1287-
--repetitions $(DOCKER_BURST_SIZE) \
1288-
--proof_generator_addr $(PROOF_GENERATOR_ADDRESS) \
1289-
--rpc_url $(DOCKER_RPC_URL) \
12901268
docker_batcher_send_circom_groth16_bn256_burst:
12911269
@echo "Sending Circom Groth16 BN256 task to Batcher..."
12921270
docker exec $(shell docker ps | grep batcher | awk '{print $$1}') aligned submit \
@@ -1313,6 +1291,29 @@ docker_batcher_send_circom_groth16_bn256_no_pub_input_burst:
13131291
--rpc_url $(DOCKER_RPC_URL) \
13141292
--max_fee 0.1ether
13151293

1294+
docker_batcher_send_mina_burst:
1295+
@echo "Sending Mina state task to Batcher..."
1296+
docker exec $(shell docker ps | grep batcher | awk '{print $$1}') aligned submit \
1297+
--private_key $(DOCKER_PROOFS_PRIVATE_KEY) \
1298+
--proving_system Mina \
1299+
--proof ./scripts/test_files/mina/devnet_mina_state.proof \
1300+
--public_input ./scripts/test_files/mina/devnet_mina_state.pub \
1301+
--repetitions $(DOCKER_BURST_SIZE) \
1302+
--proof_generator_addr $(PROOF_GENERATOR_ADDRESS) \
1303+
--rpc_url $(DOCKER_RPC_URL) \
1304+
--max_fee 0.1ether
1305+
1306+
docker_batcher_send_mina_account_burst:
1307+
@echo "Sending Mina account task to Batcher..."
1308+
docker exec $(shell docker ps | grep batcher | awk '{print $$1}') aligned submit \
1309+
--private_key $(DOCKER_PROOFS_PRIVATE_KEY) \
1310+
--proving_system MinaAccount \
1311+
--proof ./scripts/test_files/mina_account/mina_account.proof \
1312+
--public_input ./scripts/test_files/mina_account/mina_account.pub \
1313+
--repetitions $(DOCKER_BURST_SIZE) \
1314+
--proof_generator_addr $(PROOF_GENERATOR_ADDRESS) \
1315+
--rpc_url $(DOCKER_RPC_URL)
1316+
13161317
# Update target as new proofs are supported.
13171318
docker_batcher_send_all_proofs_burst:
13181319
@$(MAKE) docker_batcher_send_sp1_burst

0 commit comments

Comments
 (0)