-
Hi, no matter how I list NFTs for sale, as private or public orders, the Seaport order type is always 2 on https://testnets.opensea.io, while I expected it to be 0 (public) and 2 (private). At least that's my interpretation of https://github.com/ProjectOpenSea/seaport-js/blob/16c77475a6d61452eae01a3092f2e0c435dfc76d/src/constants.ts#L40_L45. Can someone explain why it is 2 in both cases and under what circumstances an order type of 0 applies? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The difference between full and restricted is that restricted additionally asks the zone for isValidOrder, and allows the zone to e.g. complete an auction. So opensea uses their zone with restricted order type. You are free to create full (non-restricted) orders and execute them on seaport independently. |
Beta Was this translation helpful? Give feedback.
The difference between full and restricted is that restricted additionally asks the zone for isValidOrder, and allows the zone to e.g. complete an auction. So opensea uses their zone with restricted order type. You are free to create full (non-restricted) orders and execute them on seaport independently.