mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-23 19:49:06 +00:00
14 lines
299 B
Solidity
14 lines
299 B
Solidity
// SPDX-License-Identifier: AGPL-3.0
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
|
|
|
|
contract TestNFT is ERC721 {
|
|
constructor() ERC721("TestNFT", "TNFT") {
|
|
}
|
|
|
|
function mint(address to, uint256 tokenId) public {
|
|
_safeMint(to, tokenId);
|
|
}
|
|
}
|