blockchains-security-toolkit/Solidity-Expert
BT3GL /baɪtɡɝɫ/ 39e09925ca
Update README.md
2022-05-11 15:55:58 -07: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-05-11 15:55:58 -07:00

👾 Becoming a Solidity Expert


👩🏼‍🏭 WIP


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.

References