Go to NFTTokenIds.jsx and then change this (10, 20, whatever you want to display try lower number first):
{inputValue !== “explore” && (
<>
{NFTTokenIds.slice(0, 20).map((nft, index) => (
<Card
Go to NFTTokenIds.jsx and then change this (10, 20, whatever you want to display try lower number first):
{inputValue !== “explore” && (
<>
{NFTTokenIds.slice(0, 20).map((nft, index) => (
<Card
Would you please take a moment and help me out? I can’t list NFT and I can’t sell it. there are no problems when listing on opensea or Featured binance. I’ve recorded the problem, I’d appreciate it if you could help. https://www.youtube.com/watch?v=dxNe5Xwpy8o
try to increase the time of failList() and failApprove() and see !
you will find them under NFTBalance.jsx
I notes that sometimes it give error messege and after sometimes you will find it on the Marketplace, be…care…full
Is contractInfo.json still needed? If so, how do you populate it?
Any one find a proper solution for that? lets say we have 1000 NFTs on Your Collection tap how to list them on Marketplace? one-by-one it will take ages? please if someone suggest anything…
Ok trying to create a Web3ApiWrapper for useTokenIDs
In node_modules > react-moralis > lib > hooks >web3ApiWrappers I have a folder called useNFTTokenIds that contains index.d.ts and useNFTTokenIds.d.ts
index.d.ts
export * from "./useNFTTokenIds";
useNFTTokenIds.d.ts (same exact code as useNFTBalances but I replaced NFTBalances with NFTTokenIds)
import MoralisType from "moralis";
import { UseMoralisWeb3ApiCallOptions } from "react-moralis/lib/hooks/core/useMoralisWeb3Api";
export interface UseNFTTokenIdsParams extends Omit<Parameters<typeof MoralisType.Web3API["account"]["getNFTs"]>[0], "address"> {
address?: string;
}
export declare const useNFTTokenIds: (params?: UseNFTTokenIdsParams | undefined, options?: UseMoralisWeb3ApiCallOptions | undefined) => {
getNFTTokenIds: ({ throwOnError, onComplete, onError, onSuccess, params: fetchParams, }?: import("react-moralis/lib/hooks/internal/_useResolveAsyncCall").ResolveCallOptions<{
status?: string | undefined;
total?: number | undefined;
page?: number | undefined;
page_size?: number | undefined;
result?: {
token_address: string;
token_id: string;
contract_type: string;
owner_of: string;
block_number: string;
block_number_minted: string;
token_uri?: string | undefined;
metadata?: string | undefined;
synced_at?: string | undefined;
amount?: string | undefined;
name: string;
symbol: string;
}[] | undefined;
} | null, {
address: string;
chain: "eth" | "0x1" | "ropsten" | "0x3" | "rinkeby" | "0x4" | "goerli" | "0x5" | "kovan" | "0x2a" | "polygon" | "0x89" | "mumbai" | "0x13881" | "bsc" | "0x38" | "bsc testnet" | "0x61" | "avalanche" | "0xa86a" | "avalanche testnet" | "0xa869" | "fantom" | "0xfa";
format?: "decimal" | "hex" | undefined;
offset?: number | undefined;
limit?: number | undefined;
token_addresses?: string[] | undefined;
}>) => Promise<void>;
data: {
status?: string | undefined;
total?: number | undefined;
page?: number | undefined;
page_size?: number | undefined;
result?: {
token_address: string;
token_id: string;
contract_type: string;
owner_of: string;
block_number: string;
block_number_minted: string;
token_uri?: string | undefined;
metadata?: string | undefined;
synced_at?: string | undefined;
amount?: string | undefined;
name: string;
symbol: string;
}[] | undefined;
} | {
result: ({
token_address: string;
token_id: string;
contract_type: string;
owner_of: string;
block_number: string;
block_number_minted: string;
token_uri?: string | undefined;
metadata?: string | undefined;
synced_at?: string | undefined;
amount?: string | undefined;
name: string;
symbol: string;
} | {
image: string | null | undefined;
metadata: any;
token_address: string;
token_id: string;
contract_type: string;
owner_of: string;
block_number: string;
block_number_minted: string;
token_uri?: string | undefined;
synced_at?: string | undefined;
amount?: string | undefined;
name: string;
symbol: string;
})[];
status?: string | undefined;
total?: number | undefined;
page?: number | undefined;
page_size?: number | undefined;
} | null;
error: Error | null;
isLoading: boolean;
isFetching: boolean;
};
node_modules > react-moralis > lib > hooks > web3ApiWrappers > index.d.ts (added useNFTTokenIds here)
export * from "./useApiContract";
export * from "./useERC20Balances";
export * from "./useERC20Transfers";
export * from "./useNFTBalances";
export * from "./useNFTTokenIds";
export * from "./useNFTTransfers";
export * from "./useNativeBalance";
export * from "./useNativeTransactions";
export * from "./useTokenPrice";
In src > components > NFTTokenID.jsx (Same exact code as NFTBalance but I replaced NFTBalances with NFTTokenId)
import React, { useState } from "react";
import { useMoralis, useNFTTokenIds } from "react-moralis";
import { Card, Image, Tooltip, Modal, Input, Skeleton } from "antd";
import {
FileSearchOutlined,
SendOutlined,
ShoppingCartOutlined,
} from "@ant-design/icons";
import { getExplorer } from "helpers/networks";
import AddressInput from "./AddressInput";
import { useVerifyMetadata } from "hooks/useVerifyMetadata";
const { Meta } = Card;
const styles = {
NFTs: {
display: "flex",
flexWrap: "wrap",
WebkitBoxPack: "start",
justifyContent: "flex-start",
margin: "0 auto",
maxWidth: "1000px",
width: "100%",
gap: "10px",
},
};
function NFTTokenId() {
const { data: NFTTokenIds } = useNFTTokenIds();
const { Moralis, chainId } = useMoralis();
const [visible, setVisibility] = useState(false);
const [receiverToSend, setReceiver] = useState(null);
const [amountToSend, setAmount] = useState(null);
const [nftToSend, setNftToSend] = useState(null);
const [isPending, setIsPending] = useState(false);
const { verifyMetadata } = useVerifyMetadata();
async function transfer(nft, amount, receiver) {
console.log(nft, amount, receiver);
const options = {
type: nft?.contract_type?.toLowerCase(),
tokenId: nft?.token_id,
receiver,
contractAddress: nft?.token_address,
};
if (options.type === "erc1155") {
options.amount = amount ?? nft.amount;
}
setIsPending(true);
try {
const tx = await Moralis.transfer(options);
console.log(tx);
setIsPending(false);
} catch (e) {
alert(e.message);
setIsPending(false);
}
}
const handleTransferClick = (nft) => {
setNftToSend(nft);
setVisibility(true);
};
const handleChange = (e) => {
setAmount(e.target.value);
};
console.log("NFTTokenIds", NFTTokenIds);
return (
<div style={{ padding: "15px", maxWidth: "1030px", width: "100%" }}>
<h1>🖼 NFT Balances</h1>
<div style={styles.NFTs}>
<Skeleton loading={!NFTTokenIds?.result}>
{NFTTokenIds?.result &&
NFTTokenIds.result.map((nft, index) => {
//Verify Metadata
nft = verifyMetadata(nft);
return (
<Card
hoverable
actions={[
<Tooltip title="View On Blockexplorer">
<FileSearchOutlined
onClick={() =>
window.open(
`${getExplorer(chainId)}address/${
nft.token_address
}`,
"_blank",
)
}
/>
</Tooltip>,
<Tooltip title="Transfer NFT">
<SendOutlined onClick={() => handleTransferClick(nft)} />
</Tooltip>,
<Tooltip title="Sell On OpenSea">
<ShoppingCartOutlined
onClick={() => alert("OPENSEA INTEGRATION COMING!")}
/>
</Tooltip>,
]}
style={{ width: 240, border: "2px solid #e7eaf3" }}
cover={
<Image
preview={false}
src={nft?.image || "error"}
fallback="data:image/png;base64,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"
alt=""
style={{ height: "300px" }}
/>
}
key={index}
>
<Meta title={nft.name} description={nft.token_address} />
</Card>
);
})}
</Skeleton>
</div>
<Modal
title={`Transfer ${nftToSend?.name || "NFT"}`}
visible={visible}
onCancel={() => setVisibility(false)}
onOk={() => transfer(nftToSend, amountToSend, receiverToSend)}
confirmLoading={isPending}
okText="Send"
>
<AddressInput autoFocus placeholder="Receiver" onChange={setReceiver} />
{nftToSend && nftToSend.contract_type === "erc1155" && (
<Input
placeholder="amount to send"
onChange={(e) => handleChange(e)}
/>
)}
</Modal>
</div>
);
}
export default NFTTokenId;
In src > App.jsx (All I added here was the import for NFTTokenID and I used it in the /wallet route for testing purposes)
import { useEffect } from "react";
import { useMoralis } from "react-moralis";
import {
BrowserRouter as Router,
Switch,
Route,
Redirect,
} from "react-router-dom";
import Account from "components/Account/Account";
import Chains from "components/Chains";
import TokenPrice from "components/TokenPrice";
import ERC20Balance from "components/ERC20Balance";
import ERC20Transfers from "components/ERC20Transfers";
import DEX from "components/DEX";
import NFTBalance from "components/NFTBalance";
import NFTTokenID from "components/NFTTokenID"
import { Layout, Tabs } from "antd";
import "antd/dist/antd.css";
import NativeBalance from "components/NativeBalance";
import "./style.css";
import QuickStart from "components/QuickStart";
import Contract from "components/Contract/Contract";
import Text from "antd/lib/typography/Text";
import Ramper from "components/Ramper";
import MenuItems from "./components/MenuItems";
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();
useEffect(() => {
const connectorId = window.localStorage.getItem("connectorId");
if (isAuthenticated && !isWeb3Enabled && !isWeb3EnableLoading)
enableWeb3({ provider: connectorId });
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isAuthenticated, isWeb3Enabled]);
return (
<Layout style={{ height: "100vh", overflow: "auto" }}>
<Router>
<Header style={styles.header}>
<Logo />
<MenuItems />
<div style={styles.headerRight}>
<Chains />
<TokenPrice
address="0x1f9840a85d5af5bf1d1762f925bdaddc4201f984"
chain="eth"
image="https://cloudflare-ipfs.com/ipfs/QmXttGpZrECX5qCyXbBQiqgQNytVGeZW5Anewvh2jc4psg/"
size="40px"
/>
<NativeBalance />
<Account />
</div>
</Header>
<div style={styles.content}>
<Switch>
<Route exact path="/quickstart">
<QuickStart isServerInfo={isServerInfo} />
</Route>
<Route path="/wallet">
<NFTTokenID />
</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="/nftBalance">
<NFTBalance />
</Route>
<Route path="/contract">
<Contract />
</Route>
<Route path="/">
<Redirect to="/quickstart" />
</Route>
<Route path="/ethereum-boilerplate">
<Redirect to="/quickstart" />
</Route>
<Route path="/nonauthenticated">
<>Please login using the "Authenticate" button</>
</Route>
</Switch>
</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;
I understand that nothing is really changing between the code and I should expect the same exact output, I have a different version with much more customization done but I wanted to figure out this export error so I loaded up a fresh version of the boilerplate code and just copied and renamed useNFTBalances and all the hooks for it.
When I run this code I get the following error:
Failed to compile.
./src/components/NFTTokenID.jsx
Attempted import error: 'useNFTTokenIds' is not exported from 'react-moralis'.
I can’t for the life of me figure out where the export issue is please help
this same problem is occuring in my database to no marketitems are displayed upon nft listing
Thank you
Yep same here! I’m starting to wonder whether it’s a problem with my Sync event or my contract/contract deployment.
I’m not so sure there will be any event emitted in case your function call is error
your event sync configuration looks correct, but if the function reverts even in Remix, the problem might be from your smart contract
Hey man, if you have custom hook place it somewhere within the src
file, don’t add it in node_modules
, coz it’s not the way to do it in React or in general NPM project
Hello Friends,
I asked a question above and answer my self, but I tired both methods but not working?
So if we have a 1000 NFTs in Your Collection, then how I can list them on the Marketplace?
One by One? it works for me but it will take ages? any other idea?
Thanks
do you have like some kind of listBatch function in the smart contract? if yes then it might be possible, otherwise you need to do it 1000 times
Just ran into a problem, typed yarn start, webpage opens up , nothing works on clicking as well as most things have a line through them. As well in the terminal I am given an infinite list of
‘prettier/prettier
Line 134:32: Delete ␍
prettier/prettier
Line 135:35: Delete ␍
prettier/prettier
Line 136:9: Delete ␍
prettier/prettier
Line 137:26: Delete ␍
prettier/prettier
Line 138:38: Delete ␍
prettier/prettier
Line 139:10: Delete ␍
prettier/prettier
Line 140:4: Delete ␍
prettier/prettier
Line 141:2: Delete ␍
prettier/prettier’
Ideas? Thanks
Hi @ennng, hope you are doing good. finally i created my own nft marketplace all are working fine with your support thanks a lot.
Now we are planning to create client side application for uploading NFts and create collections with their end like opensea. please guide me to do this it will helpful for me.
Thank you.
it’s a prettier problem there, did it cause any error though?
also did you by any chance pulled from the latest ethereum boilerplate? coz I didn’t remember having prettier in the nft marketplace boilerplate
which smart contract? do you mean the Market smart contract or NFT smart contract?
the market smart contract, coz I believe that’s where all the listing goes through
you are very welcome
For uploading NFTs by users, there are some tutorials out there you can follow along and you need only to incorporate it with your Market Dapp.
thanks for reply
any guide or any tutorial link on that I really appreciate it…
@ennng Yes thank you,
I saw too many tutorials but all are uploading their NFTs manually, please mention any tutorials to how upload NFTs for client side like opensea
Thank you.