Source Code
Latest 12 from a total of 12 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 16647349 | 1106 days ago | IN | 0.232 ETH | 0.00051571 | ||||
| Transfer | 16641966 | 1106 days ago | IN | 0.2 ETH | 0.00088984 | ||||
| Transfer | 15724471 | 1235 days ago | IN | 0.08 ETH | 0.00057713 | ||||
| Transfer | 14439123 | 1437 days ago | IN | 0.08498922 ETH | 0.00100545 | ||||
| Transfer | 14383509 | 1446 days ago | IN | 0.3 ETH | 0.00036731 | ||||
| Transfer | 13964013 | 1511 days ago | IN | 1.20772489 ETH | 0.00207813 | ||||
| Transfer | 13952838 | 1512 days ago | IN | 0.75865928 ETH | 0.00433951 | ||||
| Transfer | 13948578 | 1513 days ago | IN | 1.82433564 ETH | 0.00266048 | ||||
| Transfer | 13933865 | 1515 days ago | IN | 2.04222347 ETH | 0.00222633 | ||||
| Transfer | 13933824 | 1515 days ago | IN | 1.36885906 ETH | 0.00332494 | ||||
| Transfer | 13248138 | 1623 days ago | IN | 0.1075115 ETH | 0.00163346 | ||||
| Transfer | 13212373 | 1628 days ago | IN | 0.03 ETH | 0.00178967 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 18762499 | 809 days ago | 0.00378021 ETH | ||||
| Transfer | 18762499 | 809 days ago | 1.10318566 ETH | ||||
| Transfer | 18762475 | 809 days ago | 0.01331052 ETH | ||||
| Transfer | 18762475 | 809 days ago | 0.0051835 ETH | ||||
| Transfer | 18762475 | 809 days ago | 1.0419109 ETH | ||||
| Transfer | 18748660 | 811 days ago | 0.00486851 ETH | ||||
| Transfer | 18700360 | 817 days ago | 0.00497242 ETH | ||||
| Transfer | 18684834 | 819 days ago | 0.00487629 ETH | ||||
| Transfer | 18684834 | 819 days ago | 1.223 ETH | ||||
| Transfer | 18684809 | 819 days ago | 0.01447353 ETH | ||||
| Transfer | 18684809 | 819 days ago | 0.00656817 ETH | ||||
| Transfer | 18684809 | 819 days ago | 1.32006958 ETH | ||||
| Transfer | 18666236 | 822 days ago | 0.00430811 ETH | ||||
| Transfer | 18666236 | 822 days ago | 0.02 ETH | ||||
| Transfer | 18663430 | 822 days ago | 0.00574939 ETH | ||||
| Transfer | 18563117 | 837 days ago | 0.00687179 ETH | ||||
| Transfer | 18462556 | 851 days ago | 0.00216082 ETH | ||||
| Transfer | 18462556 | 851 days ago | 1 ETH | ||||
| Transfer | 18462530 | 851 days ago | 0.00939805 ETH | ||||
| Transfer | 18462530 | 851 days ago | 0.00513971 ETH | ||||
| Transfer | 18462530 | 851 days ago | 1.03310574 ETH | ||||
| Transfer | 18348634 | 867 days ago | 0.00080179 ETH | ||||
| Transfer | 18348634 | 867 days ago | 0.005 ETH | ||||
| Transfer | 18348616 | 867 days ago | 0.00090103 ETH | ||||
| Transfer | 18348561 | 867 days ago | 0.00192278 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
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
Contract Source Code (Solidity)
/**
*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 - <julien@argent.xyz>
*/
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
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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"}]Contract Creation Code
0x608060405234801561001057600080fd5b506040516101403803806101408339818101604052602081101561003357600080fd5b5051600080546001600160a01b039092166001600160a01b031990921691909117905560dc806100646000396000f3fe6080604052366083573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef73860003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a3005b600080543682833781823684845af490503d82833e80801560a2573d83f35b3d83fdfea264697066735822122081653946f6f0f024eb94b19bdaf1d69dc04d346dcb6092fa1369c9e2dacfa42164736f6c634300060c003300000000000000000000000029b94b045a0b828d9eb99136a16d97c7ff3d2600
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
Loading...
Loading
Loading...
Loading
Net Worth in USD
$3.31
Net Worth in ETH
0.0017
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,948.44 | 0.00169676 | $3.31 |
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.