Cryo Explorer Ethereum Mainnet

Address Contract Partially Verified

Address 0xF741F75AF95f8F4e4015B1df73a249Fb958c449F
ENS Name branson.argent.xyz
Balance 0.000016502 ETH ($0.03)
Nonce 1
Code Size 214 bytes
Last Active
Indexed Transactions 3 (10,634,63610,647,611)
Value (indexed) ↓ 108.3982 ETH
Gas Used (indexed) 69,702
External Etherscan · Sourcify

Contract Bytecode

214 bytes
0x60806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029

Verified Source Code Partial Match

Compiler: v0.4.24+commit.e67f0147 EVM: byzantium Optimization: Yes (999 runs)
Proxy.sol 37 lines
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())}
            }
        }
    }
}

Top Interactions

AddressTxnsSentReceived
0xFBb1b73C...BB98 2 2
0xc22E7D56...A9D4 1 1

Recent Transactions

CSV
|
Hash Method Block Age From/To Value Txn Fee Type
0xc9ec8fc9...8a5894 Transfer 10,647,611 IN 0xFBb1b73C...BB98 91.9900 ETH 0.00958402 ETH Legacy
0x8dce78bc...de8ffc Transfer 10,634,668 IN 0xFBb1b73C...BB98 9.9082 ETH 0.00261383 ETH Legacy
0xcc7f33ff...2c434f Transfer 10,634,636 IN 0xc22E7D56...A9D4 6.5000 ETH 0.00206783 ETH Legacy