ETH Price: $1,792.82 (+4.31%)
Gas: 23 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

GazeTV (GAZE) (@$0.0001)

Multi Chain

Multichain Addresses

1 address found via Blockscan
Transaction Hash
Method
Block
From
To
Value
Transfer168360212023-03-15 21:39:5913 days 7 hrs ago1678916399IN
GazeTV: GAZE Token
0 ETH0.0013602426.17975057
Transfer167962462023-03-10 7:24:5918 days 21 hrs ago1678433099IN
GazeTV: GAZE Token
0 ETH0.0013428425.84480955
Transfer167938322023-03-09 23:13:1119 days 5 hrs ago1678403591IN
GazeTV: GAZE Token
0 ETH0.0016414631.59210087
Transfer167827392023-03-08 9:46:2320 days 18 hrs ago1678268783IN
GazeTV: GAZE Token
0 ETH0.0006907919.80383567
Transfer167544432023-03-04 10:19:3524 days 18 hrs ago1677925175IN
GazeTV: GAZE Token
0 ETH0.0004447718.23731252
Transfer165803382023-02-08 0:00:1149 days 4 hrs ago1675814411IN
GazeTV: GAZE Token
0 ETH0.0012655436.3307627
Transfer165803382023-02-08 0:00:1149 days 4 hrs ago1675814411IN
GazeTV: GAZE Token
0 ETH0.0012655436.3307627
Transfer162684792022-12-26 10:57:4792 days 17 hrs ago1672052267IN
GazeTV: GAZE Token
0 ETH0.0006183911.90182544
Transfer162465462022-12-23 9:32:4795 days 19 hrs ago1671787967IN
GazeTV: GAZE Token
0 ETH0.0005002310.60488657
Transfer162465372022-12-23 9:30:5995 days 19 hrs ago1671787859IN
GazeTV: GAZE Token
0 ETH0.0002943710.79469029
Transfer162465112022-12-23 9:25:4795 days 19 hrs ago1671787547IN
GazeTV: GAZE Token
0 ETH0.001559130
Approve162237912022-12-20 5:23:3598 days 23 hrs ago1671513815IN
GazeTV: GAZE Token
0 ETH0.0005116311
Transfer161885182022-12-15 7:11:11103 days 21 hrs ago1671088271IN
GazeTV: GAZE Token
0 ETH0.0004077213.56445446
Transfer161882232022-12-15 6:11:59103 days 22 hrs ago1671084719IN
GazeTV: GAZE Token
0 ETH0.0007209115.28731228
Transfer161863662022-12-14 23:57:47104 days 4 hrs ago1671062267IN
GazeTV: GAZE Token
0 ETH0.0003561811.84530527
Transfer161861582022-12-14 23:15:59104 days 5 hrs ago1671059759IN
GazeTV: GAZE Token
0 ETH0.0004249412.19486182
Transfer161860462022-12-14 22:53:23104 days 5 hrs ago1671058403IN
GazeTV: GAZE Token
0 ETH0.0004419612.67891751
Transfer161860002022-12-14 22:44:11104 days 5 hrs ago1671057851IN
GazeTV: GAZE Token
0 ETH0.0007275114.00513571
Transfer161859532022-12-14 22:34:47104 days 6 hrs ago1671057287IN
GazeTV: GAZE Token
0 ETH0.0004320512.38605458
Transfer161858742022-12-14 22:18:59104 days 6 hrs ago1671056339IN
GazeTV: GAZE Token
0 ETH0.0003044912.48551429
Transfer161858692022-12-14 22:17:59104 days 6 hrs ago1671056279IN
GazeTV: GAZE Token
0 ETH0.0004101113.64417711
Transfer161858602022-12-14 22:16:11104 days 6 hrs ago1671056171IN
GazeTV: GAZE Token
0 ETH0.0007487914.41480887
Transfer161858562022-12-14 22:15:23104 days 6 hrs ago1671056123IN
GazeTV: GAZE Token
0 ETH0.0004628613.27844453
Transfer161858042022-12-14 22:04:59104 days 6 hrs ago1671055499IN
GazeTV: GAZE Token
0 ETH0.000553815.8874906
Transfer161857892022-12-14 22:01:59104 days 6 hrs ago1671055319IN
GazeTV: GAZE Token
0 ETH0.0005808716.6641667
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
gazeERC20

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: GazeERC20.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.6.1;

import "./Owned.sol";

contract gazeERC20 is Owned {
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals = 18; // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;

    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // Below are public events on the blockchain that will notify clients
	
	// This notifies clients about the tokens amount transfer between accounts 
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    
    // This notifies clients about the tokens amount approved to _spender to use on account _owner
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);

    // This notifies clients about the tokens amount burnt
    event Burn(address indexed _from, uint256 _value);
	
	// This notifies clients about the tokens amount minted
    event Mint(address indexed _to, uint256 _value);


    /**
     * Constructor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
	 *
	 * @param _initialSupply Total initial amount of tokens
     * @param _name full name of the token
	 * @param _symbol short name of the token
     */
    constructor (
        uint256 _initialSupply,
        string memory _name,
        string memory _symbol
    ) public {
		require(_initialSupply>0);
        totalSupply = _initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;                	 // Give the contract owner all initial tokens
        name = _name;  
        symbol = _symbol;
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint256 _value) internal {
		require(_from != address(0), "transfer attempt from zero address"); // Prevent transfer from 0x0 address.
        require(_to != address(0), "transfer attempt to zero address"); // Prevent transfer to 0x0 address.
        require(balanceOf[_from] >= _value, "from address balance is not enough");
        require(balanceOf[_to] + _value >= balanceOf[_to], "destination address balance overflow"); // Check for overflows
        balanceOf[_from] -= _value;
        balanceOf[_to] += _value;
        emit Transfer(_from, _to, _value);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value The amount of token minimal units (10**(-18)) to send
     */
    function transfer(address _to, uint256 _value) public returns (bool) {
        _transfer(msg.sender, _to, _value);
        return true;
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` on behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value The amount of token minimal units (10**(-18)) to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_value <= allowance[_from][msg.sender], "transfer not allowed");     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens on your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value The max amount of token minimal units (10**(-18)) it can spend
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
		require(_spender != address(0));
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of token minimal units (10**(-18)) to burn
     */
    function burnFrom(address _from, uint256 _value) public onlyOwner returns (bool) {
        require(balanceOf[_from] >= _value, "address balance is smaller, than amount to burn");
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        totalSupply -= _value;                              // Update totalSupply
        emit Burn(_from, _value);
		assert(totalSupply >= 0);
        return true;
    }
	
   /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of token minimal units (10**(-18)) to burn
     */
    function burn(uint256 _value) public onlyOwner returns (bool) {
        return burnFrom(msg.sender, _value);
    }
	
    /**
     * Create new tokens to account
	 *
	 * Create _mintAmount of new tokens to account _target
	 *
	 * @param _mintAmount the amount of token minimal units (10**(-18)) to mint
	 * @param _target the address to own new mint tokens
     *
     * Internal function, can be called from the contract and it's children contracts only
     */
	function _mintToken(address _target, uint256 _mintAmount) internal {
		require(_target != address(0), "mint attempt to zero address"); // Prevent mint to 0x0 address.
		require(totalSupply + _mintAmount > totalSupply);
        balanceOf[_target] += _mintAmount;
        totalSupply += _mintAmount;
        emit Mint(_target, _mintAmount);
    }
	
	/**
     * Create tokens to account
     *
     * Create `_mintAmount` tokens  and set them to _target account.
     *
     * @param _target the address for new tokens
     * @param _mintAmount the amount of token minimal units (10**(-18)) to create
     */
	function mintToken(address _target, uint256 _mintAmount) public onlyOwner returns (bool) {
		_mintToken(_target, _mintAmount);
		return true;
	}
	
	/**
     * Destroy contract
     *
	 * @param _beneficiary Address to send all contract's Ether balance
     */
	function destroy(address payable _beneficiary) public onlyOwner {
		require(_beneficiary != address(0), "beneficiary is zero address");
		selfdestruct(_beneficiary);
	}
	
	receive() external payable { 
		revert();
	}
}

File 2 of 2: Owned.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.6.1;

contract Owned {
	address payable internal owner;

	constructor() internal {
		owner = msg.sender;
	}

	modifier onlyOwner {
		require(msg.sender == owner);
		_;
	}

	function transferOwnership(address payable newOwner) public onlyOwner {
		owner = newOwner;
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Mint","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":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_beneficiary","type":"address"}],"name":"destroy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintToken","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":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526012600360006101000a81548160ff021916908360ff1602179055503480156200002d57600080fd5b506040516200188e3803806200188e833981810160405260608110156200005357600080fd5b8101908080519060200190929190805160405193929190846401000000008211156200007e57600080fd5b838201915060208201858111156200009557600080fd5b8251866001820283011164010000000082111715620000b357600080fd5b8083526020830192505050908051906020019080838360005b83811015620000e9578082015181840152602081019050620000cc565b50505050905090810190601f168015620001175780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200013b57600080fd5b838201915060208201858111156200015257600080fd5b82518660018202830111640100000000821117156200017057600080fd5b8083526020830192505050908051906020019080838360005b83811015620001a657808201518184015260208101905062000189565b50505050905090810190601f168015620001d45780820380516001836020036101000a031916815260200191505b50604052505050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600083116200022957600080fd5b600360009054906101000a900460ff1660ff16600a0a8302600481905550600454600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160019080519060200190620002a5929190620002c8565b508060029080519060200190620002be929190620002c8565b505050506200036e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200030b57805160ff19168380011785556200033c565b828001600101855582156200033c579182015b828111156200033b5782518255916020019190600101906200031e565b5b5090506200034b91906200034f565b5090565b5b808211156200036a57600081600090555060010162000350565b5090565b611510806200037e6000396000f3fe6080604052600436106100e05760003560e01c806370a082311161007f57806395d89b411161005957806395d89b41146104c3578063a9059cbb14610553578063dd62ed3e146105c4578063f2fde38b14610649576100ea565b806370a082311461037c57806379c65068146103e157806379cc679014610452576100ea565b806318160ddd116100bb57806318160ddd1461024157806323b872dd1461026c578063313ce567146102fd57806342966c681461032b576100ea565b8062f55d9d146100ef57806306fdde0314610140578063095ea7b3146101d0576100ea565b366100ea57600080fd5b600080fd5b3480156100fb57600080fd5b5061013e6004803603602081101561011257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061069a565b005b34801561014c57600080fd5b506101556107ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019557808201518184015260208101905061017a565b50505050905090810190601f1680156101c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101dc57600080fd5b50610229600480360360408110156101f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061084c565b60405180821515815260200191505060405180910390f35b34801561024d57600080fd5b50610256610977565b6040518082815260200191505060405180910390f35b34801561027857600080fd5b506102e56004803603606081101561028f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061097d565b60405180821515815260200191505060405180910390f35b34801561030957600080fd5b50610312610b11565b604051808260ff16815260200191505060405180910390f35b34801561033757600080fd5b506103646004803603602081101561034e57600080fd5b8101908080359060200190929190505050610b24565b60405180821515815260200191505060405180910390f35b34801561038857600080fd5b506103cb6004803603602081101561039f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b90565b6040518082815260200191505060405180910390f35b3480156103ed57600080fd5b5061043a6004803603604081101561040457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ba8565b60405180821515815260200191505060405180910390f35b34801561045e57600080fd5b506104ab6004803603604081101561047557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c17565b60405180821515815260200191505060405180910390f35b3480156104cf57600080fd5b506104d8610dcc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105185780820151818401526020810190506104fd565b50505050905090810190601f1680156105455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561055f57600080fd5b506105ac6004803603604081101561057657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e6a565b60405180821515815260200191505060405180910390f35b3480156105d057600080fd5b50610633600480360360408110156105e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e81565b6040518082815260200191505060405180910390f35b34801561065557600080fd5b506106986004803603602081101561066c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ea6565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106f257600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f62656e6566696369617279206973207a65726f2061646472657373000000000081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16ff5b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108445780601f1061081957610100808354040283529160200191610844565b820191906000526020600020905b81548152906001019060200180831161082757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561088757600080fd5b81600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60045481565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115610a71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f7472616e73666572206e6f7420616c6c6f77656400000000000000000000000081525060200191505060405180910390fd5b81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550610b06848484610f41565b600190509392505050565b600360009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7f57600080fd5b610b893383610c17565b9050919050565b60056020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c0357600080fd5b610c0d83836112df565b6001905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c7257600080fd5b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610d0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180611444602f913960400191505060405180910390fd5b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816004600082825403925050819055508273ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5836040518082815260200191505060405180910390a260006004541015610dc257fe5b6001905092915050565b60028054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e625780601f10610e3757610100808354040283529160200191610e62565b820191906000526020600020905b815481529060010190602001808311610e4557829003601f168201915b505050505081565b6000610e77338484610f41565b6001905092915050565b6006602052816000526040600020602052806000526040600020600091509150505481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610efe57600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806114b96022913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f7472616e7366657220617474656d707420746f207a65726f206164647265737381525060200191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806114976022913960400191505060405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540110156111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806114736024913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f6d696e7420617474656d707420746f207a65726f20616464726573730000000081525060200191505060405180910390fd5b60045481600454011161139457600080fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550806004600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a2505056fe616464726573732062616c616e636520697320736d616c6c65722c207468616e20616d6f756e7420746f206275726e64657374696e6174696f6e20616464726573732062616c616e6365206f766572666c6f7766726f6d20616464726573732062616c616e6365206973206e6f7420656e6f7567687472616e7366657220617474656d70742066726f6d207a65726f2061646472657373a264697066735822122036bf66f3b547870b414a690b8bd80e07b8f0240d32d3da5ca5737661a1bc65fb64736f6c634300060c0033000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000647617a6554560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447415a4500000000000000000000000000000000000000000000000000000000

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

000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000647617a6554560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447415a4500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 1000000000
Arg [1] : _name (string): GazeTV
Arg [2] : _symbol (string): GAZE

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 47617a6554560000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 47415a4500000000000000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

88:6422:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6496:8;;;88:6422;;;;6292:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;159:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3804:239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;309:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3205:307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;209:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4961:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;342:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6031:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4322:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;183:20;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2760:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;393:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;248:96:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6292:168:0;226:5:1;;;;;;;;;;212:19;;:10;:19;;;204:28;;;;;;6392:1:0::1;6368:26;;:12;:26;;;;6360:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;6443:12;6430:26;;;159:18:::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3804:239::-;3871:4;3909:1;3889:22;;:8;:22;;;;3881:31;;;;;;3956:6;3922:9;:21;3932:10;3922:21;;;;;;;;;;;;;;;:31;3944:8;3922:31;;;;;;;;;;;;;;;:40;;;;3998:8;3977:38;;3986:10;3977:38;;;4008:6;3977:38;;;;;;;;;;;;;;;;;;4032:4;4025:11;;3804:239;;;;:::o;309:26::-;;;;:::o;3205:307::-;3287:4;3321:9;:16;3331:5;3321:16;;;;;;;;;;;;;;;:28;3338:10;3321:28;;;;;;;;;;;;;;;;3311:6;:38;;3303:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3439:6;3407:9;:16;3417:5;3407:16;;;;;;;;;;;;;;;:28;3424:10;3407:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;3455:29;3465:5;3472:3;3477:6;3455:9;:29::i;:::-;3501:4;3494:11;;3205:307;;;;;:::o;209:26::-;;;;;;;;;;;;;:::o;4961:114::-;5017:4;226:5:1;;;;;;;;;;;212:19;;:10;:19;;;204:28;;;;;;5040::0::1;5049:10;5061:6;5040:8;:28::i;:::-;5033:35;;4961:114:::0;;;:::o;342:45::-;;;;;;;;;;;;;;;;;:::o;6031:144::-;6114:4;226:5:1;;;;;;;;;;;212:19;;:10;:19;;;204:28;;;;;;6124:32:0::1;6135:7;6144:11;6124:10;:32::i;:::-;6167:4;6160:11;;6031:144:::0;;;;:::o;4322:447::-;4397:4;226:5:1;;;;;;;;;;;212:19;;:10;:19;;;204:28;;;;;;4441:6:0::1;4421:9;:16;4431:5;4421:16;;;;;;;;;;;;;;;;:26;;4413:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4529:6;4509:9;:16;4519:5;4509:16;;;;;;;;;;;;;;;;:26;;;;;;;;;;;4622:6;4607:11;;:21;;;;;;;;;;;4699:5;4694:19;;;4706:6;4694:19;;;;;;;;;;;;;;;;;;4739:1;4724:11;;:16;;4717:24;;;;4758:4;4751:11;;4322:447:::0;;;;:::o;183:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2760:141::-;2823:4;2839:34;2849:10;2861:3;2866:6;2839:9;:34::i;:::-;2890:4;2883:11;;2760:141;;;;:::o;393:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;248:96:1:-;226:5;;;;;;;;;;212:19;;:10;:19;;;204:28;;;;;;331:8:::1;323:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;248:96:::0;:::o;1910:614:0:-;2011:1;1994:19;;:5;:19;;;;1986:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2123:1;2108:17;;:3;:17;;;;2100:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2236:6;2216:9;:16;2226:5;2216:16;;;;;;;;;;;;;;;;:26;;2208:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2326:9;:14;2336:3;2326:14;;;;;;;;;;;;;;;;2316:6;2299:9;:14;2309:3;2299:14;;;;;;;;;;;;;;;;:23;:41;;2291:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2434:6;2414:9;:16;2424:5;2414:16;;;;;;;;;;;;;;;;:26;;;;;;;;;;;2468:6;2450:9;:14;2460:3;2450:14;;;;;;;;;;;;;;;;:24;;;;;;;;;;;2505:3;2489:28;;2498:5;2489:28;;;2510:6;2489:28;;;;;;;;;;;;;;;;;;1910:614;;;:::o;5424:344::-;5522:1;5503:21;;:7;:21;;;;5495:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5629:11;;5615;5601;;:25;:39;5593:48;;;;;;5673:11;5651:9;:18;5661:7;5651:18;;;;;;;;;;;;;;;;:33;;;;;;;;;;;5709:11;5694;;:26;;;;;;;;;;;5740:7;5735:26;;;5749:11;5735:26;;;;;;;;;;;;;;;;;;5424:344;;:::o

Swarm Source

ipfs://36bf66f3b547870b414a690b8bd80e07b8f0240d32d3da5ca5737661a1bc65fb

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

GazeTV is a social entertainment platform with built-in tokenomic incentives and reward functions. GAZE tokenized ecosystem empowers creators and audience to interact, support and grow together.

Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.

Validator Index Block Amount
View All Withdrawals
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.