ETH Price: $3,148.96 (-8.37%)
Gas: 10 Gwei

Contract

0x161A097Dcd09F1d68197568D782eD9bBa27BC5De
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer160262352022-11-22 14:46:59611 days ago1669128419IN
0x161A097D...Ba27BC5De
0 ETH0.0005497911.70189518
Transfer150578432022-07-01 17:08:55754 days ago1656695335IN
0x161A097D...Ba27BC5De
0 ETH0.0022662948.23641704
Transfer141322502022-02-03 9:46:31903 days ago1643881591IN
0x161A097D...Ba27BC5De
0 ETH0.0037046178.83007193
Transfer104513732020-07-13 13:06:001473 days ago1594645560IN
0x161A097D...Ba27BC5De
0 ETH0.0026660952
Transfer104416322020-07-12 1:08:091474 days ago1594516089IN
0x161A097D...Ba27BC5De
0 ETH0.0007256620.00000123
Transfer102363652020-06-10 6:35:431506 days ago1591770943IN
0x161A097D...Ba27BC5De
0 ETH0.0010159228
Transfer101224412020-05-23 13:42:451524 days ago1590241365IN
0x161A097D...Ba27BC5De
0 ETH0.0015381330
Transfer100274272020-05-08 19:11:461538 days ago1588965106IN
0x161A097D...Ba27BC5De
0 ETH0.0005641111.00000023
Transfer99809232020-05-01 14:44:481546 days ago1588344288IN
0x161A097D...Ba27BC5De
0 ETH0.0004352512
Transfer97088132020-03-20 13:25:281588 days ago1584710728IN
0x161A097D...Ba27BC5De
0 ETH0.0004898213.5
Transfer95679802020-02-27 21:07:091609 days ago1582837629IN
0x161A097D...Ba27BC5De
0 ETH0.000036291
Transfer94742032020-02-13 10:46:051624 days ago1581590765IN
0x161A097D...Ba27BC5De
0 ETH0.000036281
Transfer94682472020-02-12 12:54:151625 days ago1581512055IN
0x161A097D...Ba27BC5De
0 ETH0.000108843
Transfer94635192020-02-11 19:15:121625 days ago1581448512IN
0x161A097D...Ba27BC5De
0 ETH0.000072562
Transfer94618242020-02-11 13:03:501626 days ago1581426230IN
0x161A097D...Ba27BC5De
0 ETH0.000290268
Transfer94496262020-02-09 16:10:551627 days ago1581264655IN
0x161A097D...Ba27BC5De
0 ETH0.000036281
Transfer94402422020-02-08 5:39:101629 days ago1581140350IN
0x161A097D...Ba27BC5De
0 ETH0.000072562
Transfer93948192020-02-01 6:02:191636 days ago1580536939IN
0x161A097D...Ba27BC5De
0 ETH0.000290268
Transfer92596412020-01-11 12:33:351657 days ago1578746015IN
0x161A097D...Ba27BC5De
0 ETH0.000036281
Transfer92390072020-01-08 8:42:031660 days ago1578472923IN
0x161A097D...Ba27BC5De
0 ETH0.000102542
Transfer92078602020-01-03 14:33:291665 days ago1578062009IN
0x161A097D...Ba27BC5De
0 ETH0.000036281
Transfer92078262020-01-03 14:27:101665 days ago1578061630IN
0x161A097D...Ba27BC5De
0 ETH0.000051281
Transfer91831682019-12-29 23:35:041669 days ago1577662504IN
0x161A097D...Ba27BC5De
0 ETH0.000021271
Transfer91505252019-12-23 11:42:111676 days ago1577101331IN
0x161A097D...Ba27BC5De
0 ETH0.0007690615
Transfer91216922019-12-17 17:36:561681 days ago1576604216IN
0x161A097D...Ba27BC5De
0 ETH0.000076162.1
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:
SinghCoin

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.23;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        if (a == 0) {
            return 0;
        }
        c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        // uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return a / b;
    }

    /**
    * @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;
    }

    /**
    * @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;
    }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    uint256 public totalSupply;

    function balanceOf(address who) public constant returns (uint256);

    function transfer(address to, uint256 value) public returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));

        // SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public constant returns (uint256 balance) {
        return balances[_owner];
    }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint256);

    function transferFrom(address from, address to, uint256 value) public returns (bool);

    function approve(address spender, uint256 value) public returns (bool);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {
    mapping(address => mapping(address => uint256)) allowed;

    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));

        uint256 _allowance = allowed[_from][msg.sender];

        // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
        // require (_value <= _allowance);

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = _allowance.sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     *
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    /**
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     */
    function increaseApproval(address _spender, uint _addedValue) public returns (bool success) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool success) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}
/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address internal owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor() public {
        owner = msg.sender;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) onlyOwner public returns (bool) {
        require(newOwner != address(0x0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;

        return true;
    }
}

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
    event Mint(address indexed to, uint256 amount);

    /**
     * @dev Function to mint tokens
     * @param _to The address that will receive the minted tokens.
     * @param _amount The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */

    function mint(address _to, uint256 _amount) onlyOwner public returns (bool) {
        totalSupply = SafeMath.add(totalSupply, _amount);
        balances[_to] = balances[_to].add(_amount);
        emit Mint(_to, _amount);
        emit Transfer(0x0, _to, _amount);
        return true;
    }
}

/**
 * @title Capped token
 * @dev Mintable token with a token cap.
 */
contract CappedToken is MintableToken {
    uint256 public cap;

    constructor(uint256 _cap) public {
        require(_cap > 0);
        cap = _cap;
    }

    /**
     * @dev Function to mint tokens
     * @param _to The address that will receive the minted tokens.
     * @param _amount The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address _to, uint256 _amount) onlyOwner public returns (bool) {
        require(totalSupply.add(_amount) <= cap);

        return super.mint(_to, _amount);
    }
}

contract SinghCoin is CappedToken {
    string public constant name = "SinghCoin";
    string public constant symbol = "SINGH";
    uint8 public constant decimals = 18;

    constructor()
    CappedToken(2000000000 ether) public
    {

    }
}

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":"","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","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":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"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"}]

608060405234801561001057600080fd5b5060038054600160a060020a031916331790556b06765c793fa10079d00000006004556109f7806100426000396000f3006080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019657806323b872dd146101bd578063313ce567146101e7578063355274ea1461021257806340c10f1914610227578063661884631461024b57806370a082311461026f57806395d89b4114610290578063a9059cbb146102a5578063d73dd623146102c9578063dd62ed3e146102ed578063f2fde38b14610314575b600080fd5b3480156100e057600080fd5b506100e9610335565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b50610182600160a060020a036004351660243561036c565b604080519115158252519081900360200190f35b3480156101a257600080fd5b506101ab6103d2565b60408051918252519081900360200190f35b3480156101c957600080fd5b50610182600160a060020a03600435811690602435166044356103d8565b3480156101f357600080fd5b506101fc6104fa565b6040805160ff9092168252519081900360200190f35b34801561021e57600080fd5b506101ab6104ff565b34801561023357600080fd5b50610182600160a060020a0360043516602435610505565b34801561025757600080fd5b50610182600160a060020a0360043516602435610551565b34801561027b57600080fd5b506101ab600160a060020a0360043516610641565b34801561029c57600080fd5b506100e961065c565b3480156102b157600080fd5b50610182600160a060020a0360043516602435610693565b3480156102d557600080fd5b50610182600160a060020a036004351660243561075a565b3480156102f957600080fd5b506101ab600160a060020a03600435811690602435166107f3565b34801561032057600080fd5b50610182600160a060020a036004351661081e565b60408051808201909152600981527f53696e6768436f696e0000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600080600160a060020a03841615156103f057600080fd5b50600160a060020a03841660008181526002602090815260408083203384528252808320549383526001909152902054610430908463ffffffff6108b916565b600160a060020a038087166000908152600160205260408082209390935590861681522054610465908463ffffffff6108cb16565b600160a060020a03851660009081526001602052604090205561048e818463ffffffff6108b916565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b60045481565b600354600090600160a060020a0316331461051f57600080fd5b600454600054610535908463ffffffff6108cb16565b111561054057600080fd5b61054a83836108de565b9392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156105a657336000908152600260209081526040808320600160a060020a03881684529091528120556105db565b6105b6818463ffffffff6108b916565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60408051808201909152600581527f53494e4748000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156106aa57600080fd5b336000908152600160205260409020546106ca908363ffffffff6108b916565b3360009081526001602052604080822092909255600160a060020a038516815220546106fc908363ffffffff6108cb16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461078e908363ffffffff6108cb16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a0316331461083857600080fd5b600160a060020a038216151561084d57600080fd5b600354604051600160a060020a038085169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35060038054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b6000828211156108c557fe5b50900390565b818101828110156108d857fe5b92915050565b600354600090600160a060020a031633146108f857600080fd5b610904600054836108cb565b6000908155600160a060020a03841681526001602052604090205461092f908363ffffffff6108cb16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001929150505600a165627a7a72305820b762828da22c8dfb57542485a68d78ec552be244ad93ace1e53a21c8036406500029

Deployed Bytecode

0x6080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019657806323b872dd146101bd578063313ce567146101e7578063355274ea1461021257806340c10f1914610227578063661884631461024b57806370a082311461026f57806395d89b4114610290578063a9059cbb146102a5578063d73dd623146102c9578063dd62ed3e146102ed578063f2fde38b14610314575b600080fd5b3480156100e057600080fd5b506100e9610335565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b50610182600160a060020a036004351660243561036c565b604080519115158252519081900360200190f35b3480156101a257600080fd5b506101ab6103d2565b60408051918252519081900360200190f35b3480156101c957600080fd5b50610182600160a060020a03600435811690602435166044356103d8565b3480156101f357600080fd5b506101fc6104fa565b6040805160ff9092168252519081900360200190f35b34801561021e57600080fd5b506101ab6104ff565b34801561023357600080fd5b50610182600160a060020a0360043516602435610505565b34801561025757600080fd5b50610182600160a060020a0360043516602435610551565b34801561027b57600080fd5b506101ab600160a060020a0360043516610641565b34801561029c57600080fd5b506100e961065c565b3480156102b157600080fd5b50610182600160a060020a0360043516602435610693565b3480156102d557600080fd5b50610182600160a060020a036004351660243561075a565b3480156102f957600080fd5b506101ab600160a060020a03600435811690602435166107f3565b34801561032057600080fd5b50610182600160a060020a036004351661081e565b60408051808201909152600981527f53696e6768436f696e0000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600080600160a060020a03841615156103f057600080fd5b50600160a060020a03841660008181526002602090815260408083203384528252808320549383526001909152902054610430908463ffffffff6108b916565b600160a060020a038087166000908152600160205260408082209390935590861681522054610465908463ffffffff6108cb16565b600160a060020a03851660009081526001602052604090205561048e818463ffffffff6108b916565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b60045481565b600354600090600160a060020a0316331461051f57600080fd5b600454600054610535908463ffffffff6108cb16565b111561054057600080fd5b61054a83836108de565b9392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156105a657336000908152600260209081526040808320600160a060020a03881684529091528120556105db565b6105b6818463ffffffff6108b916565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60408051808201909152600581527f53494e4748000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156106aa57600080fd5b336000908152600160205260409020546106ca908363ffffffff6108b916565b3360009081526001602052604080822092909255600160a060020a038516815220546106fc908363ffffffff6108cb16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461078e908363ffffffff6108cb16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a0316331461083857600080fd5b600160a060020a038216151561084d57600080fd5b600354604051600160a060020a038085169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35060038054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b6000828211156108c557fe5b50900390565b818101828110156108d857fe5b92915050565b600354600090600160a060020a031633146108f857600080fd5b610904600054836108cb565b6000908155600160a060020a03841681526001602052604090205461092f908363ffffffff6108cb16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001929150505600a165627a7a72305820b762828da22c8dfb57542485a68d78ec552be244ad93ace1e53a21c8036406500029

Swarm Source

bzzr://b762828da22c8dfb57542485a68d78ec552be244ad93ace1e53a21c803640650

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.