Dual NFT Functionality
In your contract, you can enable ERC1155 event tracking by overriding the erc1155Enabled()
function and returning true
. While the contract remains compatible with ERC1155 even when this feature is off, it will not be recognized as an ERC1155 token on Etherscan; instead, it will default to being categorized as an ERC721 token. In the given contract on our github, this feature is activated by default.
When operated with the ERC1155 mode enabled, ERC-X also generates ERC721 tokens, thereby enabling compatibility with marketplaces that support either standard. This dual-functionality approach aligns with the "404" concept of hybrid tokens + NFTs, where selling one essentially equates to selling all, underlining the versatility and efficiency of ERC-X in handling combination tokens and dual NFT formats.
Last updated