Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
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
Contract Source Code (Solidity)
/** *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
- No Contract Security Audit Submitted- Submit Audit Here
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
Loading...
Loading
Loading...
Loading
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.