ERC20
This contract is an ERC20 token.
Name
Rotharium
Symbol
RTH
Decimals
18
Total Supply
5,207,470 RTH
About
link
Rotharium (RTH) is a cryptocurrency token and operates on the Ethereum platform. Rotharium has a current supply of 5,207,470.249 with 3,357,270.209 in circulation. The last known price of Rotharium is $0.615395 USD and is up 2.06% over the last 24 hours. It is currently trading on 2 active market(s) with $122,977.609 traded over the last 24 hours. More information can be found at https://www.rotharium.io.
Stats
Public Functions
8
Event Types
3
Code Size
7,651 bytes
Library Use
Uses SafeMath for uint256.
Events (3) keyboard_arrow_up
Functions
transferOwnership keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
Source Code
function transferOwnership(address newOwner) onlyOwner public {
owner = newOwner;
}
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address _to, uint256 _value) public {
_transfer(msg.sender, _to, _value);
}
transferFrom keyboard_arrow_up
Requirements help
Source Code
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
require(_value <= allowance[_from][msg.sender]); // Check allowance
allowance[_from][msg.sender] -= _value;
_transfer(_from, _to, _value);
return true;
}
approve keyboard_arrow_up
approveAndCall keyboard_arrow_up
Source Code
function approveAndCall(address _spender, uint256 _value, bytes _extraData)
public
returns (bool success) {
tokenRecipient spender = tokenRecipient(_spender);
if (approve(_spender, _value)) {
spender.receiveApproval(msg.sender, _value, this, _extraData);
return true;
}
}
burn keyboard_arrow_up
Requirements help
Source Code
function burn(uint256 _value) public returns (bool success) {
require(balanceOf[msg.sender] >= _value); // Check if the sender has enough
balanceOf[msg.sender] -= _value; // Subtract from the sender
totalSupply -= _value; // Updates totalSupply
Burn(msg.sender, _value);
return true;
}