ETH Price: $2,714.80 (+0.36%)

Contract

0x1b87743969c292e905F1BA55fE3dCF87b2f740b6
 
Transaction Hash
Method
Block
From
To
Execute Multiple...167219712023-02-27 20:40:47720 days ago1677530447IN
0x1b877439...7b2f740b6
0 ETH0.0029148929.37954677
Execute Multiple...167219512023-02-27 20:36:47720 days ago1677530207IN
0x1b877439...7b2f740b6
0 ETH0.0056249529.5944142
Execute Multiple...126024012021-06-09 20:12:341348 days ago1623269554IN
0x1b877439...7b2f740b6
0 ETH0.0090734117.5
Execute Multiple...125583962021-06-03 0:40:371355 days ago1622680837IN
0x1b877439...7b2f740b6
0 ETH0.0147345725
Execute Multiple...117208312021-01-24 21:42:181484 days ago1611524538IN
0x1b877439...7b2f740b6
0 ETH0.01493705106.5
Execute Multiple...115981742021-01-06 1:49:471503 days ago1609897787IN
0x1b877439...7b2f740b6
0 ETH0.02122866180
Execute Multiple...115981492021-01-06 1:41:361503 days ago1609897296IN
0x1b877439...7b2f740b6
0 ETH0.03875518128.23500225
Execute Multiple...115980702021-01-06 1:25:481503 days ago1609896348IN
0x1b877439...7b2f740b6
0 ETH0.01034983114
Execute Multiple...113676892020-12-01 16:15:021538 days ago1606839302IN
0x1b877439...7b2f740b6
0 ETH0.02122167126

Latest 11 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
167219712023-02-27 20:40:47720 days ago1677530447
0x1b877439...7b2f740b6
0.00179486 ETH
167219712023-02-27 20:40:47720 days ago1677530447
0x1b877439...7b2f740b6
0.00915238 ETH
167219512023-02-27 20:36:47720 days ago1677530207
0x1b877439...7b2f740b6
0.00399266 ETH
126024012021-06-09 20:12:341348 days ago1623269554
0x1b877439...7b2f740b6
0.00699288 ETH
125583962021-06-03 0:40:371355 days ago1622680837
0x1b877439...7b2f740b6
0.0114086 ETH
117208312021-01-24 21:42:181484 days ago1611524538
0x1b877439...7b2f740b6
0.00920103 ETH
115981742021-01-06 1:49:471503 days ago1609897787
0x1b877439...7b2f740b6
0.012873 ETH
115981492021-01-06 1:41:361503 days ago1609897296
0x1b877439...7b2f740b6
0.02632339 ETH
115981492021-01-06 1:41:361503 days ago1609897296
0x1b877439...7b2f740b6
0.4 ETH
115981212021-01-06 1:36:401503 days ago1609897000
0x1b877439...7b2f740b6
0.48215 ETH
113676872020-12-01 16:14:511538 days ago1606839291  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
AuthereumProxy

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2020-07-13
*/

/**
Author: Authereum Labs, Inc.
*/

pragma solidity 0.5.17;


/**
 * @title AuthereumProxy
 * @author Authereum Labs, Inc.
 * @dev The Authereum Proxy.
 */
contract AuthereumProxy {

    // We do not include a name or a version for this contract as this
    // is a simple proxy. Including them here would overwrite the declaration
    // of these variables in the implementation.

    /// @dev Storage slot with the address of the current implementation.
    /// @notice This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1
    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /// @dev Set the implementation in the constructor
    /// @param _logic Address of the logic contract
    constructor(address _logic) public payable {
        bytes32 slot = IMPLEMENTATION_SLOT;
        assembly {
            sstore(slot, _logic)
        }
    }

    /// @dev Fallback function
    /// @notice A payable fallback needs to be implemented in the implementation contract
    /// @notice This is a low level function that doesn't return to its internal call site.
    /// @notice It will return to the external caller whatever the implementation returns.
    function () external payable {
        if (msg.data.length == 0) return;

        assembly {
            // Load the implementation address from the IMPLEMENTATION_SLOT
            let impl := sload(IMPLEMENTATION_SLOT)

            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize)

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas, impl, 0, calldatasize, 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize)

            switch result
            // delegatecall returns 0 on error.
            case 0 { revert(0, returndatasize) }
            default { return(0, returndatasize) }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"}],"payable":true,"stateMutability":"payable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040526000803690501415601357605a565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc543660008037600080366000845af43d6000803e80600081146055573d6000f35b3d6000fd5b00fea265627a7a72315820d0d2c90ed4cb73bc3b23f9e2e34421e4944b1ce41facbade4687b4462a85fc9b64736f6c63430005110032

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