Skip to content

Commit

Permalink
Merge pull request #192 from zdenham/zac/comment-implementation
Browse files Browse the repository at this point in the history
Comment for Token Implementers
  • Loading branch information
ItsNickBarry authored Feb 14, 2023
2 parents de7c954 + 71ab94d commit ae15a06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions contracts/token/ERC1155/base/ERC1155Base.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { ERC1155BaseInternal, ERC1155BaseStorage } from './ERC1155BaseInternal.s
/**
* @title Base ERC1155 contract
* @dev derived from https://github.com/OpenZeppelin/openzeppelin-contracts/ (MIT license)
* @dev inheritor must either implement ERC165 supportsInterface or inherit ERC165Base
*/
abstract contract ERC1155Base is IERC1155Base, ERC1155BaseInternal {
/**
Expand Down
1 change: 1 addition & 0 deletions contracts/token/ERC721/base/ERC721Base.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { ERC721BaseInternal } from './ERC721BaseInternal.sol';

/**
* @title Base ERC721 implementation, excluding optional extensions
* @dev inheritor must either implement ERC165 supportsInterface or inherit ERC165Base
*/
abstract contract ERC721Base is IERC721Base, ERC721BaseInternal {
/**
Expand Down

0 comments on commit ae15a06

Please sign in to comment.