Skip to content

Instantly share code, notes, and snippets.

@gitpusha
Created October 20, 2020 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gitpusha/d0de40612ec11ae0f2d3a6eb63f2ca6a to your computer and use it in GitHub Desktop.
Save gitpusha/d0de40612ec11ae0f2d3a6eb63f2ca6a to your computer and use it in GitHub Desktop.
a contract that has file import bug with solc 0.7 version and buidler 1.4.7
// "SPDX-License-Identifier: UNLICENSED"
pragma solidity 0.7.4;
pragma experimental ABIEncoderV2;
/// yarn add -D @gelatonetwork/core v1.0.0
import {
GelatoProviderModuleStandard
} from "@gelatonetwork/core/contracts/provider_modules/GelatoProviderModuleStandard.sol";
contract ProviderModuleDSA is GelatoProviderModuleStandard {
// add/remove `public` for file import bug appear/disappear
constructor() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment