Skip to content

Instantly share code, notes, and snippets.

@0x666c6f
Last active December 14, 2023 19:13
Show Gist options
  • Select an option

  • Save 0x666c6f/ba5438c11853aff85a6592bbd30d8313 to your computer and use it in GitHub Desktop.

Select an option

Save 0x666c6f/ba5438c11853aff85a6592bbd30d8313 to your computer and use it in GitHub Desktop.
How to mint multiple items in a single transaction

Fxhash 2.0 multiple iteration mint

1 - Find the project address

image

2 - Go on the minter contract address

Fixed price: 0xB645cFfD9bFB93c2c181d5Be0D6a8C1d81C2aEf3

Dutch auction: 0x1bC736a2b144096a4752534C557D7E6C311CcAF1

On the contract etherscan page, click on Contract:

image

Then click on Write contract

image

Look for buy

image

3 - Fill the required data

  • payableAmount: the amount of ETH that will be sent (in ETH). it needs to be price * amount
  • _token : it's the address you fetched from fxhash website
  • _reserveId: it will be 0 if there are no allow lists
  • _amount: the quantity of iterations you want to mint
  • _to: address that will receive the iteration(s)

Example for Genomes:

  • payableAmount: 0.04 (0.02 * 2)
  • _token : 0xBb47F0ED4A7E3BffcA75660dFa3B053FB7FcE78E
  • _reserveId: 0
  • _amount: 2
  • _to: 0xBF0BbF31149e8FA7183Cb6eD96a1D2Ab947B8368

4 - Connect your wallet

Click on Connect to Web3 to connect your wallet and follow the steps image

Once this is done your address should appear like that:

image

5 - Submit the tx

Click on Writeto submit the tx, it should pop your wallet to sign the transaction

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment