ETH Price: $2,671.30 (+1.23%)
Gas: 14 Gwei

Contract

0x0d047B89655FC16985252e01Ab8E13bB1FcE19A3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer116001162021-01-06 9:10:221314 days ago1609924222IN
0x0d047B89...B1FcE19A3
0 ETH0.01087279213
Transfer116001132021-01-06 9:09:111314 days ago1609924151IN
0x0d047B89...B1FcE19A3
0 ETH0.0032452290
Transfer96306982020-03-08 12:09:111618 days ago1583669351IN
0x0d047B89...B1FcE19A3
0 ETH0.0003605810.00000123
Transfer94693902020-02-12 17:00:031642 days ago1581526803IN
0x0d047B89...B1FcE19A3
0 ETH0.0003605810
Transfer87699242019-10-19 7:23:221759 days ago1571469802IN
0x0d047B89...B1FcE19A3
0 ETH0.0003645810
Transfer87083912019-10-09 15:07:021768 days ago1570633622IN
0x0d047B89...B1FcE19A3
0 ETH0.000068663.2
Transfer87083892019-10-09 15:06:461768 days ago1570633606IN
0x0d047B89...B1FcE19A3
0 ETH0.000077181.5
Transfer87083822019-10-09 15:05:361768 days ago1570633536IN
0x0d047B89...B1FcE19A3
0 ETH0.000094414.4
Transfer87083782019-10-09 15:05:161768 days ago1570633516IN
0x0d047B89...B1FcE19A3
0 ETH0.00006271.72
Transfer87083782019-10-09 15:05:161768 days ago1570633516IN
0x0d047B89...B1FcE19A3
0 ETH0.000077181.5
Transfer87083782019-10-09 15:05:161768 days ago1570633516IN
0x0d047B89...B1FcE19A3
0 ETH0.000128746
Transfer87083742019-10-09 15:04:481768 days ago1570633488IN
0x0d047B89...B1FcE19A3
0 ETH0.000077181.5
Transfer87083612019-10-09 15:00:241768 days ago1570633224IN
0x0d047B89...B1FcE19A3
0 ETH0.000043042
Transfer87083542019-10-09 14:59:221768 days ago1570633162IN
0x0d047B89...B1FcE19A3
0 ETH0.000070731.93680704
Transfer87083442019-10-09 14:57:341768 days ago1570633054IN
0x0d047B89...B1FcE19A3
0 ETH0.0002152210
Transfer87083412019-10-09 14:57:091768 days ago1570633029IN
0x0d047B89...B1FcE19A3
0 ETH0.000094662.59201792
Transfer87083212019-10-09 14:53:171768 days ago1570632797IN
0x0d047B89...B1FcE19A3
0 ETH0.0002145810
Transfer87083182019-10-09 14:52:371768 days ago1570632757IN
0x0d047B89...B1FcE19A3
0 ETH0.0005660311.00000051
Transfer86667752019-10-03 3:13:251775 days ago1570072405IN
0x0d047B89...B1FcE19A3
0 ETH0.000042912
Transfer86667662019-10-03 3:11:331775 days ago1570072293IN
0x0d047B89...B1FcE19A3
0 ETH0.000173174.75
Transfer86481992019-09-30 5:21:481778 days ago1569820908IN
0x0d047B89...B1FcE19A3
0 ETH0.0005664926.4
Transfer86481932019-09-30 5:19:141778 days ago1569820754IN
0x0d047B89...B1FcE19A3
0 ETH0.0005468715
Transfer86048732019-09-23 10:26:141785 days ago1569234374IN
0x0d047B89...B1FcE19A3
0 ETH0.0008583240
Transfer86048712019-09-23 10:26:091785 days ago1569234369IN
0x0d047B89...B1FcE19A3
0 ETH0.0009114525
Transfer86026192019-09-23 2:01:401785 days ago1569204100IN
0x0d047B89...B1FcE19A3
0 ETH0.0004248619.8
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:
IOS

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2019-07-25
*/

// File: contracts/SafeMath.sol

pragma solidity 0.5.8;

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

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

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

// File: contracts/IERC20.sol

pragma solidity 0.5.8;

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

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

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

    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

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

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

// File: contracts/IOS.sol

pragma solidity 0.5.8;



contract IOS is IERC20 {
    using SafeMath for uint256;

    string public constant name = "IOS";
    string public constant symbol = "IOS";
    uint256 public constant decimals = 18;

    uint256 private constant base1 = 10 ** decimals;
    address private constant banker = 0xF865eB0970c530748982965eD1e6Cb68310aB125;

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

    constructor() public {
        uint256 amount = 2 * (10 ** 8) * base1;

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

    /**
     * @dev Total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

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

    /**
     * @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 view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
     * @dev Transfer token to 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) {
        _transfer(msg.sender, 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) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @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) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }
}

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":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b506002546aa56fa5b99019a5c80000009061003690826100b6602090811b61056817901c565b60025573f865eb0970c530748982965ed1e6cb68310ab125600081815260208181527f1f3fe406568cf398c528822abcac41bc3a26ddb4ab3d36d8f7947236e81dabbf8490556040805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506100cf565b6000828201838110156100c857600080fd5b9392505050565b6105ad806100de6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c8063395093511161007157806339509351146101c357806370a08231146101ef57806395d89b41146100ae578063a457c2d714610215578063a9059cbb14610241578063dd62ed3e1461026d576100a9565b806306fdde03146100ae578063095ea7b31461012b57806318160ddd1461016b57806323b872dd14610185578063313ce567146101bb575b600080fd5b6100b661029b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f05781810151838201526020016100d8565b50505050905090810190601f16801561011d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101576004803603604081101561014157600080fd5b506001600160a01b0381351690602001356102bd565b604080519115158252519081900360200190f35b6101736102d3565b60408051918252519081900360200190f35b6101576004803603606081101561019b57600080fd5b506001600160a01b038135811691602081013590911690604001356102d9565b610173610330565b610157600480360360408110156101d957600080fd5b506001600160a01b038135169060200135610335565b6101736004803603602081101561020557600080fd5b50356001600160a01b0316610371565b6101576004803603604081101561022b57600080fd5b506001600160a01b03813516906020013561038c565b6101576004803603604081101561025757600080fd5b506001600160a01b0381351690602001356103c8565b6101736004803603604081101561028357600080fd5b506001600160a01b03813581169160200135166103d5565b604051806040016040528060038152602001600160e81b62494f530281525081565b60006102ca338484610400565b50600192915050565b60025490565b60006102e6848484610488565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610326918691610321908663ffffffff61055316565b610400565b5060019392505050565b601281565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102ca918590610321908663ffffffff61056816565b6001600160a01b031660009081526020819052604090205490565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102ca918590610321908663ffffffff61055316565b60006102ca338484610488565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03821661041357600080fd5b6001600160a01b03831661042657600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661049b57600080fd5b6001600160a01b0383166000908152602081905260409020546104c4908263ffffffff61055316565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546104f9908263ffffffff61056816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561056257600080fd5b50900390565b60008282018381101561057a57600080fd5b939250505056fea165627a7a72305820f8b0f4cb172cce010d56117537107ddb53092c519482c0a1f4b068df50f7184b0029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c8063395093511161007157806339509351146101c357806370a08231146101ef57806395d89b41146100ae578063a457c2d714610215578063a9059cbb14610241578063dd62ed3e1461026d576100a9565b806306fdde03146100ae578063095ea7b31461012b57806318160ddd1461016b57806323b872dd14610185578063313ce567146101bb575b600080fd5b6100b661029b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f05781810151838201526020016100d8565b50505050905090810190601f16801561011d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101576004803603604081101561014157600080fd5b506001600160a01b0381351690602001356102bd565b604080519115158252519081900360200190f35b6101736102d3565b60408051918252519081900360200190f35b6101576004803603606081101561019b57600080fd5b506001600160a01b038135811691602081013590911690604001356102d9565b610173610330565b610157600480360360408110156101d957600080fd5b506001600160a01b038135169060200135610335565b6101736004803603602081101561020557600080fd5b50356001600160a01b0316610371565b6101576004803603604081101561022b57600080fd5b506001600160a01b03813516906020013561038c565b6101576004803603604081101561025757600080fd5b506001600160a01b0381351690602001356103c8565b6101736004803603604081101561028357600080fd5b506001600160a01b03813581169160200135166103d5565b604051806040016040528060038152602001600160e81b62494f530281525081565b60006102ca338484610400565b50600192915050565b60025490565b60006102e6848484610488565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610326918691610321908663ffffffff61055316565b610400565b5060019392505050565b601281565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102ca918590610321908663ffffffff61056816565b6001600160a01b031660009081526020819052604090205490565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102ca918590610321908663ffffffff61055316565b60006102ca338484610488565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03821661041357600080fd5b6001600160a01b03831661042657600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661049b57600080fd5b6001600160a01b0383166000908152602081905260409020546104c4908263ffffffff61055316565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546104f9908263ffffffff61056816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561056257600080fd5b50900390565b60008282018381101561057a57600080fd5b939250505056fea165627a7a72305820f8b0f4cb172cce010d56117537107ddb53092c519482c0a1f4b068df50f7184b0029

Deployed Bytecode Sourcemap

2839:5981:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2839:5981:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2904:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2904:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5479:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5479:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3632:91;;;:::i;:::-;;;;;;;;;;;;;;;;6100:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6100:228:0;;;;;;;;;;;;;;;;;:::i;2990:37::-;;;:::i;6854:203::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6854:203:0;;;;;;;;:::i;3942:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3942:106:0;-1:-1:-1;;;;;3942:106:0;;:::i;7588:213::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7588:213:0;;;;;;;;:::i;4692:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4692:140:0;;;;;;;;:::i;4387:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4387:131:0;;;;;;;;;;:::i;2904:35::-;;;;;;;;;;;;;;-1:-1:-1;;;;;2904:35:0;;;;:::o;5479:148::-;5544:4;5561:36;5570:10;5582:7;5591:5;5561:8;:36::i;:::-;-1:-1:-1;5615:4:0;5479:148;;;;:::o;3632:91::-;3703:12;;3632:91;:::o;6100:228::-;6179:4;6196:26;6206:4;6212:2;6216:5;6196:9;:26::i;:::-;-1:-1:-1;;;;;6260:14:0;;;;;;:8;:14;;;;;;;;6248:10;6260:26;;;;;;;;;6233:65;;6242:4;;6260:37;;6291:5;6260:37;:30;:37;:::i;:::-;6233:8;:65::i;:::-;-1:-1:-1;6316:4:0;6100:228;;;;;:::o;2990:37::-;3025:2;2990:37;:::o;6854:203::-;6960:10;6934:4;6981:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6981:29:0;;;;;;;;;;6934:4;;6951:76;;6972:7;;6981:45;;7015:10;6981:45;:33;:45;:::i;3942:106::-;-1:-1:-1;;;;;4024:16:0;3997:7;4024:16;;;;;;;;;;;;3942:106::o;7588:213::-;7699:10;7673:4;7720:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7720:29:0;;;;;;;;;;7673:4;;7690:81;;7711:7;;7720:50;;7754:15;7720:50;:33;:50;:::i;4692:140::-;4753:4;4770:32;4780:10;4792:2;4796:5;4770:9;:32::i;4387:131::-;-1:-1:-1;;;;;4486:15:0;;;4459:7;4486:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;4387:131::o;8563:254::-;-1:-1:-1;;;;;8656:21:0;;8648:30;;;;;;-1:-1:-1;;;;;8697:19:0;;8689:28;;;;;;-1:-1:-1;;;;;8730:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;8778:31;;;;;;;;;;;;;;;;;8563:254;;;:::o;8028:262::-;-1:-1:-1;;;;;8116:16:0;;8108:25;;;;;;-1:-1:-1;;;;;8164:15:0;;:9;:15;;;;;;;;;;;:26;;8184:5;8164:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;8146:15:0;;;:9;:15;;;;;;;;;;;:44;;;;8217:13;;;;;;;:24;;8235:5;8217:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;8201:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;8257:25;;;;;;;8201:13;;8257:25;;;;;;;;;;;;;8028:262;;;:::o;1284:150::-;1342:7;1375:1;1370;:6;;1362:15;;;;;;-1:-1:-1;1400:5:0;;;1284:150::o;1522:::-;1580:7;1612:5;;;1636:6;;;;1628:15;;;;;;1663:1;1522:150;-1:-1:-1;;;1522:150:0:o

Swarm Source

bzzr://f8b0f4cb172cce010d56117537107ddb53092c519482c0a1f4b068df50f7184b

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.