Open cesarvarela opened 2 years ago
Hi, I'm using hardhat seems like an issue with imports?
This worked:
interface IUniswapV2Pair { function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); } contract Reserves { ... }
This didn't:
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; contract Reserves { ... }
I got compiler_error when running tenderly contracts push.
compiler_error
tenderly contracts push
Hi, I'm using hardhat seems like an issue with imports?
This worked:
This didn't:
I got
compiler_error
when runningtenderly contracts push
.