Page cover image

Integrating with Marketplaces

Integrating should be as easy as 1-2-3!

TL Creator Contracts can integrate seamlessly with any marketplaces that support ERC-721 or ERC-1155 standards.

Open Marketplaces

Open marketplaces, like OpenSea, Rarible, LooksRare, Blur, etc should work out of the box. These marketplaces simply look at a user's wallet for any NFTs and can index those easily.

Closed Marketplaces

Closed marketplaces are those marketplaces that index contracts after they have been validated. This includes marketplaces like SuperRare and Foundation. We are willing to help any of these marketplaces index over our contracts in an automated fashion as well.

Verification

Please view the source code on our GitHub and see the deployed implementation contract addresses in these docs as well.

Implementation Contracts

Automation

Contract Introspection

Since all TL contracts implement ERC-1967 or ERC-1167, it is possible to look up what implementation contract is utilized by getting the value at the following storage slot (ERC-1967) or looking at the bytecode (ERC-1167)

0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc

From this, it can be verified that the NFT uses an approved implementation contract. Ideally this determines that the NFT should be indexed.

Last updated