ERC20
This contract is an ERC20 token.
                Name
                
                        Sentivate
                
            
            
                Symbol
                SNTVT
            
            
                Decimals
                18
            
            
                Total Supply
                4,200,000,000 SNTVT
            
            
            
        
                About
                    
                        link
                    
                    
                        description
                    
                    
            
            
                Sentivate (SNTVT) is a cryptocurrency and operates on the Ethereum platform. Sentivate has a current supply of 4,200,000,000 with 3,576,025,427.68963 in circulation. The last known price of Sentivate is 0.0063878 USD and is down -4.37 over the last 24 hours. It is currently trading on 5 active market(s) with $158,274.98 traded over the last 24 hours. More information can be found at https://sentivate.com.
            
        Stats
                Public Functions
                15
            
            
                Event Types
                3
            
            
                Code Size
                9,032 bytes
            
        State Variables (8) keyboard_arrow_up
Functions
safeAdd keyboard_arrow_up
safeSub keyboard_arrow_up
safeMul keyboard_arrow_up
Requirements help
Source Code
function safeMul(uint256 a, uint256 b) public pure returns (uint256 c) {
  c = a * b;
  require(a == 0 || c / a == b);
}
                safeDiv keyboard_arrow_up
transferOwnership keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
Source Code
function transferOwnership(address _newOwner) public onlyOwner {
  newOwner = _newOwner;
}
                acceptOwnership keyboard_arrow_up
totalSupply keyboard_arrow_up
balanceOf keyboard_arrow_up
allowance keyboard_arrow_up
transfer keyboard_arrow_up
Source Code
function transfer(address to, uint256 tokens) public returns (bool success) {
  balances[msg.sender] = safeSub(balances[msg.sender], tokens);
  balances[to] = safeAdd(balances[to], tokens);
  Transfer(msg.sender, to, tokens);
  return true;
}
                approve keyboard_arrow_up
Source Code
function approve(address spender, uint256 tokens)
  public
  returns (bool success)
{
  allowed[msg.sender][spender] = tokens;
  Approval(msg.sender, spender, tokens);
  return true;
}
                transferFrom keyboard_arrow_up
Source Code
function transferFrom(
  address from,
  address to,
  uint256 tokens
) public returns (bool success) {
  balances[from] = safeSub(balances[from], tokens);
  allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens);
  balances[to] = safeAdd(balances[to], tokens);
  Transfer(from, to, tokens);
  return true;
}
                approveAndCall keyboard_arrow_up
Source Code
function approveAndCall(
  address spender,
  uint256 tokens,
  bytes data
) public returns (bool success) {
  allowed[msg.sender][spender] = tokens;
  Approval(msg.sender, spender, tokens);
  ApproveAndCallFallBack(spender).receiveApproval(
    msg.sender,
    tokens,
    this,
    data
  );
  return true;
}
                constructor keyboard_arrow_up
transferAnyERC20Token keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
Source Code
function transferAnyERC20Token(address tokenAddress, uint256 tokens)
  public
  onlyOwner
  returns (bool success)
{
  return ERC20Interface(tokenAddress).transfer(owner, tokens);
}
                Internal Functions
Internal functions are parts of the contract that can't be used directly, but instead are used by the public functions listed above.
        
    



