From 7f3780d8aacd2ab7c87227c7bc7a3f63f2e2afa4 Mon Sep 17 00:00:00 2001 From: Orlando Date: Tue, 9 Jan 2024 10:32:58 +0000 Subject: [PATCH] chore: formatting --- ethereum/script/deployer.s.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ethereum/script/deployer.s.sol b/ethereum/script/deployer.s.sol index 26b6d6da..d8e1b919 100644 --- a/ethereum/script/deployer.s.sol +++ b/ethereum/script/deployer.s.sol @@ -20,8 +20,7 @@ contract Deployer is Script { // Using the CREATE3 factory maintained by lififinance: https://github.com/lifinance/create3-factory ICREATE3Factory(0x93FEC2C00BfE902F733B57c5a6CeeD7CD1384AE1).deploy( - salt, - abi.encodePacked(type(StarknetCommit).creationCode, abi.encode(STARKNET_CORE_CONTRACT_MAINNET)) + salt, abi.encodePacked(type(StarknetCommit).creationCode, abi.encode(STARKNET_COMMIT_CONTRACT_SEPOLIA)) ); vm.stopBroadcast();