I'm trying to test out Ampleforth on Rinkbey using Remix. Here are all the files that I copy into remix. https://github.com/cryptoghoulz/based-contracts/tree/master/contracts/v4
They compile fine, but when I deploy UFragments I get this error:
This contract may be abstract, not implement an abstract parent's methods completely or not invoke an inherited contract's constructor correctly.
Anyone know what could be going on? Thanks!


contract UFragments is ERC20Detailed, Ownable, and thencontract ERC20Detailed is Initializable, IERC20. So you cannot deploy an instance ofUFragments. You need to inherit this contract, and implement all functions not yet implemented (presumably, all of them are declared inIERC20). – goodvibration Aug 22 '20 at 06:44