Creating NFTs
An NFT/ERC721 is a smart contract standard which is specialised in Non Fungible Tokens (NFT) and compatible with Opensea. Every NFT is unique, so that only one can can be owned in its current form.
ERC721
ERC721balanceOf(owner)
ownerOf(tokenId)
approve(to, tokenId)
getApproved(tokenId)
setApprovalForAll(to, approved)
isApprovedForAll(owner, operator)
transferFrom(from, to, tokenId)
safeTransferFrom(from, to, tokenId)
safeTransferFrom(from, to, tokenId, _data)
_safeTransferFrom(from, to, tokenId, _data)
_exists(tokenId)
_isApprovedOrOwner(spender, tokenId)
_safeMint(to, tokenId)
_safeMint(to, tokenId, _data)
_mint(to, tokenId)
_burn(owner, tokenId)
_burn(tokenId)
_transferFrom(from, to, tokenId)
_checkOnERC721Received(from, to, tokenId, _data)Smart Contract
Description
Blockchain
Last updated
Was this helpful?