mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-10 05:18:05 +00:00
11 lines
260 B
Solidity
11 lines
260 B
Solidity
|
// SPDX-License-Identifier: AGPL-3.0
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
||
|
|
||
|
contract GLDToken is ERC20 {
|
||
|
constructor(uint256 initialSupply) ERC20("Gold", "GLD") {
|
||
|
_mint(msg.sender, initialSupply);
|
||
|
}
|
||
|
}
|