Skip to content

Instantly share code, notes, and snippets.

@mpixelz
mpixelz / RandomHashlipsIntegrated.sol
Created October 7, 2021 23:17
Randomly Assigned extension with hashlips simple contract
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "https://github.com/1001-digital/erc721-extensions/blob/main/contracts/RandomlyAssigned.sol";
contract LFC_Test is ERC721, Ownable, RandomlyAssigned{
using Strings for uint256;