LibreCash token contract.
/contracts/token/LibreCash.sol

event

Approval 8c5be1e5

inputs0addressowner
inputs1addressspender
inputs2uint256value
event

Burn cc16f5db

inputs0addressburner
inputs1uint256value
event

Mint 0f6798a5

inputs0addressto
inputs1uint256amount
event

MintFinished ae5184fb

event

OwnershipTransferred 8be0079c

inputs0addresspreviousOwner
inputs1addressnewOwner
event

Transfer ddf252ad

inputs0addressfrom
inputs1addressto
inputs2uint256value
function, constant

allowance dd62ed3e

Function to check the amount of tokens that an owner allowed to a spender.

inputs0address_owner

address The address which owns the funds.

inputs1address_spender

address The address which will spend the funds.

outputs0uint256
function

approve 095ea7b3

Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729

inputs0address_spender

The address which will spend the funds.

inputs1uint256_value

The amount of tokens to be spent.

function, constant

balanceOf 70a08231

Gets the balance of the specified address.

inputs0address_owner

The address to query the the balance of.

outputs0uint256balance
function

burn 42966c68

Burns a specific amount of tokens.

inputs0uint256_value

The amount of token to be burned.

function

claimOwnership 4e71e0c8

Allows the pendingOwner address to finalize the transfer.

function, constant

decimals 313ce567

function

decreaseApproval 66188463

Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To decrement allowed value is better to use this function to avoid 2 calls (and wait until the first transaction is mined) From MonolithDAO Token.sol

inputs0address_spender

The address which will spend the funds.

inputs1uint256_subtractedValue

The amount of tokens to decrease the allowance by.

function

finishMinting 7d64bcb4

Function to stop minting new tokens.

outputs0bool
function

increaseApproval d73dd623

Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To increment allowed value is better to use this function to avoid 2 calls (and wait until the first transaction is mined) From MonolithDAO Token.sol

inputs0address_spender

The address which will spend the funds.

inputs1uint256_addedValue

The amount of tokens to increase the allowance by.

function

mint 40c10f19

Function to mint tokens

inputs0address_to

The address that will receive the minted tokens.

inputs1uint256_amount

The amount of tokens to mint.

outputs0bool
function, constant

mintingFinished 05d2035b

function, constant

name 06fdde03

function, constant

owner 8da5cb5b

function, constant

pendingOwner e30c3978

function, constant

symbol 95d89b41

function, constant

totalSupply 18160ddd

total number of tokens in existence

function

transfer a9059cbb

transfer token for a specified address

inputs0address_to

The address to transfer to.

inputs1uint256_value

The amount to be transferred.

function

transferFrom 23b872dd

Transfer tokens from one address to another

inputs0address_from

address The address which you want to send tokens from

inputs1address_to

address The address which you want to transfer to

inputs2uint256_value

uint256 the amount of tokens to be transferred

function

transferOwnership f2fde38b

Allows the current owner to set the pendingOwner address.

inputs0addressnewOwner

The address to transfer ownership to.