ETH Price: $2,673.38 (+1.67%)
Gas: 0.91 Gwei

Contract

0xB79bE228B1ac262aa96A8B9Cd647C25D70F125A4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exit147876112022-05-16 17:31:381003 days ago1652722298IN
0xB79bE228...D70F125A4
0 ETH0.0054899321.53398053
Exit146634662022-04-27 1:07:111023 days ago1651021631IN
0xB79bE228...D70F125A4
0 ETH0.0062530726.73223212
Exit131308102021-08-31 3:09:031262 days ago1630379343IN
0xB79bE228...D70F125A4
0 ETH0.0370665126.00369694
Exit126815372021-06-22 3:09:511332 days ago1624331391IN
0xB79bE228...D70F125A4
0 ETH0.0086193130.35011698
Exit125198232021-05-28 1:19:051357 days ago1622164745IN
0xB79bE228...D70F125A4
0 ETH0.0090874532
Exit125155082021-05-27 9:04:411358 days ago1622106281IN
0xB79bE228...D70F125A4
0 ETH0.0068982827
Exit125143652021-05-27 4:48:301358 days ago1622090910IN
0xB79bE228...D70F125A4
0 ETH0.0076678927
Exit125129422021-05-26 23:39:281358 days ago1622072368IN
0xB79bE228...D70F125A4
0 ETH0.0076678927
Exit125012742021-05-25 4:11:011360 days ago1621915861IN
0xB79bE228...D70F125A4
0 ETH0.0088075633
Exit124995302021-05-24 21:40:551360 days ago1621892455IN
0xB79bE228...D70F125A4
0 ETH0.0147677952
Exit124989992021-05-24 19:47:051360 days ago1621885625IN
0xB79bE228...D70F125A4
0 ETH0.0224924879.2
Exit124932302021-05-23 22:14:071361 days ago1621808047IN
0xB79bE228...D70F125A4
0 ETH0.0198797270
Exit124925572021-05-23 19:48:121361 days ago1621799292IN
0xB79bE228...D70F125A4
0 ETH0.03016935111
Exit124925122021-05-23 19:39:211361 days ago1621798761IN
0xB79bE228...D70F125A4
0 ETH0.03063349119.9
Exit124922542021-05-23 18:41:531361 days ago1621795313IN
0xB79bE228...D70F125A4
0 ETH0.05253926185
Exit124814922021-05-22 2:32:261363 days ago1621650746IN
0xB79bE228...D70F125A4
0 ETH0.0094527237
Exit124793102021-05-21 18:30:121363 days ago1621621812IN
0xB79bE228...D70F125A4
0 ETH0.0281143199
Exit124758162021-05-21 5:27:471364 days ago1621574867IN
0xB79bE228...D70F125A4
0 ETH0.0165795561
Exit124755602021-05-21 4:23:021364 days ago1621570982IN
0xB79bE228...D70F125A4
0 ETH0.0103605649
Exit124743082021-05-20 23:42:301364 days ago1621554150IN
0xB79bE228...D70F125A4
0 ETH0.012774650
Exit124738202021-05-20 21:56:341364 days ago1621547794IN
0xB79bE228...D70F125A4
0 ETH0.0184597465
Exit124734912021-05-20 20:41:471364 days ago1621543307IN
0xB79bE228...D70F125A4
0 ETH0.0194537268.5
Exit124668422021-05-19 19:58:221365 days ago1621454302IN
0xB79bE228...D70F125A4
0 ETH0.02868359101
Exit124611312021-05-18 22:43:441366 days ago1621377824IN
0xB79bE228...D70F125A4
0 ETH0.0258424591
Exit124572662021-05-18 8:21:081367 days ago1621326068IN
0xB79bE228...D70F125A4
0 ETH0.0171724763
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 0xe0CF53f4...9B5fa786F
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
StakingRewardsProxy

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

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

// File: @openzeppelin/upgrades/contracts/upgradeability/Proxy.sol

pragma solidity ^0.5.0;

/**
 * @title Proxy
 * @dev Implements delegation of calls to other contracts, with proper
 * forwarding of return values and bubbling of failures.
 * It defines a fallback function that delegates all calls to the address
 * returned by the abstract _implementation() internal function.
 */
contract Proxy {
  /**
   * @dev Fallback function.
   * Implemented entirely in `_fallback`.
   */
  function () payable external {
    _fallback();
  }

  /**
   * @return The Address of the implementation.
   */
  function _implementation() internal view returns (address);

  /**
   * @dev Delegates execution to an implementation contract.
   * This is a low level function that doesn't return to its internal call site.
   * It will return to the external caller whatever the implementation returns.
   * @param implementation Address to delegate.
   */
  function _delegate(address implementation) internal {
    assembly {
      // Copy msg.data. We take full control of memory in this inline assembly
      // block because it will not return to Solidity code. We overwrite the
      // Solidity scratch pad at memory position 0.
      calldatacopy(0, 0, calldatasize)

      // Call the implementation.
      // out and outsize are 0 because we don't know the size yet.
      let result := delegatecall(gas, implementation, 0, calldatasize, 0, 0)

      // Copy the returned data.
      returndatacopy(0, 0, returndatasize)

      switch result
      // delegatecall returns 0 on error.
      case 0 { revert(0, returndatasize) }
      default { return(0, returndatasize) }
    }
  }

  /**
   * @dev Function that is run as the first thing in the fallback function.
   * Can be redefined in derived contracts to add functionality.
   * Redefinitions must call super._willFallback().
   */
  function _willFallback() internal {
  }

  /**
   * @dev fallback implementation.
   * Extracted to enable manual triggering.
   */
  function _fallback() internal {
    _willFallback();
    _delegate(_implementation());
  }
}

// File: @openzeppelin/upgrades/contracts/utils/Address.sol

pragma solidity ^0.5.0;

/**
 * Utility library of inline functions on addresses
 *
 * Source https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-solidity/v2.1.3/contracts/utils/Address.sol
 * This contract is copied here and renamed from the original to avoid clashes in the compiled artifacts
 * when the user imports a zos-lib contract (that transitively causes this contract to be compiled and added to the
 * build/artifacts folder) as well as the vanilla Address implementation from an openzeppelin version.
 */
library OpenZeppelinUpgradesAddress {
    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param account address of the account to check
     * @return whether the target address is a contract
     */
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

// File: @openzeppelin/upgrades/contracts/upgradeability/BaseUpgradeabilityProxy.sol

pragma solidity ^0.5.0;



/**
 * @title BaseUpgradeabilityProxy
 * @dev This contract implements a proxy that allows to change the
 * implementation address to which it will delegate.
 * Such a change is called an implementation upgrade.
 */
contract BaseUpgradeabilityProxy is Proxy {
  /**
   * @dev Emitted when the implementation is upgraded.
   * @param implementation Address of the new implementation.
   */
  event Upgraded(address indexed implementation);

  /**
   * @dev Storage slot with the address of the current implementation.
   * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
   * validated in the constructor.
   */
  bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

  /**
   * @dev Returns the current implementation.
   * @return Address of the current implementation
   */
  function _implementation() internal view returns (address impl) {
    bytes32 slot = IMPLEMENTATION_SLOT;
    assembly {
      impl := sload(slot)
    }
  }

  /**
   * @dev Upgrades the proxy to a new implementation.
   * @param newImplementation Address of the new implementation.
   */
  function _upgradeTo(address newImplementation) internal {
    _setImplementation(newImplementation);
    emit Upgraded(newImplementation);
  }

  /**
   * @dev Sets the implementation address of the proxy.
   * @param newImplementation Address of the new implementation.
   */
  function _setImplementation(address newImplementation) internal {
    require(OpenZeppelinUpgradesAddress.isContract(newImplementation), "Cannot set a proxy implementation to a non-contract address");

    bytes32 slot = IMPLEMENTATION_SLOT;

    assembly {
      sstore(slot, newImplementation)
    }
  }
}

// File: @openzeppelin/upgrades/contracts/upgradeability/UpgradeabilityProxy.sol

pragma solidity ^0.5.0;


/**
 * @title UpgradeabilityProxy
 * @dev Extends BaseUpgradeabilityProxy with a constructor for initializing
 * implementation and init data.
 */
contract UpgradeabilityProxy is BaseUpgradeabilityProxy {
  /**
   * @dev Contract constructor.
   * @param _logic Address of the initial implementation.
   * @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
   * It should include the signature and the parameters of the function to be called, as described in
   * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
   * This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
   */
  constructor(address _logic, bytes memory _data) public payable {
    assert(IMPLEMENTATION_SLOT == bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1));
    _setImplementation(_logic);
    if(_data.length > 0) {
      (bool success,) = _logic.delegatecall(_data);
      require(success);
    }
  }
}

// File: @openzeppelin/upgrades/contracts/upgradeability/BaseAdminUpgradeabilityProxy.sol

pragma solidity ^0.5.0;


/**
 * @title BaseAdminUpgradeabilityProxy
 * @dev This contract combines an upgradeability proxy with an authorization
 * mechanism for administrative tasks.
 * All external functions in this contract must be guarded by the
 * `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity
 * feature proposal that would enable this to be done automatically.
 */
contract BaseAdminUpgradeabilityProxy is BaseUpgradeabilityProxy {
  /**
   * @dev Emitted when the administration has been transferred.
   * @param previousAdmin Address of the previous admin.
   * @param newAdmin Address of the new admin.
   */
  event AdminChanged(address previousAdmin, address newAdmin);

  /**
   * @dev Storage slot with the admin of the contract.
   * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
   * validated in the constructor.
   */

  bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

  /**
   * @dev Modifier to check whether the `msg.sender` is the admin.
   * If it is, it will run the function. Otherwise, it will delegate the call
   * to the implementation.
   */
  modifier ifAdmin() {
    if (msg.sender == _admin()) {
      _;
    } else {
      _fallback();
    }
  }

  /**
   * @return The address of the proxy admin.
   */
  function admin() external ifAdmin returns (address) {
    return _admin();
  }

  /**
   * @return The address of the implementation.
   */
  function implementation() external ifAdmin returns (address) {
    return _implementation();
  }

  /**
   * @dev Changes the admin of the proxy.
   * Only the current admin can call this function.
   * @param newAdmin Address to transfer proxy administration to.
   */
  function changeAdmin(address newAdmin) external ifAdmin {
    require(newAdmin != address(0), "Cannot change the admin of a proxy to the zero address");
    emit AdminChanged(_admin(), newAdmin);
    _setAdmin(newAdmin);
  }

  /**
   * @dev Upgrade the backing implementation of the proxy.
   * Only the admin can call this function.
   * @param newImplementation Address of the new implementation.
   */
  function upgradeTo(address newImplementation) external ifAdmin {
    _upgradeTo(newImplementation);
  }

  /**
   * @dev Upgrade the backing implementation of the proxy and call a function
   * on the new implementation.
   * This is useful to initialize the proxied contract.
   * @param newImplementation Address of the new implementation.
   * @param data Data to send as msg.data in the low level call.
   * It should include the signature and the parameters of the function to be called, as described in
   * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
   */
  function upgradeToAndCall(address newImplementation, bytes calldata data) payable external ifAdmin {
    _upgradeTo(newImplementation);
    (bool success,) = newImplementation.delegatecall(data);
    require(success);
  }

  /**
   * @return The admin slot.
   */
  function _admin() internal view returns (address adm) {
    bytes32 slot = ADMIN_SLOT;
    assembly {
      adm := sload(slot)
    }
  }

  /**
   * @dev Sets the address of the proxy admin.
   * @param newAdmin Address of the new proxy admin.
   */
  function _setAdmin(address newAdmin) internal {
    bytes32 slot = ADMIN_SLOT;

    assembly {
      sstore(slot, newAdmin)
    }
  }

  /**
   * @dev Only fall back when the sender is not the admin.
   */
  function _willFallback() internal {
    require(msg.sender != _admin(), "Cannot call fallback function from the proxy admin");
    super._willFallback();
  }
}

// File: @openzeppelin/upgrades/contracts/upgradeability/AdminUpgradeabilityProxy.sol

pragma solidity ^0.5.0;


/**
 * @title AdminUpgradeabilityProxy
 * @dev Extends from BaseAdminUpgradeabilityProxy with a constructor for
 * initializing the implementation, admin, and init data.
 */
contract AdminUpgradeabilityProxy is BaseAdminUpgradeabilityProxy, UpgradeabilityProxy {
  /**
   * Contract constructor.
   * @param _logic address of the initial implementation.
   * @param _admin Address of the proxy administrator.
   * @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
   * It should include the signature and the parameters of the function to be called, as described in
   * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
   * This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
   */
  constructor(address _logic, address _admin, bytes memory _data) UpgradeabilityProxy(_logic, _data) public payable {
    assert(ADMIN_SLOT == bytes32(uint256(keccak256('eip1967.proxy.admin')) - 1));
    _setAdmin(_admin);
  }
}

// File: contracts/proxies/StakingRewardsProxy.sol

pragma solidity 0.5.12;
pragma experimental ABIEncoderV2;


contract StakingRewardsProxy is AdminUpgradeabilityProxy {
    constructor(address _logic, address _proxyAdmin)
        public
        AdminUpgradeabilityProxy(
            _logic,
            _proxyAdmin,
            ""
        )
    {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"_proxyAdmin","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"payable":true,"stateMutability":"payable","type":"function"}]

Deployed Bytecode

0x60806040526004361061004a5760003560e01c80633659cfe6146100545780634f1ef286146100745780635c60da1b146100875780638f283970146100b2578063f851a440146100d2575b6100526100e7565b005b34801561006057600080fd5b5061005261006f36600461049f565b610101565b6100526100823660046104c5565b61013b565b34801561009357600080fd5b5061009c6101e2565b6040516100a99190610661565b60405180910390f35b3480156100be57600080fd5b506100526100cd36600461049f565b61021f565b3480156100de57600080fd5b5061009c6102b8565b6100ef6102e3565b6100ff6100fa610324565b610349565b565b61010961036d565b6001600160a01b0316336001600160a01b031614156101305761012b81610392565b610138565b6101386100e7565b50565b61014361036d565b6001600160a01b0316336001600160a01b031614156101d55761016583610392565b6000836001600160a01b03168383604051610181929190610654565b600060405180830381855af49150503d80600081146101bc576040519150601f19603f3d011682016040523d82523d6000602084013e6101c1565b606091505b50509050806101cf57600080fd5b506101dd565b6101dd6100e7565b505050565b60006101ec61036d565b6001600160a01b0316336001600160a01b031614156102145761020d610324565b905061021c565b61021c6100e7565b90565b61022761036d565b6001600160a01b0316336001600160a01b03161415610130576001600160a01b03811661026f5760405162461bcd60e51b8152600401610266906106a1565b60405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61029861036d565b826040516102a792919061066f565b60405180910390a161012b816103d2565b60006102c261036d565b6001600160a01b0316336001600160a01b031614156102145761020d61036d565b6102eb61036d565b6001600160a01b0316336001600160a01b0316141561031c5760405162461bcd60e51b815260040161026690610691565b6100ff6100ff565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b3660008037600080366000845af43d6000803e808015610368573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b61039b816103f6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b6103ff8161043f565b61041b5760405162461bcd60e51b8152600401610266906106b1565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b3b151590565b8035610450816106ec565b92915050565b60008083601f84011261046857600080fd5b50813567ffffffffffffffff81111561048057600080fd5b60208301915083600182028301111561049857600080fd5b9250929050565b6000602082840312156104b157600080fd5b60006104bd8484610445565b949350505050565b6000806000604084860312156104da57600080fd5b60006104e68686610445565b935050602084013567ffffffffffffffff81111561050357600080fd5b61050f86828701610456565b92509250509250925092565b610524816106cf565b82525050565b600061053683856106c1565b93506105438385846106e0565b50500190565b60006105566032836106c6565b7f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667281527137b6903a343290383937bc3c9030b236b4b760711b602082015260400192915050565b60006105aa6036836106c6565b7f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f815275787920746f20746865207a65726f206164647265737360501b602082015260400192915050565b6000610602603b836106c6565b7f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f81527f6e20746f2061206e6f6e2d636f6e747261637420616464726573730000000000602082015260400192915050565b60006104bd82848661052a565b60208101610450828461051b565b6040810161067d828561051b565b61068a602083018461051b565b9392505050565b6020808252810161045081610549565b602080825281016104508161059d565b60208082528101610450816105f5565b919050565b90815260200190565b60006001600160a01b038216610450565b82818337506000910152565b6106f5816106cf565b811461013857600080fdfea365627a7a72315820d7e1538a513ea3bd7e5be9806c4671222cf2a2132b14ec0516a0455c18795fcc6c6578706572696d656e74616cf564736f6c634300050c0040

Deployed Bytecode Sourcemap

12146:248:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538:11;:9;:11::i;:::-;12146:248;9267:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9267:105:0;;;;;;;;:::i;9900:225::-;;;;;;;;;:::i;8567:98::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8567:98:0;;;:::i;:::-;;;;;;;;;;;;;;;;8848:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8848:228:0;;;;;;;;:::i;8418:80::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8418:80:0;;;:::i;2084:93::-;2121:15;:13;:15::i;:::-;2143:28;2153:17;:15;:17::i;:::-;2143:9;:28::i;:::-;2084:93::o;9267:105::-;8285:8;:6;:8::i;:::-;-1:-1:-1;;;;;8271:22:0;:10;-1:-1:-1;;;;;8271:22:0;;8267:80;;;9337:29;9348:17;9337:10;:29::i;:::-;8267:80;;;8328:11;:9;:11::i;:::-;9267:105;:::o;9900:225::-;8285:8;:6;:8::i;:::-;-1:-1:-1;;;;;8271:22:0;:10;-1:-1:-1;;;;;8271:22:0;;8267:80;;;10006:29;10017:17;10006:10;:29::i;:::-;10043:12;10060:17;-1:-1:-1;;;;;10060:30:0;10091:4;;10060:36;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;10042:54:0;;;10111:7;10103:16;;;;;;8304:1;8267:80;;;8328:11;:9;:11::i;:::-;9900:225;;;:::o;8567:98::-;8619:7;8285:8;:6;:8::i;:::-;-1:-1:-1;;;;;8271:22:0;:10;-1:-1:-1;;;;;8271:22:0;;8267:80;;;8642:17;:15;:17::i;:::-;8635:24;;8267:80;;;8328:11;:9;:11::i;:::-;8567:98;:::o;8848:228::-;8285:8;:6;:8::i;:::-;-1:-1:-1;;;;;8271:22:0;:10;-1:-1:-1;;;;;8271:22:0;;8267:80;;;-1:-1:-1;;;;;8919:22:0;;8911:89;;;;-1:-1:-1;;;8911:89:0;;;;;;;;;;;;;;;;;9012:32;9025:8;:6;:8::i;:::-;9035;9012:32;;;;;;;;;;;;;;;;9051:19;9061:8;9051:9;:19::i;8418:80::-;8461:7;8285:8;:6;:8::i;:::-;-1:-1:-1;;;;;8271:22:0;:10;-1:-1:-1;;;;;8271:22:0;;8267:80;;;8484:8;:6;:8::i;10657:160::-;10720:8;:6;:8::i;:::-;-1:-1:-1;;;;;10706:22:0;:10;-1:-1:-1;;;;;10706:22:0;;;10698:85;;;;-1:-1:-1;;;10698:85:0;;;;;;;;;10790:21;:19;:21::i;4845:161::-;4659:66;4983:11;;4966:35::o;977:750::-;1284:12;1281:1;1278;1265:32;1478:1;1475;1461:12;1458:1;1442:14;1437:3;1424:56;1545:14;1542:1;1539;1524:36;1577:6;1634:36;;;;1698:14;1695:1;1688:25;1634:36;1653:14;1650:1;1643:25;10175:141;7978:66;10293:11;;10277:34::o;5147:145::-;5210:37;5229:17;5210:18;:37::i;:::-;5259:27;;-1:-1:-1;;;;;5259:27:0;;;;;;;;5147:145;:::o;10438:139::-;7978:66;10543:22;10534:38::o;5435:313::-;5514:57;5553:17;5514:38;:57::i;:::-;5506:129;;;;-1:-1:-1;;;5506:129:0;;;;;;;;;4659:66;5705:31;5696:47::o;3189:627::-;3761:20;3800:8;;;3189:627::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;;57:78;;;;;156:335;;;270:3;263:4;255:6;251:17;247:27;237:2;;288:1;285;278:12;237:2;-1:-1;308:20;;348:18;337:30;;334:2;;;380:1;377;370:12;334:2;414:4;406:6;402:17;390:29;;464:3;457;449:6;445:16;435:8;431:31;428:40;425:2;;;481:1;478;471:12;425:2;230:261;;;;;;499:241;;603:2;591:9;582:7;578:23;574:32;571:2;;;619:1;616;609:12;571:2;654:1;671:53;716:7;696:9;671:53;;;661:63;565:175;-1:-1;;;;565:175;747:490;;;;887:2;875:9;866:7;862:23;858:32;855:2;;;903:1;900;893:12;855:2;938:1;955:53;1000:7;980:9;955:53;;;945:63;;917:97;1073:2;1062:9;1058:18;1045:32;1097:18;1089:6;1086:30;1083:2;;;1129:1;1126;1119:12;1083:2;1157:64;1213:7;1204:6;1193:9;1189:22;1157:64;;;1147:74;;;;1024:203;849:388;;;;;;1244:113;1327:24;1345:5;1327:24;;;1322:3;1315:37;1309:48;;;1387:310;;1519:88;1600:6;1595:3;1519:88;;;1512:95;;1619:43;1655:6;1650:3;1643:5;1619:43;;;-1:-1;;1675:16;;1505:192;1706:465;;1866:67;1930:2;1925:3;1866:67;;;1966:66;1946:87;;-1:-1;;;2062:2;2053:12;;2046:88;2162:2;2153:12;;1852:319;-1:-1;;1852:319;2180:465;;2340:67;2404:2;2399:3;2340:67;;;2440:66;2420:87;;-1:-1;;;2536:2;2527:12;;2520:88;2636:2;2627:12;;2326:319;-1:-1;;2326:319;2654:465;;2814:67;2878:2;2873:3;2814:67;;;2914:66;2894:87;;3015:66;3010:2;3001:12;;2994:88;3110:2;3101:12;;2800:319;-1:-1;;2800:319;3127:282;;3281:103;3380:3;3371:6;3363;3281:103;;3416:213;3534:2;3519:18;;3548:71;3523:9;3592:6;3548:71;;3636:324;3782:2;3767:18;;3796:71;3771:9;3840:6;3796:71;;;3878:72;3946:2;3935:9;3931:18;3922:6;3878:72;;;3753:207;;;;;;3967:407;4158:2;4172:47;;;4143:18;;4233:131;4143:18;4233:131;;4381:407;4572:2;4586:47;;;4557:18;;4647:131;4557:18;4647:131;;4795:407;4986:2;5000:47;;;4971:18;;5061:131;4971:18;5061:131;;5210:144;5345:3;5323:31;-1:-1;5323:31;5363:163;5466:19;;;5515:4;5506:14;;5459:67;5534:91;;-1:-1;;;;;5694:54;;5596:24;5677:76;5761:145;5842:6;5837:3;5832;5819:30;-1:-1;5898:1;5880:16;;5873:27;5812:94;5914:117;5983:24;6001:5;5983:24;;;5976:5;5973:35;5963:2;;6022:1;6019;6012:12

Swarm Source

bzzr://d7e1538a513ea3bd7e5be9806c4671222cf2a2132b14ec0516a0455c18795fcc

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.