Skip to content

Instantly share code, notes, and snippets.

@mingder78
Created July 4, 2021 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mingder78/93652979ebdf289eb76af40e72c5ecdd to your computer and use it in GitHub Desktop.
Save mingder78/93652979ebdf289eb76af40e72c5ecdd to your computer and use it in GitHub Desktop.
test on Rinkeby for Hack Money 2021 hackathon, super XEROR project.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
contract CopyItem is ERC1155 {
constructor() public ERC1155("http://mars.muzamint.com:3000/{id}.json") {
// _mint(msg.sender, 0, 1000, "GOLD"); // owner, token id, amount, data
// to use id for cryptokitty id as a copy of cryptokitty erc721 token
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment