Goerli Testnet

Contract

0x1445d6061cd1Bf04b8301292f25E1D7d027CdE04
Source Code

Overview

ETH Balance

0 ETH

Multi Chain

Multichain Addresses

0 address found via
Transaction Hash
Method
Block
From
To
Value
0x6080604083764212023-01-25 22:59:48316 days 3 hrs ago1674687588IN
 Contract Creation
0 ETH0.000011440.10000005

Latest 25 internal transactions (View All)

Advanced mode:
Parent Txn Hash Block From To Value
101452002023-12-02 15:19:245 days 10 hrs ago1701530364
0x1445d6...027CdE04
0 ETH
101378672023-12-01 8:48:126 days 17 hrs ago1701420492
0x1445d6...027CdE04
0 ETH
101364842023-12-01 3:04:366 days 23 hrs ago1701399876
0x1445d6...027CdE04
0 ETH
100814802023-11-21 9:23:3616 days 16 hrs ago1700558616
0x1445d6...027CdE04
0 ETH
100697692023-11-19 8:16:0018 days 17 hrs ago1700381760
0x1445d6...027CdE04
0 ETH
100640992023-11-18 8:33:3619 days 17 hrs ago1700296416
0x1445d6...027CdE04
0 ETH
100611302023-11-17 20:03:0020 days 6 hrs ago1700251380
0x1445d6...027CdE04
0 ETH
100259522023-11-11 17:30:3626 days 8 hrs ago1699723836
0x1445d6...027CdE04
0 ETH
99796612023-11-03 14:55:2434 days 11 hrs ago1699023324
0x1445d6...027CdE04
0 ETH
99685282023-11-01 13:29:4836 days 12 hrs ago1698845388
0x1445d6...027CdE04
0 ETH
99513302023-10-29 12:20:0039 days 13 hrs ago1698582000
0x1445d6...027CdE04
0 ETH
99513302023-10-29 12:20:0039 days 13 hrs ago1698582000
0x1445d6...027CdE04
0 ETH
99469602023-10-28 18:05:1240 days 8 hrs ago1698516312
0x1445d6...027CdE04
0 ETH
99469552023-10-28 18:03:3640 days 8 hrs ago1698516216
0x1445d6...027CdE04
0 ETH
99106282023-10-22 9:00:2446 days 17 hrs ago1697965224
0x1445d6...027CdE04
0 ETH
99106212023-10-22 8:58:2446 days 17 hrs ago1697965104
0x1445d6...027CdE04
0 ETH
99104562023-10-22 8:17:2446 days 17 hrs ago1697962644
0x1445d6...027CdE04
0 ETH
98971332023-10-20 1:13:2449 days 1 hr ago1697764404
0x1445d6...027CdE04
0 ETH
98752992023-10-16 7:22:0052 days 18 hrs ago1697440920
0x1445d6...027CdE04
0 ETH
98578302023-10-13 6:33:3655 days 19 hrs ago1697178816
0x1445d6...027CdE04
0 ETH
98492692023-10-11 17:58:1257 days 8 hrs ago1697047092
0x1445d6...027CdE04
0 ETH
98290572023-10-08 5:31:2460 days 20 hrs ago1696743084
0x1445d6...027CdE04
0 ETH
98100642023-10-04 22:07:0064 days 4 hrs ago1696457220
0x1445d6...027CdE04
0 ETH
97895822023-10-01 7:09:0067 days 19 hrs ago1696144140
0x1445d6...027CdE04
0 ETH
97800332023-09-29 14:33:1269 days 11 hrs ago1695997992
0x1445d6...027CdE04
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.