mirror of
https://github.com/status-im/eth_ava_bridge.git
synced 2025-02-16 13:06:52 +00:00
16 lines
377 B
Solidity
16 lines
377 B
Solidity
//SPDX-License-Identifier: Unlicense
|
|
// Add Solidity compiler 0.6.2 to you hardhat.config.ts
|
|
pragma solidity ^0.6.2;
|
|
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract Token is ERC20 {
|
|
constructor(
|
|
string memory name,
|
|
string memory symbol,
|
|
uint256 amount
|
|
) public ERC20(name, symbol) {
|
|
_mint(msg.sender, amount);
|
|
}
|
|
}
|