Solhint

Solhint

Community Analyzer

Imported object name is not being used by the contract SOLHINT-W1010

Anti-pattern
Minor

Imported object name is not being used by the contract.

Bad Practice

  1. Imported object is not being used
    import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
      contract B {}
    

Recommended

  1. Imported object is being used
    import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
    contract MyToken is ERC20 {}
    

Learn more

no-unused-import on Solhint's documentation.