Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 738 Bytes

Inheritance.md

File metadata and controls

20 lines (11 loc) · 738 Bytes

Solidity Tutorial : all about Inheritance

In Solidity, inheritance enables a general extension of functionalities of one contract to another contract.


How to create an inherited Contract ?

Contract can inherited from an other contract by using the keyword is .


Private functions are not derived.

  • internal properties and methods will also be derived by the new contract.
  • private properties and methods from the original contract will not be inherited. They are only available from the contract they are defined into.

References