ETH Price: $1,577.75 (-0.69%)

Contract

0xDAec33641865E4651fB43181C6DB6f7232Ee91c2

Overview

ETH Balance

0 ETH

ETH Value

$0.00
Amount:Between 1-100k
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
68899132025-04-16 15:13:548 hrs ago1744816434
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68871442025-04-16 14:23:279 hrs ago1744813407
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68869432025-04-16 14:20:069 hrs ago1744813206
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68867322025-04-16 14:13:479 hrs ago1744812827
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68867222025-04-16 14:13:059 hrs ago1744812785
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68865732025-04-16 14:06:039 hrs ago1744812363
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68297792025-04-15 21:18:0726 hrs ago1744751887
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68030002025-04-15 13:30:0633 hrs ago1744723806
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68028822025-04-15 13:28:0834 hrs ago1744723688
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68028572025-04-15 13:27:4334 hrs ago1744723663
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68028232025-04-15 13:27:0934 hrs ago1744723629
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
68028012025-04-15 13:26:4734 hrs ago1744723607
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
67856662025-04-15 8:34:2338 hrs ago1744706063
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
67067222025-04-14 9:59:232 days ago1744624763
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
67067172025-04-14 9:59:182 days ago1744624758
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
67067132025-04-14 9:59:142 days ago1744624754
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
67059032025-04-14 9:45:122 days ago1744623912
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
67058982025-04-14 9:45:072 days ago1744623907
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
67058942025-04-14 9:45:032 days ago1744623903
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
66650912025-04-13 22:06:553 days ago1744582015
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
66650832025-04-13 22:06:313 days ago1744581991
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
66650792025-04-13 22:06:273 days ago1744581987
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
64651422025-04-11 12:41:535 days ago1744375313
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
58231592025-04-03 19:17:4213 days ago1743707862
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
57161362025-04-02 12:58:3114 days ago1743598711
0xDAec3364...232Ee91c2
 Contract Creation0 ETH
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GnosisSafeProxyFactory

Compiler Version
v0.7.6+commit.7338295f

ZkSolc Version
v1.3.8

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license
File 1 of 3 : GnosisSafeProxyFactory.sol
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;

import "./GnosisSafeProxy.sol";
import "./IProxyCreationCallback.sol";

/// @title Proxy Factory - Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
/// @author Stefan George - <[email protected]>
contract GnosisSafeProxyFactory {
    event ProxyCreation(GnosisSafeProxy proxy, address singleton);

    /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
    /// @param singleton Address of singleton contract.
    /// @param data Payload for message call sent to new proxy contract.
    function createProxy(address singleton, bytes memory data) public returns (GnosisSafeProxy proxy) {
        proxy = new GnosisSafeProxy(singleton);
        if (data.length > 0)
            // solhint-disable-next-line no-inline-assembly
            assembly {
                if eq(call(gas(), proxy, 0, add(data, 0x20), mload(data), 0, 0), 0) {
                    revert(0, 0)
                }
            }
        emit ProxyCreation(proxy, singleton);
    }

    /* /// @dev Allows to retrieve the runtime code of a deployed Proxy. This can be used to check that the expected Proxy was deployed.
    function proxyRuntimeCode() public pure returns (bytes memory) {
        return type(GnosisSafeProxy).runtimeCode;
    } */

    /// @dev Allows to retrieve the creation code used for the Proxy deployment. With this it is easily possible to calculate predicted address.
    function proxyCreationCode() public pure returns (bytes memory) {
        return type(GnosisSafeProxy).creationCode;
    }

    /// @dev Allows to create new proxy contact using CREATE2 but it doesn't run the initializer.
    ///      This method is only meant as an utility to be called from other methods
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function deployProxyWithNonce(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce
    ) internal returns (GnosisSafeProxy proxy) {
        // If the initializer changes the proxy address should change too. Hashing the initializer data is cheaper than just concatinating it
        bytes32 salt = keccak256(abi.encodePacked(keccak256(initializer), saltNonce));
        bytes memory deploymentData = abi.encodePacked(type(GnosisSafeProxy).creationCode, uint256(uint160(_singleton)));
        // solhint-disable-next-line no-inline-assembly
        assembly {
            proxy := create2(0x0, add(0x20, deploymentData), mload(deploymentData), salt)
        }
        require(address(proxy) != address(0), "Create2 call failed");
    }

    /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function createProxyWithNonce(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce
    ) public returns (GnosisSafeProxy proxy) {
        proxy = deployProxyWithNonce(_singleton, initializer, saltNonce);
        if (initializer.length > 0)
            // solhint-disable-next-line no-inline-assembly
            assembly {
                if eq(call(gas(), proxy, 0, add(initializer, 0x20), mload(initializer), 0, 0), 0) {
                    revert(0, 0)
                }
            }
        emit ProxyCreation(proxy, _singleton);
    }

    /// @dev Allows to create new proxy contact, execute a message call to the new proxy and call a specified callback within one transaction
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    /// @param callback Callback that will be invoced after the new proxy contract has been successfully deployed and initialized.
    function createProxyWithCallback(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce,
        IProxyCreationCallback callback
    ) public returns (GnosisSafeProxy proxy) {
        uint256 saltNonceWithCallback = uint256(keccak256(abi.encodePacked(saltNonce, callback)));
        proxy = createProxyWithNonce(_singleton, initializer, saltNonceWithCallback);
        if (address(callback) != address(0)) callback.proxyCreated(proxy, _singleton, initializer, saltNonce);
    }

    /// @dev Allows to get the address for a new proxy contact created via `createProxyWithNonce`
    ///      This method is only meant for address calculation purpose when you use an initializer that would revert,
    ///      therefore the response is returned with a revert. When calling this method set `from` to the address of the proxy factory.
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function calculateCreateProxyWithNonceAddress(
        address _singleton,
        bytes calldata initializer,
        uint256 saltNonce
    ) external returns (GnosisSafeProxy proxy) {
        proxy = deployProxyWithNonce(_singleton, initializer, saltNonce);
        revert(string(abi.encodePacked(proxy)));
    }
}

File 2 of 3 : GnosisSafeProxy.sol
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;

/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
/// @author Richard Meissner - <[email protected]>
interface IProxy {
    function masterCopy() external view returns (address);
}

/// @title GnosisSafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <[email protected]>
/// @author Richard Meissner - <[email protected]>
contract GnosisSafeProxy {
    // singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
    address internal singleton;

    /// @dev Constructor function sets address of singleton contract.
    /// @param _singleton Singleton address.
    constructor(address _singleton) {
        require(_singleton != address(0), "Invalid singleton address provided");
        singleton = _singleton;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    fallback() external payable {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            let _singleton := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) {
                mstore(0, _singleton)
                return(0, 0x20)
            }
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas(), _singleton, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) {
                revert(0, returndatasize())
            }
            return(0, returndatasize())
        }
    }
}

File 3 of 3 : IProxyCreationCallback.sol
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;
import "./GnosisSafeProxy.sol";

interface IProxyCreationCallback {
    function proxyCreated(
        GnosisSafeProxy proxy,
        address _singleton,
        bytes calldata initializer,
        uint256 saltNonce
    ) external;
}

Settings
{
  "compilerPath": "",
  "experimental": {},
  "isSystem": true,
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract GnosisSafeProxy","name":"proxy","type":"address"},{"indexed":false,"internalType":"address","name":"singleton","type":"address"}],"name":"ProxyCreation","type":"event"},{"inputs":[{"internalType":"address","name":"_singleton","type":"address"},{"internalType":"bytes","name":"initializer","type":"bytes"},{"internalType":"uint256","name":"saltNonce","type":"uint256"}],"name":"calculateCreateProxyWithNonceAddress","outputs":[{"internalType":"contract GnosisSafeProxy","name":"proxy","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"singleton","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"createProxy","outputs":[{"internalType":"contract GnosisSafeProxy","name":"proxy","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_singleton","type":"address"},{"internalType":"bytes","name":"initializer","type":"bytes"},{"internalType":"uint256","name":"saltNonce","type":"uint256"},{"internalType":"contract IProxyCreationCallback","name":"callback","type":"address"}],"name":"createProxyWithCallback","outputs":[{"internalType":"contract GnosisSafeProxy","name":"proxy","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_singleton","type":"address"},{"internalType":"bytes","name":"initializer","type":"bytes"},{"internalType":"uint256","name":"saltNonce","type":"uint256"}],"name":"createProxyWithNonce","outputs":[{"internalType":"contract GnosisSafeProxy","name":"proxy","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxyCreationCode","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"}]

00000000000000000000000000000000000000000000000000000000000000009c4d535b00000000000000000000000000000000000000000000000000000000000000000100015fe4009f7e2a13fb9b98db95dfbf439cd5b1436aa27e64f380f3380e0900000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00040000000000020009000000000002000000000301001900000060033002700000014b04300197000300000041035500020000000103550000014b0030019d000100000000001f0000008006000039000000400060043f000000000100041600000001022001900000011a0000c13d000000000110004c0000051a0000c13d0000000001000031000000040210008c0000051a0000413d0000000202000367000000000302043b000000e0033002700000014d0430009c000001210000c13d000000640310008a000000600400008a000000000343004b0000051a0000813d0000000403200370000000000303043b00000152093001970000002403200370000000000303043b000001530430009c0000051a0000213d0000002404300039000000000514004b0000051a0000213d0000000403300039000000000232034f000000000202043b000001530320009c0000051a0000213d0000000003420019000000000113004b0000051a0000213d0000003f01200039000000200300008a000700000003001d000000000131016f000000400a00043d00000000011a0019000000400010043f0000001f0320018f00000000012a043600000002044003670000000505200272000000430000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000003b0000413d000900000009001d000000000630004c000000530000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000044020000390000000202200367000000000202043b000800000002001d00060000000a001d00000000020a04330000014b0300004100000000040004140000014b0540009c00000000040380190000014b0520009c00000000020380190000014b0510009c000000000103801900000040031002100000006001200210000500000003001d000000000131019f000000c002400210000000000112019f00000154011001c70000801002000039052605210000040f00000001022001900000051a0000613d000000000101043b000000400200043d00000020032000390000000000130435000000400120003900000008030000290000000000310435000000400300043d000000000131004900000000011304360000006002200039000000400020043f0000014b020000410000014b0410009c0000000001028019000000400110021000000000030304330000014b0430009c00000000030280190000006003300210000000000113019f00000000030004140000014b0430009c0000000002034019000000c002200210000000000112019f00000154011001c70000801002000039052605210000040f000000090c00002900000001022001900000051a0000613d000000000101043b000000400300043d00000044023000390000015504000041000000000042043500000084020000390000000005230436000000c3023000390000000704000029000000000242016f000000400020043f00000020022000390000000003030433000000200430008c00000000060300190000000004020019000000a60000413d0000000004020019000000000603001900000000570504340000000004740436000000200660008a000000200760008c000000a10000813d00000100080000390000000107000039000000200960008900000000060404330000000005050433000000010a900190000000000a080019000000010a00603900000000a77a00a9000000010a90027000000000b88800a9000000010990008c00000000090a0019000000ab0000213d0000000008700049000000000585016f000000010770008a000000000667016f000000000556019f000000000054043500000000022300190000000003c20436000000400400043d00000000024200490000000002240436000000400030043f00000084034000390000000005040433000000840650008a0000000007000414000000000063043500000060030000390000006406400039000000000036043500000156030000410000000000320435000000240340003900000000001304350000014b010000410000014b0320009c000000000201801900000040022002100000014b0350009c000000000301001900000000030540190000006003300210000000000223019f0000014b0370009c0000000001074019000000c001100210000000000121019f00000154011001c700008006020000390526051c0000040f00000001022001900000048e0000613d000000000201043b0000015206200198000004910000613d00000006010000290000000001010433000000000310004c0000000905000029000700000006001d000000fd0000613d0000000003000414000000040420008c000000fd0000613d0000014b040000410000014b0510009c000000000104801900000060011002100000000505000029000000000151019f0000014b0530009c0000000003048019000000c003300210000000000113019f0526051c0000040f00000009050000290000000706000029000000000301001900000060033002700001014b0030019d000300000001035500000001012001900000051a0000613d000000400100043d000000200210003900000000005204350000000000610435000000400200043d00000000012100490000014b030000410000014b0420009c0000000002038019000000400220021000000040011000390000014b0410009c00000000010380190000006001100210000000000121019f00000000020004140000014b0420009c0000000002038019000000c002200210000000000121019f00000154011001c70000800d02000039000000010300003900000157040000410526051c0000040f000000070500002900000001012001900000050c0000c13d0000051a0000013d000000000110004c0000051a0000c13d0000002001000039000001000010044300000120000004430000014c01000041000005270001042e0000014e0430009c000002290000c13d000000640310008a000000600400008a000000000343004b0000051a0000813d0000000403200370000000000303043b000001520a3001970000002403200370000000000303043b000001530430009c0000051a0000213d0000002405300039000000000415004b0000051a0000213d0000000403300039000000000332034f000000000303043b000001530430009c0000051a0000213d0000000004530019000000000114004b0000051a0000213d0000003f01300039000000200400008a000700000004001d000000000441016f000000400100043d00000000044100190000004402200370000000000202043b000800000002001d000000400040043f0000001f0430018f000000000231043600000002055003670000000506300272000001510000613d000000000700001900000005087002100000000009820019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000001490000413d00090000000a001d000000000740004c000001610000613d0000000506600210000000000565034f00000000066200190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f0000000000460435000000000332001900000000000304350000014b030000410000014b0420009c0000000002038019000000400220021000000000010104330000014b0410009c00000000010380190000006001100210000000000121019f00000000020004140000014b0420009c0000000002038019000000c002200210000000000112019f00000154011001c70000801002000039052605210000040f00000001022001900000051a0000613d000000000101043b000000400200043d00000020032000390000000000130435000000400120003900000008030000290000000000310435000000400300043d000000000131004900000000011304360000006002200039000000400020043f0000014b020000410000014b0410009c0000000001028019000000400110021000000000030304330000014b0430009c00000000030280190000006003300210000000000113019f00000000030004140000014b0430009c0000000002034019000000c002200210000000000112019f00000154011001c70000801002000039052605210000040f000000090c00002900000001022001900000051a0000613d000000000101043b000000400300043d00000044023000390000015504000041000000000042043500000084020000390000000005230436000000c3023000390000000704000029000000000242016f000000400020043f00000020022000390000000003030433000000200430008c00000000060300190000000004020019000001ae0000413d0000000004020019000000000603001900000000570504340000000004740436000000200660008a000000200760008c000001a90000813d00000100080000390000000107000039000000200960008900000000060404330000000005050433000000010a900190000000000a080019000000010a00603900000000a77a00a9000000010a90027000000000b88800a9000000010990008c00000000090a0019000001b30000213d0000000008700049000000000585016f000000010770008a000000000667016f000000000556019f000000000054043500000000022300190000000003c20436000000400400043d00000000024200490000000002240436000000400030043f00000084034000390000000005040433000000840650008a0000000007000414000000000063043500000060030000390000006406400039000000000036043500000156030000410000000000320435000000240340003900000000001304350000014b010000410000014b0320009c000000000201801900000040022002100000014b0350009c000000000301001900000000030540190000006003300210000000000223019f0000014b0370009c0000000001074019000000c001100210000000000121019f00000154011001c700008006020000390526051c0000040f00000001022001900000048e0000613d000000000101043b0000015202100198000004910000613d0000006001100210000000400300043d00000020023000390000000000120435000000400200043d0000000001230049000000140110003900000000001204350000003401300039000000400010043f0000015c04000041000000000041043500000038043000390000002001000039000000000014043500000058043000390000000005020433000000000054043500000078043000390000000005020433000000000350004c00000000030000190000021d0000613d000000000300001900000000064300190000002003300039000000000723001900000000070704330000000000760435000000000653004b000002010000413d00000000034500190000001f055001900000021e0000613d0000010004000039000000010200003900000000035300490000002006500089000000000503043300000001076001900000000007040019000000010700603900000000722700a9000000010760027000000000844400a9000000010660008c0000000006070019000002100000213d0000000002200049000000000225016f000000000023043500000000040100190000000003430019000000400100043d00000000021300490000014b030000410000014b0420009c00000000020380190000014b0410009c000000000103801900000040011002100000006002200210000000000112019f00000528000104300000014f0430009c000002670000c13d000000400200043d00000044012000390000015503000041000000000031043500000084010000390000000000120435000000c301200039000000200300008a000000000331016f000000400030043f000000200100003900000000041304360000000005020433000000000054043500000040043000390000000005020433000000000350004c00000000030000190000025b0000613d000000000300001900000000064300190000002003300039000000000723001900000000070704330000000000760435000000000653004b0000023f0000413d00000000034500190000001f055001900000025c0000613d0000010004000039000000010200003900000000035300490000002006500089000000000503043300000001076001900000000007040019000000010700603900000000722700a9000000010760027000000000844400a9000000010660008c00000000060700190000024e0000213d0000000002200049000000000225016f000000000023043500000000040100190000000003430019000000400100043d00000000021300490000014b030000410000014b0420009c00000000020380190000014b0410009c000000000103801900000040011002100000006002200210000000000112019f000005270001042e000001500430009c000002d20000c13d000000440310008a000000400400008a000000000343004b0000051a0000813d0000000403200370000000000303043b00000152083001970000002403200370000000000403043b000001530340009c0000051a0000213d0000002403400039000000000513004b0000051a0000213d0000000404400039000000000242034f000000000202043b000001530420009c0000051a0000213d0000000004320019000000000114004b0000051a0000213d0000003f01200039000000200400008a000000000141016f000000400400043d0000000001140019000000400010043f0000001f0120018f000800000004001d000000000924043600000002033003670000000504200272000002940000613d000000000500001900000005065002100000000007690019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b0000028c0000413d000000000510004c000002a30000613d0000000504400210000000000343034f00000000044900190000000301100210000000000504043300000000051501cf000000000515022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f0000000000140435000700000009001d00000000012900190000000000010435000000400100043d0000002402100039000001550300004100000000003204350000008401100039000900000008001d00000000008104350000006002000039000000400300043d0000004404300039000000000500041400000000002404350000000001310049000000640210008a000000640430003900000000002404350000015b020000410000000000230435000000040230003900000000000204350000014b020000410000014b0430009c0000000003028019000000400330021000000020011000390000014b0410009c00000000010280190000006001100210000000000131019f0000014b0350009c0000000002054019000000c002200210000000000121019f00000154011001c700008006020000390526051c0000040f0000000102200190000004a90000613d000000000601043b000000000160004c000004cd0000c13d00000003010003670000000102000031000004ae0000013d000001510330009c0000051a0000c13d000000840310008a000000800400008a000000000343004b0000051a0000813d0000000403200370000000000303043b00000152073001970000002403200370000000000403043b000001530340009c0000051a0000213d0000002403400039000000000513004b0000051a0000213d0000000404400039000000000242034f000000000202043b000001530420009c0000051a0000213d0000000004320019000000000114004b0000051a0000213d000500000007001d000400000006001d0000003f01200039000000200400008a000700000004001d000000000141016f000000400400043d0000000001140019000000400010043f0000001f0120018f000600000004001d000000000824043600000002033003670000000504200272000003020000613d000000000500001900000005065002100000000007680019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000002fa0000413d000000000510004c000003110000613d0000000504400210000000000343034f00000000044800190000000301100210000000000504043300000000051501cf000000000515022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f00000000001404350000000001280019000000000001043500000002010003670000004402100370000000000402043b0000006401100370000000000301043b000900000003001d000000400100043d0000004002100039000000600330021000000000003204350000002002100039000300000004001d0000000000420435000000400200043d0000000003210049000000340330003900000000033204360000005401100039000000400010043f0000014b010000410000014b0430009c0000000003018019000000400330021000000000020204330000014b0420009c00000000020180190000006002200210000000000232019f00000000030004140000014b0430009c0000000001034019000000c001100210000000000121019f00000154011001c70000801002000039000800000008001d052605210000040f00000009030000290000015203300197000900000003001d00000001022001900000051a0000613d000000000101043b000200000001001d000000060100002900000000010104330000014b0200004100000000030004140000014b0430009c00000000030280190000014b0410009c000000000102801900000008050000290000014b0450009c000000000205401900000040022002100000006001100210000100000002001d000000000121019f000000c002300210000000000112019f00000154011001c70000801002000039052605210000040f00000001022001900000051a0000613d000000000101043b000000400200043d00000020032000390000000000130435000000400120003900000002030000290000000000310435000000400300043d000000000131004900000000011304360000006002200039000000400020043f0000014b020000410000014b0410009c0000000001028019000000400110021000000000030304330000014b0430009c00000000030280190000006003300210000000000113019f00000000030004140000014b0430009c0000000002034019000000c002200210000000000112019f00000154011001c70000801002000039052605210000040f00000001022001900000051a0000613d0000000802000029000000000101043b000000400300043d00000044023000390000015504000041000000000042043500000084020000390000000005230436000000c3023000390000000704000029000000000242016f000000400020043f00000020022000390000000003030433000000200430008c000000000603001900000000040200190000038d0000413d0000000004020019000000000603001900000000570504340000000004740436000000200660008a000000200760008c000003880000813d00000100080000390000000107000039000000200960008900000000060404330000000005050433000000010a900190000000000a080019000000010a00603900000000a77a00a9000000010a90027000000000b88800a9000000010990008c00000000090a0019000003920000213d0000000008700049000000000585016f000000010770008a000000000667016f000000000556019f0000000000540435000000000223001900000005030000290000000003320436000000400400043d00000000024200490000000002240436000000400030043f00000084034000390000000005040433000000840650008a0000000007000414000000000063043500000060030000390000006406400039000000000036043500000156030000410000000000320435000000240340003900000000001304350000014b010000410000014b0320009c000000000201801900000040022002100000014b0350009c000000000301001900000000030540190000006003300210000000000223019f0000014b0370009c0000000001074019000000c001100210000000000121019f00000154011001c700008006020000390526051c0000040f00000001022001900000048e0000613d000000000201043b0000015206200198000004910000613d00000006010000290000000001010433000000000310004c0000000505000029000700000006001d000003e50000613d0000000003000414000000040420008c000003e50000613d0000014b040000410000014b0510009c000000000104801900000060011002100000000105000029000000000151019f0000014b0530009c0000000003048019000000c003300210000000000113019f0526051c0000040f00000007060000290000000505000029000000000301001900000060033002700001014b0030019d000300000001035500000001012001900000051a0000613d000000400100043d000000200210003900000000005204350000000000610435000000400200043d00000000012100490000014b030000410000014b0420009c0000000002038019000000400220021000000040011000390000014b0410009c00000000010380190000006001100210000000000121019f00000000020004140000014b0420009c0000000002038019000000c002200210000000000121019f00000154011001c70000800d0200003900000001030000390000015704000041000200000003001d0526051c0000040f00000007050000290000000504000029000000040300002900000001012001900000051a0000613d0000000901000029000000000110004c0000050c0000613d000000400100043d000000640210003900000003060000290000000000620435000000240210003900000000004204350000015802000041000000000021043500000004021000390000000000520435000000440210003900000000003204350000008402100039000000060400002900000000030404330000000000320435000000a401100039000500000001001d0000000001040433000000000210004c0000043d0000613d00000000020000190000000805000029000000050600002900000000036200190000000004520019000000000404043300000000004304350000002002200039000000000312004b0000041f0000413d0000000006610019000500000006001d0000001f031001900000043d0000613d00000100020000390000000501000029000000000131004900000020043000890000000053010434000500000005001d000000020700002900000001054001900000000005020019000000010500603900000000577500a9000000010540027000000000622200a9000000010440008c0000000004050019000004310000213d0000000002700049000000000223016f0000000000210435000000400100043d000800000001001d00000159010000410000000000100439000000090100002900000004001004430000014b0100004100000000020004140000014b0320009c0000000001024019000000c0011002100000015a011001c70000800202000039052605210000040f000000010220019000000007050000290000051a0000613d000000000101043b000000000110004c0000051a0000613d00000000010004140000000902000029000000040220008c0000050c0000613d0000000502000029000000080500002900000000025200490000014b030000410000014b0450009c0000000004030019000000000405401900000040044002100000014b0520009c00000000020380190000006002200210000000000242019f0000014b0410009c0000000001038019000000c001100210000000000121019f00000009020000290526051c0000040f0000000705000029000000000301001900000060033002700001014b0030019d0000014b04300197000300000001035500000001022001900000050c0000c13d0000001f0340018f00000005024002720000047a0000613d00000000040000190000000505400210000000000651034f000000000606043b00000000006504350000000104400039000000000524004b000004730000413d000000000430004c000004880000613d00000003033002100000000502200210000000000402043300000000043401cf000000000434022f000000000121034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f00000000001204350000014b0100004100000001020000310000014b0320009c000000000102401900000060011002100000052800010430000300000001035500000060011002700001014b0010019d000000400100043d00000044021000390000015d0300004100000000003204350000002402100039000000130300003900000000003204350000015c020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d000000000121004900000064011000390000014b030000410000014b0410009c00000000010380190000014b0420009c000000000203801900000040022002100000006001100210000000000121019f00000528000104300003000000010355000000000201001900000060022002700001014b0020019d0000014b022001970000001f0320018f0000000502200272000004b90000613d00000000040000190000000505400210000000000651034f000000000606043b00000000006504350000000104400039000000000524004b000004b20000413d000000000430004c000004c70000613d00000003033002100000000502200210000000000402043300000000043401cf000000000434022f000000000121034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f00000000001204350000014b0100004100000001020000310000014b0320009c00000000010240190000006001100210000005280001043000000008010000290000000001010433000000000210004c0000000904000029000004ee0000613d0000000002000414000000040360008c000004ee0000613d0000014b0300004100000007050000290000014b0450009c0000000004030019000000000405401900000040044002100000014b0510009c00000000010380190000006001100210000000000141019f0000014b0420009c0000000002038019000000c002200210000000000112019f0000000002060019000800000006001d0526051c0000040f00000008060000290000000904000029000000000301001900000060033002700001014b0030019d000300000001035500000001012001900000051a0000613d000000400100043d000000200210003900000000004204350000015202600197000700000002001d0000000000210435000000400200043d00000000012100490000014b030000410000014b0420009c0000000002038019000000400220021000000040011000390000014b0410009c00000000010380190000006001100210000000000121019f00000000020004140000014b0420009c0000000002038019000000c002200210000000000121019f00000154011001c70000800d02000039000000010300003900000157040000410526051c0000040f000000070500002900000001012001900000051a0000613d000000400100043d0000000000510435000000400200043d000000000121004900000020011000390000014b030000410000014b0410009c00000000010380190000014b0420009c000000000203801900000040022002100000006001100210000000000121019f000005270001042e000000000100001900000528000104300000051f002104210000000102000039000000000001042d0000000002000019000000000001042d00000524002104230000000102000039000000000001042d0000000002000019000000000001042d0000052600000432000005270001042e000005280001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000001688f0b9000000000000000000000000000000000000000000000000000000002500510e0000000000000000000000000000000000000000000000000000000053e5d9350000000000000000000000000000000000000000000000000000000061b69abd00000000000000000000000000000000000000000000000000000000d18af54d000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000100004124426fb9ebb25e27d670c068e52f9ba631bd383279a188be47e3f86d3cda33511d41a8a5431b1770c5bc0ddd62e1cd30555d16659b89c0d60f4f9f574f51faf6c4561ff95f067657e43439f0f856d97c04d9ec9070a6199ad418e2351e52b518000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8302000002000000000000000000000000000000240000000000000000000000009c4d535bdea7cd8a978f128b93471df48c7dbab89d703809115bdc118c235bfd08c379a000000000000000000000000000000000000000000000000000000000437265617465322063616c6c206661696c656400000000000000000000000000f911f904144b899a7cf9447d5215b8b5030d705f985625ee5d89baa99092b88a

Block Transaction Gas Used Reward
view all blocks produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block 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.