🐧How to build an NFT minting website on Webflow without code

a.k.a how to mint NFTs on Webflow or how to connect Metamask to Webflow

This article helps to set up a no-code widget that allows minting NFTs on your Webflow website.

circle-info

Wix, WordPress, and Squarespace are also supported. Click to read Wix guide. Instructions for others coming soon, meanwhile, ask in our Discordarrow-up-right

Video guide on using Buildship mint button

TL;DR

You can also clone one of our free Webflow minting templatesarrow-up-right and use as an example

Starting out

circle-check
  • Make sure your contract has price and mint constants. The possible namings are: mint, buy or mintXXX; price or cost.

  • Your Webflow website is at least on a Basic site plan (required to add custom code blocks)

How to use?

  1. Open Webflow website editor

  2. Create a new Embedded HTML codearrow-up-right block (at least Basic site plan required)

  3. Copy & paste this code in Webflow Embed block

4. If you have your Ethereum NFT contract

If you don't have a contract, create it using Buildshiparrow-up-right without coding skills

Your contract should be verifiedarrow-up-right on Etherscanarrow-up-right. Otherwise you have to add CONTRACT_ABI = [{...}] line in the above code, with your full contract ABI inserted. If you have an error saying your ABI is too long, click herearrow-up-right.

5. Create a button with ID mint-button on your Webflow site

If you can't set an ID, you can set a button URL as #mint-button or https://<your-website-url>/#mint-button

6. You're done πŸŽ‰

Example for testing

FAQ

I'm confused / it's not working, can you help me?

Yes, absolutely! You can contact us in Discordarrow-up-right, or open a GitHub issuearrow-up-right

How to add "Connect wallet" button?

Mint button will ask to connect wallet, so it's not necessary to add a "Connect wallet" button.

If you still want to do it, create a Webflow button with ID connect.

How to add a custom minted counter?

Just create two text elements and assign them:

  • minted-counter ID to display minted number

  • total-counter ID to display collection size

How to use this with Polygon, Binance, or other Ethereum-based networks?

It's easy! Set NETWORK_ID instead of IS_TESTNET in the code snippet

Some of the network IDs you might use:

  • Ethereum Mainnet: NETWORK_ID = 1

  • Ethereum Rinkeby Testnet: NETWORK_ID = 4

  • Polygon: NETWORK_ID = 137

  • Binance: NETWORK_ID = 56

  • For other IDs visit Chainlistarrow-up-right

How to style minting dialog?

See the example herearrow-up-right

How to hide minted counter from the dialog?

You need to set DEFAULTS.hideCounter to true

Last updated