solidity-ide
solidity-ide copied to clipboard
Derive getter operations from super contracts
The getter's name is the variable's name. So in
contract foo {
int public bar;
}
You can access it through someFooInstance.bar()
.