ERC-20
Cloud
Overview
Max Total Supply
10,000,000,000 CERE
Holders
6,423 ( 0.031%)
Market
Price
$0.00 @ 0.000001 ETH (+8.76%)
Onchain Market Cap
$19,436,000.00
Circulating Supply Market Cap
$12,852,976.00
Other Info
Token Contract (WITH 10 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.3+commit.8d00100c
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract Token is ERC20 { uint8 private customDecimals; uint256 public cap; constructor( string memory name, string memory symbol, uint8 _decimals, uint256 _cap, address[] memory _mintAddresses, uint256[] memory _mintAmounts ) ERC20(name, symbol) { require(_cap > 0, "Cannot have 0 total supply."); require(_mintAddresses.length == _mintAmounts.length, "must have same number of mint addresses and amounts"); customDecimals = _decimals; cap = _cap; for (uint i; i < _mintAddresses.length; i++) { require(_mintAddresses[i] != address(0), "Cannot have a non-address as reserve."); require(totalSupply() + _mintAmounts[i] <= cap, "total supply of tokens cannot exceed the cap"); _mint(_mintAddresses[i], _mintAmounts[i]); } } function burn(uint256 amount) external { _burn(msg.sender, amount); } function decimals() public view override returns (uint8) { return customDecimals; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overloaded; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "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"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_cap","type":"uint256"},{"internalType":"address[]","name":"_mintAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620013c3380380620013c383398101604081905262000034916200064b565b8551869086906200004d9060039060208501906200040d565b508051620000639060049060208401906200040d565b50505060008311620000bc5760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f742068617665203020746f74616c20737570706c792e000000000060448201526064015b60405180910390fd5b8051825114620001355760405162461bcd60e51b815260206004820152603360248201527f6d75737420686176652073616d65206e756d626572206f66206d696e7420616460448201527f6472657373657320616e6420616d6f756e7473000000000000000000000000006064820152608401620000b3565b6005805460ff191660ff8616179055600683905560005b8251811015620003155760006001600160a01b03168382815181106200018257634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03161415620001f15760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420686176652061206e6f6e2d616464726573732061732072657360448201526432b93b329760d91b6064820152608401620000b3565b6006548282815181106200021557634e487b7160e01b600052603260045260246000fd5b60200260200101516200022d6200032260201b60201c565b62000239919062000773565b11156200029e5760405162461bcd60e51b815260206004820152602c60248201527f746f74616c20737570706c79206f6620746f6b656e732063616e6e6f7420657860448201526b06365656420746865206361760a41b6064820152608401620000b3565b62000300838281518110620002c357634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110620002ec57634e487b7160e01b600052603260045260246000fd5b60200260200101516200032860201b60201c565b806200030c81620007cb565b9150506200014c565b5050505050505062000815565b60025490565b6001600160a01b038216620003805760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000b3565b806002600082825462000394919062000773565b90915550506001600160a01b03821660009081526020819052604081208054839290620003c390849062000773565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200041b906200078e565b90600052602060002090601f0160209004810192826200043f57600085556200048a565b82601f106200045a57805160ff19168380011785556200048a565b828001600101855582156200048a579182015b828111156200048a5782518255916020019190600101906200046d565b50620004989291506200049c565b5090565b5b808211156200049857600081556001016200049d565b600082601f830112620004c4578081fd5b81516020620004dd620004d7836200074d565b6200071a565b80838252828201915082860187848660051b8901011115620004fd578586fd5b855b85811015620005325781516001600160a01b03811681146200051f578788fd5b84529284019290840190600101620004ff565b5090979650505050505050565b600082601f83011262000550578081fd5b8151602062000563620004d7836200074d565b80838252828201915082860187848660051b890101111562000583578586fd5b855b85811015620005325781518452928401929084019060010162000585565b600082601f830112620005b4578081fd5b81516001600160401b03811115620005d057620005d0620007ff565b6020620005e6601f8301601f191682016200071a565b8281528582848701011115620005fa578384fd5b835b8381101562000619578581018301518282018401528201620005fc565b838111156200062a57848385840101525b5095945050505050565b805160ff811681146200064657600080fd5b919050565b60008060008060008060c0878903121562000664578182fd5b86516001600160401b03808211156200067b578384fd5b620006898a838b01620005a3565b975060208901519150808211156200069f578384fd5b620006ad8a838b01620005a3565b9650620006bd60408a0162000634565b9550606089015194506080890151915080821115620006da578384fd5b620006e88a838b01620004b3565b935060a0890151915080821115620006fe578283fd5b506200070d89828a016200053f565b9150509295509295509295565b604051601f8201601f191681016001600160401b0381118282101715620007455762000745620007ff565b604052919050565b60006001600160401b03821115620007695762000769620007ff565b5060051b60200190565b60008219821115620007895762000789620007e9565b500190565b600181811c90821680620007a357607f821691505b60208210811415620007c557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620007e257620007e2620007e9565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610b9e80620008256000396000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c8063395093511161008c57806395d89b411161006657806395d89b41146101a3578063a457c2d7146101ab578063a9059cbb146101be578063dd62ed3e146101d1576100df565b8063395093511461016857806342966c681461017b57806370a0823114610190576100df565b806323b872dd116100bd57806323b872dd14610137578063313ce5671461014a578063355274ea1461015f576100df565b806306fdde03146100e4578063095ea7b31461010257806318160ddd14610125575b600080fd5b6100ec61020a565b6040516100f99190610a95565b60405180910390f35b610115610110366004610a54565b61029c565b60405190151581526020016100f9565b6002545b6040519081526020016100f9565b610115610145366004610a19565b6102b2565b60055460405160ff90911681526020016100f9565b61012960065481565b610115610176366004610a54565b61037d565b61018e610189366004610a7d565b6103b4565b005b61012961019e3660046109c6565b6103c1565b6100ec6103e0565b6101156101b9366004610a54565b6103ef565b6101156101cc366004610a54565b6104a2565b6101296101df3660046109e7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461021990610b17565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610b17565b80156102925780601f1061026757610100808354040283529160200191610292565b820191906000526020600020905b81548152906001019060200180831161027557829003601f168201915b5050505050905090565b60006102a93384846104af565b50600192915050565b60006102bf848484610608565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561035e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610372853361036d8685610b00565b6104af565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102a991859061036d908690610ae8565b6103be3382610829565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b60606004805461021990610b17565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104895760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610355565b610498338561036d8685610b00565b5060019392505050565b60006102a9338484610608565b6001600160a01b03831661052a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b0382166105a65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b0382166107005760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b0383166000908152602081905260409020548181101561078f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610355565b6107998282610b00565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906107cf908490610ae8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161081b91815260200190565b60405180910390a350505050565b6001600160a01b0382166108a55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b038216600090815260208190526040902054818110156109345760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610355565b61093e8282610b00565b6001600160a01b0384166000908152602081905260408120919091556002805484929061096c908490610b00565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016105fb565b80356001600160a01b03811681146103db57600080fd5b6000602082840312156109d7578081fd5b6109e0826109af565b9392505050565b600080604083850312156109f9578081fd5b610a02836109af565b9150610a10602084016109af565b90509250929050565b600080600060608486031215610a2d578081fd5b610a36846109af565b9250610a44602085016109af565b9150604084013590509250925092565b60008060408385031215610a66578182fd5b610a6f836109af565b946020939093013593505050565b600060208284031215610a8e578081fd5b5035919050565b6000602080835283518082850152825b81811015610ac157858101830151858201604001528201610aa5565b81811115610ad25783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afb57610afb610b52565b500190565b600082821015610b1257610b12610b52565b500390565b600181811c90821680610b2b57607f821691505b60208210811415610b4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212205b4efebbcd217ea50a8ff42dac95171b35f012e4e523df248846db5fb4e4a95964736f6c6343000803003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000056bc75e2d63100000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000c43455245204e6574776f726b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443455245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000dfa017425c938c13ef362544d2662230cc7668eb000000000000000000000000421c655a9a40930c10ead2b479ad529342973e680000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000005692d3bebb3ad4000000000000000000000000000000000000000000000000000029a2241af62c000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100df5760003560e01c8063395093511161008c57806395d89b411161006657806395d89b41146101a3578063a457c2d7146101ab578063a9059cbb146101be578063dd62ed3e146101d1576100df565b8063395093511461016857806342966c681461017b57806370a0823114610190576100df565b806323b872dd116100bd57806323b872dd14610137578063313ce5671461014a578063355274ea1461015f576100df565b806306fdde03146100e4578063095ea7b31461010257806318160ddd14610125575b600080fd5b6100ec61020a565b6040516100f99190610a95565b60405180910390f35b610115610110366004610a54565b61029c565b60405190151581526020016100f9565b6002545b6040519081526020016100f9565b610115610145366004610a19565b6102b2565b60055460405160ff90911681526020016100f9565b61012960065481565b610115610176366004610a54565b61037d565b61018e610189366004610a7d565b6103b4565b005b61012961019e3660046109c6565b6103c1565b6100ec6103e0565b6101156101b9366004610a54565b6103ef565b6101156101cc366004610a54565b6104a2565b6101296101df3660046109e7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461021990610b17565b80601f016020809104026020016040519081016040528092919081815260200182805461024590610b17565b80156102925780601f1061026757610100808354040283529160200191610292565b820191906000526020600020905b81548152906001019060200180831161027557829003601f168201915b5050505050905090565b60006102a93384846104af565b50600192915050565b60006102bf848484610608565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561035e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610372853361036d8685610b00565b6104af565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102a991859061036d908690610ae8565b6103be3382610829565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b60606004805461021990610b17565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104895760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610355565b610498338561036d8685610b00565b5060019392505050565b60006102a9338484610608565b6001600160a01b03831661052a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b0382166105a65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b0382166107005760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b0383166000908152602081905260409020548181101561078f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610355565b6107998282610b00565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906107cf908490610ae8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161081b91815260200190565b60405180910390a350505050565b6001600160a01b0382166108a55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610355565b6001600160a01b038216600090815260208190526040902054818110156109345760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610355565b61093e8282610b00565b6001600160a01b0384166000908152602081905260408120919091556002805484929061096c908490610b00565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016105fb565b80356001600160a01b03811681146103db57600080fd5b6000602082840312156109d7578081fd5b6109e0826109af565b9392505050565b600080604083850312156109f9578081fd5b610a02836109af565b9150610a10602084016109af565b90509250929050565b600080600060608486031215610a2d578081fd5b610a36846109af565b9250610a44602085016109af565b9150604084013590509250925092565b60008060408385031215610a66578182fd5b610a6f836109af565b946020939093013593505050565b600060208284031215610a8e578081fd5b5035919050565b6000602080835283518082850152825b81811015610ac157858101830151858201604001528201610aa5565b81811115610ad25783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afb57610afb610b52565b500190565b600082821015610b1257610b12610b52565b500390565b600181811c90821680610b2b57607f821691505b60208210811415610b4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212205b4efebbcd217ea50a8ff42dac95171b35f012e4e523df248846db5fb4e4a95964736f6c63430008030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000056bc75e2d63100000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000c43455245204e6574776f726b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443455245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000dfa017425c938c13ef362544d2662230cc7668eb000000000000000000000000421c655a9a40930c10ead2b479ad529342973e680000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000005692d3bebb3ad4000000000000000000000000000000000000000000000000000029a2241af62c000
-----Decoded View---------------
Arg [0] : name (string): CERE Network
Arg [1] : symbol (string): CERE
Arg [2] : _decimals (uint8): 10
Arg [3] : _cap (uint256): 100000000000000000000
Arg [4] : _mintAddresses (address[]): 0xdFA017425c938c13ef362544D2662230cC7668eB,0x421C655a9A40930c10eaD2b479ad529342973E68
Arg [5] : _mintAmounts (uint256[]): 99812500000000000000,187500000000000000
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [7] : 43455245204e6574776f726b0000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4345524500000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [11] : 000000000000000000000000dfa017425c938c13ef362544d2662230cc7668eb
Arg [12] : 000000000000000000000000421c655a9a40930c10ead2b479ad529342973e68
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [14] : 000000000000000000000000000000000000000000000005692d3bebb3ad4000
Arg [15] : 000000000000000000000000000000000000000000000000029a2241af62c000
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.