File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ contract ValidatorExitDelayVerifier {
55
55
/// @notice EIP-4788 contract address that provides a mapping of timestamp -> known beacon block root.
56
56
address public constant BEACON_ROOTS = 0x000F3df6D732807Ef1319fB7B8bB8522d0Beac02 ;
57
57
58
- uint64 constant FAR_FUTURE_EPOCH = type (uint64 ).max;
58
+ uint64 private constant FAR_FUTURE_EPOCH = type (uint64 ).max;
59
59
60
60
uint64 public immutable GENESIS_TIME;
61
61
uint32 public immutable SLOTS_PER_EPOCH;
Original file line number Diff line number Diff line change 4
4
/* See contracts/COMPILERS.md */
5
5
pragma solidity 0.8.9 ;
6
6
7
- import "@openzeppelin/contracts-v4.4/token/ERC20/IERC20.sol " ;
8
- import "@openzeppelin/contracts-v4.4/token/ERC721/IERC721.sol " ;
9
- import "@openzeppelin/contracts-v4.4/token/ERC20/utils/SafeERC20.sol " ;
10
-
7
+ import {IERC20 } from "@openzeppelin/contracts-v4.4/token/ERC20/IERC20.sol " ;
8
+ import {IERC721 } from "@openzeppelin/contracts-v4.4/token/ERC721/IERC721.sol " ;
9
+ import {SafeERC20} from "@openzeppelin/contracts-v4.4/token/ERC20/utils/SafeERC20.sol " ;
11
10
import {Versioned} from "./utils/Versioned.sol " ;
12
- import {AccessControlEnumerable} from "./utils/access/AccessControlEnumerable.sol " ;
13
-
14
11
import {WithdrawalVaultEIP7002} from "./WithdrawalVaultEIP7002.sol " ;
15
12
16
13
interface ILido {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ pragma solidity 0.8.9;
8
8
* @title A base contract for a withdrawal vault, enables to submit EIP-7002 withdrawal requests.
9
9
*/
10
10
abstract contract WithdrawalVaultEIP7002 {
11
- address constant WITHDRAWAL_REQUEST = 0x00000961Ef480Eb55e80D19ad83579A64c007002 ;
11
+ address public constant WITHDRAWAL_REQUEST = 0x00000961Ef480Eb55e80D19ad83579A64c007002 ;
12
12
13
13
event WithdrawalRequestAdded (bytes request );
14
14
You can’t perform that action at this time.
0 commit comments