ETH Price: $3,404.11 (+2.77%)

Contract

0xC905e25C43cec2a1C389A61a1F393897b8D338f0
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer201913712024-06-28 16:26:47147 days ago1719592007IN
0xC905e25C...7b8D338f0
1.66812447 ETH0.0003043213.09807339
Transfer189061262023-12-31 14:42:23328 days ago1704033743IN
0xC905e25C...7b8D338f0
0.4 ETH0.0004151517.86844862
Transfer169069542023-03-25 20:48:59608 days ago1679777339IN
0xC905e25C...7b8D338f0
5 ETH0.0003692415.89260097
Transfer135649472021-11-06 19:53:561112 days ago1636228436IN
0xC905e25C...7b8D338f0
40 ETH0.00290425125

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
212442822024-11-22 15:51:2324 hrs ago1732290683
0xC905e25C...7b8D338f0
0.00348748 ETH
211668282024-11-11 20:28:1111 days ago1731356891
0xC905e25C...7b8D338f0
0.00795168 ETH
210453842024-10-25 21:41:1128 days ago1729892471
0xC905e25C...7b8D338f0
0.00083174 ETH
209666492024-10-14 22:00:3539 days ago1728943235
0xC905e25C...7b8D338f0
0.00274344 ETH
208349112024-09-26 12:52:4758 days ago1727355167
0xC905e25C...7b8D338f0
0.00477065 ETH
204575832024-08-04 20:28:35110 days ago1722803315
0xC905e25C...7b8D338f0
0.00071721 ETH
201685432024-06-25 11:57:23151 days ago1719316643
0xC905e25C...7b8D338f0
0.00046218 ETH
190056032024-01-14 14:04:35314 days ago1705241075
0xC905e25C...7b8D338f0
0.00466847 ETH
188722042023-12-26 20:20:11332 days ago1703622011
0xC905e25C...7b8D338f0
0.00217586 ETH
188721922023-12-26 20:17:47332 days ago1703621867
0xC905e25C...7b8D338f0
0.00169212 ETH
188721922023-12-26 20:17:47332 days ago1703621867
0xC905e25C...7b8D338f0
0.5 ETH
188478032023-12-23 10:05:23336 days ago1703325923
0xC905e25C...7b8D338f0
0.00575281 ETH
187274592023-12-06 13:02:35353 days ago1701867755
0xC905e25C...7b8D338f0
0.00763317 ETH
184021152023-10-21 23:58:47398 days ago1697932727
0xC905e25C...7b8D338f0
0.00086292 ETH
183192662023-10-10 9:49:35410 days ago1696931375
0xC905e25C...7b8D338f0
0.00074548 ETH
183192662023-10-10 9:49:35410 days ago1696931375
0xC905e25C...7b8D338f0
1 ETH
178633912023-08-07 13:35:47474 days ago1691415347
0xC905e25C...7b8D338f0
0.00513675 ETH
178633912023-08-07 13:35:47474 days ago1691415347
0xC905e25C...7b8D338f0
2 ETH
175568352023-06-25 13:36:47517 days ago1687700207
0xC905e25C...7b8D338f0
0.0020732 ETH
174154642023-06-05 16:21:35537 days ago1685982095
0xC905e25C...7b8D338f0
0.01387767 ETH
174154642023-06-05 16:21:35537 days ago1685982095
0xC905e25C...7b8D338f0
0.2 ETH
169460512023-03-31 8:38:59603 days ago1680251939
0xC905e25C...7b8D338f0
0.00316653 ETH
169273112023-03-28 17:28:47605 days ago1680024527
0xC905e25C...7b8D338f0
0.00266245 ETH
169273112023-03-28 17:28:47605 days ago1680024527
0xC905e25C...7b8D338f0
1 ETH
168821802023-03-22 9:16:11612 days ago1679476571
0xC905e25C...7b8D338f0
0.00143993 ETH
View All Internal Transactions
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-04-23
*/

pragma solidity ^0.4.24;

/**
 * @title Proxy
 * @dev 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;
    }

    function() external payable {

        if(msg.data.length == 0 && msg.value > 0) { 
            emit Received(msg.value, msg.sender, msg.data); 
        }
        else {
            // solium-disable-next-line security/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())}
            }
        }
    }
}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x60806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029

Swarm Source

bzzr://09ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f

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.