Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 193 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 6221147 | 2745 days ago | IN | 0.00022143 ETH | 0.00007085 | ||||
| Transfer | 6201176 | 2748 days ago | IN | 0.00024235 ETH | 0.00006441 | ||||
| Transfer | 6186086 | 2750 days ago | IN | 0.0024523 ETH | 0.00107355 | ||||
| Transfer | 6168293 | 2753 days ago | IN | 0.0025376 ETH | 0.000861 | ||||
| Transfer | 6165279 | 2754 days ago | IN | 0.0025376 ETH | 0.000861 | ||||
| Transfer | 6165208 | 2754 days ago | IN | 0.0025376 ETH | 0.000861 | ||||
| Transfer | 6163523 | 2754 days ago | IN | 0.0021144 ETH | 0.00128826 | ||||
| Transfer | 6163516 | 2754 days ago | IN | 0.0021144 ETH | 0.000861 | ||||
| Transfer | 5863361 | 2805 days ago | IN | 0.08 ETH | 0.00028433 | ||||
| Transfer | 5860286 | 2806 days ago | IN | 0.001 ETH | 0.00017059 | ||||
| Transfer | 5859517 | 2806 days ago | IN | 0 ETH | 0.00004719 | ||||
| Transfer | 5859179 | 2806 days ago | IN | 0.03 ETH | 0.00017059 | ||||
| Transfer | 5858323 | 2806 days ago | IN | 0.27 ETH | 0.00227464 | ||||
| Transfer | 5857482 | 2806 days ago | IN | 0.008 ETH | 0.00227464 | ||||
| Transfer | 5857233 | 2806 days ago | IN | 0.02466123 ETH | 0.00227464 | ||||
| Transfer | 5856667 | 2806 days ago | IN | 0.00023382 ETH | 0.00227464 | ||||
| Transfer | 5851975 | 2807 days ago | IN | 0.49188548 ETH | 0.00167464 | ||||
| Transfer | 5851704 | 2807 days ago | IN | 0.0065 ETH | 0.000084 | ||||
| Transfer | 5851326 | 2807 days ago | IN | 0.0243721 ETH | 0.00167464 | ||||
| Transfer | 5851177 | 2807 days ago | IN | 0.14 ETH | 0.00227464 | ||||
| Transfer | 5850775 | 2807 days ago | IN | 0.2 ETH | 0.00227464 | ||||
| Transfer | 5848637 | 2808 days ago | IN | 0.00012248 ETH | 0.00017059 | ||||
| Transfer | 5846952 | 2808 days ago | IN | 0.02595487 ETH | 0.00227464 | ||||
| Transfer | 5845832 | 2808 days ago | IN | 0.02499014 ETH | 0.00227464 | ||||
| Transfer | 5845795 | 2808 days ago | IN | 0.02599014 ETH | 0.00252 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 5863361 | 2805 days ago | 0.08 ETH | ||||
| Transfer | 5860286 | 2806 days ago | 0.001 ETH | ||||
| Transfer | 5859179 | 2806 days ago | 0.03 ETH | ||||
| Transfer | 5858323 | 2806 days ago | 0.27 ETH | ||||
| Transfer | 5857482 | 2806 days ago | 0.008 ETH | ||||
| Transfer | 5857233 | 2806 days ago | 0.02466123 ETH | ||||
| Transfer | 5856667 | 2806 days ago | 0.00023382 ETH | ||||
| Transfer | 5851975 | 2807 days ago | 0.49188548 ETH | ||||
| Transfer | 5851326 | 2807 days ago | 0.0243721 ETH | ||||
| Transfer | 5851177 | 2807 days ago | 0.14 ETH | ||||
| Transfer | 5850775 | 2807 days ago | 0.2 ETH | ||||
| Transfer | 5848637 | 2808 days ago | 0.00012248 ETH | ||||
| Transfer | 5846952 | 2808 days ago | 0.02595487 ETH | ||||
| Transfer | 5845832 | 2808 days ago | 0.02499014 ETH | ||||
| Transfer | 5842240 | 2809 days ago | 0.23334643 ETH | ||||
| Transfer | 5842236 | 2809 days ago | 0.2 ETH | ||||
| Transfer | 5840140 | 2809 days ago | 0.25 ETH | ||||
| Transfer | 5839652 | 2809 days ago | 0.01841005 ETH | ||||
| Transfer | 5839260 | 2809 days ago | 0.12 ETH | ||||
| Transfer | 5839059 | 2809 days ago | 0.02364596 ETH | ||||
| Transfer | 5838988 | 2809 days ago | 0.01 ETH | ||||
| Transfer | 5836518 | 2810 days ago | 0.58999 ETH | ||||
| Transfer | 5836078 | 2810 days ago | 0.01757599 ETH | ||||
| Transfer | 5833894 | 2810 days ago | 0.225 ETH | ||||
| Transfer | 5833070 | 2810 days ago | 0.5 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BeatOrgTokenPostSale
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 400 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-05-15
*/
pragma solidity ^0.4.18;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
contract BeatOrgTokenPostSale is Ownable {
using SafeMath for uint256;
address public wallet;
uint256 public endTime;
bool public finalized;
uint256 public weiRaised;
mapping(address => uint256) public purchases;
event Purchase(address indexed purchaser, address indexed beneficiary, uint256 weiAmount);
function BeatOrgTokenPostSale(address _wallet) public {
require(_wallet != address(0));
wallet = _wallet;
// 2018-07-15T23:59:59+02:00
endTime = 1531691999;
finalized = false;
}
function() payable public {
buyTokens(msg.sender);
}
function buyTokens(address beneficiary) payable public {
require(beneficiary != address(0));
require(msg.value != 0);
require(validPurchase());
uint256 weiAmount = msg.value;
purchases[beneficiary] += weiAmount;
weiRaised += weiAmount;
Purchase(msg.sender, beneficiary, weiAmount);
wallet.transfer(weiAmount);
}
function finalize() onlyOwner public {
endTime = now;
finalized = true;
}
function validPurchase() internal view returns (bool) {
return (now <= endTime) && (finalized == false);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"purchases","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_wallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"weiAmount","type":"uint256"}],"name":"Purchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]Contract Creation Code
6060604052341561000f57600080fd5b6040516020806104668339810160405280805160008054600160a060020a03191633600160a060020a039081169190911790915590925082161515905061005557600080fd5b60018054600160a060020a031916600160a060020a0392909216919091179055635b4bc3df6002556003805460ff191690556103d0806100966000396000f3006060604052600436106100985763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416633197cbb681146100a35780634042b66f146100c85780634bb278f3146100db578063521eb273146100ee578063842a77d31461011d5780638da5cb5b1461013c578063b3f05b971461014f578063ec8ac4d814610176578063f2fde38b1461018a575b6100a1336101a9565b005b34156100ae57600080fd5b6100b661027a565b60405190815260200160405180910390f35b34156100d357600080fd5b6100b6610280565b34156100e657600080fd5b6100a1610286565b34156100f957600080fd5b6101016102b4565b604051600160a060020a03909116815260200160405180910390f35b341561012857600080fd5b6100b6600160a060020a03600435166102c3565b341561014757600080fd5b6101016102d5565b341561015a57600080fd5b6101626102e4565b604051901515815260200160405180910390f35b6100a1600160a060020a03600435166101a9565b341561019557600080fd5b6100a1600160a060020a03600435166102ed565b6000600160a060020a03821615156101c057600080fd5b3415156101cc57600080fd5b6101d4610388565b15156101df57600080fd5b50600160a060020a03808216600081815260056020526040908190208054349081019091556004805482019055923316907f22e3ae3a20c49dce14046235895c7a3ffc0a6a5f3577c370177ad45fa619485d9084905190815260200160405180910390a3600154600160a060020a031681156108fc0282604051600060405180830381858888f19350505050151561027657600080fd5b5050565b60025481565b60045481565b60005433600160a060020a039081169116146102a157600080fd5b426002556003805460ff19166001179055565b600154600160a060020a031681565b60056020526000908152604090205481565b600054600160a060020a031681565b60035460ff1681565b60005433600160a060020a0390811691161461030857600080fd5b600160a060020a038116151561031d57600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600254421115801561039f575060035460ff16155b9050905600a165627a7a72305820f9e74a6031f24638ae472b33de179237dd14059d559f50f8c154ed5a1e1603d60029000000000000000000000000d924669e34061b7b9d08b1cbb9c9a4cdf00bc10c
Deployed Bytecode
0x6060604052600436106100985763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416633197cbb681146100a35780634042b66f146100c85780634bb278f3146100db578063521eb273146100ee578063842a77d31461011d5780638da5cb5b1461013c578063b3f05b971461014f578063ec8ac4d814610176578063f2fde38b1461018a575b6100a1336101a9565b005b34156100ae57600080fd5b6100b661027a565b60405190815260200160405180910390f35b34156100d357600080fd5b6100b6610280565b34156100e657600080fd5b6100a1610286565b34156100f957600080fd5b6101016102b4565b604051600160a060020a03909116815260200160405180910390f35b341561012857600080fd5b6100b6600160a060020a03600435166102c3565b341561014757600080fd5b6101016102d5565b341561015a57600080fd5b6101626102e4565b604051901515815260200160405180910390f35b6100a1600160a060020a03600435166101a9565b341561019557600080fd5b6100a1600160a060020a03600435166102ed565b6000600160a060020a03821615156101c057600080fd5b3415156101cc57600080fd5b6101d4610388565b15156101df57600080fd5b50600160a060020a03808216600081815260056020526040908190208054349081019091556004805482019055923316907f22e3ae3a20c49dce14046235895c7a3ffc0a6a5f3577c370177ad45fa619485d9084905190815260200160405180910390a3600154600160a060020a031681156108fc0282604051600060405180830381858888f19350505050151561027657600080fd5b5050565b60025481565b60045481565b60005433600160a060020a039081169116146102a157600080fd5b426002556003805460ff19166001179055565b600154600160a060020a031681565b60056020526000908152604090205481565b600054600160a060020a031681565b60035460ff1681565b60005433600160a060020a0390811691161461030857600080fd5b600160a060020a038116151561031d57600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600254421115801561039f575060035460ff16155b9050905600a165627a7a72305820f9e74a6031f24638ae472b33de179237dd14059d559f50f8c154ed5a1e1603d60029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d924669e34061b7b9d08b1cbb9c9a4cdf00bc10c
-----Decoded View---------------
Arg [0] : _wallet (address): 0xd924669e34061B7b9D08b1cbB9c9A4Cdf00bc10c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d924669e34061b7b9d08b1cbb9c9a4cdf00bc10c
Swarm Source
bzzr://f9e74a6031f24638ae472b33de179237dd14059d559f50f8c154ed5a1e1603d6
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.