mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-01 07:45:20 +01:00
11 lines
331 B
Solidity
11 lines
331 B
Solidity
|
pragma solidity ^0.5.0;
|
||
|
|
||
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
||
|
import "@openzeppelin/contracts/token/ERC20/ERC20Mintable.sol";
|
||
|
import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol";
|
||
|
|
||
|
contract ERC20Mock is ERC20Detailed, ERC20Mintable {
|
||
|
constructor() ERC20Detailed("DAIMock", "DAIM", 18) public {
|
||
|
}
|
||
|
}
|