diff --git a/contracts/v2/newDeployments/PolygonRollupManagerNotUpgraded.sol b/contracts/v2/newDeployments/PolygonRollupManagerNotUpgraded.sol index bb5f932ea..16cdf2dc6 100644 --- a/contracts/v2/newDeployments/PolygonRollupManagerNotUpgraded.sol +++ b/contracts/v2/newDeployments/PolygonRollupManagerNotUpgraded.sol @@ -33,7 +33,7 @@ contract PolygonRollupManagerNotUpgraded is PolygonRollupManager { trustedAggregatorTimeout = _trustedAggregatorTimeout; // Constant deployment variables - _batchFee = 0.1 ether; // 0.1 Matic + _batchFee = 0 ether; // 0.0 Matic verifyBatchTimeTarget = 30 minutes; multiplierBatchFee = 1002; diff --git a/deployment/v2/1_createGenesis.ts b/deployment/v2/1_createGenesis.ts index 702003af8..ec0c99316 100644 --- a/deployment/v2/1_createGenesis.ts +++ b/deployment/v2/1_createGenesis.ts @@ -422,10 +422,10 @@ async function main() { address: finalDeployer, }); - if (deployParameters.test) { - // Add tester account with ether - genesis[genesis.length - 1].balance = "100000000000000000000000"; - } + // if (deployParameters.test) { + // // Add tester account with ether + // genesis[genesis.length - 1].balance = "100000000000000000000000"; + // } // calculate root const poseidon = await getPoseidon(); diff --git a/deployment/v2/4_createRollup.ts b/deployment/v2/4_createRollup.ts index 7072709c3..a17889dea 100644 --- a/deployment/v2/4_createRollup.ts +++ b/deployment/v2/4_createRollup.ts @@ -332,7 +332,9 @@ async function main() { outputJson.createRollupBlockNumber = blockDeploymentRollup.number; outputJson.rollupAddress = newZKEVMAddress; outputJson.verifierAddress = verifierContract.target; - outputJson.consensusContract = consensusContract; + outputJson.consensusContract = PolygonconsensusContract.target; + outputJson.forkID = forkID; + outputJson.trustedSequencer = trustedSequencer; fs.writeFileSync(pathOutputJson, JSON.stringify(outputJson, null, 1)); }