Skip to content

Commit fe5350f

Browse files
committed
chore: move upgrade files to root
this is so we can reuse the existing .env files
1 parent 2ce128f commit fe5350f

File tree

4 files changed

+19
-30
lines changed

4 files changed

+19
-30
lines changed

contracts/scripts/deploy_proof_aggregator.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ forge script script/deploy/AlignedProofAggregationServiceDeployer.s.sol \
3535
--verify \
3636
--etherscan-api-key $ETHERSCAN_API_KEY \
3737
--slow \
38-
--sig "run(string configPath, string outputPath)"
38+
--sig "run(string configPath, string outputPath)" \
39+
--via-ir

contracts/scripts/proof_aggregator_service/.env.example

Lines changed: 0 additions & 6 deletions
This file was deleted.

contracts/scripts/proof_aggregator_service/deploy.sh

Lines changed: 0 additions & 23 deletions
This file was deleted.

contracts/scripts/proof_aggregator_service/upgrade.sh renamed to contracts/scripts/upgrade_proof_aggregator.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
#!/bin/bash
22

3+
# ENV VARIABLES
4+
#
5+
# EXISTING_DEPLOYMENT_INFO_PATH: Path to the proof aggregator deployment output file
6+
# - Holesky Stage: ./script/output/holesky/proof_aggregation_service_deployment_output.stage.json
7+
# - Holesky Prod: ./script/output/holesky/roof_aggregation_service_deployment_output.json
8+
#
9+
# PROOF_AGGREGATOR_OUTPUT_PATH: Path to the proof aggregator output file
10+
# - Holesky Stage: ./script/output/holesky/proof_aggregation_service_deployment_output.stage.json
11+
# - Holesky Prod: ./script/output/holesky/proof_aggregation_service_deployment_output.json
12+
#
13+
# RPC_URL: The RPC URL to connect to the Ethereum network
14+
#
15+
# PRIVATE_KEY: The private key to use for the deployment
16+
#
17+
# ETHERSCAN_API_KEY: The Etherscan API key to use for verification
18+
#
19+
320
# cd to the directory of this script so that this can be run from anywhere
421
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
522

0 commit comments

Comments
 (0)