ETH Price: $3,059.34 (+2.59%)
Gas: 2 Gwei

Contract

0x5C034E3beDb7D06Bd102Fc483Cf017Bf9f90DA60
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Fulfill Oracle R...129934912021-08-09 21:50:191062 days ago1628545819IN
0x5C034E3b...f9f90DA60
0 ETH0.0084932190
Fulfill Oracle R...129934832021-08-09 21:48:571062 days ago1628545737IN
0x5C034E3b...f9f90DA60
0 ETH0.0094086100
Fulfill Oracle R...129934832021-08-09 21:48:571062 days ago1628545737IN
0x5C034E3b...f9f90DA60
0 ETH0.0094369100
Fulfill Oracle R...129934832021-08-09 21:48:571062 days ago1628545737IN
0x5C034E3b...f9f90DA60
0 ETH0.0094369100
Fulfill Oracle R...129934792021-08-09 21:47:331062 days ago1628545653IN
0x5C034E3b...f9f90DA60
0 ETH0.00997976105.76605778
Fulfill Oracle R...129934792021-08-09 21:47:331062 days ago1628545653IN
0x5C034E3b...f9f90DA60
0 ETH0.00998103105.76605778
Fulfill Oracle R...129934772021-08-09 21:47:071062 days ago1628545627IN
0x5C034E3b...f9f90DA60
0 ETH0.00798861107.29162081
Fulfill Oracle R...129934772021-08-09 21:47:071062 days ago1628545627IN
0x5C034E3b...f9f90DA60
0 ETH0.010125107.29162081
Fulfill Oracle R...129934752021-08-09 21:46:391062 days ago1628545599IN
0x5C034E3b...f9f90DA60
0 ETH0.01031912109.67755267
Fulfill Oracle R...129934742021-08-09 21:46:291062 days ago1628545589IN
0x5C034E3b...f9f90DA60
0 ETH0.01056664112
Fulfill Oracle R...129934642021-08-09 21:45:291062 days ago1628545529IN
0x5C034E3b...f9f90DA60
0 ETH0.01117725118.44203916
Fulfill Oracle R...129934632021-08-09 21:44:581062 days ago1628545498IN
0x5C034E3b...f9f90DA60
0 ETH0.01110737118.44203916
Fulfill Oracle R...129934612021-08-09 21:44:291062 days ago1628545469IN
0x5C034E3b...f9f90DA60
0 ETH0.01113554118
Fulfill Oracle R...129934592021-08-09 21:43:411062 days ago1628545421IN
0x5C034E3b...f9f90DA60
0 ETH0.01122991119
Fulfill Oracle R...129934462021-08-09 21:40:051062 days ago1628545205IN
0x5C034E3b...f9f90DA60
0 ETH0.01144183121.62588601
Fulfill Oracle R...129934452021-08-09 21:39:431062 days ago1628545183IN
0x5C034E3b...f9f90DA60
0 ETH0.01147771121.62588601
Fulfill Oracle R...129934452021-08-09 21:39:431062 days ago1628545183IN
0x5C034E3b...f9f90DA60
0 ETH0.01147771121.62588601
Fulfill Oracle R...129934372021-08-09 21:38:051062 days ago1628545085IN
0x5C034E3b...f9f90DA60
0 ETH0.01179612125
Fulfill Oracle R...129934272021-08-09 21:35:031062 days ago1628544903IN
0x5C034E3b...f9f90DA60
0 ETH0.01217204129.37149358
Fulfill Oracle R...129934222021-08-09 21:33:591062 days ago1628544839IN
0x5C034E3b...f9f90DA60
0 ETH0.00968097130
Fulfill Oracle R...129934212021-08-09 21:33:261062 days ago1628544806IN
0x5C034E3b...f9f90DA60
0 ETH0.00968097130
Fulfill Oracle R...129934212021-08-09 21:33:261062 days ago1628544806IN
0x5C034E3b...f9f90DA60
0 ETH0.01226797130
Fulfill Oracle R...129934182021-08-09 21:33:001062 days ago1628544780IN
0x5C034E3b...f9f90DA60
0 ETH0.01226797130
Fulfill Oracle R...129934022021-08-09 21:29:061062 days ago1628544546IN
0x5C034E3b...f9f90DA60
0 ETH0.01184921125.56253667
Fulfill Oracle R...129933752021-08-09 21:23:311062 days ago1628544211IN
0x5C034E3b...f9f90DA60
0 ETH0.01189122126.00770468
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 0x1667df00...1607508D7
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Oracle

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-05
*/

// File: https://github.com/smartcontractkit/chainlink/evm-contracts/src/v0.4/interfaces/LinkTokenInterface.sol

pragma solidity ^0.4.24;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);
  function approve(address spender, uint256 value) external returns (bool success);
  function balanceOf(address owner) external view returns (uint256 balance);
  function decimals() external view returns (uint8 decimalPlaces);
  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);
  function increaseApproval(address spender, uint256 subtractedValue) external;
  function name() external view returns (string tokenName);
  function symbol() external view returns (string tokenSymbol);
  function totalSupply() external view returns (uint256 totalTokensIssued);
  function transfer(address to, uint256 value) external returns (bool success);
  function transferAndCall(address to, uint256 value, bytes data) external returns (bool success);
  function transferFrom(address from, address to, uint256 value) external returns (bool success);
}

// File: https://github.com/smartcontractkit/chainlink/evm-contracts/src/v0.4/interfaces/OracleInterface.sol

pragma solidity ^0.4.24;

interface OracleInterface {
  function fulfillOracleRequest(
    bytes32 requestId,
    uint256 payment,
    address callbackAddress,
    bytes4 callbackFunctionId,
    uint256 expiration,
    bytes32 data
  ) external returns (bool);
  function getAuthorizationStatus(address node) external view returns (bool);
  function setFulfillmentPermission(address node, bool allowed) external;
  function withdraw(address recipient, uint256 amount) external;
  function withdrawable() external view returns (uint256);
}

// File: https://github.com/smartcontractkit/chainlink/evm-contracts/src/v0.4/interfaces/ChainlinkRequestInterface.sol

pragma solidity ^0.4.24;

interface ChainlinkRequestInterface {
  function oracleRequest(
    address sender,
    uint256 payment,
    bytes32 id,
    address callbackAddress,
    bytes4 callbackFunctionId,
    uint256 nonce,
    uint256 version,
    bytes data
  ) external;

  function cancelOracleRequest(
    bytes32 requestId,
    uint256 payment,
    bytes4 callbackFunctionId,
    uint256 expiration
  ) external;
}

// File: https://github.com/smartcontractkit/chainlink/evm-contracts/src/v0.4/vendor/SafeMathChainlink.sol

pragma solidity ^0.4.11;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMathChainlink {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (_a == 0) {
      return 0;
    }

    c = _a * _b;
    assert(c / _a == _b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
    // assert(_b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = _a / _b;
    // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
    return _a / _b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
    assert(_b <= _a);
    return _a - _b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}

// File: https://github.com/smartcontractkit/chainlink/evm-contracts/src/v0.4/vendor/Ownable.sol

pragma solidity ^0.4.24;


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


  event OwnershipRenounced(address indexed previousOwner);
  event OwnershipTransferred(
    address indexed previousOwner,
    address indexed newOwner
  );


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

// File: https://github.com/smartcontractkit/chainlink/evm-contracts/src/v0.4/Oracle.sol

pragma solidity 0.4.24;






/**
 * @title The Chainlink Oracle contract
 * @notice Node operators can deploy this contract to fulfill requests sent to them
 */
contract Oracle is ChainlinkRequestInterface, OracleInterface, Ownable {
  using SafeMathChainlink for uint256;

  uint256 constant public EXPIRY_TIME = 5 minutes;
  uint256 constant private MINIMUM_CONSUMER_GAS_LIMIT = 400000;
  // We initialize fields to 1 instead of 0 so that the first invocation
  // does not cost more gas.
  uint256 constant private ONE_FOR_CONSISTENT_GAS_COST = 1;
  uint256 constant private SELECTOR_LENGTH = 4;
  uint256 constant private EXPECTED_REQUEST_WORDS = 2;
  uint256 constant private MINIMUM_REQUEST_LENGTH = SELECTOR_LENGTH + (32 * EXPECTED_REQUEST_WORDS);

  LinkTokenInterface internal LinkToken;
  mapping(bytes32 => bytes32) private commitments;
  mapping(address => bool) private authorizedNodes;
  uint256 private withdrawableTokens = ONE_FOR_CONSISTENT_GAS_COST;

  event OracleRequest(
    bytes32 indexed specId,
    address requester,
    bytes32 requestId,
    uint256 payment,
    address callbackAddr,
    bytes4 callbackFunctionId,
    uint256 cancelExpiration,
    uint256 dataVersion,
    bytes data
  );

  event CancelOracleRequest(
    bytes32 indexed requestId
  );

  /**
   * @notice Deploy with the address of the LINK token
   * @dev Sets the LinkToken address for the imported LinkTokenInterface
   * @param _link The address of the LINK token
   */
  constructor(address _link) public Ownable() {
    LinkToken = LinkTokenInterface(_link); // external but already deployed and unalterable
  }

  /**
   * @notice Called when LINK is sent to the contract via `transferAndCall`
   * @dev The data payload's first 2 words will be overwritten by the `_sender` and `_amount`
   * values to ensure correctness. Calls oracleRequest.
   * @param _sender Address of the sender
   * @param _amount Amount of LINK sent (specified in wei)
   * @param _data Payload of the transaction
   */
  function onTokenTransfer(
    address _sender,
    uint256 _amount,
    bytes _data
  )
    public
    onlyLINK
    validRequestLength(_data)
    permittedFunctionsForLINK(_data)
  {
    assembly { // solhint-disable-line no-inline-assembly
      mstore(add(_data, 36), _sender) // ensure correct sender is passed
      mstore(add(_data, 68), _amount) // ensure correct amount is passed
    }
    // solhint-disable-next-line avoid-low-level-calls
    require(address(this).delegatecall(_data), "Unable to create request"); // calls oracleRequest
  }

  /**
   * @notice Creates the Chainlink request
   * @dev Stores the hash of the params as the on-chain commitment for the request.
   * Emits OracleRequest event for the Chainlink node to detect.
   * @param _sender The sender of the request
   * @param _payment The amount of payment given (specified in wei)
   * @param _specId The Job Specification ID
   * @param _callbackAddress The callback address for the response
   * @param _callbackFunctionId The callback function ID for the response
   * @param _nonce The nonce sent by the requester
   * @param _dataVersion The specified data version
   * @param _data The CBOR payload of the request
   */
  function oracleRequest(
    address _sender,
    uint256 _payment,
    bytes32 _specId,
    address _callbackAddress,
    bytes4 _callbackFunctionId,
    uint256 _nonce,
    uint256 _dataVersion,
    bytes _data
  )
    external
    onlyLINK
    checkCallbackAddress(_callbackAddress)
  {
    bytes32 requestId = keccak256(abi.encodePacked(_sender, _nonce));
    require(commitments[requestId] == 0, "Must use a unique ID");
    // solhint-disable-next-line not-rely-on-time
    uint256 expiration = now.add(EXPIRY_TIME);

    commitments[requestId] = keccak256(
      abi.encodePacked(
        _payment,
        _callbackAddress,
        _callbackFunctionId,
        expiration
      )
    );

    emit OracleRequest(
      _specId,
      _sender,
      requestId,
      _payment,
      _callbackAddress,
      _callbackFunctionId,
      expiration,
      _dataVersion,
      _data);
  }

  /**
   * @notice Called by the Chainlink node to fulfill requests
   * @dev Given params must hash back to the commitment stored from `oracleRequest`.
   * Will call the callback address' callback function without bubbling up error
   * checking in a `require` so that the node can get paid.
   * @param _requestId The fulfillment request ID that must match the requester's
   * @param _payment The payment amount that will be released for the oracle (specified in wei)
   * @param _callbackAddress The callback address to call for fulfillment
   * @param _callbackFunctionId The callback function ID to use for fulfillment
   * @param _expiration The expiration that the node should respond by before the requester can cancel
   * @param _data The data to return to the consuming contract
   * @return Status if the external call was successful
   */
  function fulfillOracleRequest(
    bytes32 _requestId,
    uint256 _payment,
    address _callbackAddress,
    bytes4 _callbackFunctionId,
    uint256 _expiration,
    bytes32 _data
  )
    external
    onlyAuthorizedNode
    isValidRequest(_requestId)
    returns (bool)
  {
    bytes32 paramsHash = keccak256(
      abi.encodePacked(
        _payment,
        _callbackAddress,
        _callbackFunctionId,
        _expiration
      )
    );
    require(commitments[_requestId] == paramsHash, "Params do not match request ID");
    withdrawableTokens = withdrawableTokens.add(_payment);
    delete commitments[_requestId];
    require(gasleft() >= MINIMUM_CONSUMER_GAS_LIMIT, "Must provide consumer enough gas");
    // All updates to the oracle's fulfillment should come before calling the
    // callback(addr+functionId) as it is untrusted.
    // See: https://solidity.readthedocs.io/en/develop/security-considerations.html#use-the-checks-effects-interactions-pattern
    return _callbackAddress.call(_callbackFunctionId, _requestId, _data); // solhint-disable-line avoid-low-level-calls
  }

  /**
   * @notice Use this to check if a node is authorized for fulfilling requests
   * @param _node The address of the Chainlink node
   * @return The authorization status of the node
   */
  function getAuthorizationStatus(address _node) external view returns (bool) {
    return authorizedNodes[_node];
  }

  /**
   * @notice Sets the fulfillment permission for a given node. Use `true` to allow, `false` to disallow.
   * @param _node The address of the Chainlink node
   * @param _allowed Bool value to determine if the node can fulfill requests
   */
  function setFulfillmentPermission(address _node, bool _allowed) external onlyOwner {
    authorizedNodes[_node] = _allowed;
  }

  /**
   * @notice Allows the node operator to withdraw earned LINK to a given address
   * @dev The owner of the contract can be another wallet and does not have to be a Chainlink node
   * @param _recipient The address to send the LINK token to
   * @param _amount The amount to send (specified in wei)
   */
  function withdraw(address _recipient, uint256 _amount)
    external
    onlyOwner
    hasAvailableFunds(_amount)
  {
    withdrawableTokens = withdrawableTokens.sub(_amount);
    assert(LinkToken.transfer(_recipient, _amount));
  }

  /**
   * @notice Displays the amount of LINK that is available for the node operator to withdraw
   * @dev We use `ONE_FOR_CONSISTENT_GAS_COST` in place of 0 in storage
   * @return The amount of withdrawable LINK on the contract
   */
  function withdrawable() external view onlyOwner returns (uint256) {
    return withdrawableTokens.sub(ONE_FOR_CONSISTENT_GAS_COST);
  }

  /**
   * @notice Allows requesters to cancel requests sent to this oracle contract. Will transfer the LINK
   * sent for the request back to the requester's address.
   * @dev Given params must hash to a commitment stored on the contract in order for the request to be valid
   * Emits CancelOracleRequest event.
   * @param _requestId The request ID
   * @param _payment The amount of payment given (specified in wei)
   * @param _callbackFunc The requester's specified callback address
   * @param _expiration The time of the expiration for the request
   */
  function cancelOracleRequest(
    bytes32 _requestId,
    uint256 _payment,
    bytes4 _callbackFunc,
    uint256 _expiration
  ) external {
    bytes32 paramsHash = keccak256(
      abi.encodePacked(
        _payment,
        msg.sender,
        _callbackFunc,
        _expiration)
    );
    require(paramsHash == commitments[_requestId], "Params do not match request ID");
    // solhint-disable-next-line not-rely-on-time
    require(_expiration <= now, "Request is not expired");

    delete commitments[_requestId];
    emit CancelOracleRequest(_requestId);

    assert(LinkToken.transfer(msg.sender, _payment));
  }

  // MODIFIERS

  /**
   * @dev Reverts if amount requested is greater than withdrawable balance
   * @param _amount The given amount to compare to `withdrawableTokens`
   */
  modifier hasAvailableFunds(uint256 _amount) {
    require(withdrawableTokens >= _amount.add(ONE_FOR_CONSISTENT_GAS_COST), "Amount requested is greater than withdrawable balance");
    _;
  }

  /**
   * @dev Reverts if request ID does not exist
   * @param _requestId The given request ID to check in stored `commitments`
   */
  modifier isValidRequest(bytes32 _requestId) {
    require(commitments[_requestId] != 0, "Must have a valid requestId");
    _;
  }

  /**
   * @dev Reverts if `msg.sender` is not authorized to fulfill requests
   */
  modifier onlyAuthorizedNode() {
    require(authorizedNodes[msg.sender] || msg.sender == owner, "Not an authorized node to fulfill requests");
    _;
  }

  /**
   * @dev Reverts if not sent from the LINK token
   */
  modifier onlyLINK() {
    require(msg.sender == address(LinkToken), "Must use LINK token");
    _;
  }

  /**
   * @dev Reverts if the given data does not begin with the `oracleRequest` function selector
   * @param _data The data payload of the request
   */
  modifier permittedFunctionsForLINK(bytes _data) {
    bytes4 funcSelector;
    assembly { // solhint-disable-line no-inline-assembly
      funcSelector := mload(add(_data, 32))
    }
    require(funcSelector == this.oracleRequest.selector, "Must use whitelisted functions");
    _;
  }

  /**
   * @dev Reverts if the callback address is the LINK token
   * @param _to The callback address
   */
  modifier checkCallbackAddress(address _to) {
    require(_to != address(LinkToken), "Cannot callback to LINK");
    _;
  }

  /**
   * @dev Reverts if the given payload is less than needed to create a request
   * @param _data The request payload
   */
  modifier validRequestLength(bytes _data) {
    require(_data.length >= MINIMUM_REQUEST_LENGTH, "Invalid request length");
    _;
  }

}

// File: browser/gists/03a079b9055f42d993d0066d6f454c6f/Oracle.sol

pragma solidity 0.4.24;

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_sender","type":"address"},{"name":"_payment","type":"uint256"},{"name":"_specId","type":"bytes32"},{"name":"_callbackAddress","type":"address"},{"name":"_callbackFunctionId","type":"bytes4"},{"name":"_nonce","type":"uint256"},{"name":"_dataVersion","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"oracleRequest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_requestId","type":"bytes32"},{"name":"_payment","type":"uint256"},{"name":"_callbackAddress","type":"address"},{"name":"_callbackFunctionId","type":"bytes4"},{"name":"_expiration","type":"uint256"},{"name":"_data","type":"bytes32"}],"name":"fulfillOracleRequest","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"EXPIRY_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"withdrawable","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_requestId","type":"bytes32"},{"name":"_payment","type":"uint256"},{"name":"_callbackFunc","type":"bytes4"},{"name":"_expiration","type":"uint256"}],"name":"cancelOracleRequest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_node","type":"address"},{"name":"_allowed","type":"bool"}],"name":"setFulfillmentPermission","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_sender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"onTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_node","type":"address"}],"name":"getAuthorizationStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_link","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"specId","type":"bytes32"},{"indexed":false,"name":"requester","type":"address"},{"indexed":false,"name":"requestId","type":"bytes32"},{"indexed":false,"name":"payment","type":"uint256"},{"indexed":false,"name":"callbackAddr","type":"address"},{"indexed":false,"name":"callbackFunctionId","type":"bytes4"},{"indexed":false,"name":"cancelExpiration","type":"uint256"},{"indexed":false,"name":"dataVersion","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"OracleRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"requestId","type":"bytes32"}],"name":"CancelOracleRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

Deployed Bytecode

0x6080604052600436106100b95763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416634042994681146100be5780634ab0d190146101115780634b6022821461015f57806350188301146101865780636ee4d5531461019b578063715018a6146101c65780637fcd56db146101db5780638da5cb5b14610201578063a4c0ed3614610232578063d3e9c3141461029b578063f2fde38b146102bc578063f3fef3a3146102dd575b600080fd5b3480156100ca57600080fd5b5061010f600160a060020a03600480358216916024803592604435926064351691600160e060020a0319608435169160a4359160c4359160e435918201910135610301565b005b34801561011d57600080fd5b5061014b600435602435600160a060020a0360443516600160e060020a03196064351660843560a4356106c5565b604080519115158252519081900360200190f35b34801561016b57600080fd5b506101746109d8565b60408051918252519081900360200190f35b34801561019257600080fd5b506101746109de565b3480156101a757600080fd5b5061010f600435602435600160e060020a031960443516606435610a0f565b3480156101d257600080fd5b5061010f610c55565b3480156101e757600080fd5b5061010f600160a060020a03600435166024351515610cc1565b34801561020d57600080fd5b50610216610d03565b60408051600160a060020a039092168252519081900360200190f35b34801561023e57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261010f948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610d129650505050505050565b3480156102a757600080fd5b5061014b600160a060020a0360043516610f37565b3480156102c857600080fd5b5061010f600160a060020a0360043516610f55565b3480156102e957600080fd5b5061010f600160a060020a0360043516602435610f78565b6001546000908190600160a060020a03163314610368576040805160e560020a62461bcd02815260206004820152601360248201527f4d75737420757365204c494e4b20746f6b656e00000000000000000000000000604482015290519081900360640190fd5b6001548890600160a060020a03808316911614156103d0576040805160e560020a62461bcd02815260206004820152601760248201527f43616e6e6f742063616c6c6261636b20746f204c494e4b000000000000000000604482015290519081900360640190fd5b8b876040516020018083600160a060020a0316600160a060020a03166c01000000000000000000000000028152601401828152602001925050506040516020818303038152906040526040518082805190602001908083835b602083106104485780518252601f199092019160209182019101610429565b51815160209384036101000a600019018019909216911617905260408051929094018290039091206000818152600290925292902054919650501591506104db9050576040805160e560020a62461bcd02815260206004820152601460248201527f4d75737420757365206120756e69717565204944000000000000000000000000604482015290519081900360640190fd5b6104ed4261012c63ffffffff6110e316565b6040805160208082018f90526c01000000000000000000000000600160a060020a038e160282840152600160e060020a03198c1660548301526058808301859052835180840390910181526078909201928390528151939550909282918401908083835b602083106105705780518252601f199092019160209182019101610551565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020600260008560001916600019168152602001908152602001600020816000191690555089600019167fd8d7ecc4800d25fa53ce0372f13a416d98907a7ef3d8d3bdd79cf4fe75529c658d858e8d8d888d8d8d604051808a600160a060020a0316600160a060020a03168152602001896000191660001916815260200188815260200187600160a060020a0316600160a060020a03168152602001867bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200185815260200184815260200180602001828103825284848281815260200192508082843760405192018290039c50909a5050505050505050505050a2505050505050505050505050565b33600090815260036020526040812054819060ff16806106ef5750600054600160a060020a031633145b151561076b576040805160e560020a62461bcd02815260206004820152602a60248201527f4e6f7420616e20617574686f72697a6564206e6f646520746f2066756c66696c60448201527f6c20726571756573747300000000000000000000000000000000000000000000606482015290519081900360840190fd5b600088815260026020526040902054889015156107d2576040805160e560020a62461bcd02815260206004820152601b60248201527f4d757374206861766520612076616c6964207265717565737449640000000000604482015290519081900360640190fd5b6040805160208082018b90526c01000000000000000000000000600160a060020a038b160282840152600160e060020a031989166054830152605880830189905283518084039091018152607890920192839052815191929182918401908083835b602083106108535780518252601f199092019160209182019101610834565b51815160209384036101000a6000190180199092169116179052604080519290940182900390912060008f815260029092529290205491955050841491506108e79050576040805160e560020a62461bcd02815260206004820152601e60248201527f506172616d7320646f206e6f74206d6174636820726571756573742049440000604482015290519081900360640190fd5b6004546108fa908963ffffffff6110e316565b60045560008981526002602052604081205562061a805a1015610967576040805160e560020a62461bcd02815260206004820181905260248201527f4d7573742070726f7669646520636f6e73756d657220656e6f75676820676173604482015290519081900360640190fd5b6040805163ffffffff7c0100000000000000000000000000000000000000000000000000000000808a04918216028252600482018c9052602482018790529151600160a060020a038a169291604480820192600092909190829003018183875af19c9b505050505050505050505050565b61012c81565b60008054600160a060020a031633146109f657600080fd5b600454610a0a90600163ffffffff6110f616565b905090565b6040805160208082018690526c01000000000000000000000000330282840152600160e060020a0319851660548301526058808301859052835180840390910181526078909201928390528151600093918291908401908083835b60208310610a895780518252601f199092019160209182019101610a6a565b51815160209384036101000a6000190180199092169116179052604080519290940182900390912060008b81526002909252929020549194505083149150610b1d9050576040805160e560020a62461bcd02815260206004820152601e60248201527f506172616d7320646f206e6f74206d6174636820726571756573742049440000604482015290519081900360640190fd5b42821115610b75576040805160e560020a62461bcd02815260206004820152601660248201527f52657175657374206973206e6f74206578706972656400000000000000000000604482015290519081900360640190fd5b6000858152600260205260408082208290555186917fa7842b9ec549398102c0d91b1b9919b2f20558aefdadf57528a95c6cd3292e9391a2600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018790529051600160a060020a039092169163a9059cbb916044808201926020929091908290030181600087803b158015610c1a57600080fd5b505af1158015610c2e573d6000803e3d6000fd5b505050506040513d6020811015610c4457600080fd5b50511515610c4e57fe5b5050505050565b600054600160a060020a03163314610c6c57600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a03163314610cd857600080fd5b600160a060020a03919091166000908152600360205260409020805460ff1916911515919091179055565b600054600160a060020a031681565b600154600160a060020a03163314610d74576040805160e560020a62461bcd02815260206004820152601360248201527f4d75737420757365204c494e4b20746f6b656e00000000000000000000000000604482015290519081900360640190fd5b8051819060441115610dd0576040805160e560020a62461bcd02815260206004820152601660248201527f496e76616c69642072657175657374206c656e67746800000000000000000000604482015290519081900360640190fd5b60208201518290600160e060020a031981167f404299460000000000000000000000000000000000000000000000000000000014610e58576040805160e560020a62461bcd02815260206004820152601e60248201527f4d757374207573652077686974656c69737465642066756e6374696f6e730000604482015290519081900360640190fd5b85602485015284604485015230600160a060020a03168460405180828051906020019080838360005b83811015610e99578181015183820152602001610e81565b50505050905090810190601f168015610ec65780820380516001836020036101000a031916815260200191505b50915050600060405180830381855af49150501515610f2f576040805160e560020a62461bcd02815260206004820152601860248201527f556e61626c6520746f2063726561746520726571756573740000000000000000604482015290519081900360640190fd5b505050505050565b600160a060020a031660009081526003602052604090205460ff1690565b600054600160a060020a03163314610f6c57600080fd5b610f7581611108565b50565b600054600160a060020a03163314610f8f57600080fd5b80610fa181600163ffffffff6110e316565b6004541015611020576040805160e560020a62461bcd02815260206004820152603560248201527f416d6f756e74207265717565737465642069732067726561746572207468616e60448201527f20776974686472617761626c652062616c616e63650000000000000000000000606482015290519081900360840190fd5b600454611033908363ffffffff6110f616565b6004908155600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0387811694820194909452602481018690529051929091169163a9059cbb916044808201926020929091908290030181600087803b1580156110aa57600080fd5b505af11580156110be573d6000803e3d6000fd5b505050506040513d60208110156110d457600080fd5b505115156110de57fe5b505050565b818101828110156110f057fe5b92915050565b60008282111561110257fe5b50900390565b600160a060020a038116151561111d57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582068645d60e261e7c48eeb033c3a649bd160663be2111e8a86c2e2c70732cffaa20029

Deployed Bytecode Sourcemap

6067:11003:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9202:926;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9202:926:0;-1:-1:-1;;;;;9202:926:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9202:926:0;;;;;;;;;;;;;;;;;;;;;;11001:1126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11001:1126:0;;;;;-1:-1:-1;;;;;11001:1126:0;;;-1:-1:-1;;;;;;11001:1126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6185:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6185:47:0;;;;;;;;;;;;;;;;;;;;13646:137;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13646:137:0;;;;14362:643;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14362:643:0;;;;;-1:-1:-1;;;;;;14362:643:0;;;;;;;5092:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5092:114:0;;;;12707:129;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12707:129:0;-1:-1:-1;;;;;12707:129:0;;;;;;;;;4297:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4297:20:0;;;;;;;;-1:-1:-1;;;;;4297:20:0;;;;;;;;;;;;;;7960:566;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7960:566:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7960:566:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7960:566:0;;-1:-1:-1;7960:566:0;;-1:-1:-1;;;;;;;7960:566:0;12331:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12331:118:0;-1:-1:-1;;;;;12331:118:0;;;;;5374:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5374:105:0;-1:-1:-1;;;;;5374:105:0;;;;;13159:238;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13159:238:0;-1:-1:-1;;;;;13159:238:0;;;;;;;9202:926;16041:9;;9509:17;;;;-1:-1:-1;;;;;16041:9:0;16019:10;:32;16011:64;;;;;-1:-1:-1;;;;;16011:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16739:9;;9481:16;;-1:-1:-1;;;;;16724:25:0;;;16739:9;;16724:25;;16716:61;;;;;-1:-1:-1;;;;;16716:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9556:7;9565:6;9539:33;;;;;;-1:-1:-1;;;;;9539:33:0;-1:-1:-1;;;;;9539:33:0;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;9539:33:0;;;9529:44;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;9529:44:0;;;;;;;;;;;;;-1:-1:-1;9588:22:0;;;:11;:22;;;;;;;9529:44;;-1:-1:-1;;9588:27:0;;-1:-1:-1;9580:60:0;;-1:-1:-1;9580:60:0;;;;-1:-1:-1;;;;;9580:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9719:20;:3;6223:9;9719:20;:7;:20;:::i;:::-;9791:122;;;;;;;;;;;-1:-1:-1;;;;;9791:122:0;;;;;;;-1:-1:-1;;;;;;9791:122:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;9791:122:0;;;;;;;;9773:147;;9698:41;;-1:-1:-1;9791:122:0;;;;9773:147;;;;9791:122;9773:147;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;9773:147:0;;;;;;;;;;;;;;;;9748:11;:22;9760:9;9748:22;;;;;;;;;;;;;;;;;:172;;;;;;;9956:7;9934:188;;;;9972:7;9988:9;10006:8;10023:16;10048:19;10076:10;10095:12;10116:5;;9934:188;;;;-1:-1:-1;;;;;9934:188:0;-1:-1:-1;;;;;9934:188:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9934:188:0;-1:-1:-1;;;;;9934:188:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9934:188:0;;-1:-1:-1;;;;;;;;;;;9934:188:0;16082:1;9202:926;;;;;;;;;;;:::o;11001:1126::-;15818:10;11278:4;15802:27;;;:15;:27;;;;;;11278:4;;15802:27;;;:50;;-1:-1:-1;15847:5:0;;-1:-1:-1;;;;;15847:5:0;15833:10;:19;15802:50;15794:105;;;;;;;-1:-1:-1;;;;;15794:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15590:23;;;;:11;:23;;;;;;11252:10;;15590:28;;15582:68;;;;;-1:-1:-1;;;;;15582:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11333:123;;;;;;;;;;;-1:-1:-1;;;;;11333:123:0;;;;;;;-1:-1:-1;;;;;;11333:123:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11333:123:0;;;;;;;;11315:148;;11333:123;;;;;11315:148;;;;11333:123;11315:148;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;11315:148:0;;;;;;;;;;;;;-1:-1:-1;11478:23:0;;;:11;:23;;;;;;;11315:148;;-1:-1:-1;;11478:37:0;;;-1:-1:-1;11470:80:0;;-1:-1:-1;11470:80:0;;;;-1:-1:-1;;;;;11470:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11578:18;;:32;;11601:8;11578:32;:22;:32;:::i;:::-;11557:18;:53;11624:23;;;;:11;:23;;;;;11617:30;6291:6;11662:9;:39;;11654:84;;;;;-1:-1:-1;;;;;11654:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12014:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12014:21:0;;;:61;;;;;;;;;;;;;;;;;:21;:61;;;11001:1126;-1:-1:-1;;;;;;;;;;;;11001:1126:0:o;6185:47::-;6223:9;6185:47;:::o;13646:137::-;13703:7;4800:5;;-1:-1:-1;;;;;4800:5:0;4786:10;:19;4778:28;;;;;;13726:18;;:51;;6461:1;13726:51;:22;:51;:::i;:::-;13719:58;;13646:137;:::o;14362:643::-;14552:103;;;;;;;;;;;14598:10;14552:103;;;;;-1:-1:-1;;;;;;14552:103:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;14552:103:0;;;;;;;;14534:128;;14513:18;;14552:103;;;14534:128;;;;;14552:103;14534:128;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;14534:128:0;;;;;;;;;;;;;-1:-1:-1;14691:23:0;;;:11;:23;;;;;;;14534:128;;-1:-1:-1;;14677:37:0;;;-1:-1:-1;14669:80:0;;-1:-1:-1;14669:80:0;;;;-1:-1:-1;;;;;14669:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14830:3;14815:18;;;14807:53;;;;;-1:-1:-1;;;;;14807:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14876:23;;;;:11;:23;;;;;;14869:30;;;14911:31;14888:10;;14911:31;;;14958:9;;:40;;;;;;14977:10;14958:40;;;;;;;;;;;;-1:-1:-1;;;;;14958:9:0;;;;:18;;:40;;;;;;;;;;;;;;;:9;;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;14958:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14958:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14958:40:0;14951:48;;;;;;14362:643;;;;;:::o;5092:114::-;4800:5;;-1:-1:-1;;;;;4800:5:0;4786:10;:19;4778:28;;;;;;5169:5;;;5150:25;;-1:-1:-1;;;;;5169:5:0;;;;5150:25;;;5198:1;5182:18;;-1:-1:-1;;5182:18:0;;;5092:114::o;12707:129::-;4800:5;;-1:-1:-1;;;;;4800:5:0;4786:10;:19;4778:28;;;;;;-1:-1:-1;;;;;12797:22:0;;;;;;;;:15;:22;;;;;:33;;-1:-1:-1;;12797:33:0;;;;;;;;;;12707:129::o;4297:20::-;;;-1:-1:-1;;;;;4297:20:0;;:::o;7960:566::-;16041:9;;-1:-1:-1;;;;;16041:9:0;16019:10;:32;16011:64;;;;;-1:-1:-1;;;;;16011:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16986:12;;8102:5;;6622:47;-1:-1:-1;16986:38:0;16978:73;;;;;-1:-1:-1;;;;;16978:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16430:2;16419:14;;16413:21;8140:5;;-1:-1:-1;;;;;;16455:43:0;;16471:27;16455:43;16447:86;;;;;-1:-1:-1;;;;;16447:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8241:7;8236:2;8229:5;8225:14;8218:31;8315:7;8310:2;8303:5;8299:14;8292:31;8443:4;-1:-1:-1;;;;;8435:26:0;8462:5;8435:33;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8435:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8427:70;;;;;;;-1:-1:-1;;;;;8427:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17058:1;;16082;7960:566;;;:::o;12331:118::-;-1:-1:-1;;;;;12421:22:0;12401:4;12421:22;;;:15;:22;;;;;;;;;12331:118::o;5374:105::-;4800:5;;-1:-1:-1;;;;;4800:5:0;4786:10;:19;4778:28;;;;;;5444:29;5463:9;5444:18;:29::i;:::-;5374:105;:::o;13159:238::-;4800:5;;-1:-1:-1;;;;;4800:5:0;4786:10;:19;4778:28;;;;;;13266:7;15273:40;13266:7;6461:1;15273:40;:11;:40;:::i;:::-;15251:18;;:62;;15243:128;;;;;-1:-1:-1;;;;;15243:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13306:18;;:31;;13329:7;13306:31;:22;:31;:::i;:::-;13285:18;:52;;;13351:9;;:39;;;;;;-1:-1:-1;;;;;13351:39:0;;;;;;;;;;;;;;;;;;:9;;;;;:18;;:39;;;;;;;;;;;;;;;:9;;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;13351:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13351:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13351:39:0;13344:47;;;;;;4813:1;13159:238;;:::o;3811:132::-;3893:7;;;3914;;;;3907:15;;;;3811:132;;;;:::o;3625:119::-;3685:7;3708:8;;;;3701:16;;;;-1:-1:-1;3731:7:0;;;3625:119::o;5620:175::-;-1:-1:-1;;;;;5691:23:0;;;;5683:32;;;;;;5748:5;;;5727:38;;-1:-1:-1;;;;;5727:38:0;;;;5748:5;;;5727:38;;;5772:5;:17;;-1:-1:-1;;5772:17:0;-1:-1:-1;;;;;5772:17:0;;;;;;;;;;5620:175::o

Swarm Source

bzzr://68645d60e261e7c48eeb033c3a649bd160663be2111e8a86c2e2c70732cffaa2

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.