ETH Price: $1,880.20 (-1.39%)
    /

    Contract

    0xB2c44d16cA0540Cf9104FdbCaD1FD34F9723c836

    Overview

    ETH Balance

    0 ETH

    ETH Value

    $0.00

    Multichain Info

    No addresses found
    Transaction Hash
    Method
    Block
    Age
    From
    To
    Amount

    There are no matching entries

    1 Internal Transaction found.

    Latest 1 internal transaction

    Parent Transaction Hash Block Age From To Amount
    2633992025-01-27 20:53:5460 days ago1738011234
     Contract Creation
    0 ETH
    Loading...
    Loading

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

    Contract Name:
    PoolAddressesProviderRegistry

    Compiler Version
    v0.8.12+commit.f00d7308

    ZkSolc Version
    v1.5.0

    Optimization Enabled:
    Yes with Mode 3

    Other Settings:
    berlin EvmVersion
    File 1 of 5 : PoolAddressesProviderRegistry.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: BUSL-1.1
    pragma solidity 0.8.12;
    import {Ownable} from '../../dependencies/openzeppelin/contracts/Ownable.sol';
    import {Errors} from '../libraries/helpers/Errors.sol';
    import {IPoolAddressesProviderRegistry} from '../../interfaces/IPoolAddressesProviderRegistry.sol';
    /**
    * @title PoolAddressesProviderRegistry
    * @author Aave
    * @notice Main registry of PoolAddressesProvider of Aave markets.
    * @dev Used for indexing purposes of Aave protocol's markets. The id assigned to a PoolAddressesProvider refers to the
    * market it is connected with, for example with `1` for the Aave main market and `2` for the next created.
    */
    contract PoolAddressesProviderRegistry is Ownable, IPoolAddressesProviderRegistry {
    // Map of address provider ids (addressesProvider => id)
    mapping(address => uint256) private _addressesProviderToId;
    // Map of id to address provider (id => addressesProvider)
    mapping(uint256 => address) private _idToAddressesProvider;
    // List of addresses providers
    address[] private _addressesProvidersList;
    // Map of address provider list indexes (addressesProvider => indexInList)
    mapping(address => uint256) private _addressesProvidersIndexes;
    /**
    * @dev Constructor.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 5 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity 0.8.12;
    import './Context.sol';
    /**
    * @dev Contract module which provides a basic access control mechanism, where
    * there is an account (an owner) that can be granted exclusive access to
    * specific functions.
    *
    * By default, the owner account will be the one that deploys the contract. This
    * can later be changed with {transferOwnership}.
    *
    * This module is used through inheritance. It will make available the modifier
    * `onlyOwner`, which can be applied to your functions to restrict their use to
    * the owner.
    */
    contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
    * @dev Initializes the contract setting the deployer as the initial owner.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 5 : Errors.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: BUSL-1.1
    pragma solidity ^0.8.0;
    /**
    * @title Errors library
    * @author Aave
    * @notice Defines the error messages emitted by the different contracts of the Aave protocol
    */
    library Errors {
    string public constant CALLER_NOT_POOL_ADMIN = '1'; // 'The caller of the function is not a pool admin'
    string public constant CALLER_NOT_EMERGENCY_ADMIN = '2'; // 'The caller of the function is not an emergency admin'
    string public constant CALLER_NOT_POOL_OR_EMERGENCY_ADMIN = '3'; // 'The caller of the function is not a pool or emergency admin'
    string public constant CALLER_NOT_RISK_OR_POOL_ADMIN = '4'; // 'The caller of the function is not a risk or pool admin'
    string public constant CALLER_NOT_ASSET_LISTING_OR_POOL_ADMIN = '5'; // 'The caller of the function is not an asset listing or pool admin'
    string public constant CALLER_NOT_BRIDGE = '6'; // 'The caller of the function is not a bridge'
    string public constant ADDRESSES_PROVIDER_NOT_REGISTERED = '7'; // 'Pool addresses provider is not registered'
    string public constant INVALID_ADDRESSES_PROVIDER_ID = '8'; // 'Invalid id for the pool addresses provider'
    string public constant NOT_CONTRACT = '9'; // 'Address is not a contract'
    string public constant CALLER_NOT_POOL_CONFIGURATOR = '10'; // 'The caller of the function is not the pool configurator'
    string public constant CALLER_NOT_ATOKEN = '11'; // 'The caller of the function is not an AToken'
    string public constant INVALID_ADDRESSES_PROVIDER = '12'; // 'The address of the pool addresses provider is invalid'
    string public constant INVALID_FLASHLOAN_EXECUTOR_RETURN = '13'; // 'Invalid return value of the flashloan executor function'
    string public constant RESERVE_ALREADY_ADDED = '14'; // 'Reserve has already been added to reserve list'
    string public constant NO_MORE_RESERVES_ALLOWED = '15'; // 'Maximum amount of reserves in the pool reached'
    string public constant EMODE_CATEGORY_RESERVED = '16'; // 'Zero eMode category is reserved for volatile heterogeneous assets'
    string public constant INVALID_EMODE_CATEGORY_ASSIGNMENT = '17'; // 'Invalid eMode category assignment to asset'
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 5 : IPoolAddressesProviderRegistry.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: AGPL-3.0
    pragma solidity ^0.8.0;
    /**
    * @title IPoolAddressesProviderRegistry
    * @author Aave
    * @notice Defines the basic interface for an Aave Pool Addresses Provider Registry.
    */
    interface IPoolAddressesProviderRegistry {
    /**
    * @dev Emitted when a new AddressesProvider is registered.
    * @param addressesProvider The address of the registered PoolAddressesProvider
    * @param id The id of the registered PoolAddressesProvider
    */
    event AddressesProviderRegistered(address indexed addressesProvider, uint256 indexed id);
    /**
    * @dev Emitted when an AddressesProvider is unregistered.
    * @param addressesProvider The address of the unregistered PoolAddressesProvider
    * @param id The id of the unregistered PoolAddressesProvider
    */
    event AddressesProviderUnregistered(address indexed addressesProvider, uint256 indexed id);
    /**
    * @notice Returns the list of registered addresses providers
    * @return The list of addresses providers
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 5 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    // SPDX-License-Identifier: MIT
    pragma solidity 0.8.12;
    /*
    * @dev Provides information about the current execution context, including the
    * sender of the transaction and its data. While these are generally available
    * via msg.sender and msg.data, they should not be accessed in such a direct
    * manner, since when dealing with GSN meta-transactions the account sending and
    * paying for execution may not be the actual sender (as far as an application
    * is concerned).
    *
    * This contract is only required for intermediate, library-like contracts.
    */
    abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
    return payable(msg.sender);
    }
    function _msgData() internal view virtual returns (bytes memory) {
    this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
    return msg.data;
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    {
    "optimizer": {
    "enabled": true,
    "mode": "3"
    },
    "evmVersion": "berlin",
    "outputSelection": {
    "*": {
    "*": [
    "abi"
    ]
    }
    },
    "detectMissingLibraries": false,
    "forceEVMLA": false,
    "enableEraVMExtensions": false,
    "libraries": {
    "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/BridgeLogic.sol": {
    "BridgeLogic": "0x406aD7Ed13d91BEF165f6E977e281FB7C571CfE5"
    },
    "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/ConfiguratorLogic.sol": {
    "ConfiguratorLogic": "0x6785433E9A02daEc0e30C532284477Cfe66c6c34"
    },
    "@zerolendxyz/core-v3/contracts/protocol/libraries/logic/PoolLogic.sol": {
    "PoolLogic": "0xc23507911ce966e314EdeF2f28C401bCe0BEd621"
    },
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addressesProvider","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"AddressesProviderRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addressesProvider","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"AddressesProviderUnregistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getAddressesProviderAddressById","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressesProvider","type":"address"}],"name":"getAddressesProviderIdByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAddressesProvidersList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"registerAddressesProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"}],"name":"unregisterAddressesProvider","outputs":[],"stateMutability":"nonpayable","type":"function"}]

    Deployed Bytecode

    0x00040000000000020000008004000039000000400040043f00000000030100190000006003300270000000c8033001970000000102200190000000210000c13d000000040230008c0000030d0000413d000000000201043b000000e002200270000000d30420009c000000760000213d000000d90420009c000000940000213d000000dc0420009c000000d50000613d000000dd0120009c0000030d0000c13d0000000001000416000000000101004b0000030d0000c13d0000000302000039000000000102041a000000800010043f00000000002004350000002002000039000000000301004b000001800000c13d000000a0010000390000000004020019000001960000013d0000000002000416000000000202004b0000030d0000c13d0000001f02300039000000c9022001970000008002200039000000400020043f0000001f0230018f0000000505300272000000320000613d00000005065002100000008006600039000000000701034f000000007807043c0000000004840436000000000864004b0000002e0000c13d000000000402004b000000410000613d0000000504500210000000000141034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f0000000000140435000000200130008c0000030d0000413d000000800700043d000000ca0170009c0000030d0000213d000000000100041a000100000001001d000000cb011001970000000006000411000000000161019f000000000010041b000000400200043d000000c80120009c000300000002001d000000c801000041000000000102401900020040001002180000000001000414000000c80210009c000000c801008041000000c00110021000000002011001af000000cc011001c70000800d020000390000000303000039000000cd040000410000000005000019000400000007001d0319030f0000040f000000040300002900000001012001900000030d0000613d0000000005000411000000000103004b000001640000c13d00000003030000290000006401300039000000cf0200004100000000002104350000004401300039000000d0020000410000000000210435000000240130003900000026020000390000000000210435000000d10100004100000000001304350000000401300039000000200200003900000000002104350000000201000029000000d2011001c70000031b00010430000000d40420009c000000b50000213d000000d70420009c000001150000613d000000d80220009c0000030d0000c13d000000240230008c0000030d0000413d0000000002000416000000000202004b0000030d0000c13d0000000401100370000000000101043b000000ca0210009c0000030d0000213d00000000001004350000000101000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f00000001022001900000030d0000613d000000000101043b000000000101041a000001330000013d000000da0420009c0000011d0000613d000000db0120009c0000030d0000c13d0000000001000416000000000101004b0000030d0000c13d000000000200041a000000ca012001970000000005000411000000000151004b0000015b0000c13d000400000002001d0000000001000414000000c80210009c000000c801008041000000c001100210000000de011001c70000800d020000390000000303000039000000cd0400004100000000060000190319030f0000040f00000001012001900000030d0000613d0000000401000029000000cb01100197000000000010041b000000400100043d000000c80210009c000000c80100804100000040011002100000031a0001042e000000d50420009c0000013a0000613d000000d60220009c0000030d0000c13d000000240230008c0000030d0000413d0000000002000416000000000202004b0000030d0000c13d0000000401100370000000000601043b000000ca0160009c0000030d0000213d000000000200041a000000ca012001970000000005000411000000000151004b0000015b0000c13d000000000106004b000001b00000c13d000000d101000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000000d001000041000000c40010043f000000cf01000041000000e40010043f000000df010000410000031b00010430000000240230008c0000030d0000413d0000000002000416000000000202004b0000030d0000c13d0000000401100370000000000301043b000000ca0130009c0000030d0000213d000000000100041a000000ca011001970000000002000411000000000121004b0000015b0000c13d00000000003004350000000101000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039000400000003001d031903140000040f000000040500002900000001022001900000030d0000613d000000400300043d000000ed0230009c0000018f0000813d000000000101043b000000000101041a0000004002300039000000400020043f00000001060000390000000002630436000000ee040000410000000000420435000000000101004b000002450000c13d000000400100043d000000d1040000410000000000410435000000040410003900000020050000390000000000540435000000000303043300000024041000390000000000340435000000000403004b000002a50000613d0000004404100039000000000500001900000000064500190000000007250019000000000707043300000000007604350000002005500039000000000635004b0000010b0000413d000000000235004b000002a30000213d000002a50000013d0000000001000416000000000101004b0000030d0000c13d000000000100041a000000ca01100197000000800010043f000000e9010000410000031a0001042e000000240230008c0000030d0000413d0000000002000416000000000202004b0000030d0000c13d0000000401100370000000000101043b00000000001004350000000201000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f00000001022001900000030d0000613d000000000101043b000000000101041a000000ca01100197000000400200043d0000000000120435000000c80120009c000000c8020080410000004001200210000000e8011001c70000031a0001042e000000440230008c0000030d0000413d0000000002000416000000000202004b0000030d0000c13d0000000402100370000000000302043b000000ca0230009c0000030d0000213d0000002401100370000000000401043b000000000100041a000000ca011001970000000002000411000000000121004b0000015b0000c13d000000c001000039000000400010043f0000000105000039000000800050043f000000e001000041000000a00010043f000000000204004b000001c30000c13d000000d102000041000000c00020043f0000002002000039000000c40020043f000000e40050043f000001040010043f000001050000043f000000e7010000410000031b00010430000000d101000041000000800010043f0000002001000039000000840010043f000000a40010043f000000eb01000041000000c40010043f000000ec010000410000031b00010430000000400100043d000000c80210009c000000c80100804100000040011002100000000002000414000000c80320009c000000c802008041000000c002200210000000000112019f000000cc011001c70000800d020000390000000303000039000000cd0400004100000004060000290319030f0000040f000000040300002900000001012001900000030d0000613d000000000200041100000001012001af000000cb01100197000000000131019f000000000010041b000000200100003900000100001004430000012000000443000000ce010000410000031a0001042e000000e503000041000000a00400003900000000050000190000000006040019000000000403041a000000ca04400197000000000446043600000001033000390000000105500039000000000715004b000001830000413d000000410160008a000000f304100197000000ea0140009c000001950000a13d000000ef0100004100000000001004350000004101000039000000040010043f000000f0010000410000031b000104300000008001400039000000400010043f0000000000210435000000a002400039000000800300043d0000000000320435000000c002400039000000000403004b000001a70000613d0000008004000039000000000500001900000020044000390000000006040433000000ca0660019700000000026204360000000105500039000000000635004b000001a00000413d0000000002120049000000c80320009c000000c8020080410000006002200210000000c80310009c000000c8010080410000004001100210000000000112019f0000031a0001042e000300000002001d0000000001000414000000c80210009c000000c801008041000000c001100210000000de011001c70000800d020000390000000303000039000000cd04000041000400000006001d00000004060000290319030f0000040f000000040300002900000001012001900000030d0000613d0000000301000029000000cb01100197000000000131019f000000af0000013d000300000004001d00000000004004350000000201000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039000400000003001d031903140000040f000000040500002900000001022001900000030d0000613d000000400300043d000000e20230009c0000018f0000213d000000000101043b000000000101041a0000004002300039000000400020043f00000001060000390000000002630436000000e0040000410000000000420435000000ca011001980000028d0000c13d0000000000500435000000200060043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f00000001022001900000030d0000613d000000400300043d000000e20230009c0000018f0000213d000000000101043b000000000101041a0000004002300039000000400020043f00000002020000390000000002230436000000e3040000410000000000420435000000000101004b000002b00000c13d000000040100002900000000001004350000000101000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f00000001022001900000030d0000613d000000000101043b0000000302000029000000000021041b00000000002004350000000201000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f000000040300002900000001022001900000030d0000613d000000000101043b000000000201041a000000cb02200197000000000232019f000000000021041b0000000301000039000000000101041a000200000001001d00000000003004350000000401000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f000000040500002900000001022001900000030d0000613d000000000101043b0000000202000029000000000021041b000000e40120009c0000018f0000213d000000020200002900000001012000390000000303000039000000000013041b0000000000300435000000e501200041000000000201041a000000cb02200197000000000252019f000000000021041b000000400100043d000000c80210009c000000c80100804100000040011002100000000002000414000000c80420009c000000c802008041000000c002200210000000000112019f000000cc011001c70000800d02000039000000e604000041000003090000013d0000000000500435000000200060043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f00000001022001900000030d0000613d000000000101043b000000000101041a000300000001001d00000000001004350000000201000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f000000040300002900000001022001900000030d0000613d000000000101043b000000000201041a000000cb02200197000000000021041b00000000003004350000000101000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f000000040300002900000001022001900000030d0000613d000000000101043b000000000001041b00000000003004350000000401000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f00000001022001900000030d0000613d000000000101043b000000000201041a000200000002001d000000000001041b0000000301000039000000000101041a000000000201004b000002c70000c13d000000ef0100004100000000001004350000001101000039000000040010043f000000f0010000410000031b00010430000000400100043d000000d1040000410000000000410435000000040410003900000020050000390000000000540435000000000303043300000024041000390000000000340435000000000403004b000002a50000613d0000004404100039000000000500001900000000064500190000000007250019000000000707043300000000007604350000002005500039000000000635004b0000029a0000413d000000000235004b000002a50000a13d000000000243001900000000000204350000001f02300039000000f3022001970000004402200039000000c80320009c000000c8020080410000006002200210000000c80310009c000000c8010080410000004001100210000000000112019f0000031b00010430000000400100043d000000d1040000410000000000410435000000040410003900000020050000390000000000540435000000000303043300000024041000390000000000340435000000000403004b000002a50000613d0000004404100039000000000500001900000000064500190000000007250019000000000707043300000000007604350000002005500039000000000635004b000002bd0000413d000000000235004b000002a50000a13d000002a30000013d000000010210008a000000020320006b000002f50000813d000000020210006c000002ee0000a13d000000f101100041000000000101041a000000ca011001970000000202000029000000e502200041000000000302041a000000cb03300197000000000313019f000000000032041b00000000001004350000000401000039000000200010043f0000000001000414000000c80210009c000000c801008041000000c001100210000000e1011001c70000801002000039031903140000040f00000001022001900000030d0000613d000000000101043b0000000202000029000000000021041b0000000301000039000000000101041a000000000201004b000002f40000c13d000000ef0100004100000000001004350000003101000039000000040010043f000000f0010000410000031b00010430000000ef0100004100000000001004350000003201000039000000040010043f000000f0010000410000031b00010430000000010210008a00000003030000390000000000300435000000f101100041000000000401041a000000cb04400197000000000041041b000000000023041b000000400100043d000000c80210009c000000c80100804100000040011002100000000002000414000000c80420009c000000c802008041000000c002200210000000000112019f000000cc011001c70000800d02000039000000f204000041000000040500002900000003060000290319030f0000040f0000000101200190000000b00000c13d00000000010000190000031b0001043000000312002104210000000102000039000000000001042d0000000002000019000000000001042d00000317002104230000000102000039000000000001042d0000000002000019000000000001042d00000319000004320000031a0001042e0000031b00010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000020000000000000000000000000000004000000100000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000000000008da5cb5a00000000000000000000000000000000000000000000000000000000d258191d00000000000000000000000000000000000000000000000000000000d258191e00000000000000000000000000000000000000000000000000000000f2fde38b000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000d0267be70000000000000000000000000000000000000000000000000000000057dc05650000000000000000000000000000000000000000000000000000000057dc056600000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000000de2670700000000000000000000000000000000000000000000000000000000365ccbbf0200000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000008400000080000000000000000038000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf3836000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bc2e7cc813550ef0e7126cc0571281850ce5df2e9c400acf3589c38e4627f85f10000000000000000000000000000000000000064000000c0000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc037000000000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85a254723080701bde71d562cad0e967cef23d86bb27ee842c190a2596820f3b241ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0dce6fc710c21be479a1cb8a07391b19e541e0f019eea9dfeb8e9db378aab2582

    Block Age Transaction Gas Used Reward
    view all blocks produced

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

    Validator Index Block Age Amount
    View All Withdrawals

    Transaction Hash Block Age Value Eth2 PubKey Valid
    View All Deposits
    [ 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.