ERC20
This contract is an ERC20 token.
Name
Egretia
Symbol
EGT
Decimals
18
Total Supply
8,000,000,000 EGT
About
link
Egretia (EGT) is a cryptocurrency token and operates on the Ethereum platform. Egretia has a current supply of 8,000,000,000 with 4,218,701,581.868 in circulation. The last known price of Egretia is $0.001459 USD and is down -0.21% over the last 24 hours. It is currently trading on 28 active market(s) with $1,054,464.807 traded over the last 24 hours. More information can be found at http://egretia.io/.
Stats
Public Functions
10
Event Types
5
Code Size
8,973 bytes
Events (5) keyboard_arrow_up
Functions
transferOwnership keyboard_arrow_up
pause keyboard_arrow_up
unpause 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);
}