Cloning OpenSea NFT Boilerplate Questions

Hi @beng,

If you are attempting to list the NFT for the first time you might need to approve the marketplace contract on the NFT collections contract, this has helped others before :+1: and is also updated on the final build version on GitHub if you wanna see how this can be implemented in the app and not straight from the contract.

1 Like

@chasethedream , this will be your deployed smart contract address!

1 Like

@Cardinalos, I was able to replicate that error, by adding the spaces you have in the conditional if statements, but everything works fine when I remove spaces. Try doing this and hope it helps :slight_smile:

  useEffect(async () => {
    if (data?.result) {

      const NFTs = data.result;
      for (let NFT of NFTs) {
        if (NFT?.metadata) {

Thank you for the response, got more questions
can I deploy the same contract provided above on the Bsc network and polygon network together?
Thanks, Looking forward to your reply

Hi guys, and thanks a lot for this amazing templates!

It’s all up and running, but I’m having trouble to deploy my contracts the good old way with: truffle deploy. Trying to switch from Infura to Moralis.
Anyone knows how to configure "truffle-config.js with this template?
Do I still need the @truffle/hdwallet-provider package? Is Moralis server enough, or should I use Speedy Nodes instead?

Thanks in advance!

EDIT: Nevermind, it was an issue when importing the speedy nodes key from the .env file!

2 Likes

Hey @Seatea,

Of course you can, Moralis works cross chain so this shouldn’t be an issue at all!

Just deploy both contracts and then I would have the setMarketAddress and setContractABI , set these to the correct contract based on which chain the user is currently on for example in the useEffect() in the MoralisDappProvider.js .

Go to https://github.com/ethereum-boilerplate/ethereum-nft-marketplace-boilerplate/tree/main/src/contracts and u will find marketplaceBoilerplate.sol

And use Remix (while your Mumbai testnet is connected at your Metamask) and compile and deploy the file marketplaceBoilerplate.sol there. I hope you know how to compile it.

This might help.

const [contractABI, setContractABI] = useState('[ { "inputs": [], "stateMutability": "nonpayable", "type": "constructor" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "uint256", "name": "itemId", "type": "uint256" }, { "indexed": true, "internalType": "address", "name": "nftContract", "type": "address" }, { "indexed": true, "internalType": "uint256", "name": "tokenId", "type": "uint256" }, { "indexed": false, "internalType": "address", "name": "seller", "type": "address" }, { "indexed": false, "internalType": "address", "name": "owner", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "price", "type": "uint256" }, { "indexed": false, "internalType": "bool", "name": "sold", "type": "bool" } ], "name": "MarketItemCreated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "uint256", "name": "itemId", "type": "uint256" }, { "indexed": false, "internalType": "address", "name": "owner", "type": "address" } ], "name": "MarketItemSold", "type": "event" }, { "inputs": [ { "internalType": "address", "name": "nftContract", "type": "address" }, { "internalType": "uint256", "name": "tokenId", "type": "uint256" }, { "internalType": "uint256", "name": "price", "type": "uint256" } ], "name": "createMarketItem", "outputs": [], "stateMutability": "payable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "nftContract", "type": "address" }, { "internalType": "uint256", "name": "itemId", "type": "uint256" } ], "name": "createMarketSale", "outputs": [], "stateMutability": "payable", "type": "function" }, { "inputs": [], "name": "fetchMarketItems", "outputs": [ { "components": [ { "internalType": "uint256", "name": "itemId", "type": "uint256" }, { "internalType": "address", "name": "nftContract", "type": "address" }, { "internalType": "uint256", "name": "tokenId", "type": "uint256" }, { "internalType": "address payable", "name": "seller", "type": "address" }, { "internalType": "address payable", "name": "owner", "type": "address" }, { "internalType": "uint256", "name": "price", "type": "uint256" }, { "internalType": "bool", "name": "sold", "type": "bool" } ], "internalType": "struct marketPlaceBoilerPlate.MarketItem[]", "name": "", "type": "tuple[]" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "owner", "outputs": [ { "internalType": "address", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function"}]')
const [marketAddress, setMarketAddress] = useState("0xa3dDf4B68CCda6c9CB35AE1962c60aA5cb226E90")

Hi @IAmJaysWay,

I (forked and) cloned the https://github.com/ethereum-boilerplate/ethereum-nft-marketplace-boilerplate
I created a Moralis testnet server (added the 1inch plugin) and added the URL and App ID in .env
I added ContractABI and MarketAddress in MoralisDappProvider.js
yarn install ; yarn start
This works (1st app).

I want the other menu options of the ‘ethereum-boilerplate’ in this app too…

I (forked and) cloned the https://github.com/ethereum-boilerplate/ethereum-boilerplate (in a seperate folder)
From this 2nd app I copied the menu options Wallet, DEX, Fiat, Balances, Transfers and Contracts, with their routes and import lines to the 1st app (above).
Also I copied the components/DEX and components/Account folders, since missing.

Now i get this error:
Failed to compile.

./src/components/DEX/DEX.jsx
Attempted import error: ‘useTokenPrice’ is not exported from ‘react-moralis’.

How to solve?

@IAmJaysWay
Thanks you but after making the correction when I save it, it returns back to the that error what might be the cause please help

Alright, Thank you for the support
may I have your contact details please (whatsapp)?

no, I don’t. am a newbie to all those
will appreciate your help
Thanks

After running yarn start the site loads successfully however the authenticate button does not work and none of the NFTs are displaying. What am I missing?

did you setup your server and add the appId and serverUrl to your dApp?

1 Like

And add (in src/providers/MoralisDappProvider.js) your deployed contractABI and its address or use these (above earlier mentioned (author)) values:

  const [contractABI, setContractABI] = useState('[ { "inputs": [], "stateMutability": "nonpayable", "type": "constructor" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "uint256", "name": "itemId", "type": "uint256" }, { "indexed": true, "internalType": "address", "name": "nftContract", "type": "address" }, { "indexed": true, "internalType": "uint256", "name": "tokenId", "type": "uint256" }, { "indexed": false, "internalType": "address", "name": "seller", "type": "address" }, { "indexed": false, "internalType": "address", "name": "owner", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "price", "type": "uint256" }, { "indexed": false, "internalType": "bool", "name": "sold", "type": "bool" } ], "name": "MarketItemCreated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "uint256", "name": "itemId", "type": "uint256" }, { "indexed": false, "internalType": "address", "name": "owner", "type": "address" } ], "name": "MarketItemSold", "type": "event" }, { "inputs": [ { "internalType": "address", "name": "nftContract", "type": "address" }, { "internalType": "uint256", "name": "tokenId", "type": "uint256" }, { "internalType": "uint256", "name": "price", "type": "uint256" } ], "name": "createMarketItem", "outputs": [], "stateMutability": "payable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "nftContract", "type": "address" }, { "internalType": "uint256", "name": "itemId", "type": "uint256" } ], "name": "createMarketSale", "outputs": [], "stateMutability": "payable", "type": "function" }, { "inputs": [], "name": "fetchMarketItems", "outputs": [ { "components": [ { "internalType": "uint256", "name": "itemId", "type": "uint256" }, { "internalType": "address", "name": "nftContract", "type": "address" }, { "internalType": "uint256", "name": "tokenId", "type": "uint256" }, { "internalType": "address payable", "name": "seller", "type": "address" }, { "internalType": "address payable", "name": "owner", "type": "address" }, { "internalType": "uint256", "name": "price", "type": "uint256" }, { "internalType": "bool", "name": "sold", "type": "bool" } ], "internalType": "struct marketPlaceBoilerPlate.MarketItem[]", "name": "", "type": "tuple[]" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "owner", "outputs": [ { "internalType": "address", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function"}]')
  const [marketAddress, setMarketAddress] = useState("0xa3dDf4B68CCda6c9CB35AE1962c60aA5cb226E90")

1 Like

@CasNWK,

The ethereum-boilerplate and react-moralis, have already evolved quite a bit forward from the time of making the marketplace tutorial and some conflicts may start to arise, so you may need to just use useTokenPrice.js from the hooks folder in the marketplace repo. I.E. in ./src/components/DEX/DEX.jsx change the

import { useTokenPrice } from "react-moralis";

to this

import useTokenPrice from "hooks/useTokenPrice";

Hopefully this helps

Hey @Seatea,

There are multiple tutorials on YT if you are just starting off and are looking to deploy your first smart contracts through Remix. But in essence,

  1. Create a .sol contract file (first menu item on the left).
  2. Compile the contract (second menu item on the left).
  3. Connect your wallet to Remix on your desired network using Injected Web3 and deploy the contract (third menu item on the left)

In this video, Filip explains verifying a deployed contract, but also does a quick deploy of a contract (at timestamp 6:15 -->) https://www.youtube.com/watch?v=dvvaBq6d_dE&t=160s

Hi,

That solves it!

In the combi app i got some other warnings, but solved them …

Removed unused references (in import lines) in several files.

In src/components/AddressInput.jsx : React Hook useEffect has missing dependencies
=> Solved as:

  useEffect(() => {
    function fetchBusinesses() {
      if (validatedAddress) props.onChange(address);
    }
    fetchBusinesses()
  }, [address, validatedAddress, props]);

In src/components/NFTBalance.jsx : img elements must have an alt prop
=> Solved by adding: alt=""

        <Spin spinning={loading}>
          <img
            src={`${nftToSend?.image}`}
            alt="loading..."
            style={{

Also alt=“Item” added in some other “<img”-es (ie in src/components/NFTMarketTYransactions.jsx and 2x in src/components/NFTTokenIds.jsx)

In src/components/NFTMarketTYransactions.jsx removed the “const columns = [ … ];” lines at the end (since not used).

in src/components/NFTTokenIds.jsx : Effect callbacks are synchronous to prevent race conditions
=> Solved as:

  useEffect(() => {
    async function fetchData() {
      if (data?.result) {
        const NFTs = data.result;
        setTotalNFTs(data.total);
        setFetchSuccess(true);
        for (let NFT of NFTs) {
          if (NFT?.metadata) {
            NFT.metadata = JSON.parse(NFT.metadata);
            NFT.image = resolveLink(NFT.metadata?.image);
          } else if (NFT?.token_uri) {
            try {
              await fetch(NFT.token_uri)
                .then((response) => response.json())
                .then((data) => {
                  NFT.image = resolveLink(data.image);
                });
            } catch (error) {
              setFetchSuccess(false);
            }
          }
        }
        setNFTTokenIds(NFTs);
      }
    }
    fetchData();
  }, [data, resolveLink]);

To be complete, in the App.jsx I added the (in the video) removed import, menu and routing, as:

import { useEffect, useState} from "react";
import { useMoralis } from "react-moralis";
import {
  BrowserRouter as Router,
  Switch,
  Route,
  NavLink,
  Redirect,
} from "react-router-dom";
import Account from "components/Account";
import Chains from "components/Chains";
import NFTBalance from "components/NFTBalance";
import NFTTokenIds from "components/NFTTokenIds";
import { Menu, Layout, Tabs} from "antd";
import SearchCollections from "components/SearchCollections";
import "antd/dist/antd.css";
import NativeBalance from "components/NativeBalance";
import "./style.css";
import Text from "antd/lib/typography/Text";
import NFTMarketTransactions from "components/NFTMarketTransactions";
import SubMenu from "antd/lib/menu/SubMenu";
import QuickStart from "components/QuickStart";
import Contract from "components/Contract/Contract";
import Ramper from "components/Ramper";
import Wallet from "components/Wallet";
import ERC20Balance from "components/ERC20Balance";
import ERC20Transfers from "components/ERC20Transfers";
import DEX from "components/DEX";

const { Header, Footer } = Layout;

const styles = {
  content: {
    display: "flex",
    justifyContent: "center",
    fontFamily: "Roboto, sans-serif",
    color: "#041836",
    marginTop: "130px",
    padding: "10px",
  },
  header: {
    position: "fixed",
    zIndex: 1,
    width: "100%",
    background: "#fff",
    display: "flex",
    justifyContent: "space-between",
    alignItems: "center",
    fontFamily: "Roboto, sans-serif",
    borderBottom: "2px solid rgba(0, 0, 0, 0.06)",
    padding: "0 10px",
    boxShadow: "0 1px 10px rgb(151 164 175 / 10%)",
  },
  headerRight: {
    display: "flex",
    gap: "20px",
    alignItems: "center",
    fontSize: "15px",
    fontWeight: "600",
  },
};
const App = ({ isServerInfo }) => {
  const { isWeb3Enabled, enableWeb3, isAuthenticated, isWeb3EnableLoading } =
    useMoralis();



  const [inputValue, setInputValue] = useState("explore");

  useEffect(() => {
    if (isAuthenticated && !isWeb3Enabled && !isWeb3EnableLoading) enableWeb3();
    // eslint-disable-next-line react-hooks/exhaustive-deps
  }, [isAuthenticated, isWeb3Enabled]);

  return (
    <Layout style={{ height: "100vh", overflow: "auto" }}>
      <Router>
        <Header style={styles.header}>
          <Logo />
          <SearchCollections setInputValue={setInputValue}/>
          <Menu
            theme="light"
            mode="horizontal"
            style={{
              display: "flex",
              fontSize: "17px",
              fontWeight: "500",
              marginLeft: "50px",
              width: "100%",
            }}
            defaultSelectedKeys={["nftMarket"]}
          >
            <SubMenu title="General" key="general">
              <Menu.Item key="/quickstart">
                <NavLink to="/quickstart">🚀 Quick Start</NavLink>
              </Menu.Item>
              <Menu.Item key="/wallet">
                <NavLink to="/wallet">👛 Wallet</NavLink>
              </Menu.Item>
              <Menu.Item key="/1inch">
                <NavLink to="/1inch">🏦 Dex</NavLink>
              </Menu.Item>
              <Menu.Item key="/onramp">
                <NavLink to="/onramp">💵 Fiat</NavLink>
              </Menu.Item>
              <Menu.Item key="/erc20balance">
                <NavLink to="/erc20balance">💰 Balances</NavLink>
              </Menu.Item>
              <Menu.Item key="/erc20transfers">
                <NavLink to="/erc20transfers">💸 Transfers</NavLink>
              </Menu.Item>
              <Menu.Item key="/contract">
                <NavLink to="/contract">📄 Contract</NavLink>
              </Menu.Item>
            </SubMenu>
            <SubMenu title="NFT" key="nft">
              <Menu.Item key="/NFTMarketPlace" onClick={() => setInputValue("explore")} >
                <NavLink to="/NFTMarketPlace">🛒 Explore Market</NavLink>
              </Menu.Item>
              <Menu.Item key="/nftBalance">
                <NavLink to="/nftBalance">🖼 Your Collection</NavLink>
              </Menu.Item>
              <Menu.Item key="transactions">
                <NavLink to="/transactions">📑 Your Transactions</NavLink>
              </Menu.Item>
            </SubMenu>
          </Menu>
          <div style={styles.headerRight}>
            <Chains />
            <NativeBalance />
            <Account />
          </div>
        </Header>
        <div style={styles.content}>
          <Switch>
            <Route exact path="/quickstart">
              <QuickStart isServerInfo={isServerInfo} />
            </Route>
            <Route path="/wallet">
              <Wallet />
            </Route>
            <Route path="/1inch">
              <Tabs defaultActiveKey="1" style={{ alignItems: "center" }}>
                <Tabs.TabPane tab={<span>Ethereum</span>} key="1">
                  <DEX chain="eth" />
                </Tabs.TabPane>
                <Tabs.TabPane tab={<span>Binance Smart Chain</span>} key="2">
                  <DEX chain="bsc" />
                </Tabs.TabPane>
                <Tabs.TabPane tab={<span>Polygon</span>} key="3">
                  <DEX chain="polygon" />
                </Tabs.TabPane>
              </Tabs>
            </Route>
            <Route path="/erc20balance">
              <ERC20Balance />
            </Route>
            <Route path="/onramp">
              <Ramper />
            </Route>
            <Route path="/erc20transfers">
              <ERC20Transfers />
            </Route>
            <Route path="/contract">
              <Contract />
            </Route>
            <Route path="/nftBalance">
              <NFTBalance />
            </Route>
            <Route path="/NFTMarketPlace">
              <NFTTokenIds inputValue={inputValue} setInputValue={setInputValue}/>
            </Route>
            <Route path="/transactions">
              <NFTMarketTransactions />
            </Route>
            <Route path="/ethereum-boilerplate">
              <Redirect to="/quickstart" />
            </Route>
            <Route path="/nonauthenticated">
              <>Please login using the "Authenticate" button</>
            </Route>
            <Route path="/">
              <Redirect to="/quickstart" />
            </Route>
          </Switch>
          <Redirect to="/NFTMarketPlace" />
        </div>
      </Router>
      <Footer style={{ textAlign: "center" }}>
        <Text style={{ display: "block" }}>
          ⭐️ Please star this{" "}
          <a
            href="https://github.com/ethereum-boilerplate/ethereum-boilerplate/"
            target="_blank"
            rel="noopener noreferrer"
          >
            boilerplate
          </a>
          , every star makes us very happy!
        </Text>

        <Text style={{ display: "block" }}>
          🙋 You have questions? Ask them on the {""}
          <a
            target="_blank"
            rel="noopener noreferrer"
            href="https://forum.moralis.io/t/ethereum-boilerplate-questions/3951/29"
          >
            Moralis forum
          </a>
        </Text>

        <Text style={{ display: "block" }}>
          📖 Read more about{" "}
          <a
            target="_blank"
            rel="noopener noreferrer"
            href="https://moralis.io?utm_source=boilerplatehosted&utm_medium=todo&utm_campaign=ethereum-boilerplat"
          >
            Moralis
          </a>
        </Text>
      </Footer>
    </Layout>
  );
};

export const Logo = () => (
  <div style={{ display: "flex" }}>
    <svg
      width="60"
      height="38"
      viewBox="0 0 50 38"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M43.6871 32.3986C43.5973 32.4884 43.53 32.5782 43.4402 32.6905C43.53 32.6007 43.5973 32.5109 43.6871 32.3986Z"
        fill="black"
      />
      <path
        d="M49.7037 14.3715C49.5241 6.2447 42.7891 -0.17592 34.6624 0.00367768C31.0031 0.0934765 27.4784 1.53026 24.8294 4.06708C22.113 1.46291 18.4986 0.00367768 14.727 0.00367768C6.71246 0.00367768 0.202047 6.49164 0 14.5511V14.6633C0 20.8146 2.24497 26.2698 4.26545 30.0189C5.11853 31.5904 6.08387 33.117 7.13901 34.5762C7.5431 35.115 7.8574 35.564 8.10435 35.8559L8.39619 36.2151L8.48599 36.3273L8.50844 36.3498L8.53089 36.3722C10.2146 38.3253 13.1555 38.5498 15.1087 36.8886C15.1311 36.8661 15.1536 36.8437 15.176 36.8212C17.1291 35.0701 17.3312 32.0843 15.625 30.1087L15.6026 30.0638L15.423 29.8618C15.2658 29.6597 15.0189 29.3455 14.727 28.9414C13.9188 27.8189 13.178 26.6515 12.5269 25.4392C10.8881 22.4309 9.42888 18.6145 9.42888 14.7531C9.49623 11.8347 11.9432 9.52236 14.8617 9.58971C17.7128 9.65705 19.9802 11.9694 20.0251 14.8205C20.0476 15.5389 20.2272 16.2348 20.5415 16.8859C21.4844 19.3104 24.2232 20.5227 26.6478 19.5798C28.4438 18.8839 29.6336 17.1553 29.6561 15.2246V14.596C29.7683 11.6775 32.2153 9.38766 35.1562 9.47746C37.94 9.56726 40.1625 11.8122 40.2748 14.596C40.2523 17.6941 39.2645 20.7472 38.1421 23.1718C37.6931 24.1371 37.1992 25.08 36.6379 25.978C36.4359 26.3147 36.2787 26.5617 36.1665 26.6964C36.1216 26.7862 36.0767 26.8311 36.0542 26.8535L36.0318 26.876L35.9869 26.9433C37.6033 24.9004 40.5442 24.5412 42.5871 26.1576C44.4953 27.6617 44.9443 30.3781 43.6198 32.4211L43.6422 32.4435V32.3986L43.6647 32.3762L43.732 32.2864C43.7769 32.1966 43.8667 32.1068 43.9565 31.9721C44.1361 31.7027 44.3606 31.3435 44.6525 30.8945C45.3933 29.6822 46.0668 28.4026 46.673 27.1229C48.1097 24.0249 49.6812 19.5349 49.6812 14.5286L49.7037 14.3715Z"
        fill="#041836"
      />
      <path
        d="M39.7135 25.1249C37.1094 25.1025 34.9991 27.2127 34.9766 29.8169C34.9542 32.4211 37.0645 34.5313 39.6686 34.5538C41.1503 34.5538 42.5647 33.8578 43.4626 32.6905C43.53 32.6007 43.5973 32.4884 43.6871 32.3986C45.1015 30.221 44.4729 27.3025 42.2953 25.9107C41.532 25.3943 40.634 25.1249 39.7135 25.1249Z"
        fill="#B7E803"
      />
    </svg>

  </div>
);

export default App;

Result: Compiled successfully!
and works.

Hi,

FYI… The Fantom logo, add to src/components/Chains/Logos.jsx file:

export const FantomLogo = () => (
  <svg width="25" height="25" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path
      d="M0 10C0 4.47715 4.47715 0 10 0H20C25.5228 0 30 4.47715 30 10V20C30 25.5228 25.5228 30 20 30H10C4.47715 30 0 25.5228 0 20V10Z"
      fill="#12AFE5"
    />
    <path
      d="M17.2,12.9l3.6-2.1V15Zm3.6,9L16,24.7l-4.8-2.8V17L16,19.8,20.8,17ZM11.2,10.8l3.6,2.1L11.2,15Zm5.4,3.1L20.2,16l-3.6,2.1Zm-1.2,4.2L11.8,16l3.6-2.1Zm4.8-8.3L16,12.2,11.8,9.8,16,7.3ZM10,9.4V22.5l6,3.4,6-3.4V9.4L16,6Z"
      fill="white"

    />
  </svg>
);

And add to menuItems array in src/components/Chains/Chains.jsx :

  {
     key: "0xFA2", // 4002
     value: "Fantom testnet",
     icon: <FantomLogo />,
   },
   {
     key: "0xFA", // 250
     value: "Fantom Opera mainnet",
     icon: <FantomLogo />,
   },

and add “FantomLogo” to the logo’s import line

Hello, When i try to run I got an empty page on http://localhost:3000/NFTMarketPlace
after providing Moralis serverURL and AppID in the .env file
and using marketplace contract ABI and address pasted into the MoralisDappProvider.js file provided in comments

const [contractABI, setContractABI] = useState('[ { "inputs": [], "stateMutability": "nonpayable", "type": "constructor" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "uint256", "name": "itemId", "type": "uint256" }, { "indexed": true, "internalType": "address", "name": "nftContract", "type": "address" }, { "indexed": true, "internalType": "uint256", "name": "tokenId", "type": "uint256" }, { "indexed": false, "internalType": "address", "name": "seller", "type": "address" }, { "indexed": false, "internalType": "address", "name": "owner", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "price", "type": "uint256" }, { "indexed": false, "internalType": "bool", "name": "sold", "type": "bool" } ], "name": "MarketItemCreated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "uint256", "name": "itemId", "type": "uint256" }, { "indexed": false, "internalType": "address", "name": "owner", "type": "address" } ], "name": "MarketItemSold", "type": "event" }, { "inputs": [ { "internalType": "address", "name": "nftContract", "type": "address" }, { "internalType": "uint256", "name": "tokenId", "type": "uint256" }, { "internalType": "uint256", "name": "price", "type": "uint256" } ], "name": "createMarketItem", "outputs": [], "stateMutability": "payable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "nftContract", "type": "address" }, { "internalType": "uint256", "name": "itemId", "type": "uint256" } ], "name": "createMarketSale", "outputs": [], "stateMutability": "payable", "type": "function" }, { "inputs": [], "name": "fetchMarketItems", "outputs": [ { "components": [ { "internalType": "uint256", "name": "itemId", "type": "uint256" }, { "internalType": "address", "name": "nftContract", "type": "address" }, { "internalType": "uint256", "name": "tokenId", "type": "uint256" }, { "internalType": "address payable", "name": "seller", "type": "address" }, { "internalType": "address payable", "name": "owner", "type": "address" }, { "internalType": "uint256", "name": "price", "type": "uint256" }, { "internalType": "bool", "name": "sold", "type": "bool" } ], "internalType": "struct marketPlaceBoilerPlate.MarketItem[]", "name": "", "type": "tuple[]" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "owner", "outputs": [ { "internalType": "address", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function"}]')
const [marketAddress, setMarketAddress] = useState("0xa3dDf4B68CCda6c9CB35AE1962c60aA5cb226E90")