Solidity Tutorial : all about Inheritance
September 28, 2022 · View on GitHub
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.
internalproperties and methods will also be derived by the new contract.privateproperties and methods from the original contract will not be inherited. They are only available from the contract they are defined into.