mirror of
https://github.com/status-im/topic-democracy.git
synced 2025-02-25 08:35:14 +00:00
lint and interface abstraction
This commit is contained in:
parent
c2d3928ebe
commit
1386334b57
@ -28,11 +28,13 @@ pragma solidity ^0.4.6;
|
|||||||
import "../common/Controlled.sol";
|
import "../common/Controlled.sol";
|
||||||
import "./TokenController.sol";
|
import "./TokenController.sol";
|
||||||
import "./ApproveAndCallFallBack.sol";
|
import "./ApproveAndCallFallBack.sol";
|
||||||
|
import "./MiniMeTokenInterface.sol";
|
||||||
|
import "./MiniMeTokenFactory.sol";
|
||||||
|
|
||||||
/// @dev The actual token contract, the default controller is the msg.sender
|
/// @dev The actual token contract, the default controller is the msg.sender
|
||||||
/// that deploys the contract, so usually this token will be deployed by a
|
/// that deploys the contract, so usually this token will be deployed by a
|
||||||
/// token controller contract, which Giveth will call a "Campaign"
|
/// token controller contract, which Giveth will call a "Campaign"
|
||||||
contract MiniMeToken is Controlled {
|
contract MiniMeToken is MiniMeTokenInterface, Controlled {
|
||||||
|
|
||||||
string public name; //The Token's name: e.g. DigixDAO Tokens
|
string public name; //The Token's name: e.g. DigixDAO Tokens
|
||||||
uint8 public decimals; //Number of decimals of the smallest unit
|
uint8 public decimals; //Number of decimals of the smallest unit
|
||||||
|
97
contracts/token/MiniMeTokenInterface.sol
Normal file
97
contracts/token/MiniMeTokenInterface.sol
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
pragma solidity ^0.4.17;
|
||||||
|
|
||||||
|
import "./ERC20Token.sol";
|
||||||
|
|
||||||
|
contract MiniMeTokenInterface is ERC20Token {
|
||||||
|
|
||||||
|
|
||||||
|
/// @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);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user