LYNC
  • 👋INTRODUCTION
    • 👋Introducing LYNC
    • ⚙️Pre-Requisites
  • Products
    • LYNC Account Abstraction SDK
    • Metamask Wallet
    • OKX Wallet
    • LYNC In-Game Marketplace SDK
    • NFT Fetcher
    • LYNC Portal: Game Launcher
    • LYNC NFT Deployer
  • FEVM Support
    • LYNC Wallet SDK supporting FEVM
    • NFT Deployer -> FEVM
  • NPM Packages
    • Marketplace
      • Hook: useAllCollectionNFT
      • Hook: useAllBuyNFT
      • Hook: useAllOwnerNFT
      • Hook: useNFTDetails
      • Hook: useAllNFTForRent
Powered by GitBook
On this page
  1. NPM Packages
  2. Marketplace

Hook: useAllNFTForRent

Fetch all NFT which are available to rent

Fetch all details of an NFT, for a given ERC-721 and ERC-1155 contract and takes in contractAddress and chainId.

Interface

function useAllNFTForRent(contractAddress?:string, chainId?:string)

Response

type useAllNFTForRent = {
allNftForRent?: [{}];
isLoading?: bool;
};

Example Code:

import {ChainConfig, useNFTDetails} from "lync-marketplace";
import { AuthContext } from "lync-wallet-sdk";

function App() {

const {  walletAddress } = useContext(AuthContext);

const {isLoading, allNftForRent } = useNFTDetails(
"0x9342b1039949d536b2eb456de198c26362daa523",
"1",
);

Not ready to create your own UI yet, don't worry we have got you covered!! Example Code:

import {ChainConfig,LyncNFTForRent} from "@lyncworld/nft-marketplace";

<LyncNFTForRent 
contractAddress={"0x9342b1039949d536b2eb456de198c26362daa523"}
chainId={ChainConfig.MATIC_MUMBAI}
/>
PreviousHook: useNFTDetails

Last updated 1 year ago