ETH Price: $3,526.44 (-1.36%)
Gas: 25 Gwei

Contract

0xA32E9A93407C629D1a952bdAdc0D2f72887d0326
 

Multichain Info

Transaction Hash
Method
Block
From
To
Value
Transfer110911752020-10-20 5:34:221256 days ago1603172062IN
0xA32E9A93...2887d0326
0.3376 ETH0.0013940460
Transfer108796982020-09-17 12:26:111288 days ago1600345571IN
0xA32E9A93...2887d0326
0.1636 ETH0.01370806590
Transfer105825802020-08-02 20:38:201334 days ago1596400700IN
0xA32E9A93...2887d0326
0.0909458 ETH0.0009293640
Transfer105819942020-08-02 18:31:201334 days ago1596393080IN
0xA32E9A93...2887d0326
0.1696 ETH0.0014637463.00000145

Latest 25 internal transactions (View All)

Advanced mode:
Parent Txn Hash Block From To Value
171884542023-05-04 16:21:11329 days ago1683217271
0xA32E9A93...2887d0326
0.01507105 ETH
171884542023-05-04 16:21:11329 days ago1683217271
0xA32E9A93...2887d0326
3.3 ETH
171875392023-05-04 13:15:59329 days ago1683206159
0xA32E9A93...2887d0326
3.33 ETH
171873392023-05-04 12:35:11329 days ago1683203711
0xA32E9A93...2887d0326
0.01235116 ETH
171873392023-05-04 12:35:11329 days ago1683203711
0xA32E9A93...2887d0326
1.95 ETH
171873202023-05-04 12:31:11329 days ago1683203471
0xA32E9A93...2887d0326
0.03306135 ETH
171873202023-05-04 12:31:11329 days ago1683203471
0xA32E9A93...2887d0326
0.0097448 ETH
171873202023-05-04 12:31:11329 days ago1683203471
0xA32E9A93...2887d0326
1.95875388 ETH
171872932023-05-04 12:25:47329 days ago1683203147
0xA32E9A93...2887d0326
0.01101579 ETH
167486152023-03-03 14:36:35391 days ago1677854195
0xA32E9A93...2887d0326
0.067 ETH
167340162023-03-01 13:17:59393 days ago1677676679
0xA32E9A93...2887d0326
0.01404899 ETH
167340162023-03-01 13:17:59393 days ago1677676679
0xA32E9A93...2887d0326
0.0025 ETH
164823382023-01-25 7:27:11429 days ago1674631631
0xA32E9A93...2887d0326
0.00362263 ETH
159550602022-11-12 16:14:47502 days ago1668269687
0xA32E9A93...2887d0326
0.00313561 ETH
156635172022-10-02 22:41:47543 days ago1664750507
0xA32E9A93...2887d0326
0.00102871 ETH
155402462022-09-15 16:20:59560 days ago1663258859
0xA32E9A93...2887d0326
0.00218234 ETH
155402462022-09-15 16:20:59560 days ago1663258859
0xA32E9A93...2887d0326
0.04 ETH
155396482022-09-15 14:19:59560 days ago1663251599
0xA32E9A93...2887d0326
0.00369592 ETH
155396482022-09-15 14:19:59560 days ago1663251599
0xA32E9A93...2887d0326
0.0138 ETH
155382442022-09-15 9:35:11560 days ago1663234511
0xA32E9A93...2887d0326
0.00188657 ETH
155261692022-09-13 9:35:32562 days ago1663061732
0xA32E9A93...2887d0326
0.0024875 ETH
155261692022-09-13 9:35:32562 days ago1663061732
0xA32E9A93...2887d0326
0.05 ETH
154640152022-09-03 7:20:54573 days ago1662189654
0xA32E9A93...2887d0326
0.00142479 ETH
154588772022-09-02 11:25:41573 days ago1662117941
0xA32E9A93...2887d0326
0.00130012 ETH
154588502022-09-02 11:19:53573 days ago1662117593
0xA32E9A93...2887d0326
0.00258087 ETH
View All Internal Transactions
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-04-23
*/

pragma solidity ^0.4.24;

/**
 * @title Proxy
 * @dev 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;
    }

    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

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

Deployed Bytecode

0x60806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029

Swarm Source

bzzr://09ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f

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

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.