sol2ligo icon indicating copy to clipboard operation
sol2ligo copied to clipboard

Address Related API

Open vird opened this issue 5 years ago • 0 comments

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

vird avatar Jan 23 '20 07:01 vird