DAGT Crypto Platform
ERC20
This contract is an ERC20 token.
Name
DAGT Crypto Platform
Symbol
DAGT
Decimals
18
Total Supply
100,100,000 DAGT
About
link
description
Digital Asset Guarantee Token (DAGT) is a cryptocurrency token and operates on the Ethereum platform. Digital Asset Guarantee Token has a current supply of 100,100,000 with 33,100,000 in circulation. The last known price of Digital Asset Guarantee Token is $0.126623 USD and is down -0.28% over the last 24 hours. It is currently trading on 1 active market(s) with $0 traded over the last 24 hours. More information can be found at https://www.dagt.io/.
Stats
Public Functions
16
Event Types
8
Code Size
12,058 bytes
Events (8) keyboard_arrow_up
Functions
transferOwnership keyboard_arrow_up
pause keyboard_arrow_up
unpause keyboard_arrow_up
totalSupply keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transfer(_to, _value);
}
allowance keyboard_arrow_up
transferFrom keyboard_arrow_up
Requirements help
Source Code
function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transferFrom(_from, _to, _value);
}
approve keyboard_arrow_up
Source Code
function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
return super.approve(_spender, _value);
}
increaseApproval keyboard_arrow_up
Source Code
function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
return super.increaseApproval(_spender, _addedValue);
}
decreaseApproval keyboard_arrow_up
Source Code
function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
return super.decreaseApproval(_spender, _subtractedValue);
}
mint keyboard_arrow_up
Modifiers help
onlyMintMasterOrOwner checks for the following:
One or more of the following:
-
owner
must be equal to
the sender's address
- OR
mintMaster
must be equal to
the sender's address
canMint checks for the following:
Source Code
function mint(address _to, uint256 _amount) onlyMintMasterOrOwner canMint public returns (bool) {
address oldOwner = owner;
owner = msg.sender;
bool result = super.mint(_to, _amount);
owner = oldOwner;
return result;
}
finishMinting keyboard_arrow_up
transferMintMaster keyboard_arrow_up
mintToAddresses keyboard_arrow_up
Modifiers help
onlyMintMasterOrOwner checks for the following:
One or more of the following:
-
owner
must be equal to
the sender's address
- OR
mintMaster
must be equal to
the sender's address
canMint checks for the following:
Source Code
function mintToAddresses(address[] addresses, uint256 amount) public onlyMintMasterOrOwner canMint {
for (uint i = 0; i < addresses.length; i++) {
require(mint(addresses[i], amount));
}
}
mintToAddressesAndAmounts keyboard_arrow_up
Modifiers help
onlyMintMasterOrOwner checks for the following:
One or more of the following:
-
owner
must be equal to
the sender's address
- OR
mintMaster
must be equal to
the sender's address
canMint checks for the following:
Requirements help
Source Code
function mintToAddressesAndAmounts(address[] addresses, uint256[] amounts) public onlyMintMasterOrOwner canMint {
require(addresses.length == amounts.length);
for (uint i = 0; i < addresses.length; i++) {
require(mint(addresses[i], amounts[i]));
}
}