I hereby claim:
- I am duncant on github.
- I am duncancmt (https://keybase.io/duncancmt) on keybase.
- I have a public key whose fingerprint is C973 B9BC 9191 5096 3382 EED3 1FF3 3ED0 BC71 BC44
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity ^0.8.28; | |
abstract contract CommonBase { | |
function foo() external pure virtual returns (string memory) { | |
return "bar"; | |
} | |
} | |
abstract contract BaseA is CommonBase {} |