Goerli Testnet

Contract

0xb56b714beF6892Bb4b1C342557bb6a1dD3Cb8cb7
Source Code

Overview

ETH Balance

0 ETH

Multi Chain

Multichain Addresses

0 address found via
Transaction Hash
Method
Block
From
To
Value
0x6080604083764192023-01-25 22:58:48316 days 3 hrs ago1674687528IN
 Contract Creation
0 ETH0.000171711.50000005

Latest 25 internal transactions (View All)

Advanced mode:
Parent Txn Hash Block From To Value
101364842023-12-01 3:04:366 days 23 hrs ago1701399876
0xb56b71...D3Cb8cb7
0 ETH
99796612023-11-03 14:55:2434 days 11 hrs ago1699023324
0xb56b71...D3Cb8cb7
0 ETH
99674462023-11-01 8:48:0036 days 17 hrs ago1698828480
0xb56b71...D3Cb8cb7
0 ETH
99674392023-11-01 8:46:0036 days 17 hrs ago1698828360
0xb56b71...D3Cb8cb7
0 ETH
99513302023-10-29 12:20:0039 days 14 hrs ago1698582000
0xb56b71...D3Cb8cb7
0 ETH
99469602023-10-28 18:05:1240 days 8 hrs ago1698516312
0xb56b71...D3Cb8cb7
0 ETH
99469552023-10-28 18:03:3640 days 8 hrs ago1698516216
0xb56b71...D3Cb8cb7
0 ETH
98971332023-10-20 1:13:2449 days 1 hr ago1697764404
0xb56b71...D3Cb8cb7
0 ETH
98661582023-10-14 17:36:3654 days 8 hrs ago1697304996
0xb56b71...D3Cb8cb7
0 ETH
98492692023-10-11 17:58:1257 days 8 hrs ago1697047092
0xb56b71...D3Cb8cb7
0 ETH
98100642023-10-04 22:07:0064 days 4 hrs ago1696457220
0xb56b71...D3Cb8cb7
0 ETH
97895822023-10-01 7:09:0067 days 19 hrs ago1696144140
0xb56b71...D3Cb8cb7
0 ETH
97800332023-09-29 14:33:1269 days 11 hrs ago1695997992
0xb56b71...D3Cb8cb7
0 ETH
97800292023-09-29 14:32:2469 days 11 hrs ago1695997944
0xb56b71...D3Cb8cb7
0 ETH
97293502023-09-20 17:54:0078 days 8 hrs ago1695232440
0xb56b71...D3Cb8cb7
0 ETH
97214882023-09-19 8:36:3679 days 17 hrs ago1695112596
0xb56b71...D3Cb8cb7
0 ETH
97205882023-09-19 4:50:2479 days 21 hrs ago1695099024
0xb56b71...D3Cb8cb7
0 ETH
96980902023-09-15 7:57:0083 days 18 hrs ago1694764620
0xb56b71...D3Cb8cb7
0 ETH
96960052023-09-14 23:21:0084 days 3 hrs ago1694733660
0xb56b71...D3Cb8cb7
0 ETH
96749772023-09-11 8:01:2487 days 18 hrs ago1694419284
0xb56b71...D3Cb8cb7
0 ETH
96712862023-09-10 16:36:0088 days 9 hrs ago1694363760
0xb56b71...D3Cb8cb7
0 ETH
96697922023-09-10 10:29:4888 days 15 hrs ago1694341788
0xb56b71...D3Cb8cb7
0 ETH
96697922023-09-10 10:29:4888 days 15 hrs ago1694341788
0xb56b71...D3Cb8cb7
0 ETH
96697922023-09-10 10:29:4888 days 15 hrs ago1694341788
0xb56b71...D3Cb8cb7
0 ETH
96697902023-09-10 10:29:1288 days 15 hrs ago1694341752
0xb56b71...D3Cb8cb7
0 ETH
View All Internal Transactions
Loading...
Loading

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

Contract Name:
MockAggregator

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 100000 runs

Other Settings:
default evmVersion, BSL 1.1 license

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 1 : MockAggregator.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;

contract MockAggregator {
  int256 private _latestAnswer;

  event AnswerUpdated(int256 indexed current, uint256 indexed roundId, uint256 updatedAt);

  constructor(int256 initialAnswer) {
    _latestAnswer = initialAnswer;
    emit AnswerUpdated(initialAnswer, 0, block.timestamp);
  }

  function latestAnswer() external view returns (int256) {
    return _latestAnswer;
  }

  function getTokenType() external pure returns (uint256) {
    return 1;
  }

  function decimals() external pure returns (uint8) {
    return 8;
  }
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 100000
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract ABI

[{"inputs":[{"internalType":"int256","name":"initialAnswer","type":"int256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"int256","name":"current","type":"int256"},{"indexed":true,"internalType":"uint256","name":"roundId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"updatedAt","type":"uint256"}],"name":"AnswerUpdated","type":"event"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getTokenType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"latestAnswer","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x6080604052348015600f57600080fd5b5060043610603c5760003560e01c8063313ce56714604157806350d25bcd146055578063fcab1819146066575b600080fd5b604051600881526020015b60405180910390f35b6000545b604051908152602001604c565b6001605956fea2646970667358221220c495b4689ae5f6ebd5ca578d2d17b62181230f851dfd4851cbc4a67894879df864736f6c634300080a0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ 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.