MediShares Token
ERC20
This contract is an ERC20 token.
                Name
                
                        MediShares Token
                
            
            
                Symbol
                MDS
            
            
                Decimals
                18
            
            
                Total Supply
                2,000,000,000 MDS
            
            
            
        
                About
                    
                        link
                    
                    
                        description
                    
                     
            
            
                MediShares (MDS) is a cryptocurrency and operates on the Ethereum platform. MediShares has a current supply of 2,000,000,000 with 1,310,099,624.0728 in circulation. The last known price of MediShares is 0.0043419 USD and is down -1.68 over the last 24 hours. It is currently trading on 8 active market(s) with $815,922.14 traded over the last 24 hours. More information can be found at http://www.medishares.org/.
            
        Stats
                Public Functions
                7
            
            
                Event Types
                2
            
            
                Code Size
                7,191 bytes
            
        State Variables (7) keyboard_arrow_up
Functions
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Source Code
function transfer(address _to, uint256 _value) returns (bool success) {
  //Default assumes totalSupply can't be over max (2^256 - 1).
  //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
  //Replace the if with this one instead.
  //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
  if (balances[msg.sender] >= _value && _value > 0) {
    balances[msg.sender] -= _value;
    balances[_to] += _value;
    Transfer(msg.sender, _to, _value);
    return true;
  } else {
    return false;
  }
}
transferFrom keyboard_arrow_up
Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) returns (bool success) {
  //same as above. Replace this line with the following if you want to protect against wrapping uints.
  //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
  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;
  }
}
approve keyboard_arrow_up
Source Code
function approve(address _spender, uint256 _value) returns (bool success) {
  allowed[msg.sender][_spender] = _value;
  Approval(msg.sender, _spender, _value);
  return true;
}
allowance keyboard_arrow_up
constructor keyboard_arrow_up
approveAndCall keyboard_arrow_up
Requirements help
the result of calling undefined with UNKNOWN ARGUMENT, the sender's address, _value, this, _extraData must not be true
                    Source Code
function approveAndCall(
  address _spender,
  uint256 _value,
  bytes _extraData
) returns (bool success) {
  allowed[msg.sender][_spender] = _value;
  Approval(msg.sender, _spender, _value);
  //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.
  //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
  //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
  if (
    !_spender.call(
      bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))),
      msg.sender,
      _value,
      this,
      _extraData
    )
  ) {
    throw;
  }
  return true;
}
Internal Functions
Internal functions are parts of the contract that can't be used directly, but instead are used by the public functions listed above.
 
         
    



