Skip to content

Commit b7642f9

Browse files
chore: remove the dev mode functionality on ProofAggregationService contract
1 parent 752a96c commit b7642f9

14 files changed

+23
-47
lines changed

contracts/script/deploy/AlignedProofAggregationServiceDeployer.s.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ contract AlignedProofAggregationServiceDeployer is Script {
1717
address risc0VerifierAddress = stdJson.readAddress(config_data, ".address.risc0VerifierAddress");
1818
bytes32 risc0AggregationProgramImageId =
1919
stdJson.readBytes32(config_data, ".programs_id.risc0AggregationProgramImageId");
20-
bool isDevMode = stdJson.readBool(config_data, ".isDevMode");
2120

2221
address ownerAddress = stdJson.readAddress(config_data, ".permissions.owner");
2322

2423
vm.startBroadcast();
2524

26-
AlignedProofAggregationService alignedProofAggregationService = new AlignedProofAggregationService(isDevMode);
25+
AlignedProofAggregationService alignedProofAggregationService = new AlignedProofAggregationService();
2726

2827
ERC1967Proxy proxy = new ERC1967Proxy(
2928
address(alignedProofAggregationService),

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@
1111
},
1212
"permissions": {
1313
"owner": "0x14dC79964da2C08b23698B3D3cc7Ca32193d9955"
14-
},
15-
"isDevMode": false
14+
}
1615
}

contracts/script/deploy/config/devnet/proof-aggregator-service.devnet.mock.config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@
1111
},
1212
"permissions": {
1313
"owner": "0x14dC79964da2C08b23698B3D3cc7Ca32193d9955"
14-
},
15-
"isDevMode": true
14+
}
1615
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
},
1111
"permissions": {
1212
"owner": "0x97aEC5F28181abe5d2aD40dBe7FbaEe014529b7D"
13-
},
14-
"isDevMode": false
13+
}
1514
}

contracts/script/deploy/config/holesky/proof-aggregator-service.holesky.config.stage.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
},
1111
"permissions": {
1212
"owner": "0xE3C695b73dbe27106aF4530b152de3e57456B385"
13-
},
14-
"isDevMode": false
13+
}
1514
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
},
1111
"permissions": {
1212
"owner": "0xF138043AC49a0cbB1C8fF03433B51861eA0AE927"
13-
},
14-
"isDevMode": false
13+
}
1514
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
},
1111
"permissions": {
1212
"owner": "<owner_address>"
13-
},
14-
"isDevMode": false
13+
}
1514
}

contracts/script/deploy/config/mainnet_staging/proof-aggregator-service.mainnet.config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
},
1111
"permissions": {
1212
"owner": "<owner_address>"
13-
},
14-
"isDevMode": false
13+
}
1514
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
},
1111
"permissions": {
1212
"owner": "0x771C1aB81C81A774B66C4386Eb50D6DFC8538106"
13-
},
14-
"isDevMode": false
13+
}
1514
}

contracts/script/deploy/config/templates/proof-aggregator-service.template.config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
},
1111
"permissions": {
1212
"owner": ""
13-
},
14-
"isDevMode": false
13+
}
1514
}

0 commit comments

Comments
 (0)