Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 69 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 17521612 | 984 days ago | IN | 0 ETH | 0.00094976 | ||||
| Transfer | 12967162 | 1667 days ago | IN | 0 ETH | 0.00258599 | ||||
| Transfer | 12644091 | 1718 days ago | IN | 0 ETH | 0.00040499 | ||||
| Transfer | 12641610 | 1718 days ago | IN | 0 ETH | 0.00073636 | ||||
| Transfer | 12574249 | 1729 days ago | IN | 0 ETH | 0.00035103 | ||||
| Transfer | 12517427 | 1738 days ago | IN | 0 ETH | 0.00154635 | ||||
| Transfer | 12497082 | 1741 days ago | IN | 0 ETH | 0.0024668 | ||||
| Transfer | 12467638 | 1745 days ago | IN | 0 ETH | 0.00476725 | ||||
| Transfer | 12450515 | 1748 days ago | IN | 0 ETH | 0.00231953 | ||||
| Transfer | 12344561 | 1764 days ago | IN | 0 ETH | 0.00141749 | ||||
| Transfer | 12339007 | 1765 days ago | IN | 0 ETH | 0.0014359 | ||||
| Transfer | 9160711 | 2257 days ago | IN | 0 ETH | 0.00010895 | ||||
| Transfer | 8314368 | 2395 days ago | IN | 0 ETH | 0 | ||||
| Transfer | 8314368 | 2395 days ago | IN | 0 ETH | 0 | ||||
| Transfer | 8310828 | 2396 days ago | IN | 0 ETH | 0.00036678 | ||||
| Transfer | 8185896 | 2415 days ago | IN | 0 ETH | 0.00014671 | ||||
| Transfer | 8151594 | 2420 days ago | IN | 0 ETH | 0.00013205 | ||||
| Transfer | 7911288 | 2458 days ago | IN | 0 ETH | 0.00047681 | ||||
| Transfer | 7773401 | 2479 days ago | IN | 0 ETH | 0.00014671 | ||||
| Transfer | 7666770 | 2496 days ago | IN | 0 ETH | 0.00036678 | ||||
| Transfer | 7617687 | 2504 days ago | IN | 0 ETH | 0.00011003 | ||||
| Transfer | 7517105 | 2519 days ago | IN | 0 ETH | 0.00012082 | ||||
| Transfer | 7399963 | 2538 days ago | IN | 0 ETH | 0.00087873 | ||||
| Transfer | 7372848 | 2542 days ago | IN | 0 ETH | 0.00036678 | ||||
| Transfer | 7044499 | 2605 days ago | IN | 0 ETH | 0.00013204 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ApolloSeptemToken
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-02-16
*/
pragma solidity ^0.4.18;
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
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) onlyOwner public {
require(newOwner != address(0));
OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a * b;
assert(a == 0 || 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 ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public constant returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) public constant returns (uint256);
function transferFrom(address from, address to, uint256 value) public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) balances;
/**
* @dev transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint256 _value) public returns (bool) {
require(_to != address(0));
// SafeMath.sub will throw if there is not enough balance.
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
Transfer(msg.sender, _to, _value);
return true;
}
/**
* @dev Gets the balance of the specified address.
* @param _who The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function balanceOf(address _who) public constant returns (uint256 balance) {
return balances[_who];
}
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) allowed;
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amount of tokens to be transferred
*/
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
require(_to != address(0));
uint256 _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// require (_value <= _allowance);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
Transfer(_from, _to, _value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
*
* Beware that changing an allowance with this method brings the risk that someone may use both the old
* and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
* race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
/**
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param _owner address The address which owns the funds.
* @param _spender address The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
/**
* approve should be called when allowed[_spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
*/
function increaseApproval (address _spender, uint _addedValue)
public
returns (bool success) {
allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
function decreaseApproval (address _spender, uint _subtractedValue)
public
returns (bool success) {
uint oldValue = allowed[msg.sender][_spender];
if (_subtractedValue > oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
/**
* @title ApolloSeptemToken
* @dev ApolloSeptem ERC20 Token with a fixed supply, no posibility to mint token in the future.
* It is meant to be used in ApolloSeptem crowdsale + in Apollo Platform.
*/
contract ApolloSeptemToken is StandardToken, Ownable {
string public constant name = "ApolloSeptem";
string public constant symbol = "APO";
uint8 public constant decimals = 18;
function ApolloSeptemToken() public {
totalSupply = 300 * 10**6 * 10**18; // 100% => 300.000.000 APO
// 60% => 180.000.000 APO presale + ICO
// 20% => 60.000.000 APO fuel for platform
// 15% => 45.000.000 APO team & advisors
// 4.5% => 13.500.000 APO donations
// 0.5% => 1.500.000 APO bounty & giveaway
balances[owner] = totalSupply; // put all the tokens on the owner address
}
function getTotalSupply() public view returns (uint256) {
return totalSupply;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getTotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]Contract Creation Code
6060604052341561000f57600080fd5b60038054600160a060020a03338116600160a060020a031990921691909117918290556af8277896582678ac000000600081815592909116825260016020526040909120556108f7806100636000396000f3006060604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019457806323b872dd146101b9578063313ce567146101e1578063661884631461020a57806370a082311461022c5780638da5cb5b1461024b57806395d89b411461027a578063a9059cbb1461028d578063c4e41b22146102af578063d73dd623146102c2578063dd62ed3e146102e4578063f2fde38b14610309575b600080fd5b34156100df57600080fd5b6100e761032a565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012357808201518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561016957600080fd5b610180600160a060020a0360043516602435610361565b604051901515815260200160405180910390f35b341561019f57600080fd5b6101a76103cd565b60405190815260200160405180910390f35b34156101c457600080fd5b610180600160a060020a03600435811690602435166044356103d3565b34156101ec57600080fd5b6101f46104fd565b60405160ff909116815260200160405180910390f35b341561021557600080fd5b610180600160a060020a0360043516602435610502565b341561023757600080fd5b6101a7600160a060020a03600435166105fc565b341561025657600080fd5b61025e610617565b604051600160a060020a03909116815260200160405180910390f35b341561028557600080fd5b6100e7610626565b341561029857600080fd5b610180600160a060020a036004351660243561065d565b34156102ba57600080fd5b6101a7610733565b34156102cd57600080fd5b610180600160a060020a0360043516602435610739565b34156102ef57600080fd5b6101a7600160a060020a03600435811690602435166107dd565b341561031457600080fd5b610328600160a060020a0360043516610808565b005b60408051908101604052600c81527f41706f6c6c6f53657074656d0000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b600080600160a060020a03841615156103eb57600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610431908463ffffffff6108a316565b600160a060020a038087166000908152600160205260408082209390935590861681522054610466908463ffffffff6108b516565b600160a060020a03851660009081526001602052604090205561048f818463ffffffff6108a316565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b601281565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561055f57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610596565b61056f818463ffffffff6108a316565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b60408051908101604052600381527f41504f0000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561067457600080fd5b600160a060020a03331660009081526001602052604090205461069d908363ffffffff6108a316565b600160a060020a0333811660009081526001602052604080822093909355908516815220546106d2908363ffffffff6108b516565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60005490565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610771908363ffffffff6108b516565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461082357600080fd5b600160a060020a038116151561083857600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828211156108af57fe5b50900390565b6000828201838110156108c457fe5b93925050505600a165627a7a72305820181ca3b45a8184b7331eeeb7a442f434b5a44982ad9e8ecb540f1c01fd24a2560029
Deployed Bytecode
0x6060604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019457806323b872dd146101b9578063313ce567146101e1578063661884631461020a57806370a082311461022c5780638da5cb5b1461024b57806395d89b411461027a578063a9059cbb1461028d578063c4e41b22146102af578063d73dd623146102c2578063dd62ed3e146102e4578063f2fde38b14610309575b600080fd5b34156100df57600080fd5b6100e761032a565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012357808201518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561016957600080fd5b610180600160a060020a0360043516602435610361565b604051901515815260200160405180910390f35b341561019f57600080fd5b6101a76103cd565b60405190815260200160405180910390f35b34156101c457600080fd5b610180600160a060020a03600435811690602435166044356103d3565b34156101ec57600080fd5b6101f46104fd565b60405160ff909116815260200160405180910390f35b341561021557600080fd5b610180600160a060020a0360043516602435610502565b341561023757600080fd5b6101a7600160a060020a03600435166105fc565b341561025657600080fd5b61025e610617565b604051600160a060020a03909116815260200160405180910390f35b341561028557600080fd5b6100e7610626565b341561029857600080fd5b610180600160a060020a036004351660243561065d565b34156102ba57600080fd5b6101a7610733565b34156102cd57600080fd5b610180600160a060020a0360043516602435610739565b34156102ef57600080fd5b6101a7600160a060020a03600435811690602435166107dd565b341561031457600080fd5b610328600160a060020a0360043516610808565b005b60408051908101604052600c81527f41706f6c6c6f53657074656d0000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b600080600160a060020a03841615156103eb57600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610431908463ffffffff6108a316565b600160a060020a038087166000908152600160205260408082209390935590861681522054610466908463ffffffff6108b516565b600160a060020a03851660009081526001602052604090205561048f818463ffffffff6108a316565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b601281565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561055f57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610596565b61056f818463ffffffff6108a316565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b60408051908101604052600381527f41504f0000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561067457600080fd5b600160a060020a03331660009081526001602052604090205461069d908363ffffffff6108a316565b600160a060020a0333811660009081526001602052604080822093909355908516815220546106d2908363ffffffff6108b516565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60005490565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610771908363ffffffff6108b516565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461082357600080fd5b600160a060020a038116151561083857600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828211156108af57fe5b50900390565b6000828201838110156108c457fe5b93925050505600a165627a7a72305820181ca3b45a8184b7331eeeb7a442f434b5a44982ad9e8ecb540f1c01fd24a2560029
Swarm Source
bzzr://181ca3b45a8184b7331eeeb7a442f434b5a44982ad9e8ecb540f1c01fd24a256
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 ]
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.