You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -27,28 +27,6 @@ Returns the next token ID available for minting
27
27
|---|---|---|
28
28
| _0 | uint256 | The token identifier for the `_index`th NFT, (sort order not specified)
29
29
30
-
### totalSupply
31
-
32
-
```solidity
33
-
function totalSupply(uint256 id) external view returns (uint256)
34
-
```
35
-
36
-
Count NFTs tracked by this contract
37
-
38
-
39
-
40
-
#### Parameters
41
-
42
-
| Name | Type | Description |
43
-
|---|---|---|
44
-
| id | uint256 | undefined
45
-
46
-
#### Returns
47
-
48
-
| Name | Type | Description |
49
-
|---|---|---|
50
-
| _0 | uint256 | A count of valid NFTs tracked by this contract, where each one of them has an assigned and queryable owner not equal to the zero address
function totalSupply(uint256 id) external view returns (uint256)
17
+
```
18
+
19
+
Count NFTs tracked by this contract
20
+
21
+
22
+
23
+
#### Parameters
24
+
25
+
| Name | Type | Description |
26
+
|---|---|---|
27
+
| id | uint256 | undefined
28
+
29
+
#### Returns
30
+
31
+
| Name | Type | Description |
32
+
|---|---|---|
33
+
| _0 | uint256 | A count of valid NFTs tracked by this contract, where each one of them has an assigned and queryable owner not equal to the zero address
Copy file name to clipboardExpand all lines: docs/ERC721Enumerable.md
-17Lines changed: 0 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,23 +55,6 @@ Enumerate NFTs assigned to an owner
55
55
|---|---|---|
56
56
| _0 | uint256 | The token identifier for the `_index`th NFT assigned to `_owner`, (sort order not specified)
57
57
58
-
### totalSupply
59
-
60
-
```solidity
61
-
function totalSupply() external view returns (uint256)
62
-
```
63
-
64
-
Count NFTs tracked by this contract
65
-
66
-
67
-
68
-
69
-
#### Returns
70
-
71
-
| Name | Type | Description |
72
-
|---|---|---|
73
-
| _0 | uint256 | A count of valid NFTs tracked by this contract, where each one of them has an assigned and queryable owner not equal to the zero address
*See https://eips.ethereum.org/EIPS/eip-721 Note: the ERC-165 identifier for this interface is 0x780e9d63.*
10
+
11
+
## Methods
12
+
13
+
### totalSupply
14
+
15
+
```solidity
16
+
function totalSupply() external view returns (uint256)
17
+
```
18
+
19
+
Count NFTs tracked by this contract
20
+
21
+
22
+
23
+
24
+
#### Returns
25
+
26
+
| Name | Type | Description |
27
+
|---|---|---|
28
+
| _0 | uint256 | A count of valid NFTs tracked by this contract, where each one of them has an assigned and queryable owner not equal to the zero address
0 commit comments