NucleusVision
ERC20
This contract is an ERC20 token.
Name
NucleusVision
Symbol
nCash
Decimals
18
Total Supply
10,000,000,000 nCash
About
link
description
Launched in 2014, Nucleus Vision, also known as nCash, aims to bridge the divide between the online and offline retail world.
The project is an IoT-based, contactless identification system that enables retailers to identify and better serve their customers by using customer’s records to make precise decisions on product preferences without the use of WiFi or Bluetooth.
The NCASH ERC-20 token functions as a currency in the Nucleus Vision ecosystem. The technology has been deployed in retail stores in India.
Stats
Public Functions
11
Event Types
6
Code Size
10,667 bytes
Events (6) keyboard_arrow_up
Functions
transferOwnership keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
allowance keyboard_arrow_up
transferFrom keyboard_arrow_up
approve keyboard_arrow_up
Source Code
function approve(address spender, uint256 value) public returns (bool) {
require(unlocked);
return super.approve(spender, value);
}
increaseApproval keyboard_arrow_up
Source Code
function increaseApproval(address spender, uint addedValue) public returns (bool) {
require(unlocked);
return super.increaseApproval(spender, addedValue);
}
decreaseApproval keyboard_arrow_up
Source Code
function decreaseApproval(address spender, uint subtractedValue) public returns (bool) {
require(unlocked);
return super.decreaseApproval(spender, subtractedValue);
}