Skip to content

Commit fc95827

Browse files
committed
feat: deploy aggregation mode contract
1 parent bf2c2d0 commit fc95827

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

contracts/script/deploy/config/sepolia/proof-aggregator-service.sepolia.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"address": {
33
"sp1VerifierAddress": "0x397A5f7f3dBd538f23DE225B51f532c34448dA9B",
44
"risc0VerifierAddress": "0x925d8331ddc0a1F0d96E68CF073DFE1d92b69187",
5-
"alignedAggregatorAddress": "<aligned_aggregator_address>"
5+
"alignedAggregatorAddress": "0x3602fEF708644530Fef94f86b770c0603571e98B"
66
},
77
"programs_id": {
88
"sp1AggregationProgramVKHash": "0x0073c64593b6224bb8059787baa93b3aa491a308e9f126788b547ca02d3d599e",
99
"risc0AggregationProgramImageId": "0xcee9c4f2e4758970c20676cc7bfd23a1640f18b8b025ed05be7330c9472aa65a"
1010
},
1111
"permissions": {
12-
"owner": "<owner_address>"
12+
"owner": "0x771C1aB81C81A774B66C4386Eb50D6DFC8538106"
1313
}
1414
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"addresses": {
3+
"alignedProofAggregationService": "0xb5D46304c30B1AeB3a8Da6ab599c336f7946C8A4",
4+
"alignedProofAggregationServiceImplementation": "0x0Fc3e5639980BEd39016a3B34e4aa18857934BEb"
5+
}
6+
}

contracts/scripts/deploy_proof_aggregator.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
# PROOF_AGGREGATOR_DEPLOY_CONFIG_PATH: Path to the proof aggregator deploy config file
66
# - Holesky Stage: ./script/deploy/config/holesky/proof-aggregator-service.holesky.config.stage.json
77
# - Holesky Prod: ./script/deploy/config/holesky/proof-aggregator-service.holesky.config.json
8+
# - Sepolia: ./script/deploy/config/sepolia/proof-aggregator-service.sepolia.config.json
89
#
910
# PROOF_AGGREGATOR_OUTPUT_PATH: Path to the proof aggregator output file
1011
# - Holesky Stage: ./script/output/holesky/proof_aggregation_service_deployment_output.stage.json
1112
# - Holesky Prod: ./script/output/holesky/proof_aggregation_service_deployment_output.json
13+
# - Sepolia: ./script/output/sepolia/proof_aggregation_service_deployment_output.json
1214
#
1315
# RPC_URL: The RPC URL to connect to the Ethereum network
1416
#

crates/sdk/src/common/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_HOLESKY: &str =
8383
"0xe84CD4084d8131841CE6DC265361f81F4C59a1d4";
8484
pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_DEVNET: &str =
8585
"0xFD471836031dc5108809D173A067e8486B9047A3";
86-
pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_SEPOLIA: &str = "0x0";
86+
pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_SEPOLIA: &str = "0xb5D46304c30B1AeB3a8Da6ab599c336f7946C8A4";
8787

8888
/// Batcher URL's
8989
pub const BATCHER_URL_DEVNET: &str = "ws://localhost:8080";

0 commit comments

Comments
 (0)