@@ -10,21 +10,38 @@ BASE: ERC721A EXTENSION: DropSinglePhase The `ERC721Drop` contract im
10
10
11
11
## Methods
12
12
13
+ ### OPERATOR_FILTER_REGISTRY
14
+
15
+ ``` solidity
16
+ function OPERATOR_FILTER_REGISTRY() external view returns (contract IOperatorFilterRegistry)
17
+ ```
18
+
19
+
20
+
21
+
22
+
23
+
24
+ #### Returns
25
+
26
+ | Name | Type | Description |
27
+ | ---| ---| ---|
28
+ | _ 0 | contract IOperatorFilterRegistry | undefined |
29
+
13
30
### approve
14
31
15
32
``` solidity
16
- function approve(address to , uint256 tokenId) external nonpayable
33
+ function approve(address operator , uint256 tokenId) external nonpayable
17
34
```
18
35
19
36
20
37
21
- * See {IERC721 -approve}.*
38
+ * See {ERC721 -approve}.*
22
39
23
40
#### Parameters
24
41
25
42
| Name | Type | Description |
26
43
| ---| ---| ---|
27
- | to | address | undefined |
44
+ | operator | address | undefined |
28
45
| tokenId | uint256 | undefined |
29
46
30
47
### balanceOf
@@ -461,6 +478,23 @@ The tokenId assigned to the next new NFT to be lazy minted.
461
478
| ---| ---| ---|
462
479
| _ 0 | uint256 | undefined |
463
480
481
+ ### operatorRestriction
482
+
483
+ ``` solidity
484
+ function operatorRestriction() external view returns (bool)
485
+ ```
486
+
487
+
488
+
489
+
490
+
491
+
492
+ #### Returns
493
+
494
+ | Name | Type | Description |
495
+ | ---| ---| ---|
496
+ | _ 0 | bool | undefined |
497
+
464
498
### owner
465
499
466
500
``` solidity
@@ -572,7 +606,7 @@ function safeTransferFrom(address from, address to, uint256 tokenId) external no
572
606
573
607
574
608
575
- * See {IERC721-safeTransferFrom }.*
609
+ * See {ERC721- _ safeTransferFrom }.*
576
610
577
611
#### Parameters
578
612
@@ -585,12 +619,12 @@ function safeTransferFrom(address from, address to, uint256 tokenId) external no
585
619
### safeTransferFrom
586
620
587
621
``` solidity
588
- function safeTransferFrom(address from, address to, uint256 tokenId, bytes _data ) external nonpayable
622
+ function safeTransferFrom(address from, address to, uint256 tokenId, bytes data ) external nonpayable
589
623
```
590
624
591
625
592
626
593
- * See {IERC721-safeTransferFrom }.*
627
+ * See {ERC721- _ safeTransferFrom }.*
594
628
595
629
#### Parameters
596
630
@@ -599,7 +633,7 @@ function safeTransferFrom(address from, address to, uint256 tokenId, bytes _data
599
633
| from | address | undefined |
600
634
| to | address | undefined |
601
635
| tokenId | uint256 | undefined |
602
- | _ data | bytes | undefined |
636
+ | data | bytes | undefined |
603
637
604
638
### setApprovalForAll
605
639
@@ -609,7 +643,7 @@ function setApprovalForAll(address operator, bool approved) external nonpayable
609
643
610
644
611
645
612
- * See {IERC721 -setApprovalForAll}.*
646
+ * See {ERC721 -setApprovalForAll}.*
613
647
614
648
#### Parameters
615
649
@@ -668,6 +702,22 @@ Updates default royalty recipient and bps.
668
702
| _ royaltyRecipient | address | Address to be set as default royalty recipient. |
669
703
| _ royaltyBps | uint256 | Updated royalty bps. |
670
704
705
+ ### setOperatorRestriction
706
+
707
+ ``` solidity
708
+ function setOperatorRestriction(bool _restriction) external nonpayable
709
+ ```
710
+
711
+
712
+
713
+
714
+
715
+ #### Parameters
716
+
717
+ | Name | Type | Description |
718
+ | ---| ---| ---|
719
+ | _ restriction | bool | undefined |
720
+
671
721
### setOwner
672
722
673
723
``` solidity
@@ -804,7 +854,7 @@ function transferFrom(address from, address to, uint256 tokenId) external nonpay
804
854
805
855
806
856
807
- * See {IERC721-transferFrom }.*
857
+ * See {ERC721- _ transferFrom }.*
808
858
809
859
#### Parameters
810
860
@@ -931,6 +981,22 @@ event DefaultRoyalty(address indexed newRoyaltyRecipient, uint256 newRoyaltyBps)
931
981
| newRoyaltyRecipient ` indexed ` | address | undefined |
932
982
| newRoyaltyBps | uint256 | undefined |
933
983
984
+ ### OperatorRestriction
985
+
986
+ ``` solidity
987
+ event OperatorRestriction(bool restriction)
988
+ ```
989
+
990
+
991
+
992
+
993
+
994
+ #### Parameters
995
+
996
+ | Name | Type | Description |
997
+ | ---| ---| ---|
998
+ | restriction | bool | undefined |
999
+
934
1000
### OwnerUpdated
935
1001
936
1002
``` solidity
@@ -1136,6 +1202,22 @@ The quantity of tokens minted must be more than zero.
1136
1202
1137
1203
1138
1204
1205
+ ### OperatorNotAllowed
1206
+
1207
+ ``` solidity
1208
+ error OperatorNotAllowed(address operator)
1209
+ ```
1210
+
1211
+
1212
+
1213
+
1214
+
1215
+ #### Parameters
1216
+
1217
+ | Name | Type | Description |
1218
+ | ---| ---| ---|
1219
+ | operator | address | undefined |
1220
+
1139
1221
### OwnerQueryForNonexistentToken
1140
1222
1141
1223
``` solidity
0 commit comments