SDK - Secondary
How to Install and Setup the Mojito Secondary-marketplace SDK module.
Overview
The Secondary Marketplace SDK is a powerful platform that enables users to purchase Non-Fungible Tokens (NFTs) using cryptocurrency. This SDK offers a range of functionalities to facilitate seamless transactions within the secondary NFT market. This documentation will focus on the key features of the SDK, including the Product Details Page (PDP), making offers, buying now, accepting offers, rejecting offers, listing items, removing listings, editing listings, and canceling offers.
This guide will help you better understand how to use and integrate the Secondary-marketplace SDK into your application.
Note:
For more detailed information, examples and theme customizations, you can refer to the NPM Public repository here.
Prerequisite
Before proceeding with the installation steps, ensure that you have the following prerequisites in place:
- Node.js and NPM/Yarn: Make sure you have Node.js installed on your machine, and the Node.js version should be 18 or higher. along with either NPM (Node Package Manager) or Yarn. You can download and install Node.js from the official website here.
- API URL: Determine the appropriate API URL to use based on your environment.
- NEXT js: We are recommended to use Next.js for this SDK.
Installation and Setup
Step 1: Install the Secondary-marketplace Module
Install the Mojito Secondary-marketplace SDK module on your project by using one of the following methods below:
Install using NPM:
npm i @mojito-inc/secondary-market
Install using Yarn:
yarn add @mojito-inc/secondary-market
Step 2: Wrap the Provider and Set API URL, Bearer Token and Theme
In your project's root file, follow these steps to wrap the provider and configure the API URL, Bearer token and Theme:
-
Determine the appropriate API URL based on your environment:
- For the development environment, set
API_URL
tohttps://api-dev.mojito.xyz/query
. - For the production environment, set
API_URL
tohttps://api.mojito.xyz/query
.
- For the development environment, set
-
Wrap the provider using the
SecondaryMarketProvider
component from the Mojito Secondary-marketplace SDK.- Import the
SecondaryMarketProvider
from@mojito-inc/secondary-market
in your JavaScript file. - Use the
SecondaryMarketProvider
component and provide the following props:uri
: Set this prop to the determinedAPI_URL
based on your environment.token
: Pass the obtained JWT token or Auth0 token as the value for this prop. Use the formatBearer <Token>
.
- Import the
import { SecondaryMarketProvider } from "@mojito-inc/secondary-market";
import { ThemeProvider } from '@mui/material/styles';
const client = {
uri: API_URL,
token: tokenData ? `Bearer ${ tokenData }` : undefined,
}
<ThemeProvider theme={ theme }>
<SecondaryMarketProvider clientOptions={ client } theme={ theme }>
{ children }
</SecondaryMarketProvider>
</ThemeProvider>
Step 3: Integrate Product Details Page (PDP)
To use the Product Details Page feature, follow these steps:
Import the necessary modules from the @mojito-inc/secondary-market
package:
Note:
To get the wallet details, please refer to our Connect Wallet SDK document. Once the wallet is connected, you will receive the wallet details. Pass the wallet details in the respective module.
import { ProductDetailPage } from "@mojito-inc/secondary-market";
<ProductDetailPage
config={ configuration }
Image={ Image }
walletDetails={ walletDetails }
onClickDisconnectWallet={ onClickDisconnectWallet }
onConnectWallet={ onConnectWallet }
onRefetchBalance={ onRefetchBalance }
tokenDetails={ tokenDetails } />
Fill in the required parameters for the ProductDetailPage
Parameter | Type | Required | Description |
---|---|---|---|
configuration | Object | β | Configuration |
Image | Object | β | Image |
walletDetails | Object | β | WalletDetails |
tokenDetails | Object | β | TokenDetails |
onClickDisconnectWallet | function | -β | function to handle disconnect wallet |
onConnectWallet | function | -β | function to handle connect wallet |
onRefetchBalance | function | β | function to handle refetch balance |
Fill in the required parameters for the Configuration
Parameter | Type | Required | Description |
---|---|---|---|
orgId | string | β | organisation id |
infuraId | string | β | infura id to connect wallet |
paperClientId | string | β | paper client id to connect with email |
walletOptions | Object | β | walletOptions |
Fill in the required parameters for the walletOptions
Parameter | Type | Required | Description |
---|---|---|---|
enableMetamask | boolean | β | to enable or disable metamask |
enableWalletConnect | boolean | β | to enable or disable wallet connect |
enableEmail | boolean | β | to enable or disable email connect |
Fill in the required parameters for the Image
Parameter | Type | Required | Description |
---|---|---|---|
ethIcon | string | β | eth icon in svg, png, jpeg or gif format |
metamask | string | β | metamask icon in svg, png, jpeg or gif format |
walletConnect | string | β | wallet connect icon in svg, png, jpeg or gif format |
logo | string | β | logo icon in svg, png, jpeg or gif format |
loader | string | β | loader icon in svg, png, jpeg or gif format |
Response
Integrate Listing Item or Remove listing Modal
To use the Listing Item or Remove listing Modal feature, follow these steps:
Import the necessary modules from the @mojito-inc/secondary-market
package:
Note:
To get the wallet details, please refer to our Connect Wallet SDK document. Once the wallet is connected, you will receive the wallet details. Pass the wallet details in the respective module.
import { ListItemContainer } from "@mojito-inc/secondary-market";
<ListItemContainer
open={ open }
image={ Image }
config={ configuration }
tokenDetails={ tokenDetails }
isRemoveListing={ isRemoveListing }
walletDetails={ walletDetails }
onClickViewItem={ onCloseListItemModal }
onClickBackToMarketPlace={ onCloseListItemModal }
onCloseModal={ onCloseListItemModal }
onConnectWallet={ onConnectWallet } />
Fill in the required parameters for the ListItemContainer
Parameter | Type | Required | Description |
---|---|---|---|
open | boolean | β | to open modal |
configuration | Object | β | Configuration |
Image | Object | β | Image |
walletDetails | Object | β | WalletDetails |
tokenDetails | Object | β | TokenDetails |
isRemoveListing | boolean | β | should be true to render remove listing modal |
onClickBackToMarketPlace | function | -β | function to handle custom redirection |
onClickViewItem | function | β | function to handle custom redirection |
onConnectWallet | function | -β | function to handle connect wallet |
onCloseModal | function | β | function to handle close modal |
Response
Integrate Buy Now Modal
To use the Buy Now Modal feature, follow these steps:
Import the necessary modules from the @mojito-inc/secondary-market
package:
Note:
To get the wallet details, please refer to our Connect Wallet SDK document. Once the wallet is connected, you will receive the wallet details. Pass the wallet details in the respective module.
import { BuyNow } from "@mojito-inc/secondary-market";
<BuyNow
open={ open }
config={ configuration }
image={ Image }
tokenDetails={ tokenDetails }
walletDetails={ walletDetails }
onClickViewItem={ onCloseBuyNowModal }
onClickBackToMarketPlace={ onCloseBuyNowModal }
onClickConnectWallet={ onConnectWallet }
onClickDisconnectWallet={ onClickDisconnectWallet }
onCloseModal={ onCloseBuyNowModal }
onRefetchBalance={ onRefetchBalance } />
Fill in the required parameters for the BuyNow
Parameter | Type | Required | Description |
---|---|---|---|
open | boolean | β | to open modal |
configuration | Object | β | Configuration |
Image | Object | β | Image |
walletDetails | Object | β | WalletDetails |
tokenDetails | Object | β | TokenDetails |
onRefetchBalance | function | β | function to handle refetch balance logic |
onClickBackToMarketPlace | function | -β | function to handle custom redirection |
onClickViewItem | function | β | function to handle custom redirection |
onConnectWallet | function | -β | function to handle connect wallet |
onClickDisconnectWallet | function | β | function to handle disconnect wallet |
onCloseModal | function | β | function to handle close modal |
Response
Integrate Make Offer Modal
To use the Make Offer Modal feature, follow these steps:
Import the necessary modules from the @mojito-inc/secondary-market
package:
Note:
To get the wallet details, please refer to our Connect Wallet SDK document. Once the wallet is connected, you will receive the wallet details. Pass the wallet details in the respective module.
import { MakeOffer } from "@mojito-inc/secondary-market";
<MakeOffer
open={ open }
config={ configuration }
image={ Image }
tokenDetails={ tokenDetails }
offerOrderId={ orderId }
isCancelOffer={ isCancelOffer }
walletDetails={ walletDetails }
onClickViewItem={ onCloseMakeOfferModal }
onClickBackToMarketPlace={ onCloseMakeOfferModal }
onRefetchBalance={ onRefetchBalance }
onConnectWallet={ onConnectWallet }
onCloseModal={ onCloseMakeOfferModal } />
Fill in the required parameters for the MakeOffer
Parameter | Type | Required | Description |
---|---|---|---|
open | boolean | β | to open modal |
configuration | Object | β | Configuration |
Image | Object | β | Image |
walletDetails | Object | β | WalletDetails |
tokenDetails | Object | β | TokenDetails |
isCancelOffer | boolean | β | should be true to render cancel offer modal |
orderId | string | β | Required for cancel offer |
onRefetchBalance | function | β | function to handle refetch balance logic |
onClickBackToMarketPlace | function | -β | function to handle custom redirection |
onClickViewItem | function | β | function to handle custom redirection |
onConnectWallet | function | -β | function to handle connect wallet |
onCloseModal | function | β | function to handle close modal |
Response
Integrate Accept Offer Modal
To use the Accept Offer Modal feature, follow these steps:
Import the necessary modules from the @mojito-inc/secondary-market
package:
Note:
To get the wallet details, please refer to our Connect Wallet SDK document. Once the wallet is connected, you will receive the wallet details. Pass the wallet details in the respective module.
import { AcceptAndRejectOffer } from "@mojito-inc/secondary-market";
<AcceptAndRejectOffer
open={ open }
config={ configuration }
image={ Image }
tokenDetails={ tokenDetails }
orderId={ orderId }
isRejectOffer={ isRejectOffer }
walletDetails={ walletDetails }
onClickViewItem={ onCloseOfferModal }
onClickBackToMarketPlace={ onCloseOfferModal }
onConnectWallet={ onConnectWallet }
onCloseModal={ onCloseOfferModal } />
Fill in the required parameters for the AcceptAndRejectOffer
Parameter | Type | Required | Description |
---|---|---|---|
open | boolean | β | to open modal |
configuration | Object | β | Configuration |
Image | Object | β | Image |
walletDetails | Object | β | WalletDetails |
tokenDetails | Object | β | TokenDetails |
isRejectOffer | boolean | β | should be true to render reject offer modal |
orderId | string | β | should pass order id to which order going to accept or reject |
onClickBackToMarketPlace | function | -β | function to handle custom redirection |
onClickViewItem | function | β | function to handle custom redirection |
onConnectWallet | function | -β | function to handle connect wallet |
onCloseModal | function | β | function to handle close modal |
Response
Integrate Account Wallet feature page
To use the Account Wallet feature, follow these steps:
Import the necessary modules from the @mojito-inc/secondary-market
package:
Note:
To get the wallet details, please refer to our Connect Wallet SDK document. Once the wallet is connected, you will receive the wallet details. Pass the wallet details in the respective module.
import { WalletsPage } from "@mojito-inc/secondary-market";
enum ListingType {
SALE = 'sale',
CLAIMABLE = 'claimable',
}
<WalletsPage
walletDetails={ walletDetails }
config={ config }
Image={ Image }
tabConfig={ [
{
tabLabel: 'Wallet',
showTab: true,
}, {
tabLabel: 'Activity',
showTab: true,
}, {
tabLabel: 'Account',
showTab: true,
},
] }
showViewItem
showInvoice
showMenu
hideWalletBalance
content={{
noDataContent:''
}}
listingType={ ListingType?.CLAIMABLE }
onClickLogout={ onClickDisconnectWallet }
onConnectWallet={ onConnectWallet }
onClickCard={ onClickCard }
onViewItem={ onClickViewItem } />
Fill in the required parameters for the WalletsPage
Parameter | Type | Required | Description |
---|---|---|---|
walletDetails | Object | β | WalletDetails |
config | Object | β | Configuration |
Image | Object | β | Image |
showViewItem | boolean | - | to show show View Item button in Activity tab |
showInvoice | boolean | - | to show invoice download option in Activity tab |
hideWalletBalance | boolean | - | To hide balance details in Account tab |
showFilter | boolean | To hid or show the search and sort | |
showMenu | boolean | - | if true we can see menu in wallet tab else it will not show |
listingType | enum | - | for sale listing user can give ListingType?.SALE and for claimable listing user can give ListingType?.CLAIMABLE |
content | Object | - | to customize the text |
tabConfig | Object | To customize the tab name and the tabs, by default all the three tabs will show | |
onClickLogout | function | - | function to handle disconnect wallet |
onConnectWallet | function | β | function to handle connect wallet |
onClickCard | function | function to handle card click | |
onViewItem | function | - | function to handle custom redirection |
Response
Wallet tab:
Activity tab:
Account tab:
Note:
For complete documentation of the Secondary-marketplace SDK offerings, see the secondary-marketplace.
Updated 10 months ago