Blockwell

Dorayaki

ERC20

This contract is an ERC20 token.

Name Dorayaki
Symbol DORA
Decimals 18
Total Supply 10,000,000 DORA

About link

Dora Factory (DORA) is a cryptocurrency and operates on the Ethereum platform. Dora Factory has a current supply of 10,000,000 with 1,561,333.53359176 in circulation. The last known price of Dora Factory is 5.67575885 USD and is up 5.33 over the last 24 hours. It is currently trading on 16 active market(s) with $9,532,391.87 traded over the last 24 hours. More information can be found at https://dorafactory.org/.

Stats

Public Functions 6
Event Types 2
Code Size 2,260 bytes

Library Use

Uses SafeMath for uint256.

Events (2) keyboard_arrow_up

Approval Event

Parameters help
_owner
address help
_spender
address help
_value
uint256 help

Transfer Event

Parameters help
_from
address help
_to
address help
_value
uint256 help

name Constant

string help
Dorayaki

symbol Constant

string help
DORA

decimals Constant

uint256 help
18

_totalSupply Variable

uint256 help
Internal Variable

_balances Variable

mapping(address => uint256) help
Internal Variable

_allowed Variable

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

Functions Expand All Collapse All

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help view
Source Code
function totalSupply() public view returns (uint256 supply) {
  return _totalSupply;
}

Parameters help

Name Type
_owner
address help

Properties

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

Parameters help

Name Type
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function transfer(address _to, uint256 _value) public returns (bool success) {
  require(_to != address(0), "");
  _balances[msg.sender] = _balances[msg.sender].sub(_value);
  _balances[_to] = _balances[_to].add(_value);
  emit Transfer(msg.sender, _to, _value);
  return true;
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) public returns (bool success) {
  require(_to != address(0), "");
  _balances[_from] = _balances[_from].sub(_value);
  _allowed[_from][msg.sender] = _allowed[_from][msg.sender].sub(_value);
  _balances[_to] = _balances[_to].add(_value);
  emit Transfer(_from, _to, _value);
  return true;
}

Parameters help

Name Type
_spender
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function approve(address _spender, uint256 _value)
  public
  returns (bool success)
{
  require(_allowed[msg.sender][_spender] == 0 || _value == 0);
  _allowed[msg.sender][_spender] = _value;
  emit Approval(msg.sender, _spender, _value);
  return true;
}

Parameters help

Name Type
_owner
address help
_spender
address help

Properties

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

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.