Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 280 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24266913 | 43 days ago | IN | 0 ETH | 0.00000136 | ||||
| Approve | 20509221 | 568 days ago | IN | 0 ETH | 0.00009373 | ||||
| Approve | 15190290 | 1320 days ago | IN | 0 ETH | 0.00021926 | ||||
| Approve | 15190290 | 1320 days ago | IN | 0 ETH | 0.00021926 | ||||
| Approve | 15190290 | 1320 days ago | IN | 0 ETH | 0.00038314 | ||||
| Transfer | 13881010 | 1527 days ago | IN | 0 ETH | 0.00193011 | ||||
| Approve | 13634060 | 1566 days ago | IN | 0 ETH | 0.00661251 | ||||
| Approve | 13074507 | 1654 days ago | IN | 0 ETH | 0.00107009 | ||||
| Approve | 12750066 | 1704 days ago | IN | 0 ETH | 0.00074019 | ||||
| Approve | 12692357 | 1713 days ago | IN | 0 ETH | 0.00046262 | ||||
| Transfer | 12638539 | 1721 days ago | IN | 0 ETH | 0.00027902 | ||||
| Transfer | 12638448 | 1722 days ago | IN | 0 ETH | 0.00036978 | ||||
| Transfer | 12600656 | 1727 days ago | IN | 0 ETH | 0.00073243 | ||||
| Transfer | 12600618 | 1727 days ago | IN | 0 ETH | 0.00083126 | ||||
| Transfer | 12600398 | 1727 days ago | IN | 0 ETH | 0.0013635 | ||||
| Approve | 12560570 | 1734 days ago | IN | 0 ETH | 0.00088399 | ||||
| Approve | 12536603 | 1737 days ago | IN | 0 ETH | 0.00097704 | ||||
| Approve | 12536568 | 1737 days ago | IN | 0 ETH | 0.00097704 | ||||
| Transfer | 12536536 | 1737 days ago | IN | 0 ETH | 0.00217193 | ||||
| Transfer | 12516310 | 1740 days ago | IN | 0 ETH | 0.00119521 | ||||
| Transfer | 11914512 | 1833 days ago | IN | 0 ETH | 0.01616774 | ||||
| Transfer | 11913633 | 1833 days ago | IN | 0 ETH | 0.01774052 | ||||
| Transfer | 11874271 | 1839 days ago | IN | 0 ETH | 0.00558047 | ||||
| Transfer | 11783367 | 1853 days ago | IN | 0 ETH | 0.00698502 | ||||
| Transfer | 11700400 | 1866 days ago | IN | 0 ETH | 0.0056451 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BitGoals
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-07-30
*/
pragma solidity ^0.4.20;
// ----------------------------------------------------------------------------
// STP token contract
//
// Symbol : STP
// Name : BitGoals
// Total Supply : 185,000,000
// Decimals : 18
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Safe math
// ----------------------------------------------------------------------------
library SafeMath {
function add(uint a, uint b) internal pure returns (uint c) {
c = a + b;
require(c >= a);
}
function sub(uint a, uint b) internal pure returns (uint c) {
require(b <= a);
c = a - b;
}
function mul(uint a, uint b) internal pure returns (uint c) {
c = a * b;
require(a == 0 || c / a == b);
}
function div(uint a, uint b) internal pure returns (uint c) {
require(b > 0);
c = a / b;
}
}
// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
function totalSupply() public view returns (uint);
function balanceOf(address tokenOwner) public view returns (uint balance);
function allowance(address tokenOwner, address spender) public view returns (uint remaining);
function transfer(address to, uint tokens) public returns (bool success);
function approve(address spender, uint tokens) public returns (bool success);
function transferFrom(address from, address to, uint tokens) public returns (bool success);
event Transfer(address indexed from, address indexed to, uint tokens);
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}
// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and an
// initial fixed supply
// ----------------------------------------------------------------------------
contract BitGoals is ERC20Interface {
using SafeMath for uint;
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
// ------------------------------------------------------------------------
// Constructor
// ------------------------------------------------------------------------
constructor() public {
symbol = "STP";
name = "BitGoals";
decimals = 18;
_totalSupply = 185000000;
address owner = 0x209380a57d88B07352A409548F3Ff9A95066881D;
_totalSupply = _totalSupply.mul(10 ** uint(decimals));
balances[owner] = _totalSupply;
emit Transfer(address(0), owner, _totalSupply);
}
// ------------------------------------------------------------------------
// Reject when someone sends ethers to this contract
// ------------------------------------------------------------------------
function() public payable {
revert();
}
// ------------------------------------------------------------------------
// Total supply
// ------------------------------------------------------------------------
function totalSupply() public view returns (uint) {
return _totalSupply;
}
// ------------------------------------------------------------------------
// Get the token balance for account `tokenOwner`
// ------------------------------------------------------------------------
function balanceOf(address tokenOwner) public view returns (uint balance) {
return balances[tokenOwner];
}
// ------------------------------------------------------------------------
// Transfer the balance from token owner's account to `to` account
// - Owner's account must have sufficient balance to transfer
// - 0 value transfers are allowed
// ------------------------------------------------------------------------
function transfer(address to, uint tokens) public returns (bool success) {
require(to != address(0));
require(tokens > 0);
require(balances[msg.sender] >= tokens);
balances[msg.sender] = balances[msg.sender].sub(tokens);
balances[to] = balances[to].add(tokens);
emit Transfer(msg.sender, to, tokens);
return true;
}
// ------------------------------------------------------------------------
// Token owner can approve for `spender` to transferFrom(...) `tokens`
// from the token owner's account
//
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// recommends that there are no checks for the approval double-spend attack
// as this should be implemented in user interfaces
// ------------------------------------------------------------------------
function approve(address spender, uint tokens) public returns (bool success) {
require(spender != address(0));
require(tokens > 0);
allowed[msg.sender][spender] = tokens;
emit Approval(msg.sender, spender, tokens);
return true;
}
// ------------------------------------------------------------------------
// Transfer `tokens` from the `from` account to the `to` account
//
// The calling account must already have sufficient tokens approve(...)-d
// for spending from the `from` account and
// - From account must have sufficient balance to transfer
// - Spender must have sufficient allowance to transfer
// ------------------------------------------------------------------------
function transferFrom(address from, address to, uint tokens) public returns (bool success) {
require(from != address(0));
require(to != address(0));
require(tokens > 0);
require(balances[from] >= tokens);
require(allowed[from][msg.sender] >= tokens);
balances[from] = balances[from].sub(tokens);
allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens);
balances[to] = balances[to].add(tokens);
emit Transfer(from, to, tokens);
return true;
}
// ------------------------------------------------------------------------
// Returns the amount of tokens approved by the owner that can be
// transferred to the spender's account
// ------------------------------------------------------------------------
function allowance(address tokenOwner, address spender) public view returns (uint remaining) {
return allowed[tokenOwner][spender];
}
// ------------------------------------------------------------------------
// Increase the amount of tokens that an owner allowed to a 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)
// _spender The address which will spend the funds.
// _addedValue The amount of tokens to increase the allowance by.
// ------------------------------------------------------------------------
function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
require(_spender != address(0));
allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
// ------------------------------------------------------------------------
// Decrease the amount of tokens that an owner allowed to a spender.
//
// approve should be called when allowed[_spender] == 0. To decrement
// allowed value is better to use this function to avoid 2 calls (and wait until
// the first transaction is mined)
// From MonolithDAO Token.sol
// _spender The address which will spend the funds.
// _subtractedValue The amount of tokens to decrease the allowance by.
// ------------------------------------------------------------------------
function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
require(_spender != address(0));
uint oldValue = allowed[msg.sender][_spender];
if (_subtractedValue > oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}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":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","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":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"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":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]Contract Creation Code
608060405234801561001057600080fd5b506040805180820190915260038082527f5354500000000000000000000000000000000000000000000000000000000000602090920191825260009161005891839190610173565b506040805180820190915260088082527f426974476f616c73000000000000000000000000000000000000000000000000602090920191825261009d91600191610173565b50506002805460ff191660121790819055630b06e040600381905573209380a57d88b07352a409548f3ff9a95066881d916100eb919060ff16600a0a64010000000061091061014882021704565b6003819055600160a060020a0382166000818152600460209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35061020e565b818102821580610162575081838281151561015f57fe5b04145b151561016d57600080fd5b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106101b457805160ff19168380011785556101e1565b828001600101855582156101e1579182015b828111156101e15782518255916020019190600101906101c6565b506101ed9291506101f1565b5090565b61020b91905b808211156101ed57600081556001016101f7565b90565b6109618061021d6000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d15780633eaaf86b146101fc578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610367565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103f3565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103f9565b3480156101dd57600080fd5b506101e6610592565b6040805160ff9092168252519081900360200190f35b34801561020857600080fd5b5061019561059b565b34801561021d57600080fd5b5061016c600160a060020a03600435166024356105a1565b34801561024157600080fd5b50610195600160a060020a03600435166106aa565b34801561026257600080fd5b506100d36106c5565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610720565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610810565b3480156102bf57600080fd5b50610195600160a060020a03600435811690602435166108c0565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035f5780601f106103345761010080835404028352916020019161035f565b820191906000526020600020905b81548152906001019060200180831161034257829003601f168201915b505050505081565b6000600160a060020a038316151561037e57600080fd5b6000821161038b57600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60035490565b6000600160a060020a038416151561041057600080fd5b600160a060020a038316151561042557600080fd5b6000821161043257600080fd5b600160a060020a03841660009081526004602052604090205482111561045757600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290205482111561048757600080fd5b600160a060020a0384166000908152600460205260409020546104b0908363ffffffff6108eb16565b600160a060020a03851660009081526004602090815260408083209390935560058152828220338352905220546104ed908363ffffffff6108eb16565b600160a060020a038086166000908152600560209081526040808320338452825280832094909455918616815260049091522054610531908363ffffffff61090016565b600160a060020a0380851660008181526004602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60025460ff1681565b60035481565b600080600160a060020a03841615156105b957600080fd5b50336000908152600560209081526040808320600160a060020a03871684529091529020548083111561060f57336000908152600560209081526040808320600160a060020a0388168452909152812055610644565b61061f818463ffffffff6108eb16565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526004602052604090205490565b6000805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035f5780601f106103345761010080835404028352916020019161035f565b6000600160a060020a038316151561073757600080fd5b6000821161074457600080fd5b3360009081526004602052604090205482111561076057600080fd5b33600090815260046020526040902054610780908363ffffffff6108eb16565b3360009081526004602052604080822092909255600160a060020a038516815220546107b2908363ffffffff61090016565b600160a060020a0384166000818152600460209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6000600160a060020a038316151561082757600080fd5b336000908152600560209081526040808320600160a060020a038716845290915290205461085b908363ffffffff61090016565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b6000828211156108fa57600080fd5b50900390565b818101828110156103ed57600080fd5b81810282158061092a575081838281151561092757fe5b04145b15156103ed57600080fd00a165627a7a7230582088d046a25741f316ca0052e5887b3e981e457c92a28fd7807408eda12c990bec0029
Deployed Bytecode
0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d15780633eaaf86b146101fc578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610367565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103f3565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103f9565b3480156101dd57600080fd5b506101e6610592565b6040805160ff9092168252519081900360200190f35b34801561020857600080fd5b5061019561059b565b34801561021d57600080fd5b5061016c600160a060020a03600435166024356105a1565b34801561024157600080fd5b50610195600160a060020a03600435166106aa565b34801561026257600080fd5b506100d36106c5565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610720565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610810565b3480156102bf57600080fd5b50610195600160a060020a03600435811690602435166108c0565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035f5780601f106103345761010080835404028352916020019161035f565b820191906000526020600020905b81548152906001019060200180831161034257829003601f168201915b505050505081565b6000600160a060020a038316151561037e57600080fd5b6000821161038b57600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60035490565b6000600160a060020a038416151561041057600080fd5b600160a060020a038316151561042557600080fd5b6000821161043257600080fd5b600160a060020a03841660009081526004602052604090205482111561045757600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290205482111561048757600080fd5b600160a060020a0384166000908152600460205260409020546104b0908363ffffffff6108eb16565b600160a060020a03851660009081526004602090815260408083209390935560058152828220338352905220546104ed908363ffffffff6108eb16565b600160a060020a038086166000908152600560209081526040808320338452825280832094909455918616815260049091522054610531908363ffffffff61090016565b600160a060020a0380851660008181526004602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60025460ff1681565b60035481565b600080600160a060020a03841615156105b957600080fd5b50336000908152600560209081526040808320600160a060020a03871684529091529020548083111561060f57336000908152600560209081526040808320600160a060020a0388168452909152812055610644565b61061f818463ffffffff6108eb16565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526004602052604090205490565b6000805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035f5780601f106103345761010080835404028352916020019161035f565b6000600160a060020a038316151561073757600080fd5b6000821161074457600080fd5b3360009081526004602052604090205482111561076057600080fd5b33600090815260046020526040902054610780908363ffffffff6108eb16565b3360009081526004602052604080822092909255600160a060020a038516815220546107b2908363ffffffff61090016565b600160a060020a0384166000818152600460209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6000600160a060020a038316151561082757600080fd5b336000908152600560209081526040808320600160a060020a038716845290915290205461085b908363ffffffff61090016565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b6000828211156108fa57600080fd5b50900390565b818101828110156103ed57600080fd5b81810282158061092a575081838281151561092757fe5b04145b15156103ed57600080fd00a165627a7a7230582088d046a25741f316ca0052e5887b3e981e457c92a28fd7807408eda12c990bec0029
Swarm Source
bzzr://88d046a25741f316ca0052e5887b3e981e457c92a28fd7807408eda12c990bec
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.