-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmy-collections.js
89 lines (81 loc) · 2.78 KB
/
my-collections.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import { ethers } from "ethers"
import { useEffect, useState } from "react"
import axios from "axios"
import Web3Modal from "web3modal"
import { nftmarketaddress, nftaddress } from "../config"
import Market from "../artifacts/contracts/Market.sol/NFTMarket.json"
import NFT from "../artifacts/contracts/NFT.sol/NFT.json"
export default function MyAssets() {
const [nfts, setNfts] = useState([])
const [loadingState, setLoadingState] = useState("not-loaded")
useEffect(() => {
loadNFTs()
}, [])
async function loadNFTs() {
const web3Modal = new Web3Modal({
// network: "mainnet",
// network: "mumbai",
cacheProvider: true,
})
const connection = await web3Modal.connect()
const provider = new ethers.providers.Web3Provider(connection)
const signer = provider.getSigner()
const marketContract = new ethers.Contract(
nftmarketaddress,
Market.abi,
signer,
)
const tokenContract = new ethers.Contract(nftaddress, NFT.abi, provider)
const data = await marketContract.fetchMyNFTs()
const items = await Promise.all(
data.map(async (i) => {
const tokenUri = await tokenContract.tokenURI(i.tokenId)
console.log(tokenUri)
const meta = await axios.get(tokenUri)
let price = ethers.utils.formatUnits(i.price.toString(), "ether")
let item = {
price,
tokenId: i.tokenId.toNumber(),
seller: i.seller,
owner: i.owner,
image: meta.data.image,
name: meta.data.name,
description: meta.data.description,
}
console.log(meta)
console.log(item)
return item
}),
)
setNfts(items)
setLoadingState("loaded")
}
if (loadingState === "loaded" && !nfts.length)
return <h1 className="py-10 px-20 text-3xl">0 CC-NFTs collected by me</h1>
return (
<div className="flex justify-center">
<div className="p-4">
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 pt-4">
{nfts.map((nft, i) => (
<div key={i} className="border shadow rounded-xl overflow-hidden">
<img src={nft.image} className="rounded" />
<div className="p-4">
<a href={"/article?cid=" + nft.path}>
<p className="text-2xl font-semibold">{nft.name}</p>
</a>
<div style={{ height: "70px", overflow: "hidden" }}>
<p className="text-gray-400">{nft.description}</p>
</div>
</div>
<div className="p-4 bg-black">
<p className="text-2xl font-bold text-white">
Price - {nft.price} Matic
</p>
</div>
</div>
))}
</div>
</div>
</div>
)
}