ERC20
This contract is an ERC20 token.
Name
COS
Symbol
COS
Decimals
18
Total Supply
200,000,000 COS
About
Stats
Public Functions
14
Event Types
2
Code Size
14,965 bytes
Events (2) keyboard_arrow_up
Functions
totalSupply keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address recipient, uint256 amount) public returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
allowance keyboard_arrow_up
burn keyboard_arrow_up
burnFrom keyboard_arrow_up
Requirements help
Source Code
function burnFrom(address account, uint256 amount) public {
_burnFrom(account, amount);
}
approve keyboard_arrow_up
Requirements help
Source Code
function approve(address spender, uint256 value) public returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
transferFrom keyboard_arrow_up
Requirements help
Source Code
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
return true;
}
increaseAllowance keyboard_arrow_up
Requirements help
Source Code
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
return true;
}
decreaseAllowance keyboard_arrow_up
Requirements help
Source Code
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
return true;
}
airdrop keyboard_arrow_up
Requirements help
Source Code
function airdrop(address[] calldata _recipients, uint256[] calldata _values) external returns (bool) {
require(_recipients.length == _values.length, "Inconsistent data lengths");
uint256 senderBalance = _balances[msg.sender];
uint256 length = _values.length;
for (uint256 i = 0; i < length; i++) {
uint256 value = _values[i];
address to = _recipients[i];
require(senderBalance >= value, "Insufficient Balance");
require(to != address(0), "Address is Null");
if (msg.sender != _recipients[i]) {
transfer(to, value);
}
}
return true;
}