forked from cerc-io/laconicd-deprecated
c9639c3860
* tests: add solidity test suite * tests: remove require strings * Update tests-solidity/init-test-node.sh * Update tests-solidity/init-test-node.sh Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
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);
|
|
}
|