Transient Labs Developer Docs
  • 👋Welcome!
  • 📑TL Creator Contracts
    • Creator Contracts Overview
    • Implementation Contracts
      • v3.x.x
      • v2.x.x
      • v1.x.x
    • Smart Contract Documentation
    • Common Features
      • Access Control
      • Royalties
      • Story Inscriptions
      • NFT Delegation
      • BlockList
    • ERC721TL
    • ERC1155TL
    • Shatter
    • ERC7160TL
    • Doppelganger
    • Collector's Choice
  • ⛔BlockList
    • BlockList Overview
    • Implementation Contracts
    • Deployments
    • Smart Contract Documentation
  • 🔖Story Inscriptions
    • Story Inscriptions Overview
    • Story Inscription Format
    • Smart Contract Documentation
  • 🖼️T.R.A.C.E.
    • T.R.A.C.E. Overview
    • Record Schema
    • Implementation
    • Smart Contract Documentation
      • TRACE
      • TRACERSRegistry
  • 🥞Stacks
    • Stacks Overview
    • Deployments
    • Smart Contract Documentation
  • 🎨Dynamic Art
    • Dynamic Art Overview
    • How to Create
    • How to Display
  • 🔗Integrations
    • Deploying TL Contracts
    • NFT Delegation
    • Integrating with Marketplaces
    • Metadata Structure
    • Inheriting TL Contracts
    • Onchain Art
    • Embeddable Components
  • ❔Miscellaneous
    • Supported Blockchains
    • tl-sol-tools
    • Licensing
    • Batch Upload Secret JSON
Powered by GitBook
On this page
  • Open Marketplaces
  • Closed Marketplaces
  • Verification
  • Automation
  1. Integrations

Integrating with Marketplaces

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

PreviousNFT DelegationNextMetadata Structure

Last updated 1 year ago

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.

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.

Implementation Contracts
🔗
Page cover image