ETH Price: $2,394.27 (-2.14%)

Token

FOMO World (FOMO)
 

Overview

Max Total Supply

19,344,049,071,800,852,369,389 FOMO

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
0 FOMO

Value
$0.00
0x412b157d242b4a23c3072b66b0dbf113223fd0d5
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FOMOToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 50000 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-04
*/

pragma solidity 0.6.12;


/**
 *Submitted for verification at Etherscan.io on 2020-09-25
*/
library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;}

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");}

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;}

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {return 0;}
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;}

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");}

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;}

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");}

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;}
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this;
        return msg.data;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract Mintable {

    address public STAKERADDRESS;

    modifier onlyStaker() {
        require(msg.sender == STAKERADDRESS, "Caller is not Staker");
        _;
    }
}

interface Uniswap {
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts);
    function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function WETH() external pure returns (address);
}

contract FOMOToken is Context, IERC20, Mintable {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (address _STAKERADDRESS) public {
        STAKERADDRESS = _STAKERADDRESS;
        _name = "FOMO World";
        _symbol = "FOMO";
        _decimals = 18;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    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");
        require(amount != 0, "ERC20: transfer amount was 0");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    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);
    }

    function mint(address account, uint256 amount) public onlyStaker{
        _mint(account, amount);
    }

    bool createUniswapAlreadyCalled = false;

    function createUniswap() public payable{
        require(!createUniswapAlreadyCalled);
        createUniswapAlreadyCalled = true;

        require(address(this).balance > 0);
        uint toMint = address(this).balance*5;
        _mint(address(this), toMint);

        address UNIROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        _allowances[address(this)][UNIROUTER] = toMint;
        Uniswap(UNIROUTER).addLiquidityETH{ value: address(this).balance }(address(this), toMint, 1, 1, address(this), 33136721748);
    }

    receive() external payable {
        createUniswap();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_STAKERADDRESS","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"STAKERADDRESS","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":"createUniswap","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"account","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":[],"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"},{"stateMutability":"payable","type":"receive"}]

60806040526006805461ff00191690553480156200001c57600080fd5b506040516200123238038062001232833981810160405260208110156200004257600080fd5b5051600080546001600160a01b0319166001600160a01b03831617905560408051808201909152600a808252691193d353c815dbdc9b1960b21b60209092019182526200009291600491620000d5565b5060408051808201909152600480825263464f4d4f60e01b6020909201918252620000c091600591620000d5565b50506006805460ff1916601217905562000171565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011857805160ff191683800117855562000148565b8280016001018555821562000148579182015b82811115620001485782518255916020019190600101906200012b565b50620001569291506200015a565b5090565b5b808211156200015657600081556001016200015b565b6110b180620001816000396000f3fe6080604052600436106100e15760003560e01c806370a082311161007f578063a9059cbb11610059578063a9059cbb146103a2578063ab6ac11a146103e8578063bbf5fb3a146103f0578063dd62ed3e1461042e576100f0565b806370a082311461030757806395d89b4114610347578063a457c2d71461035c576100f0565b806323b872dd116100bb57806323b872dd14610200578063313ce56714610250578063395093511461027b57806340c10f19146102c1576100f0565b806306fdde03146100f5578063095ea7b31461017f57806318160ddd146101d9576100f0565b366100f0576100ee610476565b005b600080fd5b34801561010157600080fd5b5061010a6105b5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101c5600480360360408110156101a257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610669565b604080519115158252519081900360200190f35b3480156101e557600080fd5b506101ee610686565b60408051918252519081900360200190f35b34801561020c57600080fd5b506101c56004803603606081101561022357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561068c565b34801561025c57600080fd5b5061026561072d565b6040805160ff9092168252519081900360200190f35b34801561028757600080fd5b506101c56004803603604081101561029e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610736565b3480156102cd57600080fd5b506100ee600480360360408110156102e457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610791565b34801561031357600080fd5b506101ee6004803603602081101561032a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610825565b34801561035357600080fd5b5061010a61084d565b34801561036857600080fd5b506101c56004803603604081101561037f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108cc565b3480156103ae57600080fd5b506101c5600480360360408110156103c557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610941565b6100ee610476565b3480156103fc57600080fd5b50610405610955565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561043a57600080fd5b506101ee6004803603604081101561045157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610971565b600654610100900460ff161561048b57600080fd5b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055476104c157600080fd5b600547026104cf30826109a9565b306000818152600260209081526040808320737a250d5630b4cf539739df2c5dacb4c659f2488d80855292529182902084905581517ff305d7190000000000000000000000000000000000000000000000000000000081526004810184905260248101859052600160448201819052606482015260848101939093526407b71a3f5460a484015290519091829163f305d71991479160c480830192606092919082900301818588803b15801561058457600080fd5b505af1158015610598573d6000803e3d6000fd5b50505050506040513d60608110156105af57600080fd5b50505050565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b600061067d610676610ad0565b8484610ad4565b50600192915050565b60035490565b6000610699848484610c1b565b610723846106a5610ad0565b61071e85604051806060016040528060288152602001610fe66028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600260205260408120906106f0610ad0565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190610e4e565b610ad4565b5060019392505050565b60065460ff1690565b600061067d610743610ad0565b8461071e8560026000610754610ad0565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490610eff565b60005473ffffffffffffffffffffffffffffffffffffffff16331461081757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f43616c6c6572206973206e6f74205374616b6572000000000000000000000000604482015290519081900360640190fd5b61082182826109a9565b5050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b60058054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b600061067d6108d9610ad0565b8461071e856040518060600160405280602581526020016110576025913960026000610903610ad0565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190610e4e565b600061067d61094e610ad0565b8484610c1b565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff8216610a2b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610a389082610eff565b60035573ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610a6b9082610eff565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610b40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806110336024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610f9e6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610c87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061100e6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610f7b6023913960400191505060405180910390fd5b80610d5f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f45524332303a207472616e7366657220616d6f756e7420776173203000000000604482015290519081900360640190fd5b610da981604051806060016040528060268152602001610fc06026913973ffffffffffffffffffffffffffffffffffffffff86166000908152600160205260409020549190610e4e565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600160205260408082209390935590841681522054610de59082610eff565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ebc578181015183820152602001610ea4565b50505050905090810190601f168015610ee95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610f7357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220047a49fe155910223e9c8a1d67614531e76ebc8a3fe94d1c3ae976813d75a67f64736f6c634300060c00330000000000000000000000002fd590f224a60c8941f66f6edc5b555cde80a76e

Deployed Bytecode

0x6080604052600436106100e15760003560e01c806370a082311161007f578063a9059cbb11610059578063a9059cbb146103a2578063ab6ac11a146103e8578063bbf5fb3a146103f0578063dd62ed3e1461042e576100f0565b806370a082311461030757806395d89b4114610347578063a457c2d71461035c576100f0565b806323b872dd116100bb57806323b872dd14610200578063313ce56714610250578063395093511461027b57806340c10f19146102c1576100f0565b806306fdde03146100f5578063095ea7b31461017f57806318160ddd146101d9576100f0565b366100f0576100ee610476565b005b600080fd5b34801561010157600080fd5b5061010a6105b5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101c5600480360360408110156101a257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610669565b604080519115158252519081900360200190f35b3480156101e557600080fd5b506101ee610686565b60408051918252519081900360200190f35b34801561020c57600080fd5b506101c56004803603606081101561022357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561068c565b34801561025c57600080fd5b5061026561072d565b6040805160ff9092168252519081900360200190f35b34801561028757600080fd5b506101c56004803603604081101561029e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610736565b3480156102cd57600080fd5b506100ee600480360360408110156102e457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610791565b34801561031357600080fd5b506101ee6004803603602081101561032a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610825565b34801561035357600080fd5b5061010a61084d565b34801561036857600080fd5b506101c56004803603604081101561037f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108cc565b3480156103ae57600080fd5b506101c5600480360360408110156103c557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610941565b6100ee610476565b3480156103fc57600080fd5b50610405610955565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561043a57600080fd5b506101ee6004803603604081101561045157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610971565b600654610100900460ff161561048b57600080fd5b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055476104c157600080fd5b600547026104cf30826109a9565b306000818152600260209081526040808320737a250d5630b4cf539739df2c5dacb4c659f2488d80855292529182902084905581517ff305d7190000000000000000000000000000000000000000000000000000000081526004810184905260248101859052600160448201819052606482015260848101939093526407b71a3f5460a484015290519091829163f305d71991479160c480830192606092919082900301818588803b15801561058457600080fd5b505af1158015610598573d6000803e3d6000fd5b50505050506040513d60608110156105af57600080fd5b50505050565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b600061067d610676610ad0565b8484610ad4565b50600192915050565b60035490565b6000610699848484610c1b565b610723846106a5610ad0565b61071e85604051806060016040528060288152602001610fe66028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600260205260408120906106f0610ad0565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190610e4e565b610ad4565b5060019392505050565b60065460ff1690565b600061067d610743610ad0565b8461071e8560026000610754610ad0565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490610eff565b60005473ffffffffffffffffffffffffffffffffffffffff16331461081757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f43616c6c6572206973206e6f74205374616b6572000000000000000000000000604482015290519081900360640190fd5b61082182826109a9565b5050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b60058054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b600061067d6108d9610ad0565b8461071e856040518060600160405280602581526020016110576025913960026000610903610ad0565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190610e4e565b600061067d61094e610ad0565b8484610c1b565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff8216610a2b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610a389082610eff565b60035573ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610a6b9082610eff565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610b40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806110336024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610f9e6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610c87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061100e6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610f7b6023913960400191505060405180910390fd5b80610d5f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f45524332303a207472616e7366657220616d6f756e7420776173203000000000604482015290519081900360640190fd5b610da981604051806060016040528060268152602001610fc06026913973ffffffffffffffffffffffffffffffffffffffff86166000908152600160205260409020549190610e4e565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600160205260408082209390935590841681522054610de59082610eff565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ebc578181015183820152602001610ea4565b50505050905090810190601f168015610ee95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610f7357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220047a49fe155910223e9c8a1d67614531e76ebc8a3fe94d1c3ae976813d75a67f64736f6c634300060c0033

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

0000000000000000000000002fd590f224a60c8941f66f6edc5b555cde80a76e

-----Decoded View---------------
Arg [0] : _STAKERADDRESS (address): 0x2Fd590f224a60c8941f66f6EdC5b555CdE80a76e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002fd590f224a60c8941f66f6edc5b555cde80a76e


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.