Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artgenexyz/webflow-nft-components
Connect web3 to Webflow without coding skills
https://github.com/artgenexyz/webflow-nft-components
ethereum nft nocode web3 webflow
Last synced: 3 months ago
JSON representation
Connect web3 to Webflow without coding skills
- Host: GitHub
- URL: https://github.com/artgenexyz/webflow-nft-components
- Owner: artgenexyz
- License: mit
- Created: 2021-11-08T23:19:07.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-01T03:04:49.000Z (8 months ago)
- Last Synced: 2024-04-10T05:23:12.759Z (7 months ago)
- Topics: ethereum, nft, nocode, web3, webflow
- Language: JavaScript
- Homepage: https://buildship.xyz
- Size: 1.6 MB
- Stars: 143
- Watchers: 5
- Forks: 104
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Mint button for Webflow/Wix/Wordpress
Add a mint button to your website without coding skills required.
## ⚡ Quick start
Use our new app to set up your button embed:
https://embed.buildship.xyz### Features
👉 No-code mint button for Webflow, Wix, WordPress with instructions
👉 Supports custom contract methods (mint, maxSupply, etc.)
👉 Supports non-verified contracts
👉 Pay to remove watermark
👉 Supports other chains (Polygon, Optimism, Arbitrum, etc.)
👉 Easy to use## Video guide
[![Mint button video guide](https://img.youtube.com/vi/4MMylTzzwAg/sddefault.jpg)](http://www.youtube.com/watch?v=4MMylTzzwAg)## Text guide
This widget allows minting NFTs on your website.
To start, you need an Ethereum NFT contract. [Create it via Buildship app](https://app.buildship.xyz), or test with an [example contract](https://github.com/buildship-dev/webflow-nft-components#example-for-testing).
**ERC721Community** contract by [buildship.xyz](https://buildship.xyz) is used by **400+** NFT drops with **5M$+** primary sales earned for creators.
It uses ERC721A, allowing for **50-100% lower** minting gas fees, costs **~10-20$ in gas to deploy**, bullet-proof security and extensions like allow lists, mint passes, etc.
[Create your contract now](https://app.buildship.xyz)## How to use it with Webflow?
> ⚡ Instructions for Wix/Wordpress/HTML & easy setup are available on [embed.buildship.xyz](https://embed.buildship.xyz)
1. Open Webflow website editor
2. Create a new [Embedded HTML code](https://university.webflow.com/lesson/custom-code-embed) block (at least **Basic** site plan required)
3. Copy & paste this code in Webflow Embed block
```htmlCONTRACT_ADDRESS = "YOUR CONTRACT ADDRESS HERE"
IS_TESTNET = false
// if your contract is NOT VERIFIED on Etherscan
// put here: CONTRACT_ABI = [{...}]
// don't do anything if unsure```
4. If you **have your Ethereum NFT contract**
✅ Insert your contract address in `CONTRACT_ADDRESS` field
✅ Set `IS_TESTNET` to `false` or `true` depending on which network is the contract on: `Ethereum Mainnet` or `Goerli Testnet`
✅ Make sure it fits requirements from [Custom smart contract requirements](#custom-smart-contract-requirements)If you **don't have a contract**, [create it via Buildship app](https://app.buildship.xyz)
> Your contract should be [verified](https://etherscan.io/verifyContract) on [Etherscan](https://etherscan.io). 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 here](https://github.com/buildship-dev/webflow-nft-components/issues/22#issuecomment-1042708174).
6. Create a button with ID `mint-button` on your Webflow site
On the left side, press Add and find Button
Select your button, then on the right side, set Button id to `mint-button`
If you can't set an ID, you can set a button URL as `mint-button` or `https:///#mint-button`
7. You're done 🎉
### Custom smart contract requirements
If you are using mint widget with a contract not deployed via [https://app.buildship.xyz](https://app.buildship.xyz), it has to be:
- verified on Etherscan
- public `price` method outputting price in wei. It could be named `price`, `cost` or `getPrice`
- public `mint` method accepting `nTokens` as parameter. Alternative names: `mint`, `mintNFT` or `publicMint`
- public `maxSupply` method outputting collection size
- public `totalSupply` method outputting total number of minted NFTsIf your contract doesn't fit the requirements, you can fork this repo and open a PR. Vercel will automatically deploy and build your PR and you'll be able to use the changed version.
Here's the code that handles this: [src/mint/web3.js](src/mint/web3.js)
### Example for testing
```htmlCONTRACT_ADDRESS = "0xb1db0dbad7a14370872a7e5327c8ad7c9951a661"
IS_TESTNET = true```
## FAQ
### I'm confused / it's not working, can you help me?
Yes, absolutely! You can [contact us in Discord](http://buildship.xyz/), or open a [GitHub issue](https://github.com/buildship-dev/webflow-nft-components/issues/new)### 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```html
CONTRACT_ADDRESS = "YOUR CONTRACT ADDRESS HERE"
NETWORK_ID = 1
// remove IS_TESTNET line
...<link ...>
```Some of the network IDs you might use:
- Ethereum Mainnet: `NETWORK_ID = 1`
- Ethereum Goerli Testnet: `NETWORK_ID = 5`
- Polygon: `NETWORK_ID = 137`
- Binance: `NETWORK_ID = 56`
- For other IDs visit [Chainlist](https://chainlist.org)### How to style minting dialog?
[See the example here](https://github.com/buildship-dev/webflow-nft-components/wiki/Mint-button-widget#how-to-style-minting-dialog)### How to hide minted counter from the dialog?
You need to set `DEFAULTS.hideCounter` to `true`
```html
<script>
CONTRACT_ADDRESS = "YOUR CONTRACT ADDRESS HERE"
NETWORK_ID = 1
DEFAULTS = {
hideCounter: true
}
...<link ...>
```### What's all available customization?
Here's a list of all available parameters for customization. If you need help with this, message us in Discord
```html
<script>
CONTRACT_ADDRESS = "YOUR CONTRACT ADDRESS HERE"
CONTRACT_ABI = [] // needed for non-verified contracts only
NETWORK_ID = 4 // defaults to 1: Ethereum network
IS_TESTNET = true // true defaults to 5: Goerli network
MAX_PER_MINT = 5 // max value of NFT quantity slider in the modal, default is 20
DEFAULTS = {
labels: {
walletConnected: "Wallet connected", // label for wallet connected button
},
hideCounter: false, // hide minted counter from the dialog. Default: true
contractMethods: {
mint: "myCustomMintMethod" // defaults to "mint" or "publicMint"
},
publicMint: {
price: 0.1 // defaults to none, fetched automatically from smart-contract
}
}
STYLES = {
theme: "light",
backgroundColor: "#ffffff",
primaryColor: "#2986CC",
primaryTextColor: "#1f1f1f",
secondaryTextColor: "#9e9e9e",
buttonTextColor: "#ffffff",
corners: "rounded"
}```
### Do you collect any data?
Anonymous data collected using Amplitude, so we can know how many users the widget has. The only thing we collect is website URL.
If you want to opt out, set```html
...
DEFAULTS = {
analyticsOptOut: true
}
...```
### Can I add my own custom analytics?
Check out this guide: https://github.com/buildship-dev/webflow-nft-components/wiki/Custom-Analytics
### Free Template
If that instruction was too complicated, check out our [free clonable NFT website templates for Webflow](https://webflow.com/theshadeth)
## Roadmap
- [x] Fix issues with WalletConnect on mobile
- [x] Support for Coinbase Wallet
- [x] Guide for Wix
- [x] Guide for Wordpress
- [ ] Guide for Squarespace
- [ ] Native support for Ledger
- [ ] Support for Magic Wallet
- [ ] Support for gasless mints
- [x] Support for buying with credit card: MoonPay / CrossMint
- [ ] Migrate to RainbowKit or ConnectKit
- [ ] Migrate to ethers.js
- [ ] Refactor code
- [ ] "Disconnect wallet"
- [ ] View wallet's NFTs via rainbow.me
- [ ] Support for token-gating## Contributing
Fork the repo and clone it
```
git clone https://github.com/buildship-dev/webflow-nft-components.git
```Install dependencies with `yarn` (`node v14+` required)
```
yarn install
```Start server on `localhost:3000`
```
yarn start
```Push changes, open a PR in our repo, and you'll be able to test your changes immediately on `nftcomponents-git-your-branch-name.vercel.app`.
Leave a message in our [Discord](http://discord.gg/dRg2tGqfhE) to discuss & review your PR faster!