Pundi X Token
ERC20
This contract is an ERC20 token.
Name
Pundi X Token
Symbol
NPXS
Decimals
18
Total Supply
258,549,026,524 NPXS
About
link
description
Pundi X (NPXS) aims to make the use of cryptocurrency as a form of payment into a reality for retailers and consumers alike. By applying the technology to a series of real world use cases such as cards and the XPOS point-of-sale devices, the team has built products that could accept the NPXS token for goods and services. With the goals of supporting retail intelligence, marketing & loyalty programs as well as inventory & order management systems, the Pundi X Point-of-Sale device could help to support digital commerce worldwide.
Stats
Public Functions
17
Event Types
7
Code Size
17,401 bytes
Events (7) keyboard_arrow_up
Functions
transferOwnership keyboard_arrow_up
pause keyboard_arrow_up
unpause keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
require(!stopReceive[_to]);
bool result = super.transfer(_to, _value);
return result;
}
allowance keyboard_arrow_up
transferFrom keyboard_arrow_up
Source Code
function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
bool result = super.transferFrom(_from, _to, _value);
return result;
}
approve keyboard_arrow_up
Requirements help
One or more of the following:
Source Code
function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
return super.approve(_spender, _value);
}
increaseApproval keyboard_arrow_up
Source Code
function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
return super.increaseApproval(_spender, _addedValue);
}
decreaseApproval keyboard_arrow_up
Source Code
function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
return super.decreaseApproval(_spender, _subtractedValue);
}
burn keyboard_arrow_up
Source Code
function burn(uint _value)
public
{
require(_value > 0);
address burner = msg.sender;
balances[burner] = balances[burner].sub(_value);
totalSupply = totalSupply.sub(_value);
Burn(burner, _value);
}
mint keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
canMint checks for the following:
Source Code
function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
bool result = super.mint(_to, _amount);
return result;
}
finishMinting keyboard_arrow_up
setStopReceive keyboard_arrow_up
getStopReceive keyboard_arrow_up
burn keyboard_arrow_up
transferAndCall keyboard_arrow_up
Requirements help
Source Code
function transferAndCall(address _recipient, uint256 _amount, bytes _data) {
require(_recipient != address(0));
require(_amount <= balances[msg.sender]);
balances[msg.sender] = balances[msg.sender].sub(_amount);
balances[_recipient] = balances[_recipient].add(_amount);
require(TokenRecipient(_recipient).tokenFallback(msg.sender, _amount, _data));
Transfer(msg.sender, _recipient, _amount);
}