ERC20
This contract is an ERC20 token.
Name
Suterusu
Symbol
Suter
Decimals
18
Total Supply
10,000,000,000 Suter
About
link
description
suterusu (SUTER) is a cryptocurrency and operates on the Ethereum platform. Users are able to generate SUTER through the process of mining. suterusu has a current supply of 10,000,000,000 with 3,855,040,000 in circulation. The last known price of suterusu is 0.00288116 USD and is down -0.53 over the last 24 hours. It is currently trading on 11 active market(s) with $103,404.59 traded over the last 24 hours. More information can be found at https://shield.suterusu.io/.
Stats
Public Functions
25
Event Types
11
Code Size
22,998 bytes
Events (11) keyboard_arrow_up
State Variables (8) keyboard_arrow_up
Functions
isPauser keyboard_arrow_up
addPauser keyboard_arrow_up
renouncePauser keyboard_arrow_up
paused keyboard_arrow_up
pause keyboard_arrow_up
unpause keyboard_arrow_up
totalSupply keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address to, uint256 value) public returns (bool) {
require(
!isBlacklist(msg.sender),
"Token: caller in blacklist can't transfer"
);
require(
!isBlacklist(to),
"Token: not allow to transfer to recipient address in blacklist"
);
return super.transfer(to, value);
}
allowance keyboard_arrow_up
approve keyboard_arrow_up
Requirements help
Source Code
function approve(address spender, uint256 value)
public
whenNotPaused
returns (bool)
{
return super.approve(spender, value);
}
transferFrom keyboard_arrow_up
Requirements help
Source Code
function transferFrom(
address from,
address to,
uint256 value
) public returns (bool) {
require(
!isBlacklist(msg.sender),
"Token: caller in blacklist can't transferFrom"
);
require(!isBlacklist(from), "Token: from in blacklist can't transfer");
require(
!isBlacklist(to),
"Token: not allow to transfer to recipient address in blacklist"
);
return super.transferFrom(from, to, value);
}
increaseAllowance keyboard_arrow_up
Requirements help
Source Code
function increaseAllowance(address spender, uint256 addedValue)
public
returns (bool)
{
_approve(
msg.sender,
spender,
_allowances[msg.sender][spender].add(addedValue)
);
return true;
}
decreaseAllowance keyboard_arrow_up
Requirements help
Source Code
function decreaseAllowance(address spender, uint256 subtractedValue)
public
returns (bool)
{
_approve(
msg.sender,
spender,
_allowances[msg.sender][spender].sub(subtractedValue)
);
return true;
}
increaseAllowance keyboard_arrow_up
Requirements help
Source Code
function increaseAllowance(address spender, uint256 addedValue)
public
whenNotPaused
returns (bool)
{
return super.increaseAllowance(spender, addedValue);
}
decreaseAllowance keyboard_arrow_up
Requirements help
Source Code
function decreaseAllowance(address spender, uint256 subtractedValue)
public
whenNotPaused
returns (bool)
{
return super.decreaseAllowance(spender, subtractedValue);
}
owner keyboard_arrow_up
isOwner keyboard_arrow_up
transferOwnership keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
null
Source Code
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
addAdmin keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
null
Source Code
function addAdmin(address account) public onlyOwner {
_addAdmin(account);
}
removeAdmin keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
null
Source Code
function removeAdmin(address account) public onlyOwner {
_removeAdmin(account);
}
renounceAdmin keyboard_arrow_up
isBlacklist keyboard_arrow_up
addBlacklist keyboard_arrow_up
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.
internal Admin.constructor keyboard_arrow_up
internal Admin._addAdmin keyboard_arrow_up
Requirements help
Source Code
function _addAdmin(address account) internal {
require(AdminRole[account] == false);
AdminRole[account] = true;
emit AdminRoleAdded(account);
}
internal Admin._removeAdmin keyboard_arrow_up
Requirements help
Source Code
function _removeAdmin(address account) internal {
require(AdminRole[account] == true);
AdminRole[account] = false;
emit AdminRoleRemoved(account);
}
internal Ownable.constructor keyboard_arrow_up
internal Ownable._transferOwnership keyboard_arrow_up
Source Code
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
internal ERC20._transfer keyboard_arrow_up
Requirements help
Source Code
function _transfer(
address sender,
address recipient,
uint256 amount
) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
internal ERC20._mint keyboard_arrow_up
Source Code
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
internal ERC20._approve keyboard_arrow_up
Requirements help
Source Code
function _approve(
address owner,
address spender,
uint256 value
) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}
internal ERC20._transfer keyboard_arrow_up
Requirements help
Source Code
function _transfer(
address sender,
address recipient,
uint256 amount
) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
internal ERC20._mint keyboard_arrow_up
Source Code
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
internal ERC20._approve keyboard_arrow_up
Requirements help
Source Code
function _approve(
address owner,
address spender,
uint256 value
) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}