ETH Price: $3,127.98 (-0.28%)

Contract

0x7F3A21006aC2bCD6f695CF899aBb130845D6eCe7
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer180486572023-09-02 11:53:47442 days ago1693655627IN
0x7F3A2100...845D6eCe7
0.6344 ETH0.0002876712.42728704
Transfer173562582023-05-28 8:12:59539 days ago1685261579IN
0x7F3A2100...845D6eCe7
0.84034179 ETH0.0005291222.85748142
Transfer171609912023-04-30 19:38:11567 days ago1682883491IN
0x7F3A2100...845D6eCe7
0.56355405 ETH0.001299756.14503524
Transfer169072722023-03-25 21:52:47603 days ago1679781167IN
0x7F3A2100...845D6eCe7
0.30204223 ETH0.000334514.4502468
Transfer130816872021-08-23 12:57:021182 days ago1629723422IN
0x7F3A2100...845D6eCe7
0.1 ETH0.0009752446.44041211

Latest 22 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
188191212023-12-19 9:30:23334 days ago1702978223
0x7F3A2100...845D6eCe7
4.51867599 ETH
180486772023-09-02 11:57:47442 days ago1693655867
0x7F3A2100...845D6eCe7
0.00260417 ETH
180486772023-09-02 11:57:47442 days ago1693655867
0x7F3A2100...845D6eCe7
0.32 ETH
176977712023-07-15 9:00:47491 days ago1689411647
0x7F3A2100...845D6eCe7
0.00587941 ETH
176977542023-07-15 8:57:23491 days ago1689411443
0x7F3A2100...845D6eCe7
0.00632933 ETH
176977542023-07-15 8:57:23491 days ago1689411443
0x7F3A2100...845D6eCe7
0.0076891 ETH
176977542023-07-15 8:57:23491 days ago1689411443
0x7F3A2100...845D6eCe7
1.54554776 ETH
173564202023-05-28 8:45:47539 days ago1685263547
0x7F3A2100...845D6eCe7
0.003663 ETH
173563882023-05-28 8:39:23539 days ago1685263163
0x7F3A2100...845D6eCe7
0.00551136 ETH
173563782023-05-28 8:37:23539 days ago1685263043
0x7F3A2100...845D6eCe7
0.00412529 ETH
173563012023-05-28 8:21:47539 days ago1685262107
0x7F3A2100...845D6eCe7
0.0061204 ETH
173563012023-05-28 8:21:47539 days ago1685262107
0x7F3A2100...845D6eCe7
0.270675 ETH
173562942023-05-28 8:20:23539 days ago1685262023
0x7F3A2100...845D6eCe7
0.0061192 ETH
173562942023-05-28 8:20:23539 days ago1685262023
0x7F3A2100...845D6eCe7
0.27067 ETH
171642452023-05-01 6:37:59567 days ago1682923079
0x7F3A2100...845D6eCe7
0.01278144 ETH
171642452023-05-01 6:37:59567 days ago1682923079
0x7F3A2100...845D6eCe7
0.298 ETH
169098192023-03-26 6:28:23603 days ago1679812103
0x7F3A2100...845D6eCe7
0.00342948 ETH
169098192023-03-26 6:28:23603 days ago1679812103
0x7F3A2100...845D6eCe7
0.311 ETH
159497052022-11-11 22:18:23737 days ago1668205103
0x7F3A2100...845D6eCe7
0.00453586 ETH
134368222021-10-17 17:43:151127 days ago1634492595
0x7F3A2100...845D6eCe7
0.02875234 ETH
130816892021-08-23 12:57:151182 days ago1629723435
0x7F3A2100...845D6eCe7
0.0077 ETH
130816892021-08-23 12:57:151182 days ago1629723435  Contract Creation0 ETH
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.