blockchains-security-toolkit/Solidity-Expert
BT3GL /baɪtɡɝɫ/ 77ab42d2a9
Update README.md
2022-04-21 03:52:10 +04:00
..
Boilerplates Create README.md 2022-04-21 01:34:38 +04:00
Setting-Workspace organizing directories 2022-04-12 02:15:14 +04:00
Writing-Tests organizing directories 2022-04-12 02:15:14 +04:00
README.md Update README.md 2022-04-21 03:52:10 +04:00

👾 Basic Solidity concepts


Interfaces

  • There are at least 2 reasons why you might use inheritance in smart contract developmnet. First, it allows changes in one parent contract to be reflected in child contracts. Second, it allow you to reuse code and reduce overall program length.
  • Interfaces cannot define state variables or constructors, functions have to be external, and interfaces cannot themselves inherit from other contracts.

Reentrancy




References