ETH Price: $3,360.01 (+0.37%)

Contract

0x770f0297a6b2d3f6FE43E0182a3376A1bdf92Ccc
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer132287902021-09-15 6:58:061165 days ago1631689086IN
0x770f0297...1bdf92Ccc
0.5 ETH0.00263241113.3
Transfer131810902021-09-07 21:33:191172 days ago1631050399IN
0x770f0297...1bdf92Ccc
0.14913842 ETH0.00554595238.7
Transfer130963452021-08-25 19:19:541185 days ago1629919194IN
0x770f0297...1bdf92Ccc
8.8 ETH0.00259388111.64195758
Transfer120969952021-03-23 19:24:381340 days ago1616527478IN
0x770f0297...1bdf92Ccc
31.5 ETH0.0050348216.7
Transfer109379192020-09-26 11:16:101519 days ago1601118970IN
0x770f0297...1bdf92Ccc
1.3 ETH0.0016496171
Transfer106680992020-08-16 1:20:481560 days ago1597540848IN
0x770f0297...1bdf92Ccc
0.54 ETH0.0021142991
Transfer106253752020-08-09 11:14:071567 days ago1596971647IN
0x770f0297...1bdf92Ccc
0.2656842 ETH0.0017657876
Transfer106210012020-08-08 19:07:551567 days ago1596913675IN
0x770f0297...1bdf92Ccc
0.10222205 ETH0.0020678289
Transfer105411582020-07-27 10:55:461580 days ago1595847346IN
0x770f0297...1bdf92Ccc
0.00806984 ETH0.0022441396.58843678

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
212438982024-11-22 14:34:2321 hrs ago1732286063
0x770f0297...1bdf92Ccc
0.00303214 ETH
199144422024-05-20 23:35:23186 days ago1716248123
0x770f0297...1bdf92Ccc
0.0038971 ETH
199144422024-05-20 23:35:23186 days ago1716248123
0x770f0297...1bdf92Ccc
0.016 ETH
175670732023-06-27 0:12:11515 days ago1687824731
0x770f0297...1bdf92Ccc
0.00191087 ETH
175670672023-06-27 0:10:59515 days ago1687824659
0x770f0297...1bdf92Ccc
0.00289768 ETH
155810172022-09-21 9:58:11794 days ago1663754291
0x770f0297...1bdf92Ccc
0.00078387 ETH
145000502022-04-01 11:20:30967 days ago1648812030
0x770f0297...1bdf92Ccc
0.0091 ETH
133673302021-10-06 19:41:001143 days ago1633549260
0x770f0297...1bdf92Ccc
0.02293956 ETH
133673302021-10-06 19:41:001143 days ago1633549260
0x770f0297...1bdf92Ccc
0.2 ETH
133671082021-10-06 18:44:271143 days ago1633545867
0x770f0297...1bdf92Ccc
0.02142991 ETH
133671082021-10-06 18:44:271143 days ago1633545867
0x770f0297...1bdf92Ccc
0.2 ETH
133316142021-10-01 5:39:541149 days ago1633066794
0x770f0297...1bdf92Ccc
0.02043331 ETH
133316142021-10-01 5:39:541149 days ago1633066794
0x770f0297...1bdf92Ccc
0.45963068 ETH
133299222021-09-30 23:17:081149 days ago1633043828
0x770f0297...1bdf92Ccc
0.01462465 ETH
132499462021-09-18 13:35:031161 days ago1631972103
0x770f0297...1bdf92Ccc
0.00910192 ETH
132499462021-09-18 13:35:031161 days ago1631972103
0x770f0297...1bdf92Ccc
2.1 ETH
132416242021-09-17 6:28:591163 days ago1631860139
0x770f0297...1bdf92Ccc
0.0160617 ETH
132416242021-09-17 6:28:591163 days ago1631860139
0x770f0297...1bdf92Ccc
0.10387684 ETH
132416172021-09-17 6:27:021163 days ago1631860022
0x770f0297...1bdf92Ccc
0.00802889 ETH
132416072021-09-17 6:24:421163 days ago1631859882
0x770f0297...1bdf92Ccc
0.00659588 ETH
132416072021-09-17 6:24:421163 days ago1631859882
0x770f0297...1bdf92Ccc
1.59160109 ETH
132415042021-09-17 6:02:131163 days ago1631858533
0x770f0297...1bdf92Ccc
0.01293634 ETH
131827102021-09-08 3:38:501172 days ago1631072330
0x770f0297...1bdf92Ccc
0.02714777 ETH
131826642021-09-08 3:27:261172 days ago1631071646
0x770f0297...1bdf92Ccc
0.0444822 ETH
131826642021-09-08 3:27:261172 days ago1631071646
0x770f0297...1bdf92Ccc
0.033 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.