mirror of
https://github.com/Instadapp/dsa-polygon-migration.git
synced 2024-07-29 22:27:58 +00:00
8 lines
330 B
Solidity
8 lines
330 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity ^0.7.0;
|
||
|
|
||
|
import "@openzeppelin/contracts/proxy/TransparentUpgradeableProxy.sol";
|
||
|
|
||
|
contract InstaAaveV2MigratorReceiver is TransparentUpgradeableProxy {
|
||
|
constructor(address _logic, address admin_, bytes memory _data) public TransparentUpgradeableProxy(_logic, admin_, _data) {}
|
||
|
}
|