I’ve been trying to pick up hardhat as I want to move away from remix, but I have a problem which I can’t seem to solve when trying to compile my contracts.
i try to import these contracts:
import “https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/GSN/Context.sol”;
import “https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/token/ERC20/IERC20.sol”;
import “https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.0.0/contracts/math/SafeMath.sol”;
import “https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/utils/Address.sol”;
import “https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/access/Ownable.sol”;
But it doesn’t work. I tried to change it to @openzeppelin/contracts/… but no luck. Am i missing something here?