2020-05-29 16:45:37 +00:00
|
|
|
// SPDX-License-Identifier: agpl-3.0
|
2020-11-20 10:45:20 +00:00
|
|
|
pragma solidity 0.6.12;
|
2020-05-29 16:45:37 +00:00
|
|
|
|
2020-07-13 08:54:08 +00:00
|
|
|
import './BaseUpgradeabilityProxy.sol';
|
2020-05-29 16:45:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @title UpgradeabilityProxy
|
|
|
|
* @dev Extends BaseUpgradeabilityProxy with a constructor for initializing
|
|
|
|
* implementation and init data.
|
|
|
|
*/
|
|
|
|
contract UpgradeabilityProxy is BaseUpgradeabilityProxy {
|
2020-07-13 08:54:08 +00:00
|
|
|
/**
|
2020-05-29 16:45:37 +00:00
|
|
|
* @dev Contract constructor.
|
|
|
|
* @param _logic Address of the initial implementation.
|
|
|
|
* @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
|
|
|
|
* It should include the signature and the parameters of the function to be called, as described in
|
|
|
|
* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
|
|
|
|
* This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
|
|
|
|
*/
|
2020-07-13 08:54:08 +00:00
|
|
|
constructor(address _logic, bytes memory _data) public payable {
|
|
|
|
assert(IMPLEMENTATION_SLOT == bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1));
|
|
|
|
_setImplementation(_logic);
|
|
|
|
if (_data.length > 0) {
|
|
|
|
(bool success, ) = _logic.delegatecall(_data);
|
|
|
|
require(success);
|
2020-05-29 16:45:37 +00:00
|
|
|
}
|
2020-07-13 08:54:08 +00:00
|
|
|
}
|
2020-05-29 16:45:37 +00:00
|
|
|
}
|