Can you help in loading 10000 nft in the polygon network on Opensea?

Hello, I do not understand programming at all, I have created 10 thousand images ( with metadata), but I do not know how to publish them, сan you help in loading 10000 nft in the polygon network on opensea ? tried with remix ide but there is a gas limit which cannot be changed Thanks, Gleb.

I have a problem with gas on the Remix id, when I try to upload 10 thousand to the Open Sea in the polygon network, it is impossible to set gas limited in the Remix id, this error pops up

Hey @kingkamado

The gas limit required for your transaction is higher than the block gas limit.
Try to split it into multiple transactions.

1 Like

ppr/baza.sol at main · legamenon/ppr · GitHub

it looks like you have to call this mint function

function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = 0;
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
        if(whitelisted[msg.sender] != true) {
          require(msg.value >= cost * _mintAmount);
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

after you deploy the smart contract, and also to give it some parameters, you may need to know some programming to do that

2 Likes

ppr/baza.sol at main · legamenon/ppr · GitHub
The mint function is already present, 1257 line in the code

Yes, it’s from your code, right. @cryptokid means that you need to deploy contract and call mint function for a smaller amount of NFTs

Or the problem is that you can’t deploy the smart contract?

Everything works, but up to 150 pieces, but more, for example, 1000 does not work, is it possible to upload it at once ?

if you add 150 pieces 10 times then it works fine?

1 Like

The gas limit required for your transaction is higher than the block gas limit

You need to split mints

Yes, but you can’t send it to one collection on Open Sea, and it turns out that I will have 10 collections of 150 each

what is a collection on Open Sea?