Skip to content

Instantly share code, notes, and snippets.

@Aboudjem
Created March 16, 2022 22:06
Show Gist options
  • Save Aboudjem/c6fd570173e79f258a4a91129ed1b2a3 to your computer and use it in GitHub Desktop.
Save Aboudjem/c6fd570173e79f258a4a91129ed1b2a3 to your computer and use it in GitHub Desktop.
Test ERC1155
// 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