Contract Overview
Balance:
0 CRO
CRO Value:
$0.00
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x2059b49a9415a08b7555bb66512433f1566f3572d1c02083db2ade35ebdd851b | Approve | 7438859 | 3 days 12 hrs ago | 0xfbe41ae97df5ae3c7bcf2feab5364f1f29122844 | IN | 0xa54b4cbe3f8ca0e49c0ed2e19ab6aaa8849026b5 | 0 CRO | 0.139503053401 | |
0xce5a38a453c4e49c261fe09f1fe51b995a055038770807fd2f5e055c646fdd48 | Approve | 7438837 | 3 days 13 hrs ago | 0xfbe41ae97df5ae3c7bcf2feab5364f1f29122844 | IN | 0xa54b4cbe3f8ca0e49c0ed2e19ab6aaa8849026b5 | 0 CRO | 0.221267274108 | |
0x22b5f355831a0eb7f7d285a8ccf58428ba83e168a6d228f1d666ac8e8412090c | Approve | 7438825 | 3 days 13 hrs ago | 0xfbe41ae97df5ae3c7bcf2feab5364f1f29122844 | IN | 0xa54b4cbe3f8ca0e49c0ed2e19ab6aaa8849026b5 | 0 CRO | 0.221267299355 | |
0x9192862cd3561ead180dfc49cc04954357ebfdd557cbef0e65aec261682e2825 | 0x60806040 | 7438615 | 3 days 13 hrs ago | 0xfbe41ae97df5ae3c7bcf2feab5364f1f29122844 | IN | Create: Test | 0 CRO | 5.000776362486 |
[ Download CSV Export ]
Contract Name:
Test
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2023-03-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.12; /** * @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 ); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /* * @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; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() public { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require( _previousOwner == msg.sender, "You don't have permission to unlock" ); require(block.timestamp > _lockTime, "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } contract Test is Context, IERC20, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; bool public generatedUsingDxMint = true; uint256 private _totalSupply; bool public mintingFinishedPermanent = false; string private _name; string private _symbol; uint8 private _decimals; address public _creator; /** * @dev Sets the values for {name}, {symbol} and {decimals}. * * * All two of these values are immutable: they can only be set once during * construction. */ constructor( address creator_, string memory name_, string memory symbol_, uint8 decimals_, uint256 tokenSupply_ ) public { _name = name_; _symbol = symbol_; _decimals = decimals_; _creator = creator_; _mint(_creator, tokenSupply_); mintingFinishedPermanent = true; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 * overridden; * * 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 override returns (uint8) { return _decimals; } /** * @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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(!mintingFinishedPermanent, "cant be minted anymore!"); 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 {} }
[{"inputs":[{"internalType":"address","name":"creator_","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"tokenSupply_","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"_creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":[{"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":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generatedUsingDxMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinishedPermanent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526005805460ff199081166001179091556007805490911690553480156200002a57600080fd5b50604051620012bf380380620012bf833981810160405260a08110156200005057600080fd5b8151602083018051604051929492938301929190846401000000008211156200007857600080fd5b9083019060208201858111156200008e57600080fd5b8251640100000000811182820188101715620000a957600080fd5b82525081516020918201929091019080838360005b83811015620000d8578181015183820152602001620000be565b50505050905090810190601f168015620001065780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012a57600080fd5b9083019060208201858111156200014057600080fd5b82516401000000008111828201881017156200015b57600080fd5b82525081516020918201929091019080838360005b838110156200018a57818101518382015260200162000170565b50505050905090810190601f168015620001b85780820380516001836020036101000a031916815260200191505b506040908152602082015191015190925090506000620001d7620002a4565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350835162000236906008906020870190620003cf565b5082516200024c906009906020860190620003cf565b50600a805460ff191660ff841617610100600160a81b0319166101006001600160a01b03888116820292909217928390556200028b92041682620002a8565b50506007805460ff19166001179055506200046b915050565b3390565b60075460ff161562000301576040805162461bcd60e51b815260206004820152601760248201527f63616e74206265206d696e74656420616e796d6f726521000000000000000000604482015290519081900360640190fd5b6001600160a01b0382166200035d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200036b60008383620003ca565b60068054820190556001600160a01b0382166000818152600360209081526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041257805160ff191683800117855562000442565b8280016001018555821562000442579182015b828111156200044257825182559160200191906001019062000425565b506200045092915062000454565b5090565b5b8082111562000450576000815560010162000455565b610e44806200047b6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063bc8bde6411610071578063bc8bde6414610354578063dd4670641461035c578063dd62ed3e14610379578063f2fde38b146103a7578063f5eae936146103cd5761012c565b806395d89b41146102e4578063a457c2d7146102ec578063a69df4b514610318578063a9059cbb14610320578063b6c523241461034c5761012c565b806339509351116100f4578063395093511461025c57806370a0823114610288578063715018a6146102ae578063787b1191146102b85780638da5cb5b146102c05761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b6101396103d5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561046b565b604080519115158252519081900360200190f35b6101f6610488565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b0381358116916020810135909116906040013561048e565b61024661053d565b6040805160ff9092168252519081900360200190f35b6101da6004803603604081101561027257600080fd5b506001600160a01b038135169060200135610546565b6101f66004803603602081101561029e57600080fd5b50356001600160a01b0316610591565b6102b66105ac565b005b6101da61064e565b6102c8610657565b604080516001600160a01b039092168252519081900360200190f35b610139610666565b6101da6004803603604081101561030257600080fd5b506001600160a01b0381351690602001356106c7565b6102b661075f565b6101da6004803603604081101561033657600080fd5b506001600160a01b03813516906020013561084d565b6101f6610861565b6102c8610867565b6102b66004803603602081101561037257600080fd5b503561087b565b6101f66004803603604081101561038f57600080fd5b506001600160a01b038135811691602001351661092b565b6102b6600480360360208110156103bd57600080fd5b50356001600160a01b0316610956565b6101da610a4e565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104615780601f1061043657610100808354040283529160200191610461565b820191906000526020600020905b81548152906001019060200180831161044457829003601f168201915b5050505050905090565b600061047f610478610a57565b8484610a5b565b50600192915050565b60065490565b600061049b848484610b47565b6001600160a01b0384166000908152600460205260408120816104bc610a57565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561051e5760405162461bcd60e51b8152600401808060200182810382526028815260200180610d366028913960400191505060405180910390fd5b6105328561052a610a57565b858403610a5b565b506001949350505050565b600a5460ff1690565b600061047f610553610a57565b848460046000610561610a57565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205401610a5b565b6001600160a01b031660009081526003602052604090205490565b6105b4610a57565b6000546001600160a01b03908116911614610616576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020610d5e833981519152908390a3600080546001600160a01b0319169055565b60055460ff1681565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104615780601f1061043657610100808354040283529160200191610461565b600080600460006106d6610a57565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107415760405162461bcd60e51b8152600401808060200182810382526025815260200180610dea6025913960400191505060405180910390fd5b61075561074c610a57565b85858403610a5b565b5060019392505050565b6001546001600160a01b031633146107a85760405162461bcd60e51b8152600401808060200182810382526023815260200180610dc76023913960400191505060405180910390fd5b60025442116107fe576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020610d5e83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061047f61085a610a57565b8484610b47565b60025490565b600a5461010090046001600160a01b031681565b610883610a57565b6000546001600160a01b039081169116146108e5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020610d5e833981519152908290a350565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b61095e610a57565b6000546001600160a01b039081169116146109c0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610a055760405162461bcd60e51b8152600401808060200182810382526026815260200180610cc86026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020610d5e83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60075460ff1681565b3390565b6001600160a01b038316610aa05760405162461bcd60e51b8152600401808060200182810382526024815260200180610da36024913960400191505060405180910390fd5b6001600160a01b038216610ae55760405162461bcd60e51b8152600401808060200182810382526022815260200180610cee6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b8c5760405162461bcd60e51b8152600401808060200182810382526025815260200180610d7e6025913960400191505060405180910390fd5b6001600160a01b038216610bd15760405162461bcd60e51b8152600401808060200182810382526023815260200180610ca56023913960400191505060405180910390fd5b610bdc838383610c9f565b6001600160a01b03831660009081526003602052604090205481811015610c345760405162461bcd60e51b8152600401808060200182810382526026815260200180610d106026913960400191505060405180910390fd5b6001600160a01b0380851660008181526003602090815260408083208787039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d2d482102f874648af524066014e0c23cd5363bb41e208f6e0278560b62dac9864736f6c634300060c0033000000000000000000000000fbe41ae97df5ae3c7bcf2feab5364f1f2912284400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000000000000000000000006546573742033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045453543300000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fbe41ae97df5ae3c7bcf2feab5364f1f2912284400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000000000000000000000006546573742033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045453543300000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : creator_ (address): 0xfbe41ae97df5ae3c7bcf2feab5364f1f29122844
Arg [1] : name_ (string): Test 3
Arg [2] : symbol_ (string): TST3
Arg [3] : decimals_ (uint8): 18
Arg [4] : tokenSupply_ (uint256): 100000000000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000fbe41ae97df5ae3c7bcf2feab5364f1f29122844
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 5465737420330000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 5453543300000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
12872:10486:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13965:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16280:210;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16280:210:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15092:108;;;:::i;:::-;;;;;;;;;;;;;;;;16972:493;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16972:493:0;;;;;;;;;;;;;;;;;:::i;14927:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17874:297;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17874:297:0;;;;;;;;:::i;15263:177::-;;;;;;;;;;;;;;;;-1:-1:-1;15263:177:0;-1:-1:-1;;;;;15263:177:0;;:::i;11469:148::-;;;:::i;:::-;;13065:39;;;:::i;10827:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;10827:79:0;;;;;;;;;;;;;;14184:104;;;:::i;18674:446::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18674:446:0;;;;;;;;:::i;12524:341::-;;;:::i;15653:216::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15653:216:0;;;;;;;;:::i;12061:89::-;;;:::i;13283:23::-;;;:::i;12226:226::-;;;;;;;;;;;;;;;;-1:-1:-1;12226:226:0;;:::i;15932:201::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15932:201:0;;;;;;;;;;:::i;11772:281::-;;;;;;;;;;;;;;;;-1:-1:-1;11772:281:0;-1:-1:-1;;;;;11772:281:0;;:::i;13146:44::-;;;:::i;13965:100::-;14052:5;14045:12;;;;;;;;-1:-1:-1;;14045:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14019:13;;14045:12;;14052:5;;14045:12;;14052:5;14045:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13965:100;:::o;16280:210::-;16399:4;16421:39;16430:12;:10;:12::i;:::-;16444:7;16453:6;16421:8;:39::i;:::-;-1:-1:-1;16478:4:0;16280:210;;;;:::o;15092:108::-;15180:12;;15092:108;:::o;16972:493::-;17112:4;17129:36;17139:6;17147:9;17158:6;17129:9;:36::i;:::-;-1:-1:-1;;;;;17205:19:0;;17178:24;17205:19;;;:11;:19;;;;;17178:24;17225:12;:10;:12::i;:::-;-1:-1:-1;;;;;17205:33:0;-1:-1:-1;;;;;17205:33:0;;;;;;;;;;;;;17178:60;;17291:6;17271:16;:26;;17249:116;;;;-1:-1:-1;;;17249:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17376:57;17385:6;17393:12;:10;:12::i;:::-;17426:6;17407:16;:25;17376:8;:57::i;:::-;-1:-1:-1;17453:4:0;;16972:493;-1:-1:-1;;;;16972:493:0:o;14927:100::-;15010:9;;;;14927:100;:::o;17874:297::-;17989:4;18011:130;18034:12;:10;:12::i;:::-;18061:7;18120:10;18083:11;:25;18095:12;:10;:12::i;:::-;-1:-1:-1;;;;;18083:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18083:25:0;;;:34;;;;;;;;;;:47;18011:8;:130::i;15263:177::-;-1:-1:-1;;;;;15414:18:0;15382:7;15414:18;;;:9;:18;;;;;;;15263:177::o;11469:148::-;11049:12;:10;:12::i;:::-;11039:6;;-1:-1:-1;;;;;11039:6:0;;;:22;;;11031:67;;;;;-1:-1:-1;;;11031:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11576:1:::1;11560:6:::0;;11539:40:::1;::::0;-1:-1:-1;;;;;11560:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;11539:40:0;11576:1;;11539:40:::1;11607:1;11590:19:::0;;-1:-1:-1;;;;;;11590:19:0::1;::::0;;11469:148::o;13065:39::-;;;;;;:::o;10827:79::-;10865:7;10892:6;-1:-1:-1;;;;;10892:6:0;10827:79;:::o;14184:104::-;14273:7;14266:14;;;;;;;;-1:-1:-1;;14266:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14240:13;;14266:14;;14273:7;;14266:14;;14273:7;14266:14;;;;;;;;;;;;;;;;;;;;;;;;18674:446;18794:4;18816:24;18843:11;:25;18855:12;:10;:12::i;:::-;-1:-1:-1;;;;;18843:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18843:25:0;;;:34;;;;;;;;;;;-1:-1:-1;18910:35:0;;;;18888:122;;;;-1:-1:-1;;;18888:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19021:67;19030:12;:10;:12::i;:::-;19044:7;19072:15;19053:16;:34;19021:8;:67::i;:::-;-1:-1:-1;19108:4:0;;18674:446;-1:-1:-1;;;18674:446:0:o;12524:341::-;12590:14;;-1:-1:-1;;;;;12590:14:0;12608:10;12590:28;12568:113;;;;-1:-1:-1;;;12568:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12718:9;;12700:15;:27;12692:71;;;;;-1:-1:-1;;;12692:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12808:14;;;12800:6;;12779:44;;-1:-1:-1;;;;;12808:14:0;;;;12800:6;;;;-1:-1:-1;;;;;;;;;;;12779:44:0;;12843:14;;;12834:23;;-1:-1:-1;;;;;;12834:23:0;-1:-1:-1;;;;;12843:14:0;;;12834:23;;;;;;12524:341::o;15653:216::-;15775:4;15797:42;15807:12;:10;:12::i;:::-;15821:9;15832:6;15797:9;:42::i;12061:89::-;12133:9;;12061:89;:::o;13283:23::-;;;;;;-1:-1:-1;;;;;13283:23:0;;:::o;12226:226::-;11049:12;:10;:12::i;:::-;11039:6;;-1:-1:-1;;;;;11039:6:0;;;:22;;;11031:67;;;;;-1:-1:-1;;;11031:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12307:6:::1;::::0;;;12290:23;;-1:-1:-1;;;;;;12290:23:0;;::::1;-1:-1:-1::0;;;;;12307:6:0;::::1;12290:23;::::0;;;12324:19:::1;::::0;;12366:15:::1;:22:::0;::::1;12354:9;:34:::0;12404:40:::1;::::0;12307:6;;-1:-1:-1;;;;;;;;;;;12404:40:0;12307:6;;12404:40:::1;12226:226:::0;:::o;15932:201::-;-1:-1:-1;;;;;16098:18:0;;;16066:7;16098:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15932:201::o;11772:281::-;11049:12;:10;:12::i;:::-;11039:6;;-1:-1:-1;;;;;11039:6:0;;;:22;;;11031:67;;;;;-1:-1:-1;;;11031:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11875:22:0;::::1;11853:110;;;;-1:-1:-1::0;;;11853:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000:6;::::0;;11979:38:::1;::::0;-1:-1:-1;;;;;11979:38:0;;::::1;::::0;12000:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;11979:38:0;::::1;12028:6;:17:::0;;-1:-1:-1;;;;;;12028:17:0::1;-1:-1:-1::0;;;;;12028:17:0;;;::::1;::::0;;;::::1;::::0;;11772:281::o;13146:44::-;;;;;;:::o;3976:98::-;4056:10;3976:98;:::o;22247:380::-;-1:-1:-1;;;;;22383:19:0;;22375:68;;;;-1:-1:-1;;;22375:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22462:21:0;;22454:68;;;;-1:-1:-1;;;22454:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22535:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22587:32;;;;;;;;;;;;;;;;;22247:380;;;:::o;19610:675::-;-1:-1:-1;;;;;19750:20:0;;19742:70;;;;-1:-1:-1;;;19742:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19831:23:0;;19823:71;;;;-1:-1:-1;;;19823:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19907:47;19928:6;19936:9;19947:6;19907:20;:47::i;:::-;-1:-1:-1;;;;;19991:17:0;;19967:21;19991:17;;;:9;:17;;;;;;20041:23;;;;20019:111;;;;-1:-1:-1;;;20019:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20141:17:0;;;;;;;:9;:17;;;;;;;;20161:22;;;20141:42;;20194:20;;;;;;;;;;:30;;;;;;20242:35;;;;;;;20194:20;;20242:35;;;;;;;;;;;19610:675;;;;:::o;23230:125::-;;;;:::o
Swarm Source
ipfs://d2d482102f874648af524066014e0c23cd5363bb41e208f6e0278560b62dac98
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.