Questions tagged [opensea]

The "open-sea" tag is used to refer to the OpenSea decentralized marketplace and platform for NFTs. OpenSea is a platform where users can buy, sell & trade various digital assets. Questions tagged with "opensea" should be related to using the OpenSea platform, integrating NFTs, creating and managing listings, interacting with smart contracts, understanding royalties, exploring marketplace features, and addressing technical challenges specific to OpenSea.

OpenSea is a popular decentralized marketplace and platform for buying, selling, and trading various types of digital assets, primarily Non-Fungible Tokens (NFTs). As one of the largest and most recognized platforms in the NFT space, OpenSea has gained significant popularity and has become a go-to destination for creators, collectors, and enthusiasts alike.

OpenSea offers a wide range of digital assets across multiple categories, including digital art, collectibles, virtual real estate, domain names, gaming items, and more. Artists, creators, and developers can mint their unique NFTs on OpenSea and list them for sale, allowing them to showcase their work to a global audience and monetize their creations.

161 questions
0
votes
1 answer

A strange error during creating an offer with OpenSeaSDK

I just trying to make an offer on OpenSea marketplace using Opensea SDK. I took code from their tutorial https://projectopensea.github.io/opensea-js/#making-offers and tried to execute createBuyOrder() import dotenv from…
0
votes
0 answers

Errors with Opensea bulkTransfer function

I want to transfer 2 NFTs in one transaction to 1 address. I found this function (bulkTransfer) https://arbiscan.io/address/0x0000000000c2d145a2526bD8C716263bFeBe1A72#writeContract and try to use it. This is part of my code: contract_address =…
0
votes
0 answers

Scraping opensea that uses GraphQL

So, I am working on a project that needs data from opensea. More specifically, I need the NFT offers and listings from, https://opensea.io/nickname808/activity?search[eventTypes][0]=OFFER_ENTERED&search[eventTypes][1]=AUCTION_CREATED and more…
0
votes
1 answer

How to scrape a price from this particular webpage

when I go to this particular webpage you will see that there are a number of items that have particular price in Ethereum (ETH) attached to…
user3438258
  • 237
  • 1
  • 3
  • 9
0
votes
0 answers

Batch refresh metadata on opensea

I got a big problem right now...I've recently been working on an nft collection, revealed the collection just a couple of days ago. The metadata was like messed up with wrong indexes taking place on most images. Now, I've already updated and loaded…
PatrickZ
  • 1
  • 1
0
votes
0 answers

OpenSea can't read metadata from ERC721 contract

I'm having trouble getting OpenSea to read metadata from my ERC721 contract. No image, no name, no attributes for NFT as well. I have successfully deployed contract (Goerli Network) via Testnets OpenSea, and uploaded the metadata to IPFS (NFT…
Navajjoo
  • 1
  • 3
0
votes
2 answers

MetaMask - RPC Error: The requested account and/or method has not been authorized by the user

I am trying to buy an NFT on OpenSea, when executing the fulfillOrder() method, I get an error saying The requested acconut has not been authorized by the user. This is my code where I initialize the web3 provider and stuff: this.web3 = new…
toekneema
  • 137
  • 1
  • 2
  • 7
0
votes
1 answer

Error: missing revert data in call exception; Transaction reverted without a reason string

I am trying to buy an NFT from OpenSea. I can createOrder() which opens up my Metamask wallet and prompts me to SIGN, but after I sign, the code then moves on to the fulfillOrder() method which is throwing the missing revert data in call exception…
toekneema
  • 137
  • 1
  • 2
  • 7
0
votes
0 answers

Error: invalid address (argument="address", value=undefined, code=INVALID_ARGUMENT, version=address/5.7.0)

I'm working with the OpenSea Seaport-js SDK, and I'm trying to create an order to buy an NFT. The seaport.createOrder() works, but then when I try to executeAllActions(), I am getting an ethers.js error: Error: invalid address (argument="address",…
toekneema
  • 137
  • 1
  • 2
  • 7
0
votes
0 answers

How to get Opensea graphql api for get floor price history of NFTs?

I wanna make NFT floor price chart of Opensea But I can't access at opensea with graphql. I have Opensea api key. How can I get floor price history at Opensea. If you know Please let me know. Thanks. I've searched Opensea Api doc at…
Anime1026
  • 21
  • 2
0
votes
0 answers

Gass issue buying NFT on Goerli opensea SDK

I am facing gass issue while buying nft using opnesa-js library. The listing functionality is working fine. But when i try to make the buy function then it gives me gass related issue. Here is my buy function using opensea-js on goerli and mainnet…
0
votes
0 answers

Buy nft on Looksrare using SDK or API

I am working on listing and buying functionality of NFT on looksrare plateform using the SDK that looksrare provide. I have completed the listing NFT functionality and its working fine. Now i am working on buying NFT but facing gass related…
0
votes
0 answers

Buy from OpenSea using ethersjs without the SDK

Has anyone successfully bought from OpenSea utilizing the smart contracts directly? I am attempting this and have found that: If you create an order and try to alter any parameter, like so: let { order, orderHash, value } = await…
0
votes
2 answers

TypeError: Explicit type conversion not allowed from "uint256" to "address"

i make simple code, but have error "TypeError: Explicit type conversion not allowed from "uint256" to "address"." Can you help me? I even asked the gpt bot about this error, but it confused me even more))) in the beginning there was a simple idea -…
sofia
  • 3
  • 1
0
votes
0 answers

How to trade on Opensea with smart contract solidity

I want to create a smart contract who buy and sell NFT on Opensea. I can't find explain documentation and exemple, anybody can help me to start ?