ETH Price: $2,985.38 (-2.16%)
Gas: 2 Gwei

Contract

0x0083c83c165A0dFbD25d83AA4261B8bf671d2c2B
 

Overview

ETH Balance

0.094693476322771063 ETH

Eth Value

$282.70 (@ $2,985.38/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer170085622023-04-09 5:03:23455 days ago1681016603IN
0x0083c83c...f671d2c2B
0.0494 ETH0.0005405923.27355607
Transfer143385192022-03-07 7:52:20853 days ago1646639540IN
0x0083c83c...f671d2c2B
0.03845525 ETH0.0007220831.08700364
Transfer138382752021-12-19 22:33:41930 days ago1639953221IN
0x0083c83c...f671d2c2B
0.0463 ETH0.00234101100.784309
Transfer122934722021-04-23 1:19:231171 days ago1619140763IN
0x0083c83c...f671d2c2B
0.03655823 ETH0.00278736120
Transfer122646762021-04-18 14:42:491176 days ago1618756969IN
0x0083c83c...f671d2c2B
0.00974697 ETH0.0032705140.8
Transfer122436132021-04-15 8:41:171179 days ago1618476077IN
0x0083c83c...f671d2c2B
0.15362238 ETH0.00236925102
Transfer121240352021-03-27 23:10:361197 days ago1616886636IN
0x0083c83c...f671d2c2B
0.0427 ETH0.00329837142
Transfer119444062021-02-28 7:04:101225 days ago1614495850IN
0x0083c83c...f671d2c2B
0.10696788 ETH0.0033216143

Latest 19 internal transactions

Advanced mode:
Parent Transaction Hash Block From To Value
186384572023-11-24 2:00:47226 days ago1700791247
0x0083c83c...f671d2c2B
0.04745922 ETH
170085692023-04-09 5:04:47455 days ago1681016687
0x0083c83c...f671d2c2B
0.00297604 ETH
150233642022-06-25 10:59:58743 days ago1656154798
0x0083c83c...f671d2c2B
0.00395501 ETH
150233222022-06-25 10:47:59743 days ago1656154079
0x0083c83c...f671d2c2B
0.0054 ETH
147415612022-05-09 9:08:27790 days ago1652087307
0x0083c83c...f671d2c2B
0.00507736 ETH
143385722022-03-07 8:07:27853 days ago1646640447
0x0083c83c...f671d2c2B
0.00489426 ETH
143385722022-03-07 8:07:27853 days ago1646640447
0x0083c83c...f671d2c2B
0.3 ETH
143385552022-03-07 8:02:41853 days ago1646640161
0x0083c83c...f671d2c2B
0.00838824 ETH
143385552022-03-07 8:02:41853 days ago1646640161
0x0083c83c...f671d2c2B
0.31443646 ETH
143385442022-03-07 7:59:42853 days ago1646639982
0x0083c83c...f671d2c2B
0.02763409 ETH
143384292022-03-07 7:32:10853 days ago1646638330
0x0083c83c...f671d2c2B
0.02192508 ETH
138705472021-12-24 22:16:52925 days ago1640384212
0x0083c83c...f671d2c2B
0.00967632 ETH
138382902021-12-19 22:37:26930 days ago1639953446
0x0083c83c...f671d2c2B
0.01259452 ETH
125523212021-06-02 2:26:151131 days ago1622600775
0x0083c83c...f671d2c2B
0.00455284 ETH
123047672021-04-24 19:15:111169 days ago1619291711
0x0083c83c...f671d2c2B
0.01291122 ETH
123047672021-04-24 19:15:111169 days ago1619291711
0x0083c83c...f671d2c2B
0.224 ETH
120865762021-03-22 4:57:091203 days ago1616389029
0x0083c83c...f671d2c2B
0.02529905 ETH
120865762021-03-22 4:57:091203 days ago1616389029
0x0083c83c...f671d2c2B
0.08166882 ETH
119443662021-02-28 6:56:421225 days ago1614495402  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x4c1fe6f8...16588e8F8
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 2021-03-10
*/

// 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.6.12;

/**
 * @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

0x6080604052366083573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef73860003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a3005b600080543682833781823684845af490503d82833e80801560a2573d83f35b3d83fdfea2646970667358221220be24b93190906d77639a34f833222a884fa6380809e0cf98eb798a254b62846964736f6c634300060c0033

Deployed Bytecode Sourcemap

997:809:0:-:0;;;;;;1774:10;1754:41;;1763:9;1754:41;1786:8;;1754:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1754:41:0;;;;;;;;-1:-1:-1;1754:41:0;;-1:-1:-1;;;;1754:41:0;997:809;;1374:1;;1368:8;1409:14;1374:1;;1390:34;1374:1;;1409:14;1374:1;1472:6;1465:5;1452:52;1438:66;;1539:16;1374:1;;1518:38;1577:6;1597:36;;;;1667:16;1374:1;1656:28;1597:36;1615:16;1374:1;1605:27

Swarm Source

ipfs://be24b93190906d77639a34f833222a884fa6380809e0cf98eb798a254b628469

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.