Bread Token
ERC20
This contract is an ERC20 token.
Name
Bread Token
Symbol
BRD
Decimals
18
Total Supply
88,862,718 BRD
About
link
description
BRD is a global company that aims to bring blockchain-enabled financial services to the mobile generation – providing consumers with the simplest and most secure way to buy and protect bitcoin and other cryptocurrencies.
BRD is also the maker of Blockset, a new hosted blockchain infrastructure platform for large enterprises. Launched in 2015, and headquartered in Zurich, Switzerland, BRD is a venture-backed company that has raised $56 million USD from SBI Holdings, Ripple, and other investors focused on banking, FinTech, and blockchain. BRD's crypto apps are available for both iOS and Android in 170 countries.
With over 5 million customers worldwide, BRD has accumulated an estimated $6 billion USD of crypto assets under protection and is reportedly one of the fastest-growing blockchain-enabled finance apps for everyday consumers. The BRD token is a loyalty and rewards token that enables discounted trades and other loyalty and rewards within the BRD app.
Stats
Public Functions
10
Event Types
5
Code Size
9,728 bytes
Library Use
Uses SafeMath for uint256.
Events (5) keyboard_arrow_up
Functions
transferOwnership keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Requirements help
One or more of the following:
-
owner
must be equal to
the sender's address
- ORmintingFinished must be true
Source Code
function transfer(address _to, uint256 _value) public returns (bool) {
require(mintingFinished || msg.sender == owner);
return super.transfer(_to, _value);
}
allowance keyboard_arrow_up
transferFrom keyboard_arrow_up
Requirements help
One or more of the following:
-
owner
must be equal to
the sender's address
- ORmintingFinished must be true
Source Code
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
require(mintingFinished || msg.sender == owner);
return super.transferFrom(_from, _to, _value);
}
approve keyboard_arrow_up
Source Code
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
increaseApproval keyboard_arrow_up
Source Code
function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
decreaseApproval keyboard_arrow_up
Source Code
function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
uint oldValue = allowed[msg.sender][_spender];
if (_subtractedValue > oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
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) {
totalSupply = totalSupply.add(_amount);
balances[_to] = balances[_to].add(_amount);
Mint(_to, _amount);
Transfer(address(0), _to, _amount);
return true;
}