MoneyToken
ERC20
This contract is an ERC20 token.
Name
MoneyToken
Symbol
IMT
Decimals
18
Total Supply
19,155,705,310 IMT
About
link
Moneytoken (IMT) is a cryptocurrency token and operates on the Ethereum platform. Moneytoken has a current supply of 19,155,705,310.11 with 9,430,337,526.883 in circulation. The last known price of Moneytoken is $0.000071 USD and is down -76.90% over the last 24 hours. It is currently trading on 5 active market(s) with $3,291.13 traded over the last 24 hours. More information can be found at https://moneytoken.eu/.
Stats
Public Functions
9
Event Types
5
Code Size
8,724 bytes
Library Use
Uses SafeMath for uint256.
Events (5) keyboard_arrow_up
Functions
renounceOwnership keyboard_arrow_up
transferOwnership keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
transferFrom keyboard_arrow_up
Requirements help
Source Code
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
_transferFrom(msg.sender, _from, _to, _value);
return true;
}
approve keyboard_arrow_up
Requirements help
One or more of the following:
Source Code
function approve(address _spender, uint256 _value) public returns (bool success) {
require((_value == 0) || (allowed[msg.sender][_spender] == 0));
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
allowance keyboard_arrow_up
burn keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
Source Code
function burn(uint256 _value) public onlyOwner returns (bool success) {
_burn(msg.sender, _value);
return true;
}
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 IMTTokenIMTInterface(tokenAddress).transfer(owner, tokens);
}