Trying to deploy Upgradeable contract i get an error.
Also i get strange warnings during the compilation, but i don’t have any duplicates in my truffle project.
I didn’t catch such problems before.
Code to reproduce
Error: The requested contract was not found. Make sure the source code is available for compilation
> Duplicate contract names found for IAirdrop.
> This can cause errors and unknown behavior. Please rename one of your contracts.
> Duplicate contract names found for IERC20Mintable.
> This can cause errors and unknown behavior. Please rename one of your contracts.
> Duplicate contract names found for IMasterChief.
> This can cause errors and unknown behavior. Please rename one of your contracts.
It works ok until I start to inherit another local solidity file.
If I stop inheriting anything locally, the deployProxy works.
Everything is using inheriting from upgradeable contracts except for when it is inheriting something local, but those are also inheriting upgradeable contracts.
I have tried deleing the abi jsons folder which didn't help. I don't know where is the build folder.
When I use truffle compile --all && truffle migrate --reset I get "Artifacts are from different compiler runs"
I tried to declare all the contracts in the main contract folder but I get another error: "Cannot read property 'layout' of undefined".
Any help is appreciated! tia.