ETH Price: $3,419.15 (-0.29%)
Gas: 6 Gwei

Contract

0x5fb0b7Ca61187cAC82cb8a403b96D24933575599
 

Overview

ETH Balance

0.431349934315490884 ETH

Eth Value

$1,474.85 (@ $3,419.15/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer152976832022-08-07 21:43:50716 days ago1659908630IN
0x5fb0b7Ca...933575599
0.24980388 ETH0.000208349
Transfer151427422022-07-14 19:37:49740 days ago1657827469IN
0x5fb0b7Ca...933575599
0.47308055 ETH0.0005685224.55951167
Transfer150911942022-07-06 20:42:34748 days ago1657140154IN
0x5fb0b7Ca...933575599
0.86893951 ETH0.0004645220.06691058
Transfer147773342022-05-15 2:23:17801 days ago1652581397IN
0x5fb0b7Ca...933575599
5.78985517 ETH0.0005926125.6
Transfer147762242022-05-14 22:17:28801 days ago1652566648IN
0x5fb0b7Ca...933575599
4.69622352 ETH0.0004872521.04862872

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
195057592024-03-24 17:03:47122 days ago1711299827
0x5fb0b7Ca...933575599
0.05867261 ETH
190134062024-01-15 16:14:35191 days ago1705335275
0x5fb0b7Ca...933575599
0.00345941 ETH
190134062024-01-15 16:14:35191 days ago1705335275
0x5fb0b7Ca...933575599
1.25 ETH
190088372024-01-15 0:54:47191 days ago1705280087
0x5fb0b7Ca...933575599
0.53299146 ETH
187601772023-12-11 3:07:11226 days ago1702264031
0x5fb0b7Ca...933575599
0.09797613 ETH
177013512023-07-15 21:12:11374 days ago1689455531
0x5fb0b7Ca...933575599
0.04449819 ETH
174968342023-06-17 3:24:47403 days ago1686972287
0x5fb0b7Ca...933575599
0.55754954 ETH
172611982023-05-14 22:57:35436 days ago1684105055
0x5fb0b7Ca...933575599
0.05291201 ETH
169568122023-04-01 20:56:59479 days ago1680382619
0x5fb0b7Ca...933575599
0.03118304 ETH
166641092023-02-19 17:26:11520 days ago1676827571
0x5fb0b7Ca...933575599
0.02405762 ETH
164575902023-01-21 20:32:59549 days ago1674333179
0x5fb0b7Ca...933575599
0.03493793 ETH
160441412022-11-25 2:53:11607 days ago1669344791
0x5fb0b7Ca...933575599
0.04021497 ETH
158437282022-10-28 2:58:23635 days ago1666925903
0x5fb0b7Ca...933575599
0.02934317 ETH
156422872022-09-29 23:30:59663 days ago1664494259
0x5fb0b7Ca...933575599
0.00115911 ETH
156422872022-09-29 23:30:59663 days ago1664494259
0x5fb0b7Ca...933575599
0.05 ETH
156422832022-09-29 23:30:11663 days ago1664494211
0x5fb0b7Ca...933575599
0.19432072 ETH
156421262022-09-29 22:58:47663 days ago1664492327
0x5fb0b7Ca...933575599
0.0011244 ETH
156421002022-09-29 22:53:35663 days ago1664492015
0x5fb0b7Ca...933575599
0.00145244 ETH
156420782022-09-29 22:49:11663 days ago1664491751
0x5fb0b7Ca...933575599
0.00114107 ETH
156420782022-09-29 22:49:11663 days ago1664491751
0x5fb0b7Ca...933575599
16.03 ETH
156420592022-09-29 22:45:23663 days ago1664491523
0x5fb0b7Ca...933575599
0.00128651 ETH
156420592022-09-29 22:45:23663 days ago1664491523
0x5fb0b7Ca...933575599
0.001 ETH
156420532022-09-29 22:44:11663 days ago1664491451
0x5fb0b7Ca...933575599
0.00157509 ETH
154905592022-09-07 13:29:26686 days ago1662557366
0x5fb0b7Ca...933575599
0.25007993 ETH
152763852022-08-04 14:21:18720 days ago1659622878
0x5fb0b7Ca...933575599
0.00276561 ETH
View All Internal Transactions
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2021-05-03
*/

// 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
pragma solidity ^0.8.3;

/**
 * @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 immutable public implementation;

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

    constructor(address _implementation) {
        implementation = _implementation;
    }

    fallback() external payable {
        address target = implementation;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            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, "");
    }
}

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"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x6080604052600436106100225760003560e01c80635c60da1b146100ac57610067565b3661006757604080516020808252600090820152339134917f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef738910160405180910390a3005b7f000000000000000000000000ab00ea153c43575184ff11dd5e713c96be0055733660008037600080366000845af43d6000803e8080156100a7573d6000f35b3d6000fd5b3480156100b857600080fd5b506100e07f000000000000000000000000ab00ea153c43575184ff11dd5e713c96be00557381565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea2646970667358221220b88a14f52e9d465328c9b3ab476e4b7fa40ed3615fd5409a6afc9885366e03a964736f6c63430008030033

Deployed Bytecode Sourcemap

996:819:0:-:0;;;;;;;;;;;;;;;;;;;;;;;1769:35;;;446:2:1;428:21;;;245:286;465:18;;;458:32;1789:10:0;;1778:9;;1769:35;;507:18:1;1769:35:0;;;;;;;996:819;;1299:14;1424;1282;;1405:34;1517:1;1514;1498:14;1495:1;1487:6;1480:5;1467:52;1554:16;1551:1;1548;1533:38;1592:6;1612:36;;;;1682:16;1679:1;1671:28;1612:36;1630:16;1627:1;1620:27;1020:39;;;;;;;;;;;;;;;;;;190:42:1;178:55;;;160:74;;148:2;133:18;1020:39:0;;;;;;

Swarm Source

ipfs://b88a14f52e9d465328c9b3ab476e4b7fa40ed3615fd5409a6afc9885366e03a9

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.