Skip to content

Instantly share code, notes, and snippets.

@maymax777
Last active February 11, 2022 11:44
Show Gist options
  • Save maymax777/ab0e3507fa0d6479a092a616daa553e0 to your computer and use it in GitHub Desktop.
Save maymax777/ab0e3507fa0d6479a092a616daa553e0 to your computer and use it in GitHub Desktop.
contract Staking {
function isContract(address _target) internal view returns (bool) {
if (_target == address(0)) {
return false;
}
uint256 size;
assembly {
size := extcodesize(_target)
}
return size > 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment