diff --git a/contracts/Dappcord.sol b/contracts/Dappcord.sol index 7e30392..0434549 100644 --- a/contracts/Dappcord.sol +++ b/contracts/Dappcord.sol @@ -1,4 +1,10 @@ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; +import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; -contract Dappcord {} +contract Dappacord is ERC721 { + constructor( + string memory _name, + string memory _symbol + ) ERC721(_name, _symbol) {} +}