Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
8.620843375014549493 paprMEME
Holders
70
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.011547318948712691 paprMEMEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PaprToken
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 20 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.17; import {ERC20} from "solmate/tokens/ERC20.sol"; contract PaprToken is ERC20 { error ControllerOnly(); address immutable controller; modifier onlyController() { if (msg.sender != controller) { revert ControllerOnly(); } _; } constructor(string memory name, string memory symbol) ERC20(string.concat("papr ", name), string.concat("papr", symbol), 18) { controller = msg.sender; } function mint(address to, uint256 amount) external onlyController { _mint(to, amount); } function burn(address account, uint256 amount) external onlyController { _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. /// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol) /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it. abstract contract ERC20 { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); /*////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public name; string public symbol; uint8 public immutable decimals; /*////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal immutable INITIAL_CHAIN_ID; bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor( string memory _name, string memory _symbol, uint8 _decimals ) { name = _name; symbol = _symbol; decimals = _decimals; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); } /*////////////////////////////////////////////////////////////// ERC20 LOGIC //////////////////////////////////////////////////////////////*/ function approve(address spender, uint256 amount) public virtual returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer(address to, uint256 amount) public virtual returns (bool) { balanceOf[msg.sender] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount; balanceOf[from] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } /*////////////////////////////////////////////////////////////// EIP-2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED"); // Unchecked because the only math done is incrementing // the owner's nonce which cannot realistically overflow. unchecked { address recoveredAddress = ecrecover( keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR(), keccak256( abi.encode( keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ), owner, spender, value, nonces[owner]++, deadline ) ) ) ), v, r, s ); require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER"); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator(); } function computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name)), keccak256("1"), block.chainid, address(this) ) ); } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 amount) internal virtual { totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal virtual { balanceOf[from] -= amount; // Cannot underflow because a user's balance // will never be larger than the total supply. unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } }
{ "remappings": [ "@openzeppelin/=lib/openzeppelin-contracts/", "@reservoir/=lib/oracle/contracts/", "@uniswap/v3-core/=lib/v3-core/", "@uniswap/v3-periphery/=lib/v3-periphery/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "fullrange/=lib/fullrange/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/", "oracle/=lib/oracle/contracts/", "solady/=lib/solady/src/", "solmate/=lib/solmate/src/", "v3-core/=lib/v3-core/", "v3-periphery/=lib/v3-periphery/contracts/" ], "optimizer": { "enabled": true, "runs": 20 }, "metadata": { "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ControllerOnly","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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"}]
Contract Creation Code
6101006040523480156200001257600080fd5b50604051620011273803806200112783398101604081905262000035916200022b565b8160405160200162000048919062000295565b604051602081830303815290604052816040516020016200006a9190620002c4565b60408051601f19818403018152919052601260006200008a848262000381565b50600162000099838262000381565b5060ff81166080524660a052620000af620000c2565b60c05250503360e05250620004cb915050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051620000f691906200044d565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200019157818101518382015260200162000177565b50506000910152565b600082601f830112620001ac57600080fd5b81516001600160401b0380821115620001c957620001c96200015e565b604051601f8301601f19908116603f01168101908282118183101715620001f457620001f46200015e565b816040528381528660208588010111156200020e57600080fd5b6200022184602083016020890162000174565b9695505050505050565b600080604083850312156200023f57600080fd5b82516001600160401b03808211156200025757600080fd5b62000265868387016200019a565b935060208501519150808211156200027c57600080fd5b506200028b858286016200019a565b9150509250929050565b6403830b839160dd1b815260008251620002b781600585016020870162000174565b9190910160050192915050565b633830b83960e11b815260008251620002e581600485016020870162000174565b9190910160040192915050565b600181811c908216806200030757607f821691505b6020821081036200032857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200037c57600081815260208120601f850160051c81016020861015620003575750805b601f850160051c820191505b81811015620003785782815560010162000363565b5050505b505050565b81516001600160401b038111156200039d576200039d6200015e565b620003b581620003ae8454620002f2565b846200032e565b602080601f831160018114620003ed5760008415620003d45750858301515b600019600386901b1c1916600185901b17855562000378565b600085815260208120601f198616915b828110156200041e57888601518255948401946001909101908401620003fd565b50858210156200043d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008083546200045d81620002f2565b600182811680156200047857600181146200048e57620004bf565b60ff1984168752821515830287019450620004bf565b8760005260208060002060005b85811015620004b65781548a8201529084019082016200049b565b50505082870194505b50929695505050505050565b60805160a05160c05160e051610c1b6200050c6000396000818161046d01526104d1015260006104400152600061040b0152600061012f0152610c1b6000f3fe608060405234801561001057600080fd5b50600436106100ba5760003560e01c806306fdde03146100bf578063095ea7b3146100dd57806318160ddd1461010057806323b872dd14610117578063313ce5671461012a5780633644e5151461016357806340c10f191461016b57806370a08231146101805780637ecebe00146101a057806395d89b41146101c05780639dc29fac146101c8578063a9059cbb146101db578063d505accf146101ee578063dd62ed3e14610201575b600080fd5b6100c761022c565b6040516100d49190610918565b60405180910390f35b6100f06100eb366004610982565b6102ba565b60405190151581526020016100d4565b61010960025481565b6040519081526020016100d4565b6100f06101253660046109ac565b610327565b6101517f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff90911681526020016100d4565b610109610407565b61017e610179366004610982565b610462565b005b61010961018e3660046109e8565b60036020526000908152604090205481565b6101096101ae3660046109e8565b60056020526000908152604090205481565b6100c76104b9565b61017e6101d6366004610982565b6104c6565b6100f06101e9366004610982565b610519565b61017e6101fc366004610a0a565b61057f565b61010961020f366004610a7d565b600460209081526000928352604080842090915290825290205481565b6000805461023990610ab0565b80601f016020809104026020016040519081016040528092919081815260200182805461026590610ab0565b80156102b25780601f10610287576101008083540402835291602001916102b2565b820191906000526020600020905b81548152906001019060200180831161029557829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103159086815260200190565b60405180910390a35060015b92915050565b6001600160a01b038316600090815260046020908152604080832033845290915281205460001981146103835761035e8382610b00565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b038516600090815260036020526040812080548592906103ab908490610b00565b90915550506001600160a01b0380851660008181526003602052604090819020805487019055519091871690600080516020610bc6833981519152906103f49087815260200190565b60405180910390a3506001949350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461461043d576104386107c2565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146104ab57604051635647fbb560e11b815260040160405180910390fd5b6104b5828261085c565b5050565b6001805461023990610ab0565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461050f57604051635647fbb560e11b815260040160405180910390fd5b6104b582826108b6565b3360009081526003602052604081208054839190839061053a908490610b00565b90915550506001600160a01b03831660008181526003602052604090819020805485019055513390600080516020610bc6833981519152906103159086815260200190565b428410156105ce5760405162461bcd60e51b815260206004820152601760248201527614115493525517d11150511312539157d1561412549151604a1b60448201526064015b60405180910390fd5b600060016105da610407565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156106e6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381161580159061071c5750876001600160a01b0316816001600160a01b0316145b6107595760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016105c5565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516107f49190610b13565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b806002600082825461086e9190610bb2565b90915550506001600160a01b038216600081815260036020908152604080832080548601905551848152600080516020610bc683398151915291015b60405180910390a35050565b6001600160a01b038216600090815260036020526040812080548392906108de908490610b00565b90915550506002805482900390556040518181526000906001600160a01b03841690600080516020610bc6833981519152906020016108aa565b600060208083528351808285015260005b8181101561094557858101830151858201604001528201610929565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461097d57600080fd5b919050565b6000806040838503121561099557600080fd5b61099e83610966565b946020939093013593505050565b6000806000606084860312156109c157600080fd5b6109ca84610966565b92506109d860208501610966565b9150604084013590509250925092565b6000602082840312156109fa57600080fd5b610a0382610966565b9392505050565b600080600080600080600060e0888a031215610a2557600080fd5b610a2e88610966565b9650610a3c60208901610966565b95506040880135945060608801359350608088013560ff81168114610a6057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610a9057600080fd5b610a9983610966565b9150610aa760208401610966565b90509250929050565b600181811c90821680610ac457607f821691505b602082108103610ae457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032157610321610aea565b600080835481600182811c915080831680610b2f57607f831692505b60208084108203610b4e57634e487b7160e01b86526022600452602486fd5b818015610b625760018114610b7757610ba4565b60ff1986168952841515850289019650610ba4565b60008a81526020902060005b86811015610b9c5781548b820152908501908301610b83565b505084890196505b509498975050505050505050565b8082018082111561032157610321610aea56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200e9e237763b087330ae63ebfd3bc2934d774bab4c059a1a2ec2474f9779e5f0864736f6c634300081100330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000046d656d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d454d4500000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ba5760003560e01c806306fdde03146100bf578063095ea7b3146100dd57806318160ddd1461010057806323b872dd14610117578063313ce5671461012a5780633644e5151461016357806340c10f191461016b57806370a08231146101805780637ecebe00146101a057806395d89b41146101c05780639dc29fac146101c8578063a9059cbb146101db578063d505accf146101ee578063dd62ed3e14610201575b600080fd5b6100c761022c565b6040516100d49190610918565b60405180910390f35b6100f06100eb366004610982565b6102ba565b60405190151581526020016100d4565b61010960025481565b6040519081526020016100d4565b6100f06101253660046109ac565b610327565b6101517f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff90911681526020016100d4565b610109610407565b61017e610179366004610982565b610462565b005b61010961018e3660046109e8565b60036020526000908152604090205481565b6101096101ae3660046109e8565b60056020526000908152604090205481565b6100c76104b9565b61017e6101d6366004610982565b6104c6565b6100f06101e9366004610982565b610519565b61017e6101fc366004610a0a565b61057f565b61010961020f366004610a7d565b600460209081526000928352604080842090915290825290205481565b6000805461023990610ab0565b80601f016020809104026020016040519081016040528092919081815260200182805461026590610ab0565b80156102b25780601f10610287576101008083540402835291602001916102b2565b820191906000526020600020905b81548152906001019060200180831161029557829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103159086815260200190565b60405180910390a35060015b92915050565b6001600160a01b038316600090815260046020908152604080832033845290915281205460001981146103835761035e8382610b00565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b038516600090815260036020526040812080548592906103ab908490610b00565b90915550506001600160a01b0380851660008181526003602052604090819020805487019055519091871690600080516020610bc6833981519152906103f49087815260200190565b60405180910390a3506001949350505050565b60007f0000000000000000000000000000000000000000000000000000000000000001461461043d576104386107c2565b905090565b507f506e5415a48e721a0783e3dd62f5127ec3a11487ce0f0e3820a7cb1f941225d090565b336001600160a01b037f0000000000000000000000003b29c19ff2fcea0ff98d0ef5b184354d74ea74b016146104ab57604051635647fbb560e11b815260040160405180910390fd5b6104b5828261085c565b5050565b6001805461023990610ab0565b336001600160a01b037f0000000000000000000000003b29c19ff2fcea0ff98d0ef5b184354d74ea74b0161461050f57604051635647fbb560e11b815260040160405180910390fd5b6104b582826108b6565b3360009081526003602052604081208054839190839061053a908490610b00565b90915550506001600160a01b03831660008181526003602052604090819020805485019055513390600080516020610bc6833981519152906103159086815260200190565b428410156105ce5760405162461bcd60e51b815260206004820152601760248201527614115493525517d11150511312539157d1561412549151604a1b60448201526064015b60405180910390fd5b600060016105da610407565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156106e6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381161580159061071c5750876001600160a01b0316816001600160a01b0316145b6107595760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016105c5565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516107f49190610b13565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b806002600082825461086e9190610bb2565b90915550506001600160a01b038216600081815260036020908152604080832080548601905551848152600080516020610bc683398151915291015b60405180910390a35050565b6001600160a01b038216600090815260036020526040812080548392906108de908490610b00565b90915550506002805482900390556040518181526000906001600160a01b03841690600080516020610bc6833981519152906020016108aa565b600060208083528351808285015260005b8181101561094557858101830151858201604001528201610929565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461097d57600080fd5b919050565b6000806040838503121561099557600080fd5b61099e83610966565b946020939093013593505050565b6000806000606084860312156109c157600080fd5b6109ca84610966565b92506109d860208501610966565b9150604084013590509250925092565b6000602082840312156109fa57600080fd5b610a0382610966565b9392505050565b600080600080600080600060e0888a031215610a2557600080fd5b610a2e88610966565b9650610a3c60208901610966565b95506040880135945060608801359350608088013560ff81168114610a6057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610a9057600080fd5b610a9983610966565b9150610aa760208401610966565b90509250929050565b600181811c90821680610ac457607f821691505b602082108103610ae457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032157610321610aea565b600080835481600182811c915080831680610b2f57607f831692505b60208084108203610b4e57634e487b7160e01b86526022600452602486fd5b818015610b625760018114610b7757610ba4565b60ff1986168952841515850289019650610ba4565b60008a81526020902060005b86811015610b9c5781548b820152908501908301610b83565b505084890196505b509498975050505050505050565b8082018082111561032157610321610aea56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200e9e237763b087330ae63ebfd3bc2934d774bab4c059a1a2ec2474f9779e5f0864736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000046d656d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d454d4500000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): meme
Arg [1] : symbol (string): MEME
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 6d656d6500000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4d454d4500000000000000000000000000000000000000000000000000000000
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.