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
1
vote
1 answer

retrieve minted NFT's by a wallet address - OpenSea

According to openSea api we use Retrieving events Under event_type We found The event type to filter. Can be created for new auctions, successful for sales, cancelled, bid_entered, bid_withdrawn, transfer, or approve My question here is how to find…
anelBavari
  • 29
  • 3
1
vote
1 answer

Ethereum smart contract returns "Fail with error 'AssetContractShared#_requireMintable: ONLY_CREATOR_ALLOWED' " on rinkeby network

I'm trying to test a smart contract function on the rinkeby test network, which migrates multiple tokens to the new contract. I.e. I want to burn ERC-721 tokens (send them to a burn address), which are stored on the Opensea contract, and then remint…
Heyho
  • 11
  • 1
1
vote
1 answer

Get USDC (or any non-ETH value) from transaction using web3.js

I am working with the web3.js library on a small project that subscribes to events on a smart contract for an NFT to track all sales on that project through OpenSea. This is working fine when the sale is completed using ETH, but when a sale is made…
Tyler Pashigian
  • 457
  • 4
  • 13
1
vote
1 answer

How can I fetch data from OpenSea in real time?

I built a simple web application that outputs an "NFT wallet" from opensea based on the wallet address I input. Now lets say a transaction occur and the owner of the wallet sold or bought an nft, how can I update my web application in real time? in…
Dor Konis
  • 11
  • 4
1
vote
0 answers

OpenSea API "only_opensea"

Looking at OpenSea's API, Retreiving Events: https://docs.opensea.io/reference/retrieving-asset-events only_opensea is a boolean that can be true/false The API description is: "Restrict to events on OpenSea auctions. Can be true or false" Does…
Ryan Ellis
  • 440
  • 2
  • 5
  • 18
1
vote
1 answer

Set minter wallet address as creator of NFT in opensea

We've deployed a smart contract on ethereum blockchain. You can check it out on etherscan website. This contract is called xarb. Now the problem is all tokens minted by this contract has xarb as the creator of token in opensea. I know a solution…
FaSh
  • 99
  • 8
1
vote
1 answer

Request to opensea api failing

Im trying to retrieve a collection through opensea's graphql api using request-promise. Im sending a request with these params and in response i keep receiving status code 403. I've copied the params directly from the browser where it works fine…
vcosiekx
  • 65
  • 2
  • 9
0
votes
0 answers

How to get NFT trade information in on-chain Exchange

Recently, I wanted to track the price of NFT on global markets such as blur and opensea, so I looked in several NFT API providers (3rd party APIs such as : SimpleHash(https://simplehash.com/), Alchemy(https://docs.alchemy.com/reference/getnfts)),…
John Smith
  • 21
  • 4
0
votes
0 answers

how to create a order which contains multiple NFT item for sale and match this order

I want to create a OpenSea order which package quotes for multiple items // javascript // client uses this method to create sale-multiple-NFTS order async function createMultipleOrder( ) { // offerItemList like this -> different NFT type const…
aa aa
  • 26
  • 2
0
votes
0 answers

Can multi openseaSDK.createSellOrder() by using promise all?

I want to create multi openseaSDK.createSellOrder() by using Promise.all() but get an error: "Duplicate order". Anyone used to it? Help me please... i just awaited one by one but sometimes still get error: "Duplicate order". i dont now how to…
0
votes
0 answers

Getting Twiitter account (Verified, Non-Verified) information from OpenSea using API and Google Apps Script

This is the continuation of my previous question, Roomi proposed a following solution: function getTwitterLink() { var url = "https://api.opensea.io/api/v1/user/0xe7dAe42Dee2BB6C1ef3c65e68d3E605faBcA875d"; var options = { method: 'GET', …
0
votes
1 answer

Get OpenSea profile data using Google Apps Script into Google Sheets

I am trying to get Twitter link from OpenSea profile using the following Google Apps Script sample code: function getTwitterLink() { var url = "https://opensea.io/0xe7dAe42Dee2BB6C1ef3c65e68d3E605faBcA875d"; var response =…
0
votes
0 answers

Selenium with Metamask for OpenSea.io

I am trying to automate some interactions with OpenSea.io. Using Selenium with a Metamask wallet I was able to automate specific actions around collections and everything was working as intended for several weeks approximately 1 year ago. After…
0
votes
0 answers

Scrape NFT's item's price

I'm looking to obtain individual item information for each NFT transaction, including historical prices and related details, in order to predict the price of NFTs. I'm aware that API can provide the floor price for each collection, but those API not…
ShibaK
  • 1
  • 2
0
votes
1 answer

What event does createorder emit on Opensea?

What on-chain event is emitted once an order has been submitted to Opensea with creatorder() function? I cannot see any events on the wallet's etherscan page or any transaction.