Skip to content

Commit a1e4200

Browse files
committed
Add extensions: OpenSea operator filterers
1 parent 9051d60 commit a1e4200

6 files changed

+660
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// SPDX-License-Identifier: Apache 2.0
2+
// Credits: OpenSea
3+
pragma solidity ^0.8.0;
4+
5+
import { OperatorFilterer } from "./OperatorFilterer.sol";
6+
7+
contract DefaultOperatorFilterer is OperatorFilterer {
8+
address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
9+
10+
constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
11+
}
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// SPDX-License-Identifier: Apache 2.0
2+
// Credits: OpenSea
3+
pragma solidity ^0.8.0;
4+
5+
import { IOperatorFilterRegistry } from "./interface/IOperatorFilterRegistry.sol";
6+
7+
contract OperatorFilterer {
8+
error OperatorNotAllowed(address operator);
9+
10+
IOperatorFilterRegistry constant OPERATOR_FILTERER_REGISTRY =
11+
IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);
12+
13+
constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
14+
// If an inheriting token contract is deployed to a network without the registry deployed, the modifier
15+
// will not revert, but the contract will need to be registered with the registry once it is deployed in
16+
// order for the modifier to filter addresses.
17+
if (address(OPERATOR_FILTERER_REGISTRY).code.length > 0) {
18+
if (subscribe) {
19+
OPERATOR_FILTERER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
20+
} else {
21+
if (subscriptionOrRegistrantToCopy != address(0)) {
22+
OPERATOR_FILTERER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
23+
} else {
24+
OPERATOR_FILTERER_REGISTRY.register(address(this));
25+
}
26+
}
27+
}
28+
}
29+
30+
modifier onlyAllowedOperator() virtual {
31+
// Check registry code length to facilitate testing in environments without a deployed registry.
32+
if (address(OPERATOR_FILTERER_REGISTRY).code.length > 0) {
33+
if (!OPERATOR_FILTERER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
34+
revert OperatorNotAllowed(msg.sender);
35+
}
36+
}
37+
_;
38+
}
39+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
// SPDX-License-Identifier: Apache 2.0
2+
// Credits: OpenSea
3+
pragma solidity ^0.8.0;
4+
5+
interface IOperatorFilterRegistry {
6+
function isOperatorAllowed(address registrant, address operator) external returns (bool);
7+
8+
function register(address registrant) external;
9+
10+
function registerAndSubscribe(address registrant, address subscription) external;
11+
12+
function registerAndCopyEntries(address registrant, address registrantToCopy) external;
13+
14+
function updateOperator(
15+
address registrant,
16+
address operator,
17+
bool filtered
18+
) external;
19+
20+
function updateOperators(
21+
address registrant,
22+
address[] calldata operators,
23+
bool filtered
24+
) external;
25+
26+
function updateCodeHash(
27+
address registrant,
28+
bytes32 codehash,
29+
bool filtered
30+
) external;
31+
32+
function updateCodeHashes(
33+
address registrant,
34+
bytes32[] calldata codeHashes,
35+
bool filtered
36+
) external;
37+
38+
function subscribe(address registrant, address registrantToSubscribe) external;
39+
40+
function unsubscribe(address registrant, bool copyExistingEntries) external;
41+
42+
function subscriptionOf(address addr) external returns (address registrant);
43+
44+
function subscribers(address registrant) external returns (address[] memory);
45+
46+
function subscriberAt(address registrant, uint256 index) external returns (address);
47+
48+
function copyEntriesOf(address registrant, address registrantToCopy) external;
49+
50+
function isOperatorFiltered(address registrant, address operator) external returns (bool);
51+
52+
function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
53+
54+
function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
55+
56+
function filteredOperators(address addr) external returns (address[] memory);
57+
58+
function filteredCodeHashes(address addr) external returns (bytes32[] memory);
59+
60+
function filteredOperatorAt(address registrant, uint256 index) external returns (address);
61+
62+
function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
63+
64+
function isRegistered(address addr) external returns (bool);
65+
66+
function codeHashOf(address addr) external returns (bytes32);
67+
}

docs/DefaultOperatorFilterer.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# DefaultOperatorFilterer
2+
3+
4+
5+
6+
7+
8+
9+
10+
11+
12+
13+
## Errors
14+
15+
### OperatorNotAllowed
16+
17+
```solidity
18+
error OperatorNotAllowed(address operator)
19+
```
20+
21+
22+
23+
24+
25+
#### Parameters
26+
27+
| Name | Type | Description |
28+
|---|---|---|
29+
| operator | address | undefined |
30+
31+

0 commit comments

Comments
 (0)