@@ -17,36 +17,40 @@ pragma solidity 0.5.17;
1717import "openzeppelin-solidity/contracts/math/SafeMath.sol " ;
1818import "@openzeppelin/upgrades/contracts/upgradeability/Proxy.sol " ;
1919
20-
2120/// @title Proxy contract for Bonded ECDSA Keep vendor.
2221contract BondedECDSAKeepVendor is Proxy {
2322 using SafeMath for uint256 ;
2423
2524 /// @dev Storage slot with the admin of the contract.
2625 /// This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
2726 /// validated in the constructor.
28- bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103 ;
27+ bytes32
28+ internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103 ;
2929
3030 /// @dev Storage slot with the address of the current implementation.
3131 /// This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
3232 /// validated in the constructor.
33- bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc ;
33+ bytes32
34+ internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc ;
3435
3536 /// @dev Storage slot with the upgrade time delay. Upgrade time delay defines a
3637 /// period for implementation upgrade.
3738 /// This is the keccak-256 hash of "network.keep.bondedecdsavendor.proxy.upgradeTimeDelay"
3839 /// subtracted by 1, and is validated in the constructor.
39- bytes32 internal constant UPGRADE_TIME_DELAY_SLOT = 0x3ca583dafde9ce8bdb41fe825f85984a83b08ecf90ffaccbc4b049e8d8703563 ;
40+ bytes32
41+ internal constant UPGRADE_TIME_DELAY_SLOT = 0x3ca583dafde9ce8bdb41fe825f85984a83b08ecf90ffaccbc4b049e8d8703563 ;
4042
4143 /// @dev Storage slot with the new implementation address.
4244 /// This is the keccak-256 hash of "network.keep.bondedecdsavendor.proxy.upgradeImplementation"
4345 /// subtracted by 1, and is validated in the constructor.
44- bytes32 internal constant UPGRADE_IMPLEMENTATION_SLOT = 0x4e06287250f0fdd90b4a096f346c06d4e706d470a14747ab56a0156d48a6883f ;
46+ bytes32
47+ internal constant UPGRADE_IMPLEMENTATION_SLOT = 0x4e06287250f0fdd90b4a096f346c06d4e706d470a14747ab56a0156d48a6883f ;
4548
4649 /// @dev Storage slot with the implementation address upgrade initiation.
4750 /// This is the keccak-256 hash of "network.keep.bondedecdsavendor.proxy.upgradeInitiatedTimestamp"
4851 /// subtracted by 1, and is validated in the constructor.
49- bytes32 internal constant UPGRADE_INIT_TIMESTAMP_SLOT = 0x0816e8d9eeb2554df0d0b7edc58e2d957e6ce18adf92c138b50dd78a420bebaf ;
52+ bytes32
53+ internal constant UPGRADE_INIT_TIMESTAMP_SLOT = 0x0816e8d9eeb2554df0d0b7edc58e2d957e6ce18adf92c138b50dd78a420bebaf ;
5054
5155 /// @notice Details of initialization data to be called on the second step
5256 /// of upgrade.
0 commit comments