Hi, I’m trying to get list of NFTs owned by a particular wallet address and their respective opensea link, i this possible
import Moralis from “moralis”;
import { EvmChain } from “@moralisweb3/evm-utils”;
const runApp = () => {
await Moralis.start({
apiKey: “YOUR_API_KEY”,
// …and any other configuration
});
const address = “0xd8da6bf26964af9d7eed9e03e53415d37aa96045”;
const chain = EvmChain.ETHEREUM;
const response = await Moralis.EvmApi.nft.getWalletNFTs({
address,
chain,
});
console.log(response);
}
runApp();