ERC20
This contract is an ERC20 token.
Name
UCASH
Symbol
UCASH
Decimals
8
Total Supply
21,000,000,000 UCASH
About
link
UNIVERSAL CASH (UCASH) is a cryptocurrency token and operates on the Ethereum platform. UNIVERSAL CASH has a current supply of 21,000,000,000 with 10,351,944,440.938 in circulation. The last known price of UNIVERSAL CASH is $0.000070 USD and is up 54.32% over the last 24 hours. It is currently trading on 3 active market(s) with $0.280400 traded over the last 24 hours. More information can be found at https://u.cash.
Stats
Public Functions
5
Event Types
2
Code Size
4,550 bytes
Events (2) keyboard_arrow_up
Functions
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address _to, uint256 _value) public returns (bool success) {
require(balances[msg.sender] >= _value);
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
transferFrom keyboard_arrow_up
Requirements help
Source Code
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
uint256 allowance = allowed[_from][msg.sender];
require(balances[_from] >= _value && allowance >= _value);
balances[_to] += _value;
balances[_from] -= _value;
if (allowance < MAX_UINT256) {
allowed[_from][msg.sender] -= _value;
}
Transfer(_from, _to, _value);
return true;
}
approve keyboard_arrow_up
Source Code
function approve(address _spender, uint256 _value) public returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}