LogoLogo
Blockchain ExplorerWebsiteGitHubSmart ContractsCertikCoinMarketCap
  • 🚀Metacces is coming !!!
  • 🎯Mission & Vision
  • 📈Market Analysis
  • 🤝Partnerships
  • METACCES: GENERAL
    • 🎮AR/VR Game
      • 👉Introduction
      • 🔑Key features
      • 📈Earning mechanics
      • 👽Unique Oli AI
      • 🧬Blacxes
        • What is Blacxes
        • Utilites
        • Unique DNA
        • DAO Governance
        • Technology
        • Distribution
        • Swap
      • ⛓️Bridging Web2 Simplicity with Web3 Power
      • 🚀How Does Metacces Outperform the Competition?
      • 🎮Game Structure
        • Origin Story: Oli & the Blacxes
        • Game theme (Access Journey)
          • Overview
          • Basic level
          • Intermediate level
          • Final level
        • Activities and Gameplay
        • Game seasons
          • Introduction
          • Season Concept
          • What Does Each Season Include?
          • Importance of Seasons in Metacces
        • Skins & Tools
          • Introduction
          • Core Principles
          • Core Uses of Tools
          • Main Categories of Tools
          • Rarity and Value
          • Symbolism of Tools
          • Verification and Security Mechanisms
        • Clans
          • Introduction
          • Core Pillars of the Clan System
          • Clan Activities
          • Ownership and Economy Within the Clan
          • The Reputation System
          • The Future of Clans in Metacces
          • How to Create a Clan in Metacces
    • ⛓️Blockchain Layer 1
      • Developers
        • Public Endpoints
        • MetaMask
        • Node Setup
        • JSON RPC Server
        • Connect to RPC
        • API Methods
        • Client Libraries
        • Smart Contracts
          • Deploy
          • Interact
          • Transfer
          • Fixed Cap Asset
          • Variable Cap Asset
  • 👽Oli AI Agent
  • 📱Oli Gen
  • 🪙Acces Coin
    • Coin Utility
    • Smart-Contracts
    • Tokenomecs
    • Metacces Listings Roadmap
  • DEVELOPMENT
  • 📅Roadmap
    • Main Roadmap
      • ✔️2022
      • ✔️2023
      • 🔛2024
      • 2025
    • Coin Roadmap
      • 2022
      • 2023
      • 2024
  • TEAM
    • 7️⃣Core 7 values
    • 👨‍🚀Meet The Team
  • SECURITY
    • 🫂 Team KYC Gold Verified by CERTIK (2024)
    • 🪙Coin Audit by CERTIK
    • 🗓️Smart Contract Vesting Audit by CERTIK
    • 🪙Coin Audit by SOLIDPROOF
    • 🪙Coin Audit by HACKEN
  • OTHER INFO
    • Contact Us
    • Community
      • Website
      • Telegram
      • X.Twitter
      • Discord
      • Youtube
      • Instagram
      • Facebook
Powered by GitBook
On this page
  • 1. Write the token smart contract
  • 2. Compile your code into bytecode
  • 3. Deploy your Variable-cap Asset by sending your code in a transaction to the Enter network
  • 4. Navigate to the explorer to check that your token has been created
  • 5. You can use the _mint function to create additional units of the token

Was this helpful?

  1. METACCES: GENERAL
  2. Blockchain Layer 1
  3. Developers
  4. Smart Contracts

Variable Cap Asset

Create a variable cap asset

PreviousFixed Cap AssetNextOli AI Agent

Last updated 10 months ago

Was this helpful?

1. Write the token smart contract

This contract is designed to be unopinionated, allowing developers to access the internal functions in ERC20 (such as _mint) and expose them as external functions in the way they prefer. On the other hand, ERC20 Presets (such as ERC20PresetMinterPauser) are designed using opinionated patterns to provide developers with ready to use, deployable contracts.

Functions

  • name()

  • symbol()

  • decimals()

  • totalSupply()

  • balanceOf(account)

  • transfer(recipient, amount)

  • allowance(owner, spender)

  • approve(spender, amount)

  • transferFrom(sender, recipient, amount)

  • increaseAllowance(spender, addedValue)

  • decreaseAllowance(spender, subtractedValue)

  • _transfer(sender, recipient, amount)

  • _mint(account, amount)

  • _burn(account, amount)

  • _approve(owner, spender, amount)

  • _setupDecimals(decimals_)

2. Compile your code into bytecode

3. Deploy your Variable-cap Asset by sending your code in a transaction to the Enter network

4. Navigate to the explorer to check that your token has been created

5. You can use the _mint function to create additional units of the token

⛓️
openzeppelin-contracts/ERC20.sol at master · OpenZeppelin/openzeppelin-contractsGitHub
Logo