Kucoin Shares
About
link
description
Kucoin Shares (KCS) is an exchange based token and native currency of the Kucoin crypto exchange. Holders of the token are able to reap the rewards from the success of the exchange as 50% of its overall trading fee revenue is shared with holders through the tokens. Rewards, received in the form of dividends, are proportionate to the amount of Kucoin Shares one holds.
Stats
Public Functions
2
Event Types
2
Code Size
2,857 bytes
Events (2) keyboard_arrow_up
Functions
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address _to, uint256 _value) {
_transfer(msg.sender, _to, _value);
}
burn keyboard_arrow_up
Requirements help
Source Code
function burn(uint256 _value) returns (bool success) {
require (balanceOf[msg.sender] > _value); // Check if the sender has enough
balanceOf[msg.sender] -= _value; // Subtract from the sender
totalSupply -= _value; // Updates totalSupply
Burn(msg.sender, _value);
return true;
}