ETH Price: $2,422.39 (-1.89%)
 
Transaction Hash
Method
Block
From
To
Transfer131808362021-09-07 20:33:391154 days ago1631046819IN
0x91e0450b...9DED429ad
0.3 ETH0.00449567193.54540441
Transfer116128682021-01-08 8:09:381396 days ago1610093378IN
0x91e0450b...9DED429ad
0.83512886 ETH0.00285704123
Transfer111648552020-10-31 13:12:421465 days ago1604149962IN
0x91e0450b...9DED429ad
0.16 ETH0.0006039226
Transfer111646942020-10-31 12:40:161465 days ago1604148016IN
0x91e0450b...9DED429ad
0.87359 ETH0.00060929

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
197090982024-04-22 6:18:11196 days ago1713766691
0x91e0450b...9DED429ad
0.00084984 ETH
197090982024-04-22 6:18:11196 days ago1713766691
0x91e0450b...9DED429ad
2.12 ETH
197090582024-04-22 6:10:11196 days ago1713766211
0x91e0450b...9DED429ad
0.0038537 ETH
197090582024-04-22 6:10:11196 days ago1713766211
0x91e0450b...9DED429ad
0.01051906 ETH
197090582024-04-22 6:10:11196 days ago1713766211
0x91e0450b...9DED429ad
2.11438398 ETH
194259572024-03-13 11:49:11236 days ago1710330551
0x91e0450b...9DED429ad
0.01085436 ETH
137203142021-12-01 9:39:461069 days ago1638351586
0x91e0450b...9DED429ad
0.01326897 ETH
137203142021-12-01 9:39:461069 days ago1638351586
0x91e0450b...9DED429ad
0.25367874 ETH
132042262021-09-11 11:37:181150 days ago1631360238
0x91e0450b...9DED429ad
0.0075046 ETH
117574482021-01-30 13:04:101374 days ago1612011850
0x91e0450b...9DED429ad
0.01211758 ETH
117574482021-01-30 13:04:101374 days ago1612011850
0x91e0450b...9DED429ad
1.82476486 ETH
117574082021-01-30 12:55:021374 days ago1612011302
0x91e0450b...9DED429ad
0.0052 ETH
117574082021-01-30 12:55:021374 days ago1612011302
0x91e0450b...9DED429ad
2 ETH
117221392021-01-25 2:31:431379 days ago1611541903
0x91e0450b...9DED429ad
0.05244567 ETH
117221392021-01-25 2:31:431379 days ago1611541903
0x91e0450b...9DED429ad
3.45581351 ETH
116129202021-01-08 8:20:281396 days ago1610094028
0x91e0450b...9DED429ad
0.02930049 ETH
116129202021-01-08 8:20:281396 days ago1610094028
0x91e0450b...9DED429ad
1.31675589 ETH
116127662021-01-08 7:47:451396 days ago1610092065
0x91e0450b...9DED429ad
0.0100835 ETH
116127122021-01-08 7:34:221396 days ago1610091262
0x91e0450b...9DED429ad
0.01509059 ETH
116123672021-01-08 6:23:211396 days ago1610087001
0x91e0450b...9DED429ad
0.04697583 ETH
116123672021-01-08 6:23:211396 days ago1610087001
0x91e0450b...9DED429ad
1.00164816 ETH
112350702020-11-11 7:53:141454 days ago1605081194
0x91e0450b...9DED429ad
0.01599123 ETH
112350702020-11-11 7:53:141454 days ago1605081194
0x91e0450b...9DED429ad
1 ETH
112303002020-11-10 14:21:581455 days ago1605018118
0x91e0450b...9DED429ad
0.02730866 ETH
112303002020-11-10 14:21:581455 days ago1605018118
0x91e0450b...9DED429ad
1 ETH
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x99AFe468...8d878Cdd1
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 2020-10-09
*/

pragma solidity ^0.6.12;

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

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

0x6080604052366083573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef73860003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a3005b600080543682833781823684845af490503d82833e80801560a2573d83f35b3d83fdfea264697066735822122081653946f6f0f024eb94b19bdaf1d69dc04d346dcb6092fa1369c9e2dacfa42164736f6c634300060c0033

Deployed Bytecode Sourcemap

999:809:0:-:0;;;;;;1776:10;1756:41;;1765:9;1756:41;1788:8;;1756:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1756:41:0;;;;;;;;-1:-1:-1;1756:41:0;;-1:-1:-1;;;;1756:41:0;999:809;;1376:1;;1370:8;1411:14;1376:1;;1392:34;1376:1;;1411:14;1376:1;1474:6;1467:5;1454:52;1440:66;;1541:16;1376:1;;1520:38;1579:6;1599:36;;;;1669:16;1376:1;1658:28;1599:36;1617:16;1376:1;1607:27

Swarm Source

ipfs://81653946f6f0f024eb94b19bdaf1d69dc04d346dcb6092fa1369c9e2dacfa421

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.