forked from cerc-io/laconicd-deprecated
96cad7de9c
* tests: reorganize testing packages * gitignore and minor changes
11 lines
281 B
Solidity
11 lines
281 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
|
|
contract ERCProxy {
|
|
uint256 internal constant FORWARDING = 1;
|
|
uint256 internal constant UPGRADEABLE = 2;
|
|
|
|
function proxyType() public pure returns (uint256 proxyTypeId);
|
|
function implementation() public view returns (address codeAddr);
|
|
}
|