Use explicit imports (#4399)
Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com> Co-authored-by: ernestognw <ernestognw@gmail.com>
This commit is contained in:
@ -1,10 +1,11 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
pragma solidity ^0.8.19;
|
||||
|
||||
import "../../../token/ERC20/ERC20.sol";
|
||||
import "../../../token/ERC20/extensions/ERC20Permit.sol";
|
||||
import "../../../token/ERC20/extensions/ERC20Votes.sol";
|
||||
import "../../../token/ERC20/extensions/ERC20Wrapper.sol";
|
||||
import {IERC20, ERC20} from "../../../token/ERC20/ERC20.sol";
|
||||
import {ERC20Permit} from "../../../token/ERC20/extensions/ERC20Permit.sol";
|
||||
import {ERC20Votes} from "../../../token/ERC20/extensions/ERC20Votes.sol";
|
||||
import {ERC20Wrapper} from "../../../token/ERC20/extensions/ERC20Wrapper.sol";
|
||||
import {Nonces} from "../../../utils/Nonces.sol";
|
||||
|
||||
contract MyTokenWrapped is ERC20, ERC20Permit, ERC20Votes, ERC20Wrapper {
|
||||
constructor(
|
||||
|
||||
Reference in New Issue
Block a user