ETH Price: $3,336.83 (-4.20%)
Gas: 2 Gwei

Contract

0x47b2Af41C80B8B3b0Fb97592914c84EB80C16445
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Payment141518882022-02-06 10:12:59899 days ago1644142379IN
0x47b2Af41...B80C16445
0 ETH0.0048793945
Withdraw Stake141516422022-02-06 9:20:50899 days ago1644139250IN
0x47b2Af41...B80C16445
0 ETH0.0021940359
Request Staking ...137955662021-12-13 7:53:18954 days ago1639381998IN
0x47b2Af41...B80C16445
0 ETH0.0030356743
Submit Mining So...137190832021-12-01 4:46:10966 days ago1638333970IN
0x47b2Af41...B80C16445
0 ETH0.05130461157
Submit Mining So...137083292021-11-29 11:23:00968 days ago1638184980IN
0x47b2Af41...B80C16445
0 ETH0.0336991698
Submit Mining So...137063962021-11-29 3:54:30968 days ago1638158070IN
0x47b2Af41...B80C16445
0 ETH0.00556142132
Submit Mining So...136982812021-11-27 20:48:41970 days ago1638046121IN
0x47b2Af41...B80C16445
0 ETH0.029916687
Submit Mining So...136963772021-11-27 13:43:55970 days ago1638020635IN
0x47b2Af41...B80C16445
0 ETH0.03679398107
Submit Mining So...136922252021-11-26 21:51:31971 days ago1637963491IN
0x47b2Af41...B80C16445
0 ETH0.05081223152
Submit Mining So...136897242021-11-26 12:30:17971 days ago1637929817IN
0x47b2Af41...B80C16445
0 ETH0.03988741116
Submit Mining So...136843042021-11-25 15:36:14972 days ago1637854574IN
0x47b2Af41...B80C16445
0 ETH0.00568944135
Submit Mining So...136835402021-11-25 12:44:40972 days ago1637844280IN
0x47b2Af41...B80C16445
0 ETH0.0395405121
Submit Mining So...136765942021-11-24 10:09:01973 days ago1637748541IN
0x47b2Af41...B80C16445
0 ETH0.03713785108
Submit Mining So...136752742021-11-24 5:06:03973 days ago1637730363IN
0x47b2Af41...B80C16445
0 ETH0.00459238109
Submit Mining So...136640882021-11-22 10:56:25975 days ago1637578585IN
0x47b2Af41...B80C16445
0 ETH0.0313686796
Submit Mining So...136614862021-11-22 0:58:41975 days ago1637542721IN
0x47b2Af41...B80C16445
0 ETH0.00564568134
Submit Mining So...136551562021-11-21 0:54:47976 days ago1637456087IN
0x47b2Af41...B80C16445
0 ETH0.03300366101
Submit Mining So...136514072021-11-20 10:38:23977 days ago1637404703IN
0x47b2Af41...B80C16445
0 ETH0.0326769100
Submit Mining So...136495182021-11-20 3:29:29977 days ago1637378969IN
0x47b2Af41...B80C16445
0 ETH0.03692489113
Submit Mining So...136481762021-11-19 22:28:01978 days ago1637360881IN
0x47b2Af41...B80C16445
0 ETH0.00585634139
Submit Mining So...136452872021-11-19 11:20:21978 days ago1637320821IN
0x47b2Af41...B80C16445
0 ETH0.0323501399
Submit Mining So...136366672021-11-18 2:22:22979 days ago1637202142IN
0x47b2Af41...B80C16445
0 ETH0.04149966127
Submit Mining So...136323952021-11-17 10:26:16980 days ago1637144776IN
0x47b2Af41...B80C16445
0 ETH0.04247997130
Submit Mining So...136298702021-11-17 0:53:45980 days ago1637110425IN
0x47b2Af41...B80C16445
0 ETH0.05130084157
Submit Mining So...136272132021-11-16 14:51:44981 days ago1637074304IN
0x47b2Af41...B80C16445
0 ETH0.04412799132
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 0x8648E4c7...E4dD16797
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TellorProxy

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2021-05-26
*/

/**
 *SPDX-License-Identifier: UNLICENSED
*/
pragma solidity >=0.6.8 <0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        _owner = msg.sender;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _owner = newOwner;
    }
}

// File: contracts/TellorProxy.sol

interface ITellor {
    function addTip(uint256 _requestId, uint256 _tip) external;

    function submitMiningSolution(
        string calldata _nonce,
        uint256[5] calldata _requestId,
        uint256[5] calldata _value
    ) external;

    function depositStake() external;

    function requestStakingWithdraw() external;

    function withdrawStake() external;

    function getUintVar(bytes32 _data) external view returns (uint256);

    function vote(uint256 _disputeId, bool _supportsDispute) external;

    function transfer(address _to, uint256 _amount) external returns (bool);
}

contract TellorProxy is Ownable {
    address tellorAddress; // Address of Tellor Oracle

    constructor(address _tellorAddress) public
    {
        tellorAddress = _tellorAddress;
    }

    function addTip(uint256 _requestId, uint256 _tip) external onlyOwner {
        ITellor(tellorAddress).addTip(_requestId, _tip);
    }

    function changeTRB(address _tellorAddress) external onlyOwner {
        tellorAddress = _tellorAddress;
    }

    function submitMiningSolution(
        string calldata _nonce,
        uint256[5] calldata _requestId,
        uint256[5] calldata _value,
        uint256 _pass
    ) external onlyOwner {
        if (_pass == 0) {
            bytes32 slotProgress =
                0xdfbec46864bc123768f0d134913175d9577a55bb71b9b2595fda21e21f36b082;
            uint256 _soltNum = ITellor(tellorAddress).getUintVar(slotProgress);
            require(_soltNum != 4, "out-ooff-gas");
        }
        ITellor(tellorAddress).submitMiningSolution(_nonce, _requestId, _value);
    }

    function depositStake() external onlyOwner {
        ITellor(tellorAddress).depositStake();
    }

    function requestStakingWithdraw() external onlyOwner {
        ITellor(tellorAddress).requestStakingWithdraw();
    }

    function payment(address _to, uint256 _amount) external onlyOwner {
        ITellor(tellorAddress).transfer(_to, _amount);
    }

    function getSlotProgress() external view returns (uint256) {
        bytes32 slotProgress =
            0xdfbec46864bc123768f0d134913175d9577a55bb71b9b2595fda21e21f36b082;
        return ITellor(tellorAddress).getUintVar(slotProgress);
    }

    function withdrawStake() external onlyOwner {
        ITellor(tellorAddress).withdrawStake();
    }

    function vote(uint256 _disputeId, bool _supportsDispute) external onlyOwner
    {
        ITellor(tellorAddress).vote(_disputeId, _supportsDispute);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_tellorAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"_requestId","type":"uint256"},{"internalType":"uint256","name":"_tip","type":"uint256"}],"name":"addTip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tellorAddress","type":"address"}],"name":"changeTRB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getSlotProgress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"payment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestStakingWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_nonce","type":"string"},{"internalType":"uint256[5]","name":"_requestId","type":"uint256[5]"},{"internalType":"uint256[5]","name":"_value","type":"uint256[5]"},{"internalType":"uint256","name":"_pass","type":"uint256"}],"name":"submitMiningSolution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_disputeId","type":"uint256"},{"internalType":"bool","name":"_supportsDispute","type":"bool"}],"name":"vote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c8063752d49a111610071578063752d49a1146101ec5780638da5cb5b14610224578063bed9d8611461026e578063c9d27afe14610278578063ca32d5c6146102b2578063f2fde38b146102d0576100a9565b806307361b6f146100ae5780630d2d76a2146100f257806328449c3a146100fc5780634cdae8431461010657806367a09c231461019e575b600080fd5b6100f0600480360360208110156100c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610314565b005b6100fa61041a565b005b610104610560565b005b61019c600480360361018081101561011d57600080fd5b810190808035906020019064010000000081111561013a57600080fd5b82018360208201111561014c57600080fd5b8035906020019184600183028401116401000000008311171561016e57600080fd5b90919293919293908060a0019091929192908060a001909192919290803590602001909291905050506106a6565b005b6101ea600480360360408110156101b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109cb565b005b6102226004803603604081101561020257600080fd5b810190808035906020019092919080359060200190929190505050610b76565b005b61022c610cd1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610276610cfa565b005b6102b06004803603604081101561028e57600080fd5b8101908080359060200190929190803515159060200190929190505050610e40565b005b6102ba610f9f565b6040518082815260200191505060405180910390f35b610312600480360360208110156102e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061107c565b005b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146103d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630d2d76a26040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561054657600080fd5b505af115801561055a573d6000803e3d6000fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166328449c3a6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561068c57600080fd5b505af11580156106a0573d6000803e3d6000fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008114156108c55760007fdfbec46864bc123768f0d134913175d9577a55bb71b9b2595fda21e21f36b08260001b90506000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663612c8f7f836040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561080e57600080fd5b505afa158015610822573d6000803e3d6000fd5b505050506040513d602081101561083857600080fd5b8101908080519060200190929190505050905060048114156108c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f6f75742d6f6f66662d676173000000000000000000000000000000000000000081525060200191505060405180910390fd5b50505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634350283e868686866040518563ffffffff1660e01b8152600401808060200184600560200280828437600081840152601f19601f82011690508083019250505083600560200280828437600081840152601f19601f8201169050808301925050508281038252868682818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b1580156109ac57600080fd5b505af11580156109c0573d6000803e3d6000fd5b505050505050505050565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610b3657600080fd5b505af1158015610b4a573d6000803e3d6000fd5b505050506040513d6020811015610b6057600080fd5b8101908080519060200190929190505050505050565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663752d49a183836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610cb557600080fd5b505af1158015610cc9573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dbc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bed9d8616040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610e2657600080fd5b505af1158015610e3a573d6000803e3d6000fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9d27afe83836040518363ffffffff1660e01b8152600401808381526020018215151515815260200192505050600060405180830381600087803b158015610f8357600080fd5b505af1158015610f97573d6000803e3d6000fd5b505050505050565b6000807fdfbec46864bc123768f0d134913175d9577a55bb71b9b2595fda21e21f36b08260001b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663612c8f7f826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561103b57600080fd5b505afa15801561104f573d6000803e3d6000fd5b505050506040513d602081101561106557600080fd5b810190808051906020019092919050505091505090565b3373ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461113e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806112086026913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a264697066735822122070bc095bd3e273262e05049bf50d1fdb6ea3b1a78d0d163162a8e6d3a11e9c7a64736f6c63430006080033

Deployed Bytecode Sourcemap

2221:1940:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2221:1940:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;2566:111:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;2566:111:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;3267:99;;;:::i;:::-;;3374:119;;;:::i;:::-;;2685:574;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;2685:574:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;2685:574:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;2685:574:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;2685:574:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3501:130;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;3501:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2423:135;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;2423:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;886:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3892:101;;;:::i;:::-;;4001:157;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;4001:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3639:245;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1330:227;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;1330:227:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;2566:111;1108:10;1098:20;;:6;;;;;;;;;;;:20;;;1090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2655:14:::1;2639:13;;:30;;;;;;;;;;;;;;;;;;2566:111:::0;:::o;3267:99::-;1108:10;1098:20;;:6;;;;;;;;;;;:20;;;1090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3329:13:::1;;;;;;;;;;;3321:35;;;:37;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;3321:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;3321:37:0;;;;3267:99::o:0;3374:119::-;1108:10;1098:20;;:6;;;;;;;;;;;:20;;;1090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3446:13:::1;;;;;;;;;;;3438:45;;;:47;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;3438:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;3438:47:0;;;;3374:119::o:0;2685:574::-;1108:10;1098:20;;:6;;;;;;;;;;;:20;;;1090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900:1:::1;2891:5;:10;2887:283;;;2918:20;2958:66;2918:106;;;;3039:16;3066:13;;;;;;;;;;;3058:33;;;3092:12;3058:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;3058:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;3058:47:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;3058:47:0;;;;;;;;;;;;;;;;3039:66;;3140:1;3128:8;:13;;3120:38;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;2887:283;;;3188:13;;;;;;;;;;;3180:43;;;3224:6;;3232:10;3244:6;3180:71;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;3180:71:0;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;3180:71:0;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;3180:71:0;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;3180:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;3180:71:0;;;;2685:574:::0;;;;;:::o;3501:130::-;1108:10;1098:20;;:6;;;;;;;;;;;:20;;;1090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3586:13:::1;;;;;;;;;;;3578:31;;;3610:3;3615:7;3578:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;3578:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;3578:45:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;3578:45:0;;;;;;;;;;;;;;;;;3501:130:::0;;:::o;2423:135::-;1108:10;1098:20;;:6;;;;;;;;;;;:20;;;1090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:13:::1;;;;;;;;;;;2503:29;;;2533:10;2545:4;2503:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;2503:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;2503:47:0;;;;2423:135:::0;;:::o;886:79::-;924:7;951:6;;;;;;;;;;;944:13;;886:79;:::o;3892:101::-;1108:10;1098:20;;:6;;;;;;;;;;;:20;;;1090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3955:13:::1;;;;;;;;;;;3947:36;;;:38;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;3947:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;3947:38:0;;;;3892:101::o:0;4001:157::-;1108:10;1098:20;;:6;;;;;;;;;;;:20;;;1090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4101:13:::1;;;;;;;;;;;4093:27;;;4121:10;4133:16;4093:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;4093:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;4093:57:0;;;;4001:157:::0;;:::o;3639:245::-;3689:7;3709:20;3745:66;3709:102;;;;3837:13;;;;;;;;;;;3829:33;;;3863:12;3829:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;3829:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3829:47:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;3829:47:0;;;;;;;;;;;;;;;;3822:54;;;3639:245;:::o;1330:227::-;1108:10;1098:20;;:6;;;;;;;;;;;:20;;;1090:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1453:1:::1;1433:22;;:8;:22;;;;1411:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1541:8;1532:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;1330:227:::0;:::o

Swarm Source

ipfs://70bc095bd3e273262e05049bf50d1fdb6ea3b1a78d0d163162a8e6d3a11e9c7a

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.