ETH Price: $1,634.31 (+2.56%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer43577612017-10-12 0:08:562741 days ago1507766936IN
0x69829511...317431126
0.04 ETH0.0023945221

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer43577612017-10-12 0:08:562741 days ago1507766936
0x69829511...317431126
0.04 ETH
Transfer43559922017-10-11 9:50:482742 days ago1507715448  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
AnalyticProxy

Compiler Version
v0.4.15+commit.bbb8e64f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-10-10
*/

/*
 * @title Mixin contract which supports different payment channels and provides analytical per-channel data.
 * @author Eenae
 */
contract InvestmentAnalytics {
    function iaInvestedBy(address investor) external payable;
}


/*
 * @title This is proxy for analytics. Target contract can be found at field m_analytics (see "read contract").
 * @author Eenae

 * FIXME after fix of truffle issue #560: refactor to a separate contract file which uses InvestmentAnalytics interface
 */
contract AnalyticProxy {

    function AnalyticProxy() {
        m_analytics = InvestmentAnalytics(msg.sender);
    }

    /// @notice forward payment to analytics-capable contract
    function() payable {
        m_analytics.iaInvestedBy.value(msg.value)(msg.sender);
    }

    InvestmentAnalytics public m_analytics;
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"m_analytics","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"}]

Deployed Bytecode

0x6060604052361561003e5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663f4f5999281146100da575b5b60005473ffffffffffffffffffffffffffffffffffffffff1663745ce3bb34336040517c010000000000000000000000000000000000000000000000000000000063ffffffff851602815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024016000604051808303818588803b15156100c257600080fd5b6125ee5a03f115156100d357600080fd5b505050505b005b34156100e557600080fd5b6100ed610116565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b60005473ffffffffffffffffffffffffffffffffffffffff16815600a165627a7a7230582070c6e2435a9642afbb05fe19c9990e47ca242ad8701c45de36ccd8a647ca302c0029

Swarm Source

bzzr://70c6e2435a9642afbb05fe19c9990e47ca242ad8701c45de36ccd8a647ca302c

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.