📑
BUIDL - Web3 Dapp Builder for Wordpress
  • 👋Welcome to BUIDL Documentation
  • Overview
    • 🖥️Installation
    • ⚙️Configuration
    • 📃dApp Integration
  • Smart Contract
    • 📑Customization
    • 🔨Manage On-Chain
      • 🎨Metadata
      • 🎭Reveal Mode
      • 💵Mint Price
    • 👫Whitelist
    • ☁️Deployment
Powered by GitBook
On this page
  1. Smart Contract

Customization

PreviousdApp IntegrationNextManage On-Chain

Last updated 2 years ago

Create your own smart contract

The provided smart contract is written in Solidity. To use, interact and deploy your smart contract in the blockchain. We recommend you to use Remix Ethereum. Very intuitive and easy to use.

This is the official Ethereum IDE ->

Edit name and symbol

constructor() ERC721A("Collection Name", "CNAME")

Edit mint prices and NFTs amount in your collection.

  uint256 public PriceWL = 0.04 ether; // Mint Presale Price
  uint256 public PricePublic = 0.05 ether; // Mint Public Price
  uint256 public MaxToken = 10000; // Total NFTs on your collection

If your project is on Polygon, Binance, ... blockchain. Enter the amount like the example.

Before deploying your smart contract, you need to modify it.

📑
http://remix.ethereum.org