mirror of
https://github.com/Instadapp/infinite-proxy.git
synced 2024-07-29 21:47:49 +00:00
10 lines
237 B
Solidity
10 lines
237 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../infiniteProxy/proxy.sol";
|
|
|
|
contract Example is Proxy {
|
|
constructor(address admin_, address dummyImplementation_)
|
|
Proxy(admin_, dummyImplementation_)
|
|
{}
|
|
} |