ETH Price: $3,937.38 (+1.75%)

Contract

0xeFCAfD4A1e76d392d683d4A79cD0E4a751d0BE75
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer147902172022-05-17 3:41:43943 days ago1652758903IN
BlockChain Store: BCST Token
0 ETH0.0022986643.06067728
Transfer144601202022-03-26 6:01:47995 days ago1648274507IN
BlockChain Store: BCST Token
0 ETH0.001382328.46
Transfer142165912022-02-16 10:28:371033 days ago1645007317IN
BlockChain Store: BCST Token
0 ETH0.0026860550.35153933
Transfer123352702021-04-29 12:10:131326 days ago1619698213IN
BlockChain Store: BCST Token
0 ETH0.0037884171
Transfer108917682020-09-19 9:10:301548 days ago1600506630IN
BlockChain Store: BCST Token
0 ETH0.00504552120
Transfer108648472020-09-15 5:57:051552 days ago1600149425IN
BlockChain Store: BCST Token
0 ETH0.00670825159.5
Transfer108647542020-09-15 5:37:001552 days ago1600148220IN
BlockChain Store: BCST Token
0 ETH0.00671207159.5
Transfer108647312020-09-15 5:31:421552 days ago1600147902IN
BlockChain Store: BCST Token
0 ETH0.00910075159.5
Transfer107179202020-08-23 17:22:501575 days ago1598203370IN
BlockChain Store: BCST Token
0 ETH0.002408557.25
Transfer106900712020-08-19 10:36:051579 days ago1597833365IN
BlockChain Store: BCST Token
0 ETH0.0058138101.85
Transfer101404122020-05-26 9:05:001664 days ago1590483900IN
BlockChain Store: BCST Token
0 ETH0.0021967338.50000023
Transfer100517942020-05-12 13:58:261678 days ago1589291906IN
BlockChain Store: BCST Token
0 ETH0.0031526155.24115065
Transfer96181272020-03-06 14:09:561745 days ago1583503796IN
BlockChain Store: BCST Token
0 ETH0.0004600917.01151436
Transfer91607922019-12-25 12:51:301817 days ago1577278290IN
BlockChain Store: BCST Token
0 ETH0.00029447
Transfer91314292019-12-19 16:21:351823 days ago1576772495IN
BlockChain Store: BCST Token
0 ETH0.001682840
Transfer90469002019-12-04 2:05:121838 days ago1575425112IN
BlockChain Store: BCST Token
0 ETH0.001529239.5
Transfer90424272019-12-03 7:21:381839 days ago1575357698IN
BlockChain Store: BCST Token
0 ETH0.000118575
Transfer90388282019-12-02 15:45:221840 days ago1575301522IN
BlockChain Store: BCST Token
0 ETH0.000154556.5
Transfer90387902019-12-02 15:33:511840 days ago1575300831IN
BlockChain Store: BCST Token
0 ETH0.000154556.5
Transfer90386642019-12-02 14:59:371840 days ago1575298777IN
BlockChain Store: BCST Token
0 ETH0.000154146.5
Transfer90386622019-12-02 14:59:161840 days ago1575298756IN
BlockChain Store: BCST Token
0 ETH0.000154556.5
Transfer90293362019-11-30 23:12:261842 days ago1575155546IN
BlockChain Store: BCST Token
0 ETH0.000030821.3
Transfer90290472019-11-30 22:08:031842 days ago1575151683IN
BlockChain Store: BCST Token
0 ETH0.000030911.3
Transfer90286202019-11-30 20:25:471842 days ago1575145547IN
BlockChain Store: BCST Token
0 ETH0.000061822.6
Transfer90278602019-11-30 17:12:551842 days ago1575133975IN
BlockChain Store: BCST Token
0 ETH0.000030911.3
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:
BCSToken

Compiler Version
v0.4.21-nightly.2018.2.27+commit.415ac2ae

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.18;

// SafeMath for addition and substraction
library SafeMath {

  /**
  * @dev Adds two numbers, throws on overflow.
  */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
    c = a + b;
    assert(c >= a);
    return c;
    }

/**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
    }
  
}


interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; }

contract BCSToken {
    // Use SafeMath library for addition and substraction
    using SafeMath for uint;
    // Public variables of the token
    string public name;
    string public symbol;
    uint256 public decimals = 8;
    uint256 public totalSupply;
    address private owner;
    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

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

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constructor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function BCSToken() public {
    	name = "BlockChainStore Token";                          // Set the name for display purposes
        symbol = "BCST";                                         // and symbol
    	uint256 initialSupply = 100000000;			            // 100M	tokens
        totalSupply = initialSupply * (10 ** uint256(decimals));// 8 digits for mantissa , no safeMath needed here
        balanceOf[msg.sender] = totalSupply;                    // Give the creator all initial tokens
        owner = msg.sender;
    }

    /**
     * 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(SafeMath.add(balanceOf[_to] ,_value) >= balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = SafeMath.add(balanceOf[_from] , balanceOf[_to]);
        // Subtract from the sender
        balanceOf[_from]=SafeMath.sub(balanceOf[_from] , _value);
        // Add the same to the recipient
        balanceOf[_to]=SafeMath.add(balanceOf[_to] , _value);
        emit Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(SafeMath.add(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);
    }

    /**
     * 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 to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender]=SafeMath.sub(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 they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);                          // Check if the sender has enough
        require(owner==msg.sender);                                        // Check owner only can destroy
        balanceOf[msg.sender]=SafeMath.sub(balanceOf[msg.sender],_value);  // Subtract from the sender
        totalSupply = SafeMath.sub(totalSupply , _value);                  // Updates totalSupply
        emit Burn(msg.sender, _value);
        return true;
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"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"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

60606040526008600255341561001457600080fd5b600060408051908101604052601581527f426c6f636b436861696e53746f726520546f6b656e00000000000000000000006020820152600090805161005d9291602001906100ec565b5060408051908101604052600481527f4243535400000000000000000000000000000000000000000000000000000000602082015260019080516100a59291602001906100ec565b5050600254600a0a6305f5e100026003819055600160a060020a03331660008181526005602052604090209190915560048054600160a060020a0319169091179055610187565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061012d57805160ff191683800117855561015a565b8280016001018555821561015a579182015b8281111561015a57825182559160200191906001019061013f565b5061016692915061016a565b5090565b61018491905b808211156101665760008155600101610170565b90565b610720806101966000396000f3006060604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461016857806323b872dd1461018d578063313ce567146101b557806342966c68146101c857806370a08231146101de57806395d89b41146101fd578063a9059cbb14610210578063dd62ed3e14610234575b600080fd5b34156100b357600080fd5b6100bb610259565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100f75780820151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013d57600080fd5b610154600160a060020a03600435166024356102f7565b604051901515815260200160405180910390f35b341561017357600080fd5b61017b610327565b60405190815260200160405180910390f35b341561019857600080fd5b610154600160a060020a036004358116906024351660443561032d565b34156101c057600080fd5b61017b6103cf565b34156101d357600080fd5b6101546004356103d5565b34156101e957600080fd5b61017b600160a060020a03600435166104a7565b341561020857600080fd5b6100bb6104b9565b341561021b57600080fd5b610232600160a060020a0360043516602435610524565b005b341561023f57600080fd5b61017b600160a060020a0360043581169060243516610533565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102ef5780601f106102c4576101008083540402835291602001916102ef565b820191906000526020600020905b8154815290600101906020018083116102d257829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60035481565b600160a060020a0380841660009081526006602090815260408083203390941683529290529081205482111561036257600080fd5b600160a060020a03808516600090815260066020908152604080832033909416835292905220546103939083610550565b600160a060020a03808616600090815260066020908152604080832033909416835292905220556103c5848484610562565b5060019392505050565b60025481565b600160a060020a033316600090815260056020526040812054829010156103fb57600080fd5b60045433600160a060020a0390811691161461041657600080fd5b600160a060020a0333166000908152600560205260409020546104399083610550565b600160a060020a03331660009081526005602052604090205560035461045f9083610550565b600355600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b60056020526000908152604090205481565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102ef5780601f106102c4576101008083540402835291602001916102ef565b61052f338383610562565b5050565b600660209081526000928352604080842090915290825290205481565b60008282111561055c57fe5b50900390565b6000600160a060020a038316151561057957600080fd5b600160a060020a0384166000908152600560205260409020548290101561059f57600080fd5b600160a060020a0383166000908152600560205260409020546105c281846106e1565b10156105cd57600080fd5b600160a060020a038085166000908152600560205260408082205492861682529020546105fa91906106e1565b600160a060020a0385166000908152600560205260409020549091506106209083610550565b600160a060020a03808616600090815260056020526040808220939093559085168152205461064f90836106e1565b600160a060020a03808516600081815260056020526040908190209390935591908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3600160a060020a0380851660009081526005602052604080822054928616825290205482916106d4916106e1565b146106db57fe5b50505050565b818101828110156106ee57fe5b929150505600a165627a7a7230582088fc55228a003268b962f763ba0675d4d7df86f8403b72fa381e77940197f5350029

Deployed Bytecode

0x6060604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461016857806323b872dd1461018d578063313ce567146101b557806342966c68146101c857806370a08231146101de57806395d89b41146101fd578063a9059cbb14610210578063dd62ed3e14610234575b600080fd5b34156100b357600080fd5b6100bb610259565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100f75780820151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013d57600080fd5b610154600160a060020a03600435166024356102f7565b604051901515815260200160405180910390f35b341561017357600080fd5b61017b610327565b60405190815260200160405180910390f35b341561019857600080fd5b610154600160a060020a036004358116906024351660443561032d565b34156101c057600080fd5b61017b6103cf565b34156101d357600080fd5b6101546004356103d5565b34156101e957600080fd5b61017b600160a060020a03600435166104a7565b341561020857600080fd5b6100bb6104b9565b341561021b57600080fd5b610232600160a060020a0360043516602435610524565b005b341561023f57600080fd5b61017b600160a060020a0360043581169060243516610533565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102ef5780601f106102c4576101008083540402835291602001916102ef565b820191906000526020600020905b8154815290600101906020018083116102d257829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60035481565b600160a060020a0380841660009081526006602090815260408083203390941683529290529081205482111561036257600080fd5b600160a060020a03808516600090815260066020908152604080832033909416835292905220546103939083610550565b600160a060020a03808616600090815260066020908152604080832033909416835292905220556103c5848484610562565b5060019392505050565b60025481565b600160a060020a033316600090815260056020526040812054829010156103fb57600080fd5b60045433600160a060020a0390811691161461041657600080fd5b600160a060020a0333166000908152600560205260409020546104399083610550565b600160a060020a03331660009081526005602052604090205560035461045f9083610550565b600355600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b60056020526000908152604090205481565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156102ef5780601f106102c4576101008083540402835291602001916102ef565b61052f338383610562565b5050565b600660209081526000928352604080842090915290825290205481565b60008282111561055c57fe5b50900390565b6000600160a060020a038316151561057957600080fd5b600160a060020a0384166000908152600560205260409020548290101561059f57600080fd5b600160a060020a0383166000908152600560205260409020546105c281846106e1565b10156105cd57600080fd5b600160a060020a038085166000908152600560205260408082205492861682529020546105fa91906106e1565b600160a060020a0385166000908152600560205260409020549091506106209083610550565b600160a060020a03808616600090815260056020526040808220939093559085168152205461064f90836106e1565b600160a060020a03808516600081815260056020526040908190209390935591908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3600160a060020a0380851660009081526005602052604080822054928616825290205482916106d4916106e1565b146106db57fe5b50505050565b818101828110156106ee57fe5b929150505600a165627a7a7230582088fc55228a003268b962f763ba0675d4d7df86f8403b72fa381e77940197f5350029

Swarm Source

bzzr://88fc55228a003268b962f763ba0675d4d7df86f8403b72fa381e77940197f535

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.