ETH Price: $1,915.14 (-1.17%)
Gas: 0.59 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading

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

Contract Name:
Forwarder

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-12-06
*/

pragma solidity 0.5.1;

/**
 * Contract that will forward any incoming Ether to the address specified upon deployment
 */
contract Forwarder {
    /**
     *  Event log to log movement of Ether
    **/
    event LogForwarded(address indexed sender, uint amount);

    /**
     * Default function; Gets called when Ether is deposited, and forwards it to the destination address
     */
    function() external payable {
        emit LogForwarded(msg.sender, msg.value);
        0x0E0Fc7a0a4a4AB61080E22D602fc038759403F03.transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

API
[{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogForwarded","type":"event"}]

Deployed Bytecode

0x6080604081905234815233907f5bac0d4f99f71df67fa7cebba0369126a7cb2b183bcb02b8393dbf5185ba77b690602090a2604051730e0fc7a0a4a4ab61080e22d602fc038759403f03903480156108fc02916000818181858888f193505050501580156070573d6000803e3d6000fd5b5000fea165627a7a7230582081df17e4a5a3e13bc06e719e50b0707b19401b4d15b8a3070df3c98559200c1a0029

Swarm Source

bzzr://81df17e4a5a3e13bc06e719e50b0707b19401b4d15b8a3070df3c98559200c1a

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

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.