Blockwell

Credo Token

ERC20

This contract is an ERC20 token.

Name Credo Token
Symbol CREDO
Decimals 18
Total Supply 1,374,729,257 CREDO

About

Stats

Public Functions 8
Event Types 4
Code Size 6,340 bytes

Events (4) keyboard_arrow_up

Approval Event

Parameters help
_owner
address help
_spender
address help
_value
uint256 help

CreateCredo Event

Parameters help
_to
address help
_value
uint256 help

LogRefund Event

Parameters help
_to
address help
_value
uint256 help

Transfer Event

Parameters help
_from
address help
_to
address help
_value
uint256 help

name Constant

string help
Credo Token

symbol Constant

string help
CREDO

decimals Constant

uint256 help
18

credosReserveAllocation Constant

uint256 help
1350 * UNKNOWN VALUE * UNKNOWN VALUE

tokenCreationCap Constant

uint256 help
1500 * UNKNOWN VALUE * UNKNOWN VALUE

tokenCreationMin Constant

uint256 help
1355 * UNKNOWN VALUE * UNKNOWN VALUE

credoEthExchangeRate Constant

uint256 help
100000

version Variable

string help

etherProceedsAccount Variable

address help

credosReserveAccount Variable

address help

isFinalized Variable

bool help

fundingStartBlock Variable

uint256 help

fundingEndBlock Variable

uint256 help

totalSupply Variable

uint256 help

balances Variable

mapping(address => uint256) help
Internal Variable

allowed Variable

mapping(address => mapping(address => uint256)) help
Internal Variable

Functions Expand All Collapse All

Parameters help

Name Type
_owner
address help

Properties

Visibility help public
Mutability help constant
Source Code
function balanceOf(address _owner) constant returns (uint256 balance) {
  return balances[_owner];
}

Parameters help

Name Type
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function transfer(address _to, uint256 _value) returns (bool success) {
  if (balances[msg.sender] >= _value && _value > 0) {
    balances[msg.sender] -= _value;
    balances[_to] += _value;
    Transfer(msg.sender, _to, _value);
    return true;
  } else {
    return false;
  }
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) returns (bool success) {
  if (
    balances[_from] >= _value &&
    allowed[_from][msg.sender] >= _value &&
    _value > 0
  ) {
    balances[_to] += _value;
    balances[_from] -= _value;
    allowed[_from][msg.sender] -= _value;
    Transfer(_from, _to, _value);
    return true;
  } else {
    return false;
  }
}

Parameters help

Name Type
_spender
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function approve(address _spender, uint256 _value) returns (bool success) {
  allowed[msg.sender][_spender] = _value;
  Approval(msg.sender, _spender, _value);
  return true;
}

Parameters help

Name Type
_owner
address help
_spender
address help

Properties

Visibility help public
Mutability help constant
Source Code
function allowance(address _owner, address _spender)
  constant
  returns (uint256 remaining)
{
  return allowed[_owner][_spender];
}

createTokens keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help payable
Source Code
function createTokens() external payable {
  if (isFinalized) throw;
  if (block.number < fundingStartBlock) throw;
  if (block.number > fundingEndBlock) throw;
  if (msg.value == 0) throw;

  uint256 tokens = safeMult(msg.value, credoEthExchangeRate);
  uint256 checkedSupply = safeAdd(totalSupply, tokens);

  if (tokenCreationCap < checkedSupply) throw;

  totalSupply = checkedSupply;
  balances[msg.sender] += tokens;
  CreateCredo(msg.sender, tokens);
}

finalize keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function finalize() external {
  if (isFinalized) throw;
  if (msg.sender != etherProceedsAccount) throw;
  if (totalSupply < tokenCreationMin) throw;
  if (block.number <= fundingEndBlock && totalSupply != tokenCreationCap) throw;

  isFinalized = true;

  if (!etherProceedsAccount.send(this.balance)) throw;
}

refund keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function refund() external {
  if (isFinalized) throw;
  if (block.number <= fundingEndBlock) throw;
  if (totalSupply >= tokenCreationMin) throw;
  if (msg.sender == credosReserveAccount) throw;
  uint256 credoVal = balances[msg.sender];
  if (credoVal == 0) throw;
  balances[msg.sender] = 0;
  totalSupply = safeSubtract(totalSupply, credoVal);
  uint256 ethVal = credoVal / credoEthExchangeRate;
  LogRefund(msg.sender, ethVal);
  if (!msg.sender.send(ethVal)) throw;
}

Internal Functions Expand All Collapse All

Internal functions are parts of the contract that can't be used directly, but instead are used by the public functions listed above.

internal SafeMath.assert keyboard_arrow_up

Parameters help

Name Type
assertion
bool help

Properties

Visibility help internal
Mutability help transaction

Requirements help

Source Code
function assert(bool assertion) internal {
  if (!assertion) {
    throw;
  }
}

internal SafeMath.safeAdd keyboard_arrow_up

Parameters help

Name Type
x
uint256 help
y
uint256 help

Properties

Visibility help internal
Mutability help transaction
Source Code
function safeAdd(uint256 x, uint256 y) internal returns (uint256) {
  uint256 z = x + y;
  assert((z >= x) && (z >= y));
  return z;
}

internal SafeMath.safeSubtract keyboard_arrow_up

Parameters help

Name Type
x
uint256 help
y
uint256 help

Properties

Visibility help internal
Mutability help transaction

Requirements help

Source Code
function safeSubtract(uint256 x, uint256 y) internal returns (uint256) {
  assert(x >= y);
  uint256 z = x - y;
  return z;
}

internal SafeMath.safeMult keyboard_arrow_up

Parameters help

Name Type
x
uint256 help
y
uint256 help

Properties

Visibility help internal
Mutability help transaction

Requirements help

One or more of the following:
Source Code
function safeMult(uint256 x, uint256 y) internal returns (uint256) {
  uint256 z = x * y;
  assert((x == 0) || (z / x == y));
  return z;
}