Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multi Chain
Multichain Addresses
0 address found via
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 8376419 | 316 days 3 hrs ago | IN | Contract Creation | 0 ETH | 0.00017171 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Txn Hash | Block | From | To | Value | ||
---|---|---|---|---|---|---|
10136484 | 6 days 23 hrs ago | 0 ETH | ||||
9979661 | 34 days 11 hrs ago | 0 ETH | ||||
9967446 | 36 days 17 hrs ago | 0 ETH | ||||
9967439 | 36 days 17 hrs ago | 0 ETH | ||||
9951330 | 39 days 14 hrs ago | 0 ETH | ||||
9946960 | 40 days 8 hrs ago | 0 ETH | ||||
9946955 | 40 days 8 hrs ago | 0 ETH | ||||
9897133 | 49 days 1 hr ago | 0 ETH | ||||
9866158 | 54 days 8 hrs ago | 0 ETH | ||||
9849269 | 57 days 8 hrs ago | 0 ETH | ||||
9810064 | 64 days 4 hrs ago | 0 ETH | ||||
9789582 | 67 days 19 hrs ago | 0 ETH | ||||
9780033 | 69 days 11 hrs ago | 0 ETH | ||||
9780029 | 69 days 11 hrs ago | 0 ETH | ||||
9729350 | 78 days 8 hrs ago | 0 ETH | ||||
9721488 | 79 days 17 hrs ago | 0 ETH | ||||
9720588 | 79 days 21 hrs ago | 0 ETH | ||||
9698090 | 83 days 18 hrs ago | 0 ETH | ||||
9696005 | 84 days 3 hrs ago | 0 ETH | ||||
9674977 | 87 days 18 hrs ago | 0 ETH | ||||
9671286 | 88 days 9 hrs ago | 0 ETH | ||||
9669792 | 88 days 15 hrs ago | 0 ETH | ||||
9669792 | 88 days 15 hrs ago | 0 ETH | ||||
9669792 | 88 days 15 hrs ago | 0 ETH | ||||
9669790 | 88 days 15 hrs ago | 0 ETH |
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
Contract Source Code (Solidity Standard Json-Input format)
// 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; } }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 100000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "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
Loading...
Loading
[ 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.