Skip to content

Commit 2131683

Browse files
authored
Update Marketplace sections with function compatibility and supported marketplaces. Update links to point to new marketplace boilerplate (#95)
* Update Marketplace sections with function compatibility and supported marketplaces. Update links to point to new marketplace boilerplate * Rename DestinationMarketplacesSupport snippet to SupportedMarketplacesTable
1 parent a36bdfb commit 2131683

File tree

7 files changed

+35
-16
lines changed

7 files changed

+35
-16
lines changed

docs.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@
141141
"group": "Build your Custom Marketplace",
142142
"pages": [
143143
"solutions/marketplaces/custom-marketplace/overview",
144-
"solutions/marketplaces/custom-marketplace/getting-started"
144+
"solutions/marketplaces/custom-marketplace/getting-started",
145+
"solutions/marketplaces/custom-marketplace/supported-marketplaces"
145146
]
146147
},
147148
{

guides/template-overview.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Example application to allow players to link other EOA wallets they own for tran
5656
### Custom Marketplace Boilerplate
5757
Open-source boilerplate of our white-label marketplace leveraging our marketplace APIs that can be completely customized to fit your game or use case.
5858
<CardGroup cols={2}>
59-
<Card title="Repo" icon="github" href="https://github.com/0xsequence-demos/marketplace-boilerplate" horizontal />
60-
<Card title="Demo" icon="globe" href="https://marketplace-boilerplate.pages.dev/" horizontal />
59+
<Card title="Repo" icon="github" href="https://github.com/0xsequence/marketplace-boilerplate" horizontal />
60+
<Card title="Demo" icon="globe" href="https://impressive-beaver-41204.sequence.market/" horizontal />
6161
</CardGroup>
6262

6363
## APIs
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
| Marketplace | Listings | Offers | Chains Supported | NFTs will appear on |
2+
|------------------------|----------|--------|------------------|---------------------|
3+
| Sequence Marketplace ||| **Mainnet:** Ethereum, Optimism, Telos, BNB Smart Chain, Gnosis Chain, Polygon, XR1, Polygon zkEVM, Moonbeam, Soneium, LAOS, The Root Network, B3, Base, Immutable zkEVM, Oasys Homeverse, ApeChain, Arbitrum One, Arbitrum Nova, Etherlink, Avalanche, Blast, Xai, Skale Nebula Gaming Hub<br/><br/>**Testnet:** Telos Testnet, BNB Smart Chain Testnet, Moonbase Alpha, Minato Soneium Testnet, B3 Sepolia, XR Sepolia, The Root Network Porcini Testnet, Monad Testnet, Immutable zkEVM Testnet, ApeChain Testnet, Oasys Homeverse Testnet, Avalanche Testnet, Somnia Testnet, Frequency Testnet, LAOS Sigma Testnet, Amoy Testnet, Base Sepolia, Etherlink Testnet, Arbitrum Sepolia, Sepolia, Optimism Sepolia, TOY Testnet, Skale Nebula Gaming Hub Testnet, Blast Sepolia, Xai Sepolia | The domain of your configured marketplace on [https://sequence.build/](https://sequence.build/) |
4+
| Blur ||| **Mainnet:** Ethereum, Optimism, BNB Smart Chain, Polygon, Soneium, B3, Base, ApeChain, Arbitrum, Avalanche, Blast, Xai<br/><br/>**Testnet:** Minato Soneium Testnet, Monad Testnet, Apechain Testnet, Amoy Testnet, Base Sepolia, Sepolia | [https://blur.io/](https://blur.io/) |
5+
| OpenSea ||| **Mainnet:** Ethereum, Optimism, BNB Smart Chain, Polygon, Soneium, B3, Base, ApeChain, Arbitrum, Avalanche, Blast, Xai<br/><br/>**Testnet:** Minato Soneium Testnet, Monad Testnet, Apechain Testnet, Amoy Testnet, Base Sepolia, Sepolia | [https://opensea.io/en](https://opensea.io/en) |
6+
| LooksRare ||| **Mainnet:** Ethereum, Optimism, BNB Smart Chain, Polygon, Soneium, B3, Base, ApeChain, Arbitrum, Avalanche, Blast, Xai<br/><br/>**Testnet:** Minato Soneium Testnet, Monad Testnet, Apechain Testnet, Amoy Testnet, Base Sepolia, Sepolia | [https://looksrare.org/](https://looksrare.org/) |
7+
| Magic Eden ||| **Mainnet:** Ethereum, Optimism, BNB Smart Chain, Polygon, Soneium, B3, Base, ApeChain, Arbitrum, Avalanche, Blast, Xai<br/><br/>**Testnet:** Minato Soneium Testnet, Monad Testnet, Apechain Testnet, Amoy Testnet, Base Sepolia, Sepolia | [https://magiceden.io/](https://magiceden.io/) |

solutions/marketplaces/custom-marketplace/getting-started.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebarTitle: Getting Started
88

99
Utilize the Sequence marketplace protocols to build a marketplace that enables [Shopify-like](https://www.shopify.com/) control over custom code development with Sequence source code.
1010

11-
The [codebase that you can clone](https://github.com/0xsequence-demos/marketplace-boilerplate) from CLI and begin with immediately enables users to perform offers and listings for collectible items. Customize which network your collections are on using [this guide](/solutions/collectibles/contracts/deploy-an-item-collection) to deploy a collection using the [Sequence Builder](https://sequence.build). Add your collections to your marketplace by following [this guide](/solutions/marketplaces/white-label-marketplace/guide) from step 4, `Add a collectible to Marketplace`, onwards.
11+
The [codebase that you can clone](https://github.com/0xsequence/marketplace-boilerplate) from CLI and begin with immediately enables users to perform offers and listings for collectible items. Customize which network your collections are on using [this guide](/solutions/collectibles/contracts/deploy-an-item-collection) to deploy a collection using the [Sequence Builder](https://sequence.build). Add your collections to your marketplace by following [this guide](/solutions/marketplaces/white-label-marketplace/guide) from step 4, `Add a collectible to Marketplace`, onwards.
1212

1313
## Quickstart: Marketplace Boilerplate
1414

@@ -21,7 +21,7 @@ npx sequence-cli marketplace create-marketplace-boilerplate
2121
## Try a Demo
2222

2323
<Note>
24-
Check out our [demo](https://marketplace-boilerplate.pages.dev/) to see a boilerplate marketplace in action.
24+
Check out our [demo](https://impressive-beaver-41204.sequence.market/) to see a boilerplate marketplace in action.
2525
</Note>
2626

2727
## Walkthrough
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: "Supported Marketplaces"
3+
description: Table of marketplaces supported by Sequence, available for configuration as redirect options and as destination marketplaces in the builder.
4+
sidebarTitle: Supported Marketplaces
5+
---
6+
7+
import SupportedMarketplacesTable from '/snippets/supported-marketplaces-table.mdx';
8+
9+
## Destination Marketplace
10+
11+
The destination marketplace defines where new listings created through the builder will be automatically published. When you select a marketplace from the supported options, new items will be listed there accordingly.
12+
13+
## Supported Marketplaces
14+
15+
Below is a table of marketplaces currently supported by Sequence for configuration both as redirect options and as destination marketplaces.
16+
17+
<SupportedMarketplacesTable />

solutions/marketplaces/white-label-marketplace/guide.mdx

+5-11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ description: Follow this 8-step guide to learn how to use the Sequence Builder w
44
sidebarTitle: Guide
55
---
66

7+
import SupportedMarketplacesTable from '/snippets/supported-marketplaces-table.mdx';
8+
79
## Watch a Marketplace be Launched in Minutes
810

911
<Note>
@@ -75,24 +77,16 @@ Select the currency, then confirm and save it:
7577
</Step>
7678
<Step title="Choose Marketplace Destination">
7779

78-
For each Collectible, choose the type of marketplace with how you want your users to transact: Sequence Market, P2P, or, AMM.
80+
For each collectible, select the destination marketplace where new listings will be created.
7981
<Frame>
8082
![choose marketplace type](/images/marketplace/builder_markeplace_setting_update_marketplace_type.png)
8183
</Frame>
8284
#### Sequence Market
8385
This marketplace type enables users to create custom listings and offers on a decentralized orderbook, available for anyone to partake in commerce, allowing for time expiry of orders, custom pricing, and ERC20 custom currency types, as well as other features.
8486

85-
#### Blur
86-
Your NFTs will appear on https://blur.io/
87-
88-
#### OpenSea
89-
Your NFTs will appear on https://opensea.io/en
90-
91-
#### LooksRare
92-
Your NFTs will appear on https://looksrare.org/
87+
All your NFTs can be configured to list directly on other marketplaces such as Magic Eden, OpenSea, and more. In that case, they will no longer be listed by default on the Sequence Marketplace, but Sequence will still detect and display them seamlessly. This setup gives you full flexibility over distribution while keeping your NFTs visible both on your custom marketplace and across the broader NFT ecosystem.
9388

94-
#### Magic Eden
95-
Your NFTs will appear on https://magiceden.io/
89+
<SupportedMarketplacesTable />
9690

9791
</Step>
9892
<Step title="Update Marketplace Settings">

0 commit comments

Comments
 (0)