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
Copy file name to clipboardExpand all lines: README.md
+26-2Lines changed: 26 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# Operator Filter Registry
2
2
3
+
## **Note on Grace Period for Non-Ethereum Chains**
4
+
5
+
Currently, OpenSea only requires creator fee enforcement on Ethereum Mainnet and Goerli for collections to be eligible for creator fees. However, starting **January 2nd, 2023**, Opensea will begin validating creator fee enforcement on all supported EVM chains.
6
+
3
7
## Introduction
4
8
5
9
This repository contains a number of tools to help token contracts manage the operators allowed to transfer tokens on behalf of users - including the smart contracts and delegates of marketplaces that do not respect creator fees.
@@ -99,7 +103,11 @@ Ethereum Mainnet
99
103
<tr><td>Arbitrum Goerli</td></tr>
100
104
<tr><td>Avalanche</td></tr>
101
105
<tr><td>Avalanche Fuji</td></tr>
102
-
<tr><td>Klaytn</td></tr><tr><td>Baobab</td></tr>
106
+
<tr><td>Klaytn</td></tr>
107
+
<tr><td>Baobab</td></tr>
108
+
<tr><td>BSC</td></tr>
109
+
<tr><td>BSC Testnet</td></tr>
110
+
<tr><td>Gnosis</td></tr>
103
111
104
112
</table>
105
113
@@ -109,6 +117,22 @@ Token contracts that wish to manage lists of filtered operators and restrict tra
109
117
110
118
See the [ExampleERC721](src/example/ExampleERC721.sol) and [ExampleERC1155](src/example/ExampleERC1155.sol) contracts for basic implementations that inherit the `DefaultOperatorFilterer`.
111
119
120
+
## Getting Started with Foundry
121
+
122
+
This package can be installed into a [Foundry](https://github.com/foundry-rs/foundry#installation) project with the following command
0 commit comments