ETH Price: $2,536.73 (-3.39%)
Gas: 1 Gwei

Contract

0xCf4487de7fDa8E852DAB5820BC74746211d73E92
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer129434232021-08-02 2:50:341105 days ago1627872634IN
0xCf4487de...211d73E92
0 ETH0.0007531638
Transfer97143182020-03-21 9:56:581604 days ago1584784618IN
0xCf4487de...211d73E92
0 ETH0.000311918.10000025
Transfer93263402020-01-21 17:56:401664 days ago1579629400IN
0xCf4487de...211d73E92
0 ETH0.0023119260.00000204
Transfer92771352020-01-14 4:59:481671 days ago1578977988IN
0xCf4487de...211d73E92
0 ETH0.0007701620
Transfer92646862020-01-12 7:10:121673 days ago1578813012IN
0xCf4487de...211d73E92
0 ETH0.0007701620
Transfer92641252020-01-12 5:08:081673 days ago1578805688IN
0xCf4487de...211d73E92
0 ETH0.001070420
Transfer91309742019-12-19 14:09:531697 days ago1576764593IN
0xCf4487de...211d73E92
0 ETH0.000192545
Transfer91263122019-12-18 15:53:321698 days ago1576684412IN
0xCf4487de...211d73E92
0 ETH0.0007701620
Transfer91262712019-12-18 15:43:381698 days ago1576683818IN
0xCf4487de...211d73E92
0 ETH0.0010699220
Transfer90602042019-12-06 11:20:391710 days ago1575631239IN
0xCf4487de...211d73E92
0 ETH0.0010434420
Transfer90128562019-11-28 1:19:301719 days ago1574903970IN
0xCf4487de...211d73E92
0 ETH0.000193955.22686566
Transfer83539852019-08-15 8:14:321823 days ago1565856872IN
0xCf4487de...211d73E92
0 ETH0.000185865
Transfer82301692019-07-27 3:14:191842 days ago1564197259IN
0xCf4487de...211d73E92
0 ETH0.000260865
Transfer76877072019-05-03 11:15:161927 days ago1556882116IN
0xCf4487de...211d73E92
0 ETH0.0004421620
Transfer76735062019-05-01 6:10:571929 days ago1556691057IN
0xCf4487de...211d73E92
0 ETH0.000099774.5
Transfer76734412019-05-01 5:57:381929 days ago1556690258IN
0xCf4487de...211d73E92
0 ETH0.000228994.4
Transfer76602472019-04-29 4:35:211931 days ago1556512521IN
0xCf4487de...211d73E92
0 ETH0.0007434420
Transfer76602402019-04-29 4:33:521931 days ago1556512432IN
0xCf4487de...211d73E92
0 ETH0.000313036
Transfer74445482019-03-26 13:42:521965 days ago1553607772IN
0xCf4487de...211d73E92
0 ETH0.0004836220
Transfer74428922019-03-26 7:20:581965 days ago1553584858IN
0xCf4487de...211d73E92
0 ETH0.00074620
Transfer73856542019-03-17 9:23:561974 days ago1552814636IN
0xCf4487de...211d73E92
0 ETH0.0004434420
Transfer73802512019-03-16 13:10:161975 days ago1552741816IN
0xCf4487de...211d73E92
0 ETH0.000185545
Transfer73775082019-03-16 2:55:361975 days ago1552704936IN
0xCf4487de...211d73E92
0 ETH0.000185545
Transfer73714522019-03-15 4:27:291976 days ago1552624049IN
0xCf4487de...211d73E92
0 ETH0.0004447220
Transfer73608172019-03-13 12:52:471978 days ago1552481567IN
0xCf4487de...211d73E92
0 ETH0.000052231
View all transactions

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MVPToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-06-14
*/

pragma solidity ^0.4.16;

contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

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

}


contract TokenERC20 {
    // 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;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function TokenERC20(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) public {
        totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }


}


contract MVPToken is owned, TokenERC20 {

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function MVPToken(
    ) TokenERC20(10000000000, "Media Value Pact Token", "MVPT") public {}

    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require (balanceOf[_from] >= _value);               // Check if the sender has enough
        require (balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        Transfer(_from, _to, _value);
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526012600360006101000a81548160ff021916908360ff16021790555034801561002c57600080fd5b506402540be4006040805190810160405280601681526020017f4d656469612056616c7565205061637420546f6b656e000000000000000000008152506040805190810160405280600481526020017f4d56505400000000000000000000000000000000000000000000000000000000815250336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900460ff1660ff16600a0a8302600481905550600454600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160019080519060200190610159929190610179565b508060029080519060200190610170929190610179565b5050505061021e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106101ba57805160ff19168380011785556101e8565b828001600101855582156101e8579182015b828111156101e75782518255916020019190600101906101cc565b5b5090506101f591906101f9565b5090565b61021b91905b808211156102175760008160009055506001016101ff565b5090565b90565b6106d28061022d6000396000f300608060405260043610610083576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde031461008857806318160ddd14610118578063313ce5671461014357806370a08231146101745780638da5cb5b146101cb57806395d89b4114610222578063a9059cbb146102b2575b600080fd5b34801561009457600080fd5b5061009d6102ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100dd5780820151818401526020810190506100c2565b50505050905090810190601f16801561010a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561012457600080fd5b5061012d61039d565b6040518082815260200191505060405180910390f35b34801561014f57600080fd5b506101586103a3565b604051808260ff1660ff16815260200191505060405180910390f35b34801561018057600080fd5b506101b5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506103b6565b6040518082815260200191505060405180910390f35b3480156101d757600080fd5b506101e06103ce565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561022e57600080fd5b506102376103f3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027757808201518184015260208101905061025c565b50505050905090810190601f1680156102a45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102be57600080fd5b506102fd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610491565b005b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b505050505081565b60045481565b600360009054906101000a900460ff1681565b60056020528060005260406000206000915090505481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104895780601f1061045e57610100808354040283529160200191610489565b820191906000526020600020905b81548152906001019060200180831161046c57829003601f168201915b505050505081565b61049c3383836104a0565b5050565b60008273ffffffffffffffffffffffffffffffffffffffff16141515156104c657600080fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561051457600080fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054011115156105a257600080fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505600a165627a7a723058206f84f5f53b7ec2d7ed9c24f34801dfe1fc3939ba8169c24475cb62c68a0f0d2a0029

Deployed Bytecode

0x608060405260043610610083576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde031461008857806318160ddd14610118578063313ce5671461014357806370a08231146101745780638da5cb5b146101cb57806395d89b4114610222578063a9059cbb146102b2575b600080fd5b34801561009457600080fd5b5061009d6102ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100dd5780820151818401526020810190506100c2565b50505050905090810190601f16801561010a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561012457600080fd5b5061012d61039d565b6040518082815260200191505060405180910390f35b34801561014f57600080fd5b506101586103a3565b604051808260ff1660ff16815260200191505060405180910390f35b34801561018057600080fd5b506101b5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506103b6565b6040518082815260200191505060405180910390f35b3480156101d757600080fd5b506101e06103ce565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561022e57600080fd5b506102376103f3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027757808201518184015260208101905061025c565b50505050905090810190601f1680156102a45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102be57600080fd5b506102fd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610491565b005b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b505050505081565b60045481565b600360009054906101000a900460ff1681565b60056020528060005260406000206000915090505481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104895780601f1061045e57610100808354040283529160200191610489565b820191906000526020600020905b81548152906001019060200180831161046c57829003601f168201915b505050505081565b61049c3383836104a0565b5050565b60008273ffffffffffffffffffffffffffffffffffffffff16141515156104c657600080fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561051457600080fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054011115156105a257600080fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505600a165627a7a723058206f84f5f53b7ec2d7ed9c24f34801dfe1fc3939ba8169c24475cb62c68a0f0d2a0029

Swarm Source

bzzr://6f84f5f53b7ec2d7ed9c24f34801dfe1fc3939ba8169c24475cb62c68a0f0d2a

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.