Skip to content

Commit

Permalink
fix: remove abstract from template
Browse files Browse the repository at this point in the history
  • Loading branch information
huyhuynh3103 committed Nov 14, 2024
1 parent 42a031e commit 02bd685
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ERC1155Common.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/ERC721Common.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{ }
Expand Down

0 comments on commit 02bd685

Please sign in to comment.