mirror of
https://github.com/status-im/dagger-contracts.git
synced 2025-01-14 08:37:19 +00:00
b9a9be350a
To be compatible with nim-web3, which doesn't support arrays in a method signature.
13 lines
277 B
Solidity
13 lines
277 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
contract TestToken is ERC20 {
|
|
constructor() ERC20("TestToken", "TST") {}
|
|
|
|
function mint(address holder, uint amount) public {
|
|
_mint(holder, amount);
|
|
}
|
|
}
|