From 02bd6853eada1c653ad04052ad42b3645489e94d Mon Sep 17 00:00:00 2001 From: huyhuynh3103 Date: Thu, 14 Nov 2024 14:13:45 +0700 Subject: [PATCH] fix: remove abstract from template --- src/ERC1155Common.sol | 2 +- src/ERC721Common.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ERC1155Common.sol b/src/ERC1155Common.sol index 0102623..17a9f9a 100644 --- a/src/ERC1155Common.sol +++ b/src/ERC1155Common.sol @@ -11,7 +11,7 @@ import { ERC1155Supply } from "@openzeppelin/contracts/token/ERC1155/extensions/ import { Strings } from "@openzeppelin/contracts/utils/Strings.sol"; import { IERC1155Common } from "./interfaces/IERC1155Common.sol"; -abstract contract ERC1155Common is +contract ERC1155Common is ERC1155, AccessControlEnumerable, ERC1155Pausable, diff --git a/src/ERC721Common.sol b/src/ERC721Common.sol index ca99a2a..db72bc9 100644 --- a/src/ERC721Common.sol +++ b/src/ERC721Common.sol @@ -6,7 +6,7 @@ import "./interfaces/IERC721Common.sol"; import "./refs/ERC721Nonce.sol"; import "./ERC721PresetMinterPauserAutoIdCustomized.sol"; -abstract contract ERC721Common is ERC721Nonce, ERC721PresetMinterPauserAutoIdCustomized, IERC721State, IERC721Common { +contract ERC721Common is ERC721Nonce, ERC721PresetMinterPauserAutoIdCustomized, IERC721State, IERC721Common { constructor(string memory name, string memory symbol, string memory baseTokenURI) ERC721PresetMinterPauserAutoIdCustomized(name, symbol, baseTokenURI) { }