@@ -653,24 +653,24 @@ batcher_send_groth16_bn254_infinite: crates/target/release/aligned ## Send a dif
653653 @mkdir -p scripts/test_files/gnark_groth16_bn254_infinite_script/infinite_proofs
654654 @./crates/cli/send_burst_tasks.sh $(BURST_SIZE ) $(START_COUNTER )
655655
656- batcher_send_circom_groth16_bn128_task : crates/target/release/aligned # # Send a Circom Groth16 BN128 proof to Batcher. Parameters: RPC_URL, NETWORK
657- @echo " Sending Circom Groth16 BN128 proof to Batcher..."
656+ batcher_send_circom_groth16_bn256_task : crates/target/release/aligned # # Send a Circom Groth16 BN256 proof to Batcher. Parameters: RPC_URL, NETWORK
657+ @echo " Sending Circom Groth16 BN256 proof to Batcher..."
658658 @cd crates/cli/ && cargo run --release -- submit \
659- --proving_system CircomGroth16Bn128 \
660- --proof ../../scripts/test_files/circom_groth16_bn128_script /proof.json \
661- --public_input ../../scripts/test_files/circom_groth16_bn128_script /public.json \
662- --vk ../../scripts/test_files/circom_groth16_bn128_script /verification_key.json \
659+ --proving_system CircomGroth16Bn256 \
660+ --proof ../../scripts/test_files/circom_groth16_bn256_script /proof.json \
661+ --public_input ../../scripts/test_files/circom_groth16_bn256_script /public.json \
662+ --vk ../../scripts/test_files/circom_groth16_bn256_script /verification_key.json \
663663 --proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657 \
664664 --rpc_url $(RPC_URL ) \
665665 --network $(NETWORK )
666666
667- batcher_send_circom_groth16_bn128_burst : crates/target/release/aligned # # Send a burst of Circom Groth16 BN128 proofs to Batcher. Parameters: RPC_URL, NETWORK, BURST_SIZE
668- @echo " Sending Circom Groth16 BN128 proof to Batcher..."
667+ batcher_send_circom_groth16_bn256_burst : crates/target/release/aligned # # Send a burst of Circom Groth16 BN256 proofs to Batcher. Parameters: RPC_URL, NETWORK, BURST_SIZE
668+ @echo " Sending Circom Groth16 BN256 proof to Batcher..."
669669 @cd crates/cli/ && cargo run --release -- submit \
670- --proving_system CircomGroth16Bn128 \
671- --proof ../../scripts/test_files/circom_groth16_bn128_script /proof.json \
672- --public_input ../../scripts/test_files/circom_groth16_bn128_script /public.json \
673- --vk ../../scripts/test_files/circom_groth16_bn128_script /verification_key.json \
670+ --proving_system CircomGroth16Bn256 \
671+ --proof ../../scripts/test_files/circom_groth16_bn256_script /proof.json \
672+ --public_input ../../scripts/test_files/circom_groth16_bn256_script /public.json \
673+ --vk ../../scripts/test_files/circom_groth16_bn256_script /verification_key.json \
674674 --proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657 \
675675 --repetitions $(BURST_SIZE ) \
676676 --rpc_url $(RPC_URL ) \
@@ -785,13 +785,13 @@ generate_gnark_groth16_bn254_ineq_proof: ## Run the gnark_plonk_bn254_script
785785 @echo " Running gnark_groth_bn254_ineq script..."
786786 @go run scripts/test_files/gnark_groth16_bn254_infinite_script/cmd/main.go 1
787787
788- generate_circom_groth16_bn128_proof : # # Run the circom_groth16_bn128_script
789- @echo " Running circom_groth16_bn128 script..."
790- @cd scripts/test_files/circom_groth16_bn128_script && ./generate_proof.sh
788+ generate_circom_groth16_bn256_proof : # # Run the circom_groth16_bn256_script
789+ @echo " Running circom_groth16_bn256 script..."
790+ @cd scripts/test_files/circom_groth16_bn256_script && ./generate_proof.sh
791791
792- generate_circom_groth16_bn128_setup : # # Run the circom_groth16_bn128_script setup
793- @echo " Running circom_groth16_bn128 script setup..."
794- @cd scripts/test_files/circom_groth16_bn128_script && ./generate_setup.sh
792+ generate_circom_groth16_bn256_setup : # # Run the circom_groth16_bn256_script setup
793+ @echo " Running circom_groth16_bn256 script setup..."
794+ @cd scripts/test_files/circom_groth16_bn256_script && ./generate_setup.sh
795795
796796__CONTRACTS_DEPLOYMENT__ : # # ____
797797deploy_aligned_contracts : # # Deploy Aligned Contracts. Parameters: NETWORK=<mainnet|holesky|sepolia>
@@ -1127,14 +1127,14 @@ docker_batcher_send_groth16_burst:
11271127 --rpc_url $(DOCKER_RPC_URL) \
11281128 --max_fee 0.1ether
11291129
1130- docker_batcher_send_circom_groth16_bn128_burst :
1131- @echo " Sending Circom Groth16 BN128 task to Batcher..."
1130+ docker_batcher_send_circom_groth16_bn256_burst :
1131+ @echo " Sending Circom Groth16 BN256 task to Batcher..."
11321132 docker exec $(shell docker ps | grep batcher | awk '{print $$1}') aligned submit \
11331133 --private_key $(DOCKER_PROOFS_PRIVATE_KEY ) \
1134- --proving_system CircomGroth16Bn128 \
1135- --proof ./scripts/test_files/circom_groth16_bn128_script /proof.json \
1136- --public_input ./scripts/test_files/circom_groth16_bn128_script /public.json \
1137- --vk ./scripts/test_files/circom_groth16_bn128_script /verification_key.json \
1134+ --proving_system CircomGroth16Bn256 \
1135+ --proof ./scripts/test_files/circom_groth16_bn256_script /proof.json \
1136+ --public_input ./scripts/test_files/circom_groth16_bn256_script /public.json \
1137+ --vk ./scripts/test_files/circom_groth16_bn256_script /verification_key.json \
11381138 --proof_generator_addr $(PROOF_GENERATOR_ADDRESS ) \
11391139 --repetitions $(DOCKER_BURST_SIZE ) \
11401140 --rpc_url $(DOCKER_RPC_URL ) \
@@ -1147,7 +1147,7 @@ docker_batcher_send_all_proofs_burst:
11471147 @$(MAKE ) docker_batcher_send_plonk_bn254_burst
11481148 @$(MAKE ) docker_batcher_send_plonk_bls12_381_burst
11491149 @$(MAKE ) docker_batcher_send_groth16_burst
1150- @$(MAKE ) docker_batcher_send_circom_groth16_bn128_burst
1150+ @$(MAKE ) docker_batcher_send_circom_groth16_bn256_burst
11511151
11521152docker_batcher_send_infinite_groth16 :
11531153 docker exec $(shell docker ps | grep batcher | awk '{print $$1}') \
0 commit comments