maximedrn / opensea-automatic-bulk-upload-and-sale

A Selenium Python bot to automatically and bulk upload/ mint and list your NFTs on OpenSea. All metadata compatible, Ethereum and Polygon blockchains supported, reCAPTCHA solvers included.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Upload + Sell OK but Upload then Sell KO

PollitoMalo opened this issue · comments

Hello !

When I Upload + Sell my NFT on OPENSEA it's OK, the NFT is correctly uploaded then sell to to the right Fixed price (but I never success to change the default 1 month duration)

But when I Upload, and then try to sell with the URL in the generated file, the bot goes well on the right NFT and on the sales page, then close all.

In the log I have the following error : NFT sell canceled.

What's is the difference between only sell and upload and sell ?

commented

You can use file upload n sale.xls and write empty cell for "Duration"

commented

You can login into opensea with bot?

Hello,

thank for the reply.

Yes, my upload and sale works fine (with duration empty but I want to put for example 3 months instead of standard 1 month), but if i put 3 months into duration, I have still the standard duration 1 month :(

but when I use sale only on an already upload nft, I have an error when the bot is in the sale page of the nft, "nft sale canceled'.

Yes, with the latest version of this bot I can login into Opensea thank to the rapidity of the creator :)

Hi, "3 months" is not available.
You have to set your duration like this: ["DD-MM-YYYY HH:MM", "DD-MM-YYYY HH:MM"]
Example: ["19-01-2022 16:00", "19-04-2022 16:00"]

Sans titre 1

thank you ofr your reply and your great work on this bot.

I just tried with "duration": ["19-01-2022 16:00", "19-06-2022 16:00"], but when the bot open the sale page, he put the correct price then click on sell, he never put the duration.(so I have 1 month by default)

here the json file (upload + sell case) :

  "explicit_and_sensitive_content": false,
  "supply": 1,
  "blockchain": "Polygon",
  "sale_type": "",
  "price": 0.0017,
  "duration": ["19-01-2022 16:00", "19-06-2022 16:00"],
  "specific_buyer": false,
  "quantity": 1,
  "dna": "f299426f01c331ec219f5e467e2b000d39fbf6bc",
  "edition": 1014,
  "date": 1641992878706,
  "compiler": "HashLips Art Engine"

I have an error too, when I want to sell a NFT uploaded before with the bot :

Sale of the NFT n°1/1. NFT sale cancelled.

the bot open the sale page of the NFT ut then close the page.
here the json (the URL is correct, I have tested it) :
Sans titre

But if I upload and sell in the same process, it's works (excepted for the duration delay), I don't know why.

Someone already succeed to change the default duration ?
And use 3 - Sell NFTs ?

Try replacing "supply": "1" to "supply": 1

Sale of the NFT n°1/1. NFT sale cancelled.

Bot close all pages when he is in the sell page of the correct NFT. it doesn't put anything, not even the price.

Here my sell page :
Sans titre1

2022-01-21.15-56-30.mp4

As you can see in the video, it works with these JSON metadata:

{
     "nft": [
       {
         "nft_url": "https://opensea.io/assets/matic/0x2953399124f0cbb46d2cbacd8a89cf0599974963/99995353970554757559721471534129028266698199001274859511402526049312276742145",
         "supply": 1,
         "blockchain": "Polygon",
         "sale_type": "",
         "price": 0.0017,
         "method": "",
         "duration": [
           "22-01-2022 14:00", "22-04-2022 15:00"
         ],
         "specific_buyer": "",
         "quantity": 1
       }
     ]
   }

@maximedrn Firstly, I just want to say thank you very much for this great piece of code saving us a lot of time. The issue that is occurring here and with myself is that the duration data being inserted into the Dates field are not matching the dates in the "duration" property in the .json. It is even happening in the video you have attached.

Your JSON says:
"duration": [ "22-01-2022 14:00", "22-04-2022 15:00" ],

However, in the video the dates are being inserted as:
chrome_2022-01-23_10-19-35

This is causing an error and in some cases preventing the sale from occurring.

Oh! I'll correct this.

I solved this problem that was due to the year. Because 2023 is more than 6 months away (maximum duration), we can't change the year.
So I did something that works (I hope) every time, both in the middle and at the end of the year.

Fantastic, I'll check it out in the latest revision sometime today :) thank you very much!