ETH Price: $3,392.28 (+1.72%)

Contract

0x6fE718ac87f12bDA6C708Aaa8D65ff0509d9434E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve210897412024-11-01 2:14:4757 days ago1730427287IN
0x6fE718ac...509d9434E
0 ETH0.000244219.31445362
Approve210897412024-11-01 2:14:4757 days ago1730427287IN
0x6fE718ac...509d9434E
0 ETH0.000226299.34355362
Approve176051192023-07-02 8:23:35545 days ago1688286215IN
0x6fE718ac...509d9434E
0 ETH0.0006204813.34297426
Approve175990482023-07-01 11:56:35546 days ago1688212595IN
0x6fE718ac...509d9434E
0 ETH0.0007663216.47899495
Approve175732132023-06-27 20:58:59549 days ago1687899539IN
0x6fE718ac...509d9434E
0 ETH0.0007335115.77359108
Approve175716932023-06-27 15:52:23550 days ago1687881143IN
0x6fE718ac...509d9434E
0 ETH0.0019133341.14433578
Approve175712472023-06-27 14:21:47550 days ago1687875707IN
0x6fE718ac...509d9434E
0 ETH0.0010739323.09383272
Approve175649972023-06-26 17:11:35551 days ago1687799495IN
0x6fE718ac...509d9434E
0 ETH0.0008924819.27646435
Approve175647432023-06-26 16:19:59551 days ago1687796399IN
0x6fE718ac...509d9434E
0 ETH0.0008171417.64940749
Approve175646472023-06-26 16:00:35551 days ago1687795235IN
0x6fE718ac...509d9434E
0 ETH0.0004248117.49728369
Approve175646362023-06-26 15:58:23551 days ago1687795103IN
0x6fE718ac...509d9434E
0 ETH0.0007058415.15895337
Approve175644162023-06-26 15:13:47551 days ago1687792427IN
0x6fE718ac...509d9434E
0 ETH0.0009870221.31290961
Approve175601102023-06-26 0:41:11551 days ago1687740071IN
0x6fE718ac...509d9434E
0 ETH0.0005400211.59773464
Approve175594192023-06-25 22:21:11551 days ago1687731671IN
0x6fE718ac...509d9434E
0 ETH0.0006079413.13084617
Approve175592622023-06-25 21:49:11551 days ago1687729751IN
0x6fE718ac...509d9434E
0 ETH0.0006347613.65
Approve175592592023-06-25 21:48:35551 days ago1687729715IN
0x6fE718ac...509d9434E
0 ETH0.0006516314.08549496
Approve175590302023-06-25 21:01:59551 days ago1687726919IN
0x6fE718ac...509d9434E
0 ETH0.0005741112.34567752
Approve175583682023-06-25 18:47:11552 days ago1687718831IN
0x6fE718ac...509d9434E
0 ETH0.0007117615.3058588
Approve175583072023-06-25 18:34:59552 days ago1687718099IN
0x6fE718ac...509d9434E
0 ETH0.0006102113.12212259
Approve175583042023-06-25 18:34:23552 days ago1687718063IN
0x6fE718ac...509d9434E
0 ETH0.0005375911.54551372
Approve175582832023-06-25 18:30:11552 days ago1687717811IN
0x6fE718ac...509d9434E
0 ETH0.0006643414.26755899
Approve175582752023-06-25 18:28:35552 days ago1687717715IN
0x6fE718ac...509d9434E
0 ETH0.0007068915.20113295
Approve175582742023-06-25 18:28:23552 days ago1687717703IN
0x6fE718ac...509d9434E
0 ETH0.0006455713.86452295
Approve175582732023-06-25 18:28:11552 days ago1687717691IN
0x6fE718ac...509d9434E
0 ETH0.000750816.1452495
Approve175582722023-06-25 18:27:59552 days ago1687717679IN
0x6fE718ac...509d9434E
0 ETH0.0007313815.72777714
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x5B10fDa5...72701E2dE
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
BookOfCoinfessions

Compiler Version
v0.5.5+commit.47a71e8f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2023-06-25
*/

// Anonymous and Secure Web3 Coinfessions
// https://www.bookofcoinfessions.com/
// https://twitter.com/coinfessbook

pragma solidity ^0.5.5;

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

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

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

pragma solidity ^0.5.5;

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

pragma solidity ^0.5.5;

contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}


pragma solidity ^0.5.5;

contract BookOfCoinfessions is ERC20 {

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor(string memory name, string memory symbol, uint8 decimals, uint256 totalSupply, address payable feeReceiver, address tokenOwnerAddress) public payable {
      _name = name;
      _symbol = symbol;
      _decimals = decimals;

      _mint(tokenOwnerAddress, totalSupply);

      feeReceiver.transfer(msg.value);
    }

    function burn(uint256 value) public {
      _burn(msg.sender, value);
    }

    function name() public view returns (string memory) {
      return _name;
    }

    function symbol() public view returns (string memory) {
      return _symbol;
    }

    function decimals() public view returns (uint8) {
      return _decimals;
    }
}

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":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","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":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","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":"recipient","type":"address"},{"name":"amount","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":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"totalSupply","type":"uint256"},{"name":"feeReceiver","type":"address"},{"name":"tokenOwnerAddress","type":"address"}],"payable":true,"stateMutability":"payable","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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c68146102d057806370a08231146102fe57806395d89b4114610356578063a457c2d7146103d9578063a9059cbb1461043f578063dd62ed3e146104a5576100b4565b806306fdde03146100b9578063095ea7b31461013c57806318160ddd146101a257806323b872dd146101c0578063313ce56714610246578063395093511461026a575b600080fd5b6100c161051d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101015780820151818401526020810190506100e6565b50505050905090810190601f16801561012e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101886004803603604081101561015257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105bf565b604051808215151515815260200191505060405180910390f35b6101aa6105d6565b6040518082815260200191505060405180910390f35b61022c600480360360608110156101d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105e0565b604051808215151515815260200191505060405180910390f35b61024e610691565b604051808260ff1660ff16815260200191505060405180910390f35b6102b66004803603604081101561028057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506106a8565b604051808215151515815260200191505060405180910390f35b6102fc600480360360208110156102e657600080fd5b810190808035906020019092919050505061074d565b005b6103406004803603602081101561031457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061075a565b6040518082815260200191505060405180910390f35b61035e6107a2565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561039e578082015181840152602081019050610383565b50505050905090810190601f1680156103cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610425600480360360408110156103ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610844565b604051808215151515815260200191505060405180910390f35b61048b6004803603604081101561045557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108e9565b604051808215151515815260200191505060405180910390f35b610507600480360360408110156104bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610900565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b60006105cc338484610987565b6001905092915050565b6000600254905090565b60006105ed848484610b82565b610686843361068185600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e2290919063ffffffff16565b610987565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610743338461073e85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ead90919063ffffffff16565b610987565b6001905092915050565b6107573382610f37565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b60006108df33846108da85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e2290919063ffffffff16565b610987565b6001905092915050565b60006108f6338484610b82565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515610a0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806111636024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515610a97576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806110fb6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515610c0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061113e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515610c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806110d86023913960400191505060405180910390fd5b610ce3816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e2290919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d76816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ead90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211151515610e9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b6000808284019050838110151515610f2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515610fbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061111d6021913960400191505060405180910390fd5b610fd481600254610e2290919063ffffffff16565b60028190555061102b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e2290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a7230582089a513bf69ae2588b0675978c0a5d6c8edfa0889a9535555eef4c00ed3902ab20029

Deployed Bytecode Sourcemap

5155:828:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5155:828:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5717:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5717:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2663:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2663:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2140:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2819:256;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2819:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5899:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3083:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3083:206:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5632:77;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5632:77:0;;;;;;;;;;;;;;;;;:::i;:::-;;2239:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2239:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5806:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5806:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3297:216;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3297:216:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2357:156;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2357:156:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2521:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2521:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5717:81;5754:13;5785:5;5778:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5717:81;:::o;2663:148::-;2728:4;2745:36;2754:10;2766:7;2775:5;2745:8;:36::i;:::-;2799:4;2792:11;;2663:148;;;;:::o;2140:91::-;2184:7;2211:12;;2204:19;;2140:91;:::o;2819:256::-;2908:4;2925:36;2935:6;2943:9;2954:6;2925:9;:36::i;:::-;2972:73;2981:6;2989:10;3001:43;3037:6;3001:11;:19;3013:6;3001:19;;;;;;;;;;;;;;;:31;3021:10;3001:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;2972:8;:73::i;:::-;3063:4;3056:11;;2819:256;;;;;:::o;5899:81::-;5940:5;5963:9;;;;;;;;;;;5956:16;;5899:81;:::o;3083:206::-;3163:4;3180:79;3189:10;3201:7;3210:48;3247:10;3210:11;:23;3222:10;3210:23;;;;;;;;;;;;;;;:32;3234:7;3210:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;3180:8;:79::i;:::-;3277:4;3270:11;;3083:206;;;;:::o;5632:77::-;5677:24;5683:10;5695:5;5677;:24::i;:::-;5632:77;:::o;2239:110::-;2296:7;2323:9;:18;2333:7;2323:18;;;;;;;;;;;;;;;;2316:25;;2239:110;;;:::o;5806:85::-;5845:13;5876:7;5869:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5806:85;:::o;3297:216::-;3382:4;3399:84;3408:10;3420:7;3429:53;3466:15;3429:11;:23;3441:10;3429:23;;;;;;;;;;;;;;;:32;3453:7;3429:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;3399:8;:84::i;:::-;3501:4;3494:11;;3297:216;;;;:::o;2357:156::-;2426:4;2443:40;2453:10;2465:9;2476:6;2443:9;:40::i;:::-;2501:4;2494:11;;2357:156;;;;:::o;2521:134::-;2593:7;2620:11;:18;2632:5;2620:18;;;;;;;;;;;;;;;:27;2639:7;2620:27;;;;;;;;;;;;;;;;2613:34;;2521:134;;;;:::o;4588:335::-;4698:1;4681:19;;:5;:19;;;;4673:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4779:1;4760:21;;:7;:21;;;;4752:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4863:5;4833:11;:18;4845:5;4833:18;;;;;;;;;;;;;;;:27;4852:7;4833:27;;;;;;;;;;;;;;;:35;;;;4900:7;4884:31;;4893:5;4884:31;;;4909:5;4884:31;;;;;;;;;;;;;;;;;;4588:335;;;:::o;3521:429::-;3637:1;3619:20;;:6;:20;;;;3611:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3721:1;3700:23;;:9;:23;;;;3692:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3796:29;3818:6;3796:9;:17;3806:6;3796:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;3776:9;:17;3786:6;3776:17;;;;;;;;;;;;;;;:49;;;;3859:32;3884:6;3859:9;:20;3869:9;3859:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;3836:9;:20;3846:9;3836:20;;;;;;;;;;;;;;;:55;;;;3924:9;3907:35;;3916:6;3907:35;;;3935:6;3907:35;;;;;;;;;;;;;;;;;;3521:429;;;:::o;1080:184::-;1138:7;1171:1;1166;:6;;1158:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1218:9;1234:1;1230;:5;1218:17;;1255:1;1248:8;;;1080:184;;;;:::o;891:181::-;949:7;969:9;985:1;981;:5;969:17;;1010:1;1005;:6;;997:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063:1;1056:8;;;891:181;;;;:::o;4274:306::-;4368:1;4349:21;;:7;:21;;;;4341:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4436:23;4453:5;4436:12;;:16;;:23;;;;:::i;:::-;4421:12;:38;;;;4491:29;4514:5;4491:9;:18;4501:7;4491:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;4470:9;:18;4480:7;4470:18;;;;;;;;;;;;;;;:50;;;;4562:1;4536:36;;4545:7;4536:36;;;4566:5;4536:36;;;;;;;;;;;;;;;;;;4274:306;;:::o

Swarm Source

bzzr://89a513bf69ae2588b0675978c0a5d6c8edfa0889a9535555eef4c00ed3902ab2

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.