-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
124 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// SPDX-License-Identifier: BUSL-1.1 | ||
pragma solidity ^0.8.12; | ||
|
||
import "./utils/Releasoor.s.sol"; | ||
|
||
contract v0_4_2_ is Releasoor { | ||
|
||
using TxBuilder for *; | ||
using AddressUtils for *; | ||
|
||
function deploy(Addresses memory addrs) internal override { | ||
// If you're deploying contracts, do that here | ||
} | ||
|
||
function queueUpgrade(Addresses memory addrs) internal override returns (Tx[] memory executorTxns, uint eta) { | ||
// If you're queueing an upgrade via the timelock, you can | ||
// define and encode those transactions here | ||
} | ||
|
||
function executeUpgrade(Addresses memory addrs) internal override { | ||
// Whether you are using the timelock or just making transactions | ||
// from the ops multisig, you can define/encode those transactions here | ||
} | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters