Touki BlockchainTOUKI Network Chain ID 2105
← Back to Touki Blockchain
No-code token studio

Create your own token

Choose the token rules. Touki builds, deploys, verifies, and prepares it for MetaMask automatically.

Checking MetaMask…
Standard token functionstransfer, approve, allowance, transferFrom, increaseAllowance, decreaseAllowance, transferOwnership, and renounceOwnership are always included.
Generated contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract ToukiToken is ERC20, Ownable, ERC20Burnable {

    constructor()
        ERC20("Touki Token", "TKN")
        Ownable(msg.sender)
    {
        _mint(msg.sender, 1000000 * 10 ** 18);
    }
}

// Always available: transfer, approve, allowance, transferFrom,
// increaseAllowance, decreaseAllowance, transferOwnership, renounceOwnership.
This source reflects your selected functions. Touki deploys it as a native verified token; the code updates as you change options.