@@ -7,9 +7,8 @@ import "forge-std/console2.sol";
7
7
8
8
import {ERC1967Proxy } from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol " ;
9
9
10
- import {MatchingEngineSetup} from "src/MatchingEngine/MatchingEngineSetup.sol " ;
11
- import {MatchingEngineImplementation} from
12
- "src/MatchingEngine/MatchingEngineImplementation.sol " ;
10
+ import {MatchingEngine} from
11
+ "src/MatchingEngine/MatchingEngine.sol " ;
13
12
14
13
import {CheckWormholeContracts} from "./helpers/CheckWormholeContracts.sol " ;
15
14
@@ -29,10 +28,10 @@ contract DeployMatchingEngineContracts is CheckWormholeContracts, Script {
29
28
uint8 immutable _auctionGracePeriod = uint8 (vm.envUint ("RELEASE_GRACE_PERIOD " ));
30
29
uint8 immutable _auctionPenaltyBlocks = uint8 (vm.envUint ("RELEASE_PENALTY_BLOCKS " ));
31
30
32
- function deploy () public {
31
+ function deployAndConfigure () public {
33
32
requireValidChain (_chainId, _wormhole);
34
33
35
- MatchingEngineImplementation implementation = new MatchingEngineImplementation (
34
+ MatchingEngine implementation = new MatchingEngine (
36
35
_token,
37
36
_wormhole,
38
37
_cctpTokenMessenger,
@@ -43,19 +42,20 @@ contract DeployMatchingEngineContracts is CheckWormholeContracts, Script {
43
42
_auctionPenaltyBlocks
44
43
);
45
44
46
- MatchingEngineSetup setup = new MatchingEngineSetup ();
47
- address proxy =
48
- setup.deployProxy (address (implementation), _ownerAssistantAddress, _feeRecipientAddress);
45
+ MatchingEngine proxy =
46
+ MatchingEngine (address (new ERC1967Proxy (address (implementation), "" )));
49
47
50
- console2.log ("Deployed MatchingEngine (chain=%s): %s " , _chainId, proxy);
48
+ proxy.initialize (abi.encodePacked (_ownerAssistantAddress, _feeRecipientAddress));
49
+
50
+ console2.log ("Deployed MatchingEngine (chain=%s): %s " , _chainId, address (proxy));
51
51
}
52
52
53
53
function run () public {
54
54
// Begin sending transactions.
55
55
vm.startBroadcast ();
56
56
57
- // Deploy setup, implementation and erc1967 proxy .
58
- deploy ();
57
+ // Deploy proxy and initialize .
58
+ deployAndConfigure ();
59
59
60
60
// Done.
61
61
vm.stopBroadcast ();
0 commit comments