erc1155delta
v0.1.0
Published
[](https://github.com/estarriolvetch/ERC1155Delta/actions/workflows/test.yml) [
Installaion
npm
npm install erc1155deltayarn
yarn add erc1155deltaUsage
// 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);
}
}Acknoledgement
This repository is inspired by or directly modified from the following projects:
- Openzeppelin SDK
- ERC721A
