2020-07-26 09:04:45 -07:00
|
|
|
// contracts/Wormhole.sol
|
2020-08-03 06:09:40 -07:00
|
|
|
// SPDX-License-Identifier: Apache 2
|
2020-07-26 09:04:45 -07:00
|
|
|
|
2021-05-27 07:01:49 -07:00
|
|
|
pragma solidity ^0.8.0;
|
2020-07-26 09:04:45 -07:00
|
|
|
|
2021-05-27 07:01:49 -07:00
|
|
|
import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
|
2020-07-26 09:04:45 -07:00
|
|
|
|
2021-05-27 07:01:49 -07:00
|
|
|
contract Wormhole is ERC1967Proxy {
|
|
|
|
constructor (address implementation, bytes memory initData) ERC1967Proxy(
|
|
|
|
implementation,
|
|
|
|
initData
|
|
|
|
) { }
|
|
|
|
}
|