Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ArslanKathia/0b44d1504061f8e0694a9e49d943e98a to your computer and use it in GitHub Desktop.
Save ArslanKathia/0b44d1504061f8e0694a9e49d943e98a to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.17+commit.8df45f5f.js&optimize=false&runs=200&gist=
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/// @custom:security contact [email protected]
contract DCatNFT is ERC721,ERC721URIStorage,Ownable,Pausable{
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
constructor() ERC721("DreamCatNFT","DCAT"){}
function mint(address receipent,string memory uri)
public
onlyOwner
returns(uint256)
{
uint256 newTokenId = _tokenIds.current();
_safeMint(receipent,newTokenId);
_setTokenURI(newTokenId,uri);
_tokenIds.increment();
return newTokenId;
}
function _burn(uint256 tokenId) internal
override(ERC721,ERC721URIStorage)
{
super._burn(tokenId);
}
function tokenURI(uint256 _tokenURI)
public
view
override(ERC721,ERC721URIStorage)
returns(string memory)
{
return super.tokenURI(_tokenURI);
}
function pause() public onlyOwner{
_pause();
}
function unpause() public onlyOwner{
_unpause();
}
function _beforeTokenTransfer(address from,address to,uint256 tokenId,uint256 batchSize)
internal
whenNotPaused
override
{
super._beforeTokenTransfer(from,to,tokenId,batchSize);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment