-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathUpgradeMatchingEngine.s.sol
66 lines (52 loc) · 2.45 KB
/
UpgradeMatchingEngine.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
64
65
66
// 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 {ICircleIntegration} from "wormhole-solidity/ICircleIntegration.sol";
import {ITokenBridge} from "wormhole-solidity/ITokenBridge.sol";
import {IMatchingEngine} from "../../src/interfaces/IMatchingEngine.sol";
import {MatchingEngineSetup} from "../../src/MatchingEngine/MatchingEngineSetup.sol";
import {MatchingEngineImplementation} from
"../../src/MatchingEngine/MatchingEngineImplementation.sol";
import {CheckWormholeContracts} from "./helpers/CheckWormholeContracts.sol";
import {Utils} from "../../src/shared/Utils.sol";
contract UpgradeMatchingEngine is CheckWormholeContracts, Script {
using Utils for bytes32;
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");
bytes32 immutable _matchingEngineAddress =
vm.envBytes32("RELEASE_MATCHING_ENGINE_MINT_RECIPIENT");
// 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 upgrade() public {
requireValidChain(_chainId, _wormhole);
MatchingEngineImplementation implementation = new MatchingEngineImplementation(
_token,
_wormhole,
_cctpTokenMessenger,
_userPenaltyRewardBps,
_initialPenaltyBps,
_auctionDuration,
_auctionGracePeriod,
_auctionPenaltyBlocks
);
IMatchingEngine(_matchingEngineAddress.fromUniversalAddress()).upgradeContract(
address(implementation)
);
}
function run() public {
// Begin sending transactions.
vm.startBroadcast();
// Perform upgrade.
upgrade();
// Done.
vm.stopBroadcast();
}
}