Source Code
Overview
ETH Balance
0.0000005 ETH
Eth Value
Less Than $0.01 (@ $2,156.50/ETH)Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
X3ProfitMainFundTransferV3
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-17
*/
pragma solidity ^0.5.1;
/**
*
* Easy Invest FOREVER Protected 2 Helper Contract
* Accumulate ether to promote EIFP2 Contract
* Anyone can send 0 ether to give Accumulated balance to EIFP2
*
*/
contract X3ProfitMainFundTransferV3 {
// max contract balance in ether for overflow protection in calculations only
// 340 quintillion 282 quadrillion 366 trillion 920 billion 938 million 463 thousand 463
uint public constant maxBalance = 340282366920938463463374607431768211456 wei; //(2^128)
address payable public constant ADDRESS_EIFP2_CONTRACT = 0xf85D337017D9e6600a433c5036E0D18EdD0380f3;
// this function called every time anyone sends a transaction to this contract
function () external payable {
if(msg.value == 0 || msg.data.length > 0){
// if we extreamly earn all ether in world someone will receive a prize!
if(ADDRESS_EIFP2_CONTRACT.balance > maxBalance)
{
msg.sender.transfer(address(this).balance);
return;
}
ADDRESS_EIFP2_CONTRACT.call.value(address(this).balance)("");
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"ADDRESS_EIFP2_CONTRACT","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"}]Contract Creation Code
608060405234801561001057600080fd5b506101d6806100206000396000f3fe608060405260043610610045577c010000000000000000000000000000000000000000000000000000000060003504633f31171b811461011857806373ad468a14610156575b3415806100525750600036115b156101165770010000000000000000000000000000000073f85d337017d9e6600a433c5036e0d18edd0380f33111156100b8576040513390303180156108fc02916000818181858888f193505050501580156100b2573d6000803e3d6000fd5b50610116565b60405173f85d337017d9e6600a433c5036e0d18edd0380f390303190600081818185875af1925050503d806000811461010d576040519150601f19603f3d011682016040523d82523d6000602084013e610112565b606091505b5050505b005b34801561012457600080fd5b5061012d61017d565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561016257600080fd5b5061016b610195565b60408051918252519081900360200190f35b73f85d337017d9e6600a433c5036e0d18edd0380f381565b7001000000000000000000000000000000008156fea165627a7a7230582086787c3439ab38a7da6245f2078949248eb32373a785596289eecdb417f94cba0029
Deployed Bytecode
0x608060405260043610610045577c010000000000000000000000000000000000000000000000000000000060003504633f31171b811461011857806373ad468a14610156575b3415806100525750600036115b156101165770010000000000000000000000000000000073f85d337017d9e6600a433c5036e0d18edd0380f33111156100b8576040513390303180156108fc02916000818181858888f193505050501580156100b2573d6000803e3d6000fd5b50610116565b60405173f85d337017d9e6600a433c5036e0d18edd0380f390303190600081818185875af1925050503d806000811461010d576040519150601f19603f3d011682016040523d82523d6000602084013e610112565b606091505b5050505b005b34801561012457600080fd5b5061012d61017d565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561016257600080fd5b5061016b610195565b60408051918252519081900360200190f35b73f85d337017d9e6600a433c5036e0d18edd0380f381565b7001000000000000000000000000000000008156fea165627a7a7230582086787c3439ab38a7da6245f2078949248eb32373a785596289eecdb417f94cba0029
Swarm Source
bzzr://86787c3439ab38a7da6245f2078949248eb32373a785596289eecdb417f94cba
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0.000001
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,156.5 | 0.0000005 | $0.001078 |
Loading...
Loading
Loading...
Loading
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.