Gnosis Token
ERC20
This contract is an ERC20 token.
Name
Gnosis Token
Symbol
GNO
Decimals
18
Total Supply
10,000,000 GNO
About
link
description
Started in 2015, Gnosis is a decentralized prediction market built on the Ethereum protocol. Third-party developers will also be able to introduce their own services.
A prediction market utilizes user predictions to aggregate information about future events, Individuals will be able to create prediction markets for events, allowing users to buy shares of predicted events.
The platform employs a dual token structure: Gnosis (GNO) and OWL. GNO are ERC-20 tokens that the team sold during their ICO. OWL tokens are earned by staking GNO. The amount of OWL received is dependent on the length of the lock period as well as the total supply of OWL tokens in the market.
The team is led by Martin Köppelmann (CEO), Stefan George (CTO), and Dr. Friederike Ernst (COO).
Stats
Public Functions
6
Event Types
2
Code Size
5,303 bytes
Events (2) keyboard_arrow_up
Functions
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address _to, uint256 _value)
public
returns (bool)
{
if (balances[msg.sender] < _value) {
// Balance too low
throw;
}
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
transferFrom keyboard_arrow_up
Requirements help
Source Code
function transferFrom(address _from, address _to, uint256 _value)
public
returns (bool)
{
if (balances[_from] < _value || allowed[_from][msg.sender] < _value) {
// Balance or allowance too low
throw;
}
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
}
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;
}