ETH Price: $3,272.46 (+3.20%)
Gas: 2 Gwei

Contract

0xD8A9821462fAA0B436667074b5E90B5F8052c74b
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Payment141518502022-02-06 10:06:04900 days ago1644141964IN
0xD8A98214...F8052c74b
0 ETH0.0044456741
Payment129568812021-08-04 5:46:521087 days ago1628056012IN
0xD8A98214...F8052c74b
0 ETH0.0045934942
Submit Mining So...129567002021-08-04 4:56:571087 days ago1628053017IN
0xD8A98214...F8052c74b
0 ETH0.0013070227.6
Submit Mining So...129564542021-08-04 4:01:121087 days ago1628049672IN
0xD8A98214...F8052c74b
0 ETH0.0460433927.6
Submit Mining So...129559682021-08-04 2:09:541087 days ago1628042994IN
0xD8A98214...F8052c74b
0 ETH0.001267825.1
Submit Mining So...129555222021-08-04 0:26:271087 days ago1628036787IN
0xD8A98214...F8052c74b
0 ETH0.0018659244.275
Submit Mining So...129522362021-08-03 12:11:011087 days ago1627992661IN
0xD8A98214...F8052c74b
0 ETH0.0598544236
Submit Mining So...129517832021-08-03 10:27:471087 days ago1627986467IN
0xD8A98214...F8052c74b
0 ETH0.0013934127.6
Submit Mining So...129515152021-08-03 9:31:391087 days ago1627983099IN
0xD8A98214...F8052c74b
0 ETH0.0016971333.60000175
Submit Mining So...129508952021-08-03 7:08:521088 days ago1627974532IN
0xD8A98214...F8052c74b
0 ETH0.0683433241.4
Submit Mining So...129499342021-08-03 3:23:151088 days ago1627960995IN
0xD8A98214...F8052c74b
0 ETH0.0624982837.5
Submit Mining So...129498242021-08-03 3:00:391088 days ago1627959639IN
0xD8A98214...F8052c74b
0 ETH0.0027855555.17487
Submit Mining So...129495762021-08-03 2:01:241088 days ago1627956084IN
0xD8A98214...F8052c74b
0 ETH0.1082879864.47635999
Submit Mining So...129494342021-08-03 1:25:481088 days ago1627953948IN
0xD8A98214...F8052c74b
0 ETH0.0674419740.08
Submit Mining So...129491502021-08-03 0:22:271088 days ago1627950147IN
0xD8A98214...F8052c74b
0 ETH0.0019542738.7
Submit Mining So...129486162021-08-02 22:27:341088 days ago1627943254IN
0xD8A98214...F8052c74b
0 ETH0.0799483748.53
Submit Mining So...129483842021-08-02 21:37:261088 days ago1627940246IN
0xD8A98214...F8052c74b
0 ETH0.002322946
Submit Mining So...129476232021-08-02 18:44:461088 days ago1627929886IN
0xD8A98214...F8052c74b
0 ETH0.0814443748.9325
Submit Mining So...129468082021-08-02 15:47:121088 days ago1627919232IN
0xD8A98214...F8052c74b
0 ETH0.0799406948.07
Submit Mining So...129462182021-08-02 13:32:201088 days ago1627911140IN
0xD8A98214...F8052c74b
0 ETH0.0024904359.49999999
Submit Mining So...129457052021-08-02 11:33:431088 days ago1627904023IN
0xD8A98214...F8052c74b
0 ETH0.0104304631.92
Submit Mining So...129442932021-08-02 6:07:231089 days ago1627884443IN
0xD8A98214...F8052c74b
0 ETH0.0482274428.8
Submit Mining So...129440402021-08-02 5:09:481089 days ago1627880988IN
0xD8A98214...F8052c74b
0 ETH0.0429947325.74
Submit Mining So...129437432021-08-02 4:00:581089 days ago1627876858IN
0xD8A98214...F8052c74b
0 ETH0.0477350428.8
Submit Mining So...129433082021-08-02 2:20:581089 days ago1627870858IN
0xD8A98214...F8052c74b
0 ETH0.0460660327.72000002
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.