-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathDeployMatchingEngineContract.s.sol
63 lines (48 loc) · 2.4 KB
/
DeployMatchingEngineContract.s.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// SPDX-License-Identifier: Apache 2
pragma solidity ^0.8.19;
import "forge-std/Script.sol";
import "forge-std/console2.sol";
import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
import {MatchingEngineSetup} from "src/MatchingEngine/MatchingEngineSetup.sol";
import {MatchingEngineImplementation} from
"src/MatchingEngine/MatchingEngineImplementation.sol";
import {CheckWormholeContracts} from "./helpers/CheckWormholeContracts.sol";
contract DeployMatchingEngineContracts is CheckWormholeContracts, Script {
uint16 immutable _chainId = uint16(vm.envUint("RELEASE_CHAIN_ID"));
address immutable _token = vm.envAddress("RELEASE_TOKEN_ADDRESS");
address immutable _wormhole = vm.envAddress("RELEASE_WORMHOLE_ADDRESS");
address immutable _cctpTokenMessenger = vm.envAddress("RELEASE_TOKEN_MESSENGER_ADDRESS");
address immutable _ownerAssistantAddress = vm.envAddress("RELEASE_OWNER_ASSISTANT_ADDRESS");
address immutable _feeRecipientAddress = vm.envAddress("RELEASE_FEE_RECIPIENT_ADDRESS");
// Auction parameters.
uint24 immutable _userPenaltyRewardBps = uint24(vm.envUint("RELEASE_USER_REWARD_BPS"));
uint24 immutable _initialPenaltyBps = uint24(vm.envUint("RELEASE_INIT_PENALTY_BPS"));
uint8 immutable _auctionDuration = uint8(vm.envUint("RELEASE_AUCTION_DURATION"));
uint8 immutable _auctionGracePeriod = uint8(vm.envUint("RELEASE_GRACE_PERIOD"));
uint8 immutable _auctionPenaltyBlocks = uint8(vm.envUint("RELEASE_PENALTY_BLOCKS"));
function deploy() public {
requireValidChain(_chainId, _wormhole);
MatchingEngineImplementation implementation = new MatchingEngineImplementation(
_token,
_wormhole,
_cctpTokenMessenger,
_userPenaltyRewardBps,
_initialPenaltyBps,
_auctionDuration,
_auctionGracePeriod,
_auctionPenaltyBlocks
);
MatchingEngineSetup setup = new MatchingEngineSetup();
address proxy =
setup.deployProxy(address(implementation), _ownerAssistantAddress, _feeRecipientAddress);
console2.log("Deployed MatchingEngine (chain=%s): %s", _chainId, proxy);
}
function run() public {
// Begin sending transactions.
vm.startBroadcast();
// Deploy setup, implementation and erc1967 proxy.
deploy();
// Done.
vm.stopBroadcast();
}
}