ETH Price: $2,063.26 (+1.76%)

Contract

0x80C19B42B578a18B7a8e65A97c851fAF4BF0139e
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer104659832020-07-15 19:34:412065 days ago1594841681IN
0x80C19B42...F4BF0139e
0.05 ETH0.0009775942
Transfer104200352020-07-08 16:47:182072 days ago1594226838IN
0x80C19B42...F4BF0139e
10 ETH0.0012801855

Latest 24 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
-104776162020-07-17 14:45:252063 days ago1594997125
0x80C19B42...F4BF0139e
11.09432911 ETH
-104775662020-07-17 14:36:322063 days ago1594996592
0x80C19B42...F4BF0139e
2.97957513 ETH
-104775642020-07-17 14:35:352063 days ago1594996535
0x80C19B42...F4BF0139e
3.06320918 ETH
-104660702020-07-15 19:53:312065 days ago1594842811
0x80C19B42...F4BF0139e
0.02277259 ETH
-104660702020-07-15 19:53:312065 days ago1594842811
0x80C19B42...F4BF0139e
3 ETH
-104659992020-07-15 19:37:562065 days ago1594841876
0x80C19B42...F4BF0139e
0.01937038 ETH
-104659992020-07-15 19:37:562065 days ago1594841876
0x80C19B42...F4BF0139e
2.99996 ETH
-104659932020-07-15 19:35:562065 days ago1594841756
0x80C19B42...F4BF0139e
0.01930723 ETH
-104659932020-07-15 19:35:562065 days ago1594841756
0x80C19B42...F4BF0139e
4.99999999 ETH
-104504392020-07-13 9:37:282067 days ago1594633048
0x80C19B42...F4BF0139e
0.02195218 ETH
-104504392020-07-13 9:37:282067 days ago1594633048
0x80C19B42...F4BF0139e
0 ETH
-104504392020-07-13 9:37:282067 days ago1594633048
0x80C19B42...F4BF0139e
3.0527 ETH
-104504192020-07-13 9:32:572067 days ago1594632777
0x80C19B42...F4BF0139e
0.02077063 ETH
-104504192020-07-13 9:32:572067 days ago1594632777
0x80C19B42...F4BF0139e
3 ETH
-104503962020-07-13 9:27:202067 days ago1594632440
0x80C19B42...F4BF0139e
0.02054124 ETH
-104503962020-07-13 9:27:202067 days ago1594632440
0x80C19B42...F4BF0139e
0 ETH
-104503962020-07-13 9:27:202067 days ago1594632440
0x80C19B42...F4BF0139e
5 ETH
-104495962020-07-13 6:35:232067 days ago1594622123
0x80C19B42...F4BF0139e
5.99054844 ETH
-104472742020-07-12 21:58:222068 days ago1594591102
0x80C19B42...F4BF0139e
5.00047189 ETH
-104203902020-07-08 18:09:112072 days ago1594231751
0x80C19B42...F4BF0139e
0.0563335 ETH
-104203902020-07-08 18:09:112072 days ago1594231751
0x80C19B42...F4BF0139e
4.91389995 ETH
-104202272020-07-08 17:31:452072 days ago1594229505
0x80C19B42...F4BF0139e
4 ETH
-104202022020-07-08 17:27:182072 days ago1594229238
0x80C19B42...F4BF0139e
1 ETH
-104199962020-07-08 16:38:492072 days ago1594226329  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.5.4+commit.9549d8ff

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-03-11
*/

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

pragma solidity ^0.5.4;

/**
 * @title Proxy
 * @dev Basic proxy that delegates all calls to a fixed implementing contract.
 * The implementing contract cannot be upgraded.
 * @author Julien Niset - <julien@argent.xyz>
 */
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

API
[{"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"}]

0x608060405234801561001057600080fd5b506040516020806101478339810180604052602081101561003057600080fd5b505160008054600160a060020a03909216600160a060020a031990921691909117905560e6806100616000396000f3fe60806040523615801560115750600034115b156092573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef73860003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a360b8565b6000543660008037600080366000845af43d6000803e80801560b3573d6000f35b3d6000fd5b00fea165627a7a7230582050a0cdc6737cfe5402762d0a4a4467b912e656e93ff13e1f2bfcdcb8215725080029000000000000000000000000b6d64221451edbac7736d4c3da7fc827457dec03

Deployed Bytecode

0x60806040523615801560115750600034115b156092573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef73860003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a360b8565b6000543660008037600080366000845af43d6000803e80801560b3573d6000f35b3d6000fd5b00fea165627a7a7230582050a0cdc6737cfe5402762d0a4a4467b912e656e93ff13e1f2bfcdcb8215725080029

Deployed Bytecode Sourcemap

951:901:0:-;;;1233:8;:20;:37;;;;;1269:1;1257:9;:13;1233:37;1229:613;;;1312:10;1292:41;;1301:9;1292:41;1324:8;;1292:41;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;1292:41:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;1292:41:0;;;;-1:-1:-1;1292:41:0;;-1:-1:-1;;;;1292:41:0;1229:613;;;1483:1;1477:8;1522:14;1519:1;1516;1503:34;1617:1;1614;1598:14;1595:1;1587:6;1582:3;1569:50;1658:16;1655:1;1652;1637:38;1700:6;1724:36;;;;1798:16;1795:1;1787:28;1724:36;1742:16;1739:1;1732:27;1444:387;951:901

Swarm Source

bzzr://50a0cdc6737cfe5402762d0a4a4467b912e656e93ff13e1f2bfcdcb821572508

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.