
ERC1155Delta
11 Followers

The NFT implementation with the lowest gas usage and minimal impact on the blockchain storage space.
ERC1155Delta is an NFT implementation/standard that is highly optimised for gas consumption and has less impact on the blockchain storage space. ERC1155Delta is meant to be an drop-in replacement for ERC721A. Like ERC721, each ERC1155Delta token is unique.
ERC1155Delta is fully opensourced and always free to use. The funding will be used to support the external auditing and fund the continuous development.
One can easily uses ERC1155Delta library to create gas optimised NFT contracts.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "erc1155delta/contracts/ERC1155Delta.sol";
contract ElyiumSystem is ERC1155Delta {
constructor() ERC1155Delta("https://token-cdn-domain/{id}.json") {}
function mint(
address to,
uint256 amount
) external {
_mint(to, amount);
}
}