Blockwell

Datum Token

ERC20

This contract is an ERC20 token.

Name Datum Token
Symbol DAT
Decimals 18
Total Supply 2,653,841,598 DAT

About link description

Datum (DAT) is a cryptocurrency and operates on the Ethereum platform. Datum has a current supply of 2,653,841,597.973272 with 1,457,966,672.5142903 in circulation. The last known price of Datum is 0.00136975 USD and is up 3.60 over the last 24 hours. It is currently trading on 4 active market(s) with $143,512.16 traded over the last 24 hours. More information can be found at https://datum.org/.

Stats

Public Functions 11
Event Types 4
Code Size 8,016 bytes

Library Use

Uses SafeMath for uint256.

Events (4) keyboard_arrow_up

Approval Event

Parameters help
owner
address help
spender
address help
value
uint help

Pause Event

Parameters help

Transfer Event

Parameters help
from
address help
to
address help
value
uint help

Unpause Event

Parameters help

INITIAL_SUPPLY Constant

uint256 help
2653841597973271663912484125 wei

name Variable

string help

symbol Variable

string help

decimals Variable

uint help

totalSupply Variable

uint help

paused Variable

bool help

owner Variable

address help

allowed Variable

mapping(address => mapping(address => uint)) help
Internal Variable

balances Variable

mapping(address => uint) help
Internal Variable

Functions Expand All Collapse All

transferOwnership keyboard_arrow_up

Parameters help

Name Type
newOwner
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferOwnership(address newOwner) public onlyOwner {
  if (newOwner != address(0)) {
    owner = newOwner;
  }
}

unpause keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function unpause() public onlyOwner whenPaused returns (bool) {
  paused = false;
  Unpause();
  return true;
}

pause keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function pause() public onlyOwner whenNotPaused returns (bool) {
  paused = true;
  Pause();
  return false;
}

Parameters help

Name Type
_owner
address help

Properties

Visibility help public
Mutability help constant
Source Code
function balanceOf(address _owner) public constant returns (uint256 balance) {
  return balances[_owner];
}

Parameters help

Name Type
_to
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction

Modifiers help

Source Code
function transfer(address _to, uint256 _value) public whenNotPaused {
  super.transfer(_to, _value);
}

Parameters help

Name Type
_owner
address help
_spender
address help

Properties

Visibility help public
Mutability help constant
Source Code
function allowance(address _owner, address _spender)
  public
  constant
  returns (uint256 remaining)
{
  return allowed[_owner][_spender];
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction

Modifiers help

Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) public whenNotPaused {
  super.transferFrom(_from, _to, _value);
}

Parameters help

Name Type
_spender
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function approve(address _spender, uint256 _value) public {
  allowed[msg.sender][_spender] = _value;
  Approval(msg.sender, _spender, _value);
}

transferDistribution keyboard_arrow_up

Parameters help

Name Type
_to
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferDistribution(address _to, uint256 _value) public onlyOwner {
  super.transfer(_to, _value);
}

changeSymbolName keyboard_arrow_up

Parameters help

Name Type
symbolName
string help

Properties

Visibility help public
Mutability help transaction
Source Code
function changeSymbolName(string symbolName) public onlyOwner {
  symbol = symbolName;
}

changeName keyboard_arrow_up

Parameters help

Name Type
symbolName
string help

Properties

Visibility help public
Mutability help transaction
Source Code
function changeName(string symbolName) public onlyOwner {
  name = symbolName;
}

Internal Functions Expand All Collapse All

Internal functions are parts of the contract that can't be used directly, but instead are used by the public functions listed above.