Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 521 Bytes

README.md

File metadata and controls

27 lines (15 loc) · 521 Bytes

ifContract

Contract Address : 0xaBE2cEFCcB2d0D4911dF3dbb3D409ad6ba67F8d0

It is a smart contract on bsc. You can check if address is smart contract or not.

Key Function

function isContract(address addr) public view returns (bool) {
  uint size;
  assembly { size := extcodesize(addr) }
  return size > 0;
}

Authors

Badges

MIT License