This is my factory sell order https://rinkeby.opensea.io/assets/0x784f88807ee6ec119b3b9bc13ed30c886280c80e/1#history I am getting this error message on accept offer. Oops, the Ethereum network rejected this transaction :( The OpenSea devs have been alerted, but this problem is typically due an item being locked or untransferrable. The exact error was "execution reverted... Second, can we set auto-accept offer on the expiration of sale. Thanks
Posted by Iqbal Singh 3 months ago
Is there a converter or specific app or upload system to transform a digital art made in Adobe Illustrator for example into a NFT art ready to sell on the OpenSea platform without any developper knowledge? All the best,
Posted by Stoic Crypto 4 months ago
What is ASSET_OPTION_ID in this code? // Expire these auctions one day from now. Omit `expirationTime` or set to 0 to never expire: const expirationTime = (Date.now() / 1000 + 60 * 60 * 24) const sellOrders = await seaport.createFactorySellOrders({ assetId: <ASSET_OPTION_ID>, factoryAddress: <FACTORY_CONTRACT_ADDRESS>, accountAddress, startAmount, expirationTime, numberOfOrders: 100 // Will create 100 sell orders in parallel batches to speed things up })
Posted by Iqbal Singh 5 months ago
Complete newbie here so this is probably a dumb question. If I'm building few price pages for crypto currency, some suggestions you can tell me regarding the tool suppose to be used. For further reference:- https://coingape.com/price/kin/ https://coingape.com/price/xyo/ https://coingape.com/price/wanchain/ https://coingape.com/price/vechain/ https://coingape.com/price/siacoin/ https://coingape.com/price/zcoin/ https://coingape.com/price/waltonchain/ https://coingape.com/price/ravencoin/ https://coingape.com/price/electroneum/ https://coingape.com/price/digibyte/ Thanks in advance for any advice.
Posted by crypto coin price 6 months ago
I've successfully used your API to extract information for ENS sales (thanks to Hamish for helping me out!) but am confused by a couple of fields: 1. payment_token.usd_price This field is always 227.895000000000010232 no matter when the sale occurs. I would have expected it to equal the USD price of Ethereum at the time of sale. Is there a mistake in the API? 2. payment_token.eth_price Likewise, this field is always 1.002661797703375 no matter when the sale occurs. I'm not entirely sure what the price is supposed to represent as 1 ETH = 1 ETH, so a description of what the field represents would be helpful. But again, surely it should vary over time? Help on these fields greatly appreciated, thanks.
Posted by Toby Downton 7 months ago
I've read your docs but as a non-developer I'm still slightly confused. I'm trying to get the endpoint for the following query: - a list of all ENS names that have been sold The query would contain: - the ENS name itself e.g. example.eth - the date of the sale - the amount it was sold for e.g. 0.1. ETH or 10 DAI - the transaction id on Etherscan (optional) How do I retrieve this data? Thanks
Posted by Toby 7 months ago
I have been researching opensea a lot and I am realizing that one does not simply upload an image file to Open sea. Is there a simple way to have a sort of web3js , file where all the image and meta data is like in a sublime text file. Where I could use it over and over again to submit my artworks. Sine that is my needs in smart contracts. IT is complex lingo, is there a simple way to do a simple upload of my 3-D giffs with meta data descriptions and option to buy and then resell if the buyer wishes to do so? I am just trying to figure out what style of ethereum document I need to have to send 3 D gifs to the platform. Can anyone help?
Posted by Claude Edwin Theriault 7 months ago
If i want to now how many assets there ar stored at an address, do i have to page through until i get to the end? On dischord you said i could do it 300 at a time but the api states it is capped at 50. I know of one address (mr WhaleSharkPro) who has 600 + assets. that would take ages bringing ALL that data back. Is there any way to just get a total (or at least not the full data set)? thanks.
Posted by shaun pryszlak 8 months ago
Assets come back with 4 images. "image_url" "image_preview_url" "image_thumbnail_url" "image_original_url" If i am displaying thumbnails then i guess its image_thumbnail_url. Which is the best quality image? I am guessing image_original_url?
Posted by shaun pryszlak 8 months ago
I want to get a number of assets back by their token id. How do you specify multiple token ids? The interactive API example seems broken. curl --request GET \ --url 'https://api.opensea.io/api/v1/assets?owner=0xce41b49d28800de3ba9925f68d82129dfc4b870b&token_ids=60&order_by=current_price&order_direction=asc&offset=0&limit=20' (one id) works but curl --request GET \ --url 'https://api.opensea.io/api/v1/assets?owner=0xce41b49d28800de3ba9925f68d82129dfc4b870b&token_ids=60%2C158&order_by=current_price&order_direction=asc&offset=0&limit=20' (2 ids) doesn't. You get STATUS 500 Internal Server Error
Posted by shaun pryszlak 8 months ago