Created
March 16, 2022 22:06
-
-
Save Aboudjem/c6fd570173e79f258a4a91129ed1b2a3 to your computer and use it in GitHub Desktop.
Test ERC1155
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol"; | |
contract TestERC1155 is ERC1155 { | |
constructor() ERC1155 ("test") { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment