We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8568114 + 2d05db1 commit 9d9ea57Copy full SHA for 9d9ea57
contracts/token/ERC1155/extensions/ERC1155Supply.sol
@@ -12,6 +12,9 @@ import "../ERC1155.sol";
12
* clearly identified. Note: While a totalSupply of 1 might mean the
13
* corresponding is an NFT, there is no guarantees that no other token with the
14
* same id are not going to be minted.
15
+ *
16
+ * NOTE: This contract implies a global limit of 2**256 - 1 to the number of tokens
17
+ * that can be minted.
18
*/
19
abstract contract ERC1155Supply is ERC1155 {
20
mapping(uint256 => uint256) private _totalSupply;
0 commit comments