ETH Price: $3,568.87 (+1.30%)
Gas: 61 Gwei

Contract

0x846e211e8ba920B353FB717631C015cf04061Cc9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Exec Transaction183287182023-10-11 17:35:11168 days ago1697045711IN
0x846e211e...f04061Cc9
0 ETH0.002405649.00486809
Exec Transaction162727252022-12-27 1:12:23457 days ago1672103543IN
0x846e211e...f04061Cc9
0 ETH0.0036827814.62323494
Setup160569482022-11-26 21:49:47487 days ago1669499387IN
0x846e211e...f04061Cc9
0 ETH0.000279448.71363441
Exec Transaction149726642022-06-16 9:54:23651 days ago1655373263IN
0x846e211e...f04061Cc9
0 ETH0.0065911534.72338731
Exec Transaction149726252022-06-16 9:44:10651 days ago1655372650IN
0x846e211e...f04061Cc9
0 ETH0.0036408342.21556531
Exec Transaction134546812021-10-20 12:45:42890 days ago1634733942IN
0x846e211e...f04061Cc9
0 ETH0.0046566460.45475598
Exec Transaction134546592021-10-20 12:41:06890 days ago1634733666IN
0x846e211e...f04061Cc9
0 ETH0.0038848965.66756987
Exec Transaction134546512021-10-20 12:38:45890 days ago1634733525IN
0x846e211e...f04061Cc9
0 ETH0.0075311272.95407973
Exec Transaction120022722021-03-09 4:53:261115 days ago1615265606IN
0x846e211e...f04061Cc9
0 ETH0.00848777107
Exec Transaction120022122021-03-09 4:40:321115 days ago1615264832IN
0x846e211e...f04061Cc9
0 ETH0.00686441116
Exec Transaction118704832021-02-16 22:15:481135 days ago1613513748IN
0x846e211e...f04061Cc9
0 ETH0.0074866152
Exec Transaction118625822021-02-15 17:04:561136 days ago1613408696IN
0x846e211e...f04061Cc9
0 ETH0.0234546209
Exec Transaction118376782021-02-11 21:16:371140 days ago1613078197IN
0x846e211e...f04061Cc9
0 ETH0.12163047130
Exec Transaction118364322021-02-11 16:48:021140 days ago1613062082IN
0x846e211e...f04061Cc9
0 ETH0.2103462200
Exec Transaction118364022021-02-11 16:40:021140 days ago1613061602IN
0x846e211e...f04061Cc9
0 ETH0.01069399195
Exec Transaction118312092021-02-10 21:28:521141 days ago1612992532IN
0x846e211e...f04061Cc9
0 ETH0.07394673123
Exec Transaction118245182021-02-09 20:40:101142 days ago1612903210IN
0x846e211e...f04061Cc9
0 ETH0.01319147133
Exec Transaction118242822021-02-09 19:51:321142 days ago1612900292IN
0x846e211e...f04061Cc9
0 ETH0.00698276118
Exec Transaction117906412021-02-04 15:38:591148 days ago1612453139IN
0x846e211e...f04061Cc9
0 ETH0.03780512248
Exec Transaction117798132021-02-02 23:38:111149 days ago1612309091IN
0x846e211e...f04061Cc9
0 ETH0.0203428100
Exec Transaction117791542021-02-02 21:16:491149 days ago1612300609IN
0x846e211e...f04061Cc9
0 ETH0.01539522101
Exec Transaction117718502021-02-01 18:04:111150 days ago1612202651IN
0x846e211e...f04061Cc9
0 ETH0.0093043141
Exec Transaction117472852021-01-28 23:20:521154 days ago1611876052IN
0x846e211e...f04061Cc9
0 ETH0.0042868865
Exec Transaction117456282021-01-28 17:23:361154 days ago1611854616IN
0x846e211e...f04061Cc9
0 ETH0.0075503381
Exec Transaction117254652021-01-25 14:34:271158 days ago1611585267IN
0x846e211e...f04061Cc9
0 ETH0.0525719372.1
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Txn Hash Block From To Value
110251292020-10-10 2:57:581265 days ago1602298678  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.5.14+commit.1f1aaa4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-01-13
*/

pragma solidity ^0.5.3;

/// @title Proxy - 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 Proxy {

    // masterCopy 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 masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)
        public
    {
        require(_masterCopy != address(0), "Invalid master copy address provided");
        masterCopy = _masterCopy;
    }

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

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a72315820d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff64736f6c634300050e0032

Deployed Bytecode Sourcemap

245:1554:0:-;;;1155:42;1151:1;1145:8;1141:57;1335:66;1331:1;1318:15;1315:87;1312:2;;;1432:10;1429:1;1422:21;1471:4;1468:1;1461:15;1312:2;1524:14;1521:1;1518;1505:34;1620:1;1617;1601:14;1598:1;1586:10;1581:3;1568:54;1657:16;1654:1;1651;1636:38;1703:1;1694:7;1691:14;1688:2;;;1718:16;1715:1;1708:27;1688:2;1761:16;1758:1;1751:27

Swarm Source

bzzr://d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff

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

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.