ETH Price: $2,958.43 (-1.19%)
Gas: 7 Gwei

Token

Modularism (Modularism)
 

Overview

Max Total Supply

100,000 Modularism

Holders

269

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MainContract

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-07-02
*/

// SPDX-License-Identifier: MIT
// Twitter: https://x.com/ModularismEth
// Telegram: https://t.me/Modularismeth
// Website: https://modularism.io/
// Github: https://github.com/Modularismio/modularismv1/tree/main

// { ERC-M } Modularism allows you to create modular Solidity contracts, providing low transaction fees and secure systems.
// The Modularism Smart Contract provides low-cost and secure token transfers and spending allowance management on the Ethereum network. Token transfers and balances are managed with BalanceContract, while spending allowances are managed with ApproveContract. This modular structure makes transactions easy and secure.
pragma solidity ^0.8.26;

interface IApproveContract {
    function approve(address owner, address spender, uint256 amount, address ca) external returns (bool);
    function allowance(address owner, address spender, address ca) external view returns (uint256);
}

interface IBalanceContract {
    function transfer(address sender, address recipient, uint256 amount, address ca) external returns (bool);
    function balanceOf(address account, address ca) external view returns (uint256);
    function register(address ca, uint256 totalSupply) external;
}

contract MainContract {
    string public constant name = "Modularism";
    string public constant symbol = "Modularism";
    uint8 public constant decimals = 18;

    uint256 public totalSupply = 100000 * (10 ** uint256(decimals));

    IApproveContract private _approveContract;
    IBalanceContract private _balanceContract;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    constructor(address approveAddress, address balanceAddress) {
        _approveContract = IApproveContract(approveAddress);
        _balanceContract = IBalanceContract(balanceAddress);
        _balanceContract.register(address(this), totalSupply);
        emit Transfer(address(0), msg.sender, totalSupply);

    }

    function transfer(address to, uint256 amount) public returns (bool) {
        emit Transfer(msg.sender, to, amount);
        bool success = _balanceContract.transfer(msg.sender, to, amount, address(this));
        require(success, "Transfer failed.");
        return success;
    }

    function transferFrom(address from, address to, uint256 amount) public returns (bool) {
        uint256 currentAllowance = _approveContract.allowance(from, msg.sender, address(this));
        require(currentAllowance >= amount, "Transfer amount exceeds allowance");
        bool success = _balanceContract.transfer(from, to, amount, address(this));
        require(success, "Transfer failed.");
        _approveContract.approve(from, msg.sender, currentAllowance - amount, address(this));
        emit Transfer(from, to, amount);
        return success;
    }

    function balanceOf(address account) public view returns (uint256) {
        return _balanceContract.balanceOf(account, address(this));
    }

    function approve(address spender, uint256 amount) public returns (bool) {
        emit Approval(msg.sender, spender, amount);
        return _approveContract.approve(msg.sender, spender, amount, address(this));
    }

    function allowance(address owner, address spender) public view returns (uint256) {
        return _approveContract.allowance(owner, spender, address(this));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"approveAddress","type":"address"},{"internalType":"address","name":"balanceAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526100106012600a610204565b61001d90620186a0610216565b5f5534801561002a575f80fd5b50604051610ad1380380610ad183398101604081905261004991610248565b600180546001600160a01b038481166001600160a01b0319928316179092556002805492841692909116821790555f54604051636d705ebb60e01b81523060048201526024810191909152636d705ebb906044015f604051808303815f87803b1580156100b4575f80fd5b505af11580156100c6573d5f803e3d5ffd5b50505f80546040519081523393509091507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050610279565b634e487b7160e01b5f52601160045260245ffd5b6001815b600184111561015a5780850481111561013e5761013e61010b565b600184161561014c57908102905b60019390931c928002610123565b935093915050565b5f82610170575060016101fe565b8161017c57505f6101fe565b8160018114610192576002811461019c576101b8565b60019150506101fe565b60ff8411156101ad576101ad61010b565b50506001821b6101fe565b5060208310610133831016604e8410600b84101617156101db575081810a6101fe565b6101e75f19848461011f565b805f19048211156101fa576101fa61010b565b0290505b92915050565b5f61020f8383610162565b9392505050565b80820281158282048414176101fe576101fe61010b565b80516001600160a01b0381168114610243575f80fd5b919050565b5f8060408385031215610259575f80fd5b6102628361022d565b91506102706020840161022d565b90509250929050565b61084b806102865f395ff3fe608060405234801561000f575f80fd5b5060043610610090575f3560e01c8063313ce56711610063578063313ce5671461011f57806370a082311461013957806395d89b4114610094578063a9059cbb1461014c578063dd62ed3e1461015f575f80fd5b806306fdde0314610094578063095ea7b3146100d357806318160ddd146100f657806323b872dd1461010c575b5f80fd5b6100bd6040518060400160405280600a8152602001694d6f64756c617269736d60b01b81525081565b6040516100ca9190610699565b60405180910390f35b6100e66100e13660046106e9565b610172565b60405190151581526020016100ca565b6100fe5f5481565b6040519081526020016100ca565b6100e661011a366004610711565b61023f565b610127601281565b60405160ff90911681526020016100ca565b6100fe61014736600461074b565b6104a7565b6100e661015a3660046106e9565b610519565b6100fe61016d366004610764565b61061f565b5f826001600160a01b0316336001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516101b891815260200190565b60405180910390a36001546040516323538b6760e01b81526001600160a01b03909116906323538b67906101f6903390879087903090600401610795565b6020604051808303815f875af1158015610212573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061023691906107c0565b90505b92915050565b60015460405163927da10560e01b81526001600160a01b0385811660048301523360248301523060448301525f92839291169063927da10590606401602060405180830381865afa158015610296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102ba91906107df565b90508281101561031b5760405162461bcd60e51b815260206004820152602160248201527f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636044820152606560f81b60648201526084015b60405180910390fd5b60025460405163f9ce781360e01b81525f916001600160a01b03169063f9ce781390610351908990899089903090600401610795565b6020604051808303815f875af115801561036d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061039191906107c0565b9050806103d35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610312565b6001546001600160a01b03166323538b6787336103f088876107f6565b306040518563ffffffff1660e01b81526004016104109493929190610795565b6020604051808303815f875af115801561042c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045091906107c0565b50846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161049691815260200190565b60405180910390a395945050505050565b600254604051633de222bb60e21b81526001600160a01b0383811660048301523060248301525f92169063f7888aec90604401602060405180830381865afa1580156104f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061023991906107df565b5f826001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161055f91815260200190565b60405180910390a360025460405163f9ce781360e01b81525f916001600160a01b03169063f9ce78139061059d903390889088903090600401610795565b6020604051808303815f875af11580156105b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105dd91906107c0565b9050806102365760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610312565b60015460405163927da10560e01b81526001600160a01b03848116600483015283811660248301523060448301525f92169063927da10590606401602060405180830381865afa158015610675573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061023691906107df565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146106e4575f80fd5b919050565b5f80604083850312156106fa575f80fd5b610703836106ce565b946020939093013593505050565b5f805f60608486031215610723575f80fd5b61072c846106ce565b925061073a602085016106ce565b929592945050506040919091013590565b5f6020828403121561075b575f80fd5b610236826106ce565b5f8060408385031215610775575f80fd5b61077e836106ce565b915061078c602084016106ce565b90509250929050565b6001600160a01b03948516815292841660208401526040830191909152909116606082015260800190565b5f602082840312156107d0575f80fd5b81518015158114610236575f80fd5b5f602082840312156107ef575f80fd5b5051919050565b8181038181111561023957634e487b7160e01b5f52601160045260245ffdfea2646970667358221220f095b6d8d240c9ad4472570ac9132ad8b573965dda60c8599b0bcbe1c7c5dfbb64736f6c634300081a0033000000000000000000000000000001bb5f23f6d5eaa1c6b1a2027d9849dc173f000000000000000000000000000004e530b96d545901e684b90dea3b834a9a04

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610090575f3560e01c8063313ce56711610063578063313ce5671461011f57806370a082311461013957806395d89b4114610094578063a9059cbb1461014c578063dd62ed3e1461015f575f80fd5b806306fdde0314610094578063095ea7b3146100d357806318160ddd146100f657806323b872dd1461010c575b5f80fd5b6100bd6040518060400160405280600a8152602001694d6f64756c617269736d60b01b81525081565b6040516100ca9190610699565b60405180910390f35b6100e66100e13660046106e9565b610172565b60405190151581526020016100ca565b6100fe5f5481565b6040519081526020016100ca565b6100e661011a366004610711565b61023f565b610127601281565b60405160ff90911681526020016100ca565b6100fe61014736600461074b565b6104a7565b6100e661015a3660046106e9565b610519565b6100fe61016d366004610764565b61061f565b5f826001600160a01b0316336001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516101b891815260200190565b60405180910390a36001546040516323538b6760e01b81526001600160a01b03909116906323538b67906101f6903390879087903090600401610795565b6020604051808303815f875af1158015610212573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061023691906107c0565b90505b92915050565b60015460405163927da10560e01b81526001600160a01b0385811660048301523360248301523060448301525f92839291169063927da10590606401602060405180830381865afa158015610296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102ba91906107df565b90508281101561031b5760405162461bcd60e51b815260206004820152602160248201527f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636044820152606560f81b60648201526084015b60405180910390fd5b60025460405163f9ce781360e01b81525f916001600160a01b03169063f9ce781390610351908990899089903090600401610795565b6020604051808303815f875af115801561036d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061039191906107c0565b9050806103d35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610312565b6001546001600160a01b03166323538b6787336103f088876107f6565b306040518563ffffffff1660e01b81526004016104109493929190610795565b6020604051808303815f875af115801561042c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045091906107c0565b50846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161049691815260200190565b60405180910390a395945050505050565b600254604051633de222bb60e21b81526001600160a01b0383811660048301523060248301525f92169063f7888aec90604401602060405180830381865afa1580156104f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061023991906107df565b5f826001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161055f91815260200190565b60405180910390a360025460405163f9ce781360e01b81525f916001600160a01b03169063f9ce78139061059d903390889088903090600401610795565b6020604051808303815f875af11580156105b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105dd91906107c0565b9050806102365760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610312565b60015460405163927da10560e01b81526001600160a01b03848116600483015283811660248301523060448301525f92169063927da10590606401602060405180830381865afa158015610675573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061023691906107df565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146106e4575f80fd5b919050565b5f80604083850312156106fa575f80fd5b610703836106ce565b946020939093013593505050565b5f805f60608486031215610723575f80fd5b61072c846106ce565b925061073a602085016106ce565b929592945050506040919091013590565b5f6020828403121561075b575f80fd5b610236826106ce565b5f8060408385031215610775575f80fd5b61077e836106ce565b915061078c602084016106ce565b90509250929050565b6001600160a01b03948516815292841660208401526040830191909152909116606082015260800190565b5f602082840312156107d0575f80fd5b81518015158114610236575f80fd5b5f602082840312156107ef575f80fd5b5051919050565b8181038181111561023957634e487b7160e01b5f52601160045260245ffdfea2646970667358221220f095b6d8d240c9ad4472570ac9132ad8b573965dda60c8599b0bcbe1c7c5dfbb64736f6c634300081a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000001bb5f23f6d5eaa1c6b1a2027d9849dc173f000000000000000000000000000004e530b96d545901e684b90dea3b834a9a04

-----Decoded View---------------
Arg [0] : approveAddress (address): 0x000001bB5F23F6d5EaA1c6B1A2027D9849DC173f
Arg [1] : balanceAddress (address): 0x000004e530b96D545901E684b90dEa3b834a9a04

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000001bb5f23f6d5eaa1c6b1a2027d9849dc173f
Arg [1] : 000000000000000000000000000004e530b96d545901e684b90dea3b834a9a04


Deployed Bytecode Sourcemap

1234:2247:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1263:42;;;;;;;;;;;;;;;-1:-1:-1;;;1263:42:0;;;;;;;;;;;;:::i;:::-;;;;;;;;3087:219;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;3087:219:0;920:187:1;1407:63:0;;;;;;;;;1258:25:1;;;1246:2;1231:18;1407:63:0;1112:177:1;2362:567:0;;;;;;:::i;:::-;;:::i;1363:35::-;;1396:2;1363:35;;;;;1845:4:1;1833:17;;;1815:36;;1803:2;1788:18;1363:35:0;1673:184:1;2937:142:0;;;;;;:::i;:::-;;:::i;2068:286::-;;;;;;:::i;:::-;;:::i;3314:164::-;;;;;;:::i;:::-;;:::i;3087:219::-;3153:4;3196:7;-1:-1:-1;;;;;3175:37:0;3184:10;-1:-1:-1;;;;;3175:37:0;;3205:6;3175:37;;;;1258:25:1;;1246:2;1231:18;;1112:177;3175:37:0;;;;;;;;3230:16;;:68;;-1:-1:-1;;;3230:68:0;;-1:-1:-1;;;;;3230:16:0;;;;:24;;:68;;3255:10;;3267:7;;3276:6;;3292:4;;3230:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3223:75;;3087:219;;;;;:::o;2362:567::-;2486:16;;:59;;-1:-1:-1;;;2486:59:0;;-1:-1:-1;;;;;3294:32:1;;;2486:59:0;;;3276:51:1;2519:10:0;3343:18:1;;;3336:60;2539:4:0;3412:18:1;;;3405:60;2442:4:0;;;;2486:16;;;:26;;3249:18:1;;2486:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2459:86;;2584:6;2564:16;:26;;2556:72;;;;-1:-1:-1;;;2556:72:0;;3867:2:1;2556:72:0;;;3849:21:1;3906:2;3886:18;;;3879:30;3945:34;3925:18;;;3918:62;-1:-1:-1;;;3996:18:1;;;3989:31;4037:19;;2556:72:0;;;;;;;;;2654:16;;:58;;-1:-1:-1;;;2654:58:0;;2639:12;;-1:-1:-1;;;;;2654:16:0;;:25;;:58;;2680:4;;2686:2;;2690:6;;2706:4;;2654:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2639:73;;2731:7;2723:36;;;;-1:-1:-1;;;2723:36:0;;4269:2:1;2723:36:0;;;4251:21:1;4308:2;4288:18;;;4281:30;-1:-1:-1;;;4327:18:1;;;4320:46;4383:18;;2723:36:0;4067:340:1;2723:36:0;2770:16;;-1:-1:-1;;;;;2770:16:0;:24;2795:4;2801:10;2813:25;2832:6;2813:16;:25;:::i;:::-;2848:4;2770:84;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2885:2;-1:-1:-1;;;;;2870:26:0;2879:4;-1:-1:-1;;;;;2870:26:0;;2889:6;2870:26;;;;1258:25:1;;1246:2;1231:18;;1112:177;2870:26:0;;;;;;;;2914:7;2362:567;-1:-1:-1;;;;;2362:567:0:o;2937:142::-;3021:16;;:50;;-1:-1:-1;;;3021:50:0;;-1:-1:-1;;;;;4834:32:1;;;3021:50:0;;;4816:51:1;3065:4:0;4883:18:1;;;4876:60;2994:7:0;;3021:16;;:26;;4789:18:1;;3021:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;2068:286::-;2130:4;2173:2;-1:-1:-1;;;;;2152:32:0;2161:10;-1:-1:-1;;;;;2152:32:0;;2177:6;2152:32;;;;1258:25:1;;1246:2;1231:18;;1112:177;2152:32:0;;;;;;;;2210:16;;:64;;-1:-1:-1;;;2210:64:0;;2195:12;;-1:-1:-1;;;;;2210:16:0;;:25;;:64;;2236:10;;2248:2;;2252:6;;2268:4;;2210:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2195:79;;2293:7;2285:36;;;;-1:-1:-1;;;2285:36:0;;4269:2:1;2285:36:0;;;4251:21:1;4308:2;4288:18;;;4281:30;-1:-1:-1;;;4327:18:1;;;4320:46;4383:18;;2285:36:0;4067:340:1;3314:164:0;3413:16;;:57;;-1:-1:-1;;;3413:57:0;;-1:-1:-1;;;;;3294:32:1;;;3413:57:0;;;3276:51:1;3363:32;;;3343:18;;;3336:60;3464:4:0;3412:18:1;;;3405:60;3386:7:0;;3413:16;;:26;;3249:18:1;;3413:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;2053:260::-;2121:6;2129;2182:2;2170:9;2161:7;2157:23;2153:32;2150:52;;;2198:1;2195;2188:12;2150:52;2221:29;2240:9;2221:29;:::i;:::-;2211:39;;2269:38;2303:2;2292:9;2288:18;2269:38;:::i;:::-;2259:48;;2053:260;;;;;:::o;2318:469::-;-1:-1:-1;;;;;2567:32:1;;;2549:51;;2636:32;;;2631:2;2616:18;;2609:60;2700:2;2685:18;;2678:34;;;;2748:32;;;2743:2;2728:18;;2721:60;2536:3;2521:19;;2318:469::o;2792:277::-;2859:6;2912:2;2900:9;2891:7;2887:23;2883:32;2880:52;;;2928:1;2925;2918:12;2880:52;2960:9;2954:16;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3476:184;3546:6;3599:2;3587:9;3578:7;3574:23;3570:32;3567:52;;;3615:1;3612;3605:12;3567:52;-1:-1:-1;3638:16:1;;3476:184;-1:-1:-1;3476:184:1:o;4412:225::-;4479:9;;;4500:11;;;4497:134;;;4553:10;4548:3;4544:20;4541:1;4534:31;4588:4;4585:1;4578:15;4616:4;4613:1;4606:15

Swarm Source

ipfs://f095b6d8d240c9ad4472570ac9132ad8b573965dda60c8599b0bcbe1c7c5dfbb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.