Forge a Token

Forge a meme token on Igra Network in one click.

Igra Mainnet
0.1 iKAS

Pick a template

Every token is a clone of the same audited MemeTaxToken — cheap, fast, and transparent.

Classic buy/sell tax → treasury. Configurable burn portion. Max wallet/tx.

Token basics

Taxes & burn

Capped at 25% per side. Burn is a portion of tax, not additive.

Renounce ownership on deploy

Permanently removes owner. You can't change taxes, add to pair, recover funds, or edit metadata. Usually called AFTER you've added LP + locked it.

Keep ownership

Est. total: 100 iKAS fee + network gas •

EIP-1167 clone

MyToken.sol
live preview
// SPDX-License-Identifier: MIT
// Tax Token — forged on iForge
// Deployed via EIP-1167 clone of MemeTaxToken on Igra Network (chainId 38833)

pragma solidity ^0.8.28;

import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

contract PEPEF is ERC20Upgradeable, OwnableUpgradeable {
    // ---- Configured on iForge ----
    string  public constant TOKEN_NAME   = "Pepe Forge";
    string  public constant TOKEN_SYMBOL = "PEPEF";
    uint256 public constant TOTAL_SUPPLY = 1000000 * 1e18;

    uint16  public buyTaxBps     = 300;  // 3%
    uint16  public sellTaxBps    = 500; // 5%
    uint16  public buyBurnBps    = 100; // 1%
    uint16  public sellBurnBps   = 100;// 1%
    uint16  public maxWalletBps  = 200;
    uint16  public maxTxBps      = 100;

    address public treasury      = 0x0000000000000000000000000000000000000000;
    bool    public renounceOnDeploy = false;

    // ... (full implementation from MemeTaxToken.sol — see /contracts on GitHub)
    // Clone pattern means this logic is shared across every iForge token —
    // cheaper gas, audited once, deployed cheaply via EIP-1167 on Igra.
}