mirror of
https://github.com/rjNemo/epicNFT
synced 2026-06-12 04:36:39 +00:00
10 lines
188 B
Solidity
10 lines
188 B
Solidity
//SPDX-License-Identifier: Unlicensed
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "hardhat/console.sol";
|
|
|
|
contract EpicNFT {
|
|
constructor() {
|
|
console.log("My first NFT contract!");
|
|
}
|
|
}
|