ETH Price: $2,615.57 (+0.94%)

Contract

0xC094cF41471fA30C1EA1E4A2e0aEeB8c34fD16F0
 
Transaction Hash
Method
Block
From
To
Transfer117656532021-01-31 19:16:551298 days ago1612120615IN
0xC094cF41...c34fD16F0
11.15628316 ETH0.00334483144
Transfer113580172020-11-30 4:56:221361 days ago1606712182IN
0xC094cF41...c34fD16F0
11 ETH0.0012775455
Transfer113556612020-11-29 20:05:561361 days ago1606680356IN
0xC094cF41...c34fD16F0
1.81070853 ETH0.00031515

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
199771842024-05-29 18:04:5984 days ago1717005899
0xC094cF41...c34fD16F0
0.00262777 ETH
189821712024-01-11 7:22:23224 days ago1704957743
0xC094cF41...c34fD16F0
0.00319281 ETH
161661162022-12-12 4:02:59619 days ago1670817779
0xC094cF41...c34fD16F0
0.00941847 ETH
144600482022-03-26 5:42:59880 days ago1648273379
0xC094cF41...c34fD16F0
0.00584484 ETH
141388342022-02-04 10:03:20930 days ago1643969000
0xC094cF41...c34fD16F0
0.0116267 ETH
131190882021-08-29 7:41:401089 days ago1630222900
0xC094cF41...c34fD16F0
0.02295204 ETH
131190882021-08-29 7:41:401089 days ago1630222900
0xC094cF41...c34fD16F0
0.00015584 ETH
131190882021-08-29 7:41:401089 days ago1630222900
0xC094cF41...c34fD16F0
0.00171424 ETH
131190762021-08-29 7:37:401089 days ago1630222660
0xC094cF41...c34fD16F0
0.00714365 ETH
118263992021-02-10 3:42:471289 days ago1612928567
0xC094cF41...c34fD16F0
0.0244536 ETH
118263992021-02-10 3:42:471289 days ago1612928567
0xC094cF41...c34fD16F0
19.9 ETH
118245422021-02-09 20:45:231289 days ago1612903523
0xC094cF41...c34fD16F0
20 ETH
117657652021-01-31 19:39:361298 days ago1612121976
0xC094cF41...c34fD16F0
0.0085 ETH
117657652021-01-31 19:39:361298 days ago1612121976
0xC094cF41...c34fD16F0
12.40806964 ETH
117351822021-01-27 2:36:111303 days ago1611714971
0xC094cF41...c34fD16F0
0.005675 ETH
117351822021-01-27 2:36:111303 days ago1611714971
0xC094cF41...c34fD16F0
14.6842 ETH
117274712021-01-25 21:57:141304 days ago1611611834
0xC094cF41...c34fD16F0
14.68421838 ETH
117033532021-01-22 5:07:441308 days ago1611292064
0xC094cF41...c34fD16F0
0.0064 ETH
117033532021-01-22 5:07:441308 days ago1611292064
0xC094cF41...c34fD16F0
1 ETH
116330232021-01-11 10:21:561319 days ago1610360516
0xC094cF41...c34fD16F0
0.0121 ETH
116330232021-01-11 10:21:561319 days ago1610360516
0xC094cF41...c34fD16F0
0.245891 ETH
116177142021-01-09 1:43:071321 days ago1610156587
0xC094cF41...c34fD16F0
0.01394651 ETH
116177142021-01-09 1:43:071321 days ago1610156587
0xC094cF41...c34fD16F0
10 ETH
114476232020-12-13 23:36:491347 days ago1607902609
0xC094cF41...c34fD16F0
0.00521475 ETH
114476232020-12-13 23:36:491347 days ago1607902609
0xC094cF41...c34fD16F0
12 ETH
View All Internal Transactions
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2020-10-09
*/

pragma solidity ^0.6.12;

// Copyright (C) 2018  Argent Labs Ltd. <https://argent.xyz>

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

// SPDX-License-Identifier: GPL-3.0-only

/**
 * @title Proxy
 * @notice Basic proxy that delegates all calls to a fixed implementing contract.
 * The implementing contract cannot be upgraded.
 * @author Julien Niset - <[email protected]>
 */
contract Proxy {

    address implementation;

    event Received(uint indexed value, address indexed sender, bytes data);

    constructor(address _implementation) public {
        implementation = _implementation;
    }

    fallback() external payable {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            let target := sload(0)
            calldatacopy(0, 0, calldatasize())
            let result := delegatecall(gas(), target, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            switch result
            case 0 {revert(0, returndatasize())}
            default {return (0, returndatasize())}
        }
    }

    receive() external payable {
        emit Received(msg.value, msg.sender, msg.data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Received","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x6080604052366083573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef73860003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a3005b600080543682833781823684845af490503d82833e80801560a2573d83f35b3d83fdfea264697066735822122081653946f6f0f024eb94b19bdaf1d69dc04d346dcb6092fa1369c9e2dacfa42164736f6c634300060c0033

Deployed Bytecode Sourcemap

999:809:0:-:0;;;;;;1776:10;1756:41;;1765:9;1756:41;1788:8;;1756:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1756:41:0;;;;;;;;-1:-1:-1;1756:41:0;;-1:-1:-1;;;;1756:41:0;999:809;;1376:1;;1370:8;1411:14;1376:1;;1392:34;1376:1;;1411:14;1376:1;1474:6;1467:5;1454:52;1440:66;;1541:16;1376:1;;1520:38;1579:6;1599:36;;;;1669:16;1376:1;1658:28;1599:36;1617:16;1376:1;1607:27

Swarm Source

ipfs://81653946f6f0f024eb94b19bdaf1d69dc04d346dcb6092fa1369c9e2dacfa421

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.