Skip to content

Commit 96d2e14

Browse files
authored
feat(aggregation mode): mainnet contracts deployment (#2259)
1 parent 36ff1da commit 96d2e14

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

aggregation_mode/sdk/src/constants.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// AggregationModePaymentService contract address for each chain
2-
pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_MAINNET: &str = "0x0";
2+
pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_MAINNET: &str =
3+
"0xD0696d3eEebffcAB2D1b358805efAA005A9A8BC0";
34
pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_MAINNET_STAGE: &str = "0x0";
45
pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_SEPOLIA: &str = "0x0";
56
pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_HOODI: &str =
@@ -8,7 +9,8 @@ pub const ALIGNED_PROOF_AGG_SERVICE_ADDRESS_DEVNET: &str =
89
"0xcbEAF3BDe82155F56486Fb5a1072cb8baAf547cc";
910

1011
// AggregationModePaymentService contract address for each chain
11-
pub const ALIGNED_AGG_PAYMENT_SERVICE_ADDRESS_MAINNET: &str = "0x0";
12+
pub const ALIGNED_AGG_PAYMENT_SERVICE_ADDRESS_MAINNET: &str =
13+
"0xc8631Bc1E60c20db40e474F791126212fA8255F4";
1214
pub const ALIGNED_AGG_PAYMENT_SERVICE_ADDRESS_MAINNET_STAGE: &str = "0x0";
1315
pub const ALIGNED_AGG_PAYMENT_SERVICE_ADDRESS_SEPOLIA: &str = "0x0";
1416
pub const ALIGNED_AGG_PAYMENT_SERVICE_ADDRESS_HOODI: &str =
@@ -17,7 +19,7 @@ pub const ALIGNED_AGG_PAYMENT_SERVICE_ADDRESS_DEVNET: &str =
1719
"0x922D6956C99E12DFeB3224DEA977D0939758A1Fe";
1820

1921
// AggregationMode Gateway urls for chain
20-
pub const ALIGNED_AGG_MODE_GATEWAY_URL_MAINNET: &str = "";
22+
pub const ALIGNED_AGG_MODE_GATEWAY_URL_MAINNET: &str = "https://mainnet.gateway.alignedlayer.com";
2123
pub const ALIGNED_AGG_MODE_GATEWAY_URL_MAINNET_STAGE: &str = "";
2224
pub const ALIGNED_AGG_MODE_GATEWAY_URL_SEPOLIA: &str = "";
2325
pub const ALIGNED_AGG_MODE_GATEWAY_URL_HOODI: &str = "https://hoodi.gateway.alignedlayer.com";
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"addresses": {
3+
"alignedProofAggregationService": "0xD0696d3eEebffcAB2D1b358805efAA005A9A8BC0",
4+
"alignedProofAggregationServiceImplementation": "0x69199cdf329fB78284e35C724457E10D799cceC7",
5+
"aggregationModePaymentService": "0xc8631Bc1E60c20db40e474F791126212fA8255F4",
6+
"aggregationModePaymentServiceImplementation": "0x4676e44cECE9946793428b71CB0EC6D631894fB7"
7+
}
8+
}

contracts/scripts/.env.mainnet

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@ DEPLOY_CONFIG_PATH=./script/deploy/config/mainnet/aligned.mainnet.config.json
55
BATCHER_PAYMENT_SERVICE_CONFIG_PATH=./script/deploy/config/mainnet/batcher-payment-service.mainnet.config.json
66
BATCHER_PAYMENT_SERVICE_OUTPUT_PATH=./script/output/mainnet/batcher_deployment_output.json
77
OUTPUT_PATH=./script/output/mainnet/alignedlayer_deployment_output.json
8+
PROOF_AGGREGATOR_DEPLOY_CONFIG_PATH=./script/deploy/config/mainnet/proof-aggregator-service.mainnet.config.json
9+
PROOF_AGGREGATOR_OUTPUT_PATH=./script/output/mainnet/proof_aggregation_service_deployment_output.json
810
ETHERSCAN_API_KEY=<YOUR_ETHERSCAN_API_KEY>
911
MULTISIG=false

0 commit comments

Comments
 (0)