Goerli Testnet

Contract

0xFAa450873a4b162D32f545a85e678C13Ca8d4Ae9
Source Code

Overview

ETH Balance

0 ETH

Multi Chain

Multichain Addresses

0 address found via
Transaction Hash
Method
Block
From
To
Value
0x6080604083764172023-01-25 22:58:24316 days 3 hrs ago1674687504IN
 Contract Creation
0 ETH0.000286222.50000006

Latest 25 internal transactions (View All)

Advanced mode:
Parent Txn Hash Block From To Value
101452002023-12-02 15:19:245 days 11 hrs ago1701530364
0xFAa450...Ca8d4Ae9
0 ETH
99796612023-11-03 14:55:2434 days 11 hrs ago1699023324
0xFAa450...Ca8d4Ae9
0 ETH
99674462023-11-01 8:48:0036 days 18 hrs ago1698828480
0xFAa450...Ca8d4Ae9
0 ETH
99674392023-11-01 8:46:0036 days 18 hrs ago1698828360
0xFAa450...Ca8d4Ae9
0 ETH
99469602023-10-28 18:05:1240 days 8 hrs ago1698516312
0xFAa450...Ca8d4Ae9
0 ETH
99469552023-10-28 18:03:3640 days 8 hrs ago1698516216
0xFAa450...Ca8d4Ae9
0 ETH
98661582023-10-14 17:36:3654 days 9 hrs ago1697304996
0xFAa450...Ca8d4Ae9
0 ETH
98290572023-10-08 5:31:2460 days 21 hrs ago1696743084
0xFAa450...Ca8d4Ae9
0 ETH
98100642023-10-04 22:07:0064 days 4 hrs ago1696457220
0xFAa450...Ca8d4Ae9
0 ETH
97895822023-10-01 7:09:0067 days 19 hrs ago1696144140
0xFAa450...Ca8d4Ae9
0 ETH
97732052023-09-28 9:31:3670 days 17 hrs ago1695893496
0xFAa450...Ca8d4Ae9
0 ETH
97329642023-09-21 9:13:3677 days 17 hrs ago1695287616
0xFAa450...Ca8d4Ae9
0 ETH
97308682023-09-21 0:18:4878 days 2 hrs ago1695255528
0xFAa450...Ca8d4Ae9
0 ETH
97293502023-09-20 17:54:0078 days 8 hrs ago1695232440
0xFAa450...Ca8d4Ae9
0 ETH
97214882023-09-19 8:36:3679 days 18 hrs ago1695112596
0xFAa450...Ca8d4Ae9
0 ETH
97205882023-09-19 4:50:2479 days 22 hrs ago1695099024
0xFAa450...Ca8d4Ae9
0 ETH
96980902023-09-15 7:57:0083 days 18 hrs ago1694764620
0xFAa450...Ca8d4Ae9
0 ETH
96960052023-09-14 23:21:0084 days 3 hrs ago1694733660
0xFAa450...Ca8d4Ae9
0 ETH
96921332023-09-14 7:20:3684 days 19 hrs ago1694676036
0xFAa450...Ca8d4Ae9
0 ETH
96712862023-09-10 16:36:0088 days 10 hrs ago1694363760
0xFAa450...Ca8d4Ae9
0 ETH
96697922023-09-10 10:29:4888 days 16 hrs ago1694341788
0xFAa450...Ca8d4Ae9
0 ETH
96697922023-09-10 10:29:4888 days 16 hrs ago1694341788
0xFAa450...Ca8d4Ae9
0 ETH
96697902023-09-10 10:29:1288 days 16 hrs ago1694341752
0xFAa450...Ca8d4Ae9
0 ETH
96697882023-09-10 10:28:4888 days 16 hrs ago1694341728
0xFAa450...Ca8d4Ae9
0 ETH
96473782023-09-06 14:39:2492 days 12 hrs ago1694011164
0xFAa450...Ca8d4Ae9
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.