Skip to content

Commit

Permalink
feat: fix incorrect deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
reednaa committed May 17, 2024
1 parent a051f8c commit 9effe5f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion evm/.env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CATALYST_ADDRESS="0x00000000042A0e90f74f036587d7912EA32EF5cC"
CATALYST_ADDRESS="0x0000000099263f0735D03bB2787cE8FB84f6ED6E"
ROUTER_DEPLOYER=
DEPLOYER_PK=

Expand Down
10 changes: 5 additions & 5 deletions evm/script/DeployContracts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ contract DeployContracts is Script {

admin = admin_;

deployFactory(bytes32(0xe810ad7329bc18a3661da69243c260bddf93c02cb86f51d82cef8f77664b1dc1));
deployFactory(bytes32(0x05624c1ea3c3ccda5de1f660f08f273485a6705c2a16ba15faa6dc4bc6ab08e7));

deploy_volatile_mathlib(bytes32(0xeadb0c4c623a1504e49ea876afaf2e1a24a663e81e05ac04fc82ab1a53974533));
deploy_amplified_mathlib(bytes32(0x178f2263b6b48c743c92919210db1f9ffdd16b679f9a49a60db831ee745c1b53));
deploy_volatile_mathlib(bytes32(0xe5a3f4676abc23027a0cd4359d4c97e42f4220eafcab86d68659524867949a45));
deploy_amplified_mathlib(bytes32(0xb6b5fa2553b5e78058a72aa1df20ead9538ff71011621b994ed3114a4e573361));

deploy_volatile_template(bytes32(0xab571b0631b64d37caa8e7d85912d505bf434d66e2b9df4088447821dac531d8));
deploy_amplified_template(bytes32(0x4aa36fb7e5e332061b6ad20a3b0de53dd4cf41391c9bf553367ba5165b60c5cd));
deploy_volatile_template(bytes32(0x8add0c36c676f99a85b05f50ebf5306c7e0ca540a6985e18a339013c1f1dbc38));
deploy_amplified_template(bytes32(0xe902feb8d6b508a0bf6dabc08b2fd6a8ea2e64253f957e95108794a339201fbd));
}
}

4 changes: 2 additions & 2 deletions evm/script/TimeLock.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ contract DeployTimelock is BaseMultiChainDeployer {
}

function run() public {
bytes32 salt = bytes32(0x67e6613ce8cbbe2cbdf83a49a42f7506ba4f34ef5ce61e83c3935e85cac6a4a6);
bytes32 salt = bytes32(0xe28b85a3a6cd3c7b941c273688ed961305638df07108218fc6e68bcc364e7f37);
address initalProposer = address(0xE759cBa7dE5bF6E024BcbdD01941fc3b1713D2FC);
deployTimelockController(salt, initalProposer); // 0x00000000042A0e90f74f036587d7912EA32EF5cC
deployTimelockController(salt, initalProposer); // 0x0000000099263f0735D03bB2787cE8FB84f6ED6E
}
}

10 changes: 5 additions & 5 deletions evm/script/config/config_contracts.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"contracts": {
"amplified_mathlib": "0x0000005243d4f6c3123F922eb3A1B832E171F972",
"amplified_template": "0x00000000b02189eA1fB645bD0127f23B65aE8D1E",
"factory": "0x00000000bA0074B396954A4d17293BFcD818215C",
"volatile_mathlib": "0x0000007A30bD219B5B7FDcaA8a47784F301505C4",
"volatile_template": "0x0000000004B96454e2d7890E6dd8448E511250b1"
"amplified_mathlib": "0x000000575b0D9cc6ddbd8990db4d845fe480281f",
"amplified_template": "0x000000004aBe0D620b25b8B06B0712BDcff21899",
"factory": "0x00000000E5E81E25aeaD7fCCb4C9560C6b5b718F",
"volatile_mathlib": "0x000000992f6Bd813E0De5C595099C44d67ea28eD",
"volatile_template": "0x0000000003b8C9BFeB9351933CFC301Eea92073F"
},
"registry": {
"describer": "0x02C76C5E0D6F84CEdcDA11c20E982A1939d1de3E",
Expand Down
2 changes: 1 addition & 1 deletion evm/test/TestDeployAddresses.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ contract TestDeployedCorrectAddresses is Test, DeployContracts {
verify = false;
vm.startBroadcast(123);

deployAllContracts(0x00000000042A0e90f74f036587d7912EA32EF5cC);
deployAllContracts(0x0000000099263f0735D03bB2787cE8FB84f6ED6E);

vm.stopBroadcast();

Expand Down

0 comments on commit 9effe5f

Please sign in to comment.