129 lines
5.4 KiB
Solidity
129 lines
5.4 KiB
Solidity
pragma solidity ^0.4.17;
|
|
|
|
contract MiniMeTokenInterface {
|
|
|
|
event Transfer(address indexed _from, address indexed _to, uint256 _value);
|
|
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
|
|
|
|
/// @dev This function makes it easy to get the total number of tokens
|
|
/// @return The total number of tokens
|
|
function totalSupply() public constant returns (uint);
|
|
|
|
/// @param _owner The address from which the balance will be retrieved
|
|
/// @return The balance
|
|
function balanceOf(address _owner) public constant returns (uint256 balance);
|
|
|
|
/// @notice send `_value` token to `_to` from `msg.sender`
|
|
/// @param _to The address of the recipient
|
|
/// @param _value The amount of token to be transferred
|
|
/// @return Whether the transfer was successful or not
|
|
function transfer(address _to, uint256 _value) public returns (bool success);
|
|
|
|
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
|
|
/// @param _from The address of the sender
|
|
/// @param _to The address of the recipient
|
|
/// @param _value The amount of token to be transferred
|
|
/// @return Whether the transfer was successful or not
|
|
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);
|
|
|
|
/// @notice `msg.sender` approves `_spender` to spend `_value` tokens
|
|
/// @param _spender The address of the account able to transfer the tokens
|
|
/// @param _value The amount of tokens to be approved for transfer
|
|
/// @return Whether the approval was successful or not
|
|
function approve(address _spender, uint256 _value) public returns (bool success);
|
|
|
|
/// @param _owner The address of the account owning tokens
|
|
/// @param _spender The address of the account able to transfer the tokens
|
|
/// @return Amount of remaining tokens allowed to spent
|
|
function allowance(address _owner, address _spender) public constant returns (uint256 remaining);
|
|
|
|
/// @notice `msg.sender` approves `_spender` to send `_amount` tokens on
|
|
/// its behalf, and then a function is triggered in the contract that is
|
|
/// being approved, `_spender`. This allows users to use their tokens to
|
|
/// interact with contracts in one function call instead of two
|
|
/// @param _spender The address of the contract able to transfer the tokens
|
|
/// @param _amount The amount of tokens to be approved for transfer
|
|
/// @return True if the function call was successful
|
|
function approveAndCall(
|
|
address _spender,
|
|
uint256 _amount,
|
|
bytes _extraData
|
|
)
|
|
public
|
|
returns (bool success);
|
|
|
|
|
|
/// @notice Creates a new clone token with the initial distribution being
|
|
/// this token at `_snapshotBlock`
|
|
/// @param _cloneTokenName Name of the clone token
|
|
/// @param _cloneDecimalUnits Number of decimals of the smallest unit
|
|
/// @param _cloneTokenSymbol Symbol of the clone token
|
|
/// @param _snapshotBlock Block when the distribution of the parent token is
|
|
/// copied to set the initial distribution of the new clone token;
|
|
/// if the block is zero than the actual block, the current block is used
|
|
/// @param _transfersEnabled True if transfers are allowed in the clone
|
|
/// @return The address of the new MiniMeToken Contract
|
|
function createCloneToken(
|
|
string _cloneTokenName,
|
|
uint8 _cloneDecimalUnits,
|
|
string _cloneTokenSymbol,
|
|
uint _snapshotBlock,
|
|
bool _transfersEnabled
|
|
)
|
|
public
|
|
returns(address);
|
|
|
|
/// @notice Generates `_amount` tokens that are assigned to `_owner`
|
|
/// @param _owner The address that will be assigned the new tokens
|
|
/// @param _amount The quantity of tokens generated
|
|
/// @return True if the tokens are generated correctly
|
|
function generateTokens(
|
|
address _owner,
|
|
uint _amount
|
|
)
|
|
public
|
|
returns (bool);
|
|
|
|
/// @notice Burns `_amount` tokens from `_owner`
|
|
/// @param _owner The address that will lose the tokens
|
|
/// @param _amount The quantity of tokens to burn
|
|
/// @return True if the tokens are burned correctly
|
|
function destroyTokens(
|
|
address _owner,
|
|
uint _amount
|
|
)
|
|
public
|
|
returns (bool);
|
|
|
|
|
|
/// @notice Enables token holders to transfer their tokens freely if true
|
|
/// @param _transfersEnabled True if transfers are allowed in the clone
|
|
function enableTransfers(bool _transfersEnabled) public;
|
|
|
|
|
|
/// @notice This method can be used by the controller to extract mistakenly
|
|
/// sent tokens to this contract.
|
|
/// @param _token The address of the token contract that you want to recover
|
|
/// set to 0 in case you want to extract ether.
|
|
function claimTokens(address _token) public;
|
|
|
|
/// @dev Queries the balance of `_owner` at a specific `_blockNumber`
|
|
/// @param _owner The address from which the balance will be retrieved
|
|
/// @param _blockNumber The block number when the balance is queried
|
|
/// @return The balance at `_blockNumber`
|
|
function balanceOfAt(
|
|
address _owner,
|
|
uint _blockNumber
|
|
)
|
|
public
|
|
constant
|
|
returns (uint);
|
|
|
|
/// @notice Total amount of tokens at a specific `_blockNumber`.
|
|
/// @param _blockNumber The block number when the totalSupply is queried
|
|
/// @return The total amount of tokens at `_blockNumber`
|
|
function totalSupplyAt(uint _blockNumber) public constant returns(uint);
|
|
|
|
|
|
|
|
} |