Maximine Coin
ERC20
This contract is an ERC20 token.
Name
Maximine Coin
Symbol
MXM
Decimals
18
Total Supply
16,000,000,000 MXM
About
link
Maximine Coin (MXM) is a cryptocurrency token and operates on the Ethereum platform. Maximine Coin has a current supply of 16,000,000,000 with 1,649,000,000 in circulation. The last known price of Maximine Coin is $0.000235 USD and is down -11.92% over the last 24 hours. It is currently trading on 3 active market(s) with $345.53 traded over the last 24 hours. More information can be found at https://maximine.io/.
Stats
Public Functions
8
Event Types
2
Code Size
6,712 bytes
Events (2) keyboard_arrow_up
Functions
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address _to, uint256 _value) public {
require(!blacklist[msg.sender]);
_transfer(msg.sender, _to, _value);
}
ban keyboard_arrow_up
enable keyboard_arrow_up
transferFrom keyboard_arrow_up
Requirements help
Source Code
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
require(!blacklist[msg.sender]);
require(_value <= allowance[_from][msg.sender]); // Check allowance
allowance[_from][msg.sender] -= _value;
_transfer(_from, _to, _value);
return true;
}
approve keyboard_arrow_up
Requirements help
Source Code
function approve(address _spender, uint256 _value) public
returns (bool success) {
require(!blacklist[msg.sender]);
allowance[msg.sender][_spender] = _value;
return true;
}
approveAndCall keyboard_arrow_up
Requirements help
Source Code
function approveAndCall(address _spender, uint256 _value, bytes _extraData)
public
returns (bool success) {
require(!blacklist[msg.sender]);
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(!blacklist[msg.sender]);
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;
}
burnFrom keyboard_arrow_up
Requirements help
Source Code
function burnFrom(address _from, uint256 _value) public returns (bool success) {
require(!blacklist[msg.sender]);
require(balanceOf[_from] >= _value); // Check if the targeted balance is enough
require(_value <= allowance[_from][msg.sender]); // Check allowance
balanceOf[_from] -= _value; // Subtract from the targeted balance
allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance
totalSupply -= _value; // Update totalSupply
Burn(_from, _value);
return true;
}