sol2ligo
sol2ligo copied to clipboard
Address Related API
https://solidity.readthedocs.io/en/v0.4.24/units-and-global-variables.html https://solidity.readthedocs.io/en/v0.5.0/units-and-global-variables.html We should support or explicitly say that it unsupported Address Related
-
<address>.balance : uint -
address(this).balance -
<address>.transfer(uint256 amount) -
<address>.send(uint256 amount) returns (bool) -
<address>.call(...) returns (bool) -
<address>.call(bytes memory) returns (bool, bytes memory) -
<address>.callcode(...) returns (bool) -
<address>.delegatecall(...) returns (bool) -
<address>.delegatecall(bytes memory) returns (bool, bytes memory) -
<address>.staticcall(bytes memory) returns (bool, bytes memory)Intersecting with #33