Rendering NFT’s on-site instead of traditional images

The following is a method for utilising NFT’s within your website, opposed to art/graphics/stock. In this example, we use the OpenSea API to fetch the metadata of the NFT based on the contract address and token ID. We then parse the JSON response to extract the image URL of the NFT. Finally, we display the […]

Fungible meets Non-Fungible [ERC20 + ERC721/ERC115]

Tokens that combine fungibility with non-fungible aspects. By incorporating elements of both ERC-20 and ERC-721 or ERC-1155 standards, you can create tokens that have fungible properties but also unique inscriptions or characteristics. To implement this hybrid token, you can modify the standard ERC-20 token contract to include an additional mapping that associates an inscription or […]