Bitcoin Forum

Alternate cryptocurrencies => Tokens (Altcoins) => Topic started by: SHALARIBA on April 29, 2018, 07:00:21 AM



Title: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: SHALARIBA on April 29, 2018, 07:00:21 AM
BITCOINTALK(RUS) (https://bitcointalk.org/index.php?topic=3433221.0)

WebSite (https://cryptohoma.com)|Etherscan.io (https://etherscan.io/token/0xa0c0abf5fb0db10f208064fcbd651634dea49ac5) |GitHub (https://gist.github.com/Ingco/150244478f0b29336c80d415c2472b77) |Ethplorer.io (https://ethplorer.io/address/0xa0c0abf5fb0db10f208064fcbd651634dea49ac5) |Telegram (https://t.me/cryptohoma_chat) |Twitter (https://twitter.com/cryptohoma) |Golos.io (https://golos.io)

Hi guys!

We have successfully completed PRE-SALE having collected 12,5 ETH and ready to ICO!
Start ICO written on 30.04.18 will last 1 month before 30.05.18 ( will be held in two stages )

Step 1.  30.04.18 - 15.05.18 ( 1 ETH = 90 909 HOMA )
Step 2.  15.05.18 - 30.05.18 ( 1 ETH = 66 667 HOMA )




CRYPTOHOMA - the project which will bring together all the services useful to the crypto community in Telegram messenger.

1. Bot for the exchange of cryptocurrencies
2. Bot (shop) with payment by cryptocurrencies
3. Trading school for beginners
4. Custom project development
5. Adding news publications (channels / chats)
and other

The same coin holders HOMA will get a dividend from every transactions users into the service!



0xa0c0abf5fb0db10f208064fcbd651634dea49ac5 (https://etherscan.io/address/0xa0c0abf5fb0db10f208064fcbd651634dea49ac5)

Code:
pragma solidity ^0.4.13;

contract Ownable {
  address public owner;


  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }

}

contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    require(_value <= balances[msg.sender]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    address burner = msg.sender;
    balances[burner] = balances[burner].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(burner, _value);
    emit Transfer(burner, address(0), _value);
  }
}

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev 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
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }

  /**
   * @dev 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
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev 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
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}

contract CryptohomaToken is StandardToken, MintableToken, BurnableToken {
    
    string public name = "CryptohomaToken";
    string public symbol = "HOMA";
    uint public decimals = 18;

    using SafeMath for uint256;

    // Amount of wei raised
    uint256 public weiRaised;

    uint start = 1525132801;

    uint period = 31;

    uint256 public totalSupply = 50000000 * 1 ether;

    uint256 public totalMinted;

    uint256 public presale_tokens = 1562500 * 1 ether;
    uint public bounty_percent = 5;
    uint public airdrop_percent = 2;
    uint public organizers_percent = 15;

    address public multisig = 0xcBF6E568F588Fc198312F9587e660CbdF64DB262;
    address public presale = 0x42d8388E55A527Fa84f29A4D8768B923Dd8628E3;
    address public bounty = 0x27986d9CB66Dc4b60911D1E10f2DB6Ca3459A075;
    address public airdrop = 0xE0D7bd9a4ce64049A187b0097f86F6ae49bD19b5;
    address public organizer1 = 0x4FE7F4AA0d221827112090Ad7B90c7D8B9c08cc5;
    address public organizer2 = 0x6A7fd6308791B198739679F571bD981F7aA3a239;
    address public organizer3 = 0xCb04445D08830db4BFEB8F94fb71422C2FBAB17F;
    address public organizer4 = 0x4A44960b49816b8cB77de28FCB512AD903d62FEb;
    address public organizer5 = 0xEB27178C637336c3A6243aA312C3f197B54155f1;
    address public organizer6 = 0x84ae1B4E8c008dCbEfF91A923EA216a5fA718e25;
    address public organizer7 = 0x6de044c56D91b880C73C8e667C37A2B2A977FC3a;
    address public organizer8 = 0x5b3a08DaAcC4167e9432dCF56D3fcd147006192c;

    uint256 public rate = 0.000011 * 1 ether;
    uint256 public rate2 = 0.000015 * 1 ether;

    function CryptohomaToken() public {

        totalMinted = totalMinted.add(presale_tokens);
        super.mint(presale, presale_tokens);

        uint256 tokens = totalSupply.mul(bounty_percent).div(100);
        totalMinted = totalMinted.add(tokens);
        super.mint(bounty, tokens);

        tokens = totalSupply.mul(airdrop_percent).div(100);
        totalMinted = totalMinted.add(tokens);
        super.mint(airdrop, tokens);

        tokens = totalSupply.mul(organizers_percent).div(100);
        totalMinted = totalMinted.add(tokens);
        tokens = tokens.div(8);
        super.mint(organizer1, tokens);
        super.mint(organizer2, tokens);
        super.mint(organizer3, tokens);
        super.mint(organizer4, tokens);
        super.mint(organizer5, tokens);
        super.mint(organizer6, tokens);
        super.mint(organizer7, tokens);
        super.mint(organizer8, tokens);

    }


    /**
    * Event for token purchase logging
    * @param purchaser who paid for the tokens
    * @param beneficiary who got the tokens
    * @param value weis paid for purchase
    * @param amount amount of tokens purchased
    */
    event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount);

    /**
    * @dev fallback function ***DO NOT OVERRIDE***
    */
    function () external payable {
        buyTokens(msg.sender);
    }

    /**
    * @dev low level token purchase ***DO NOT OVERRIDE***
    * @param _beneficiary Address performing the token purchase
    */
    function buyTokens(address _beneficiary) public payable {

        uint256 weiAmount = msg.value;
        _preValidatePurchase(_beneficiary, weiAmount);

        // calculate token amount to be created
        uint256 tokens = _getTokenAmount(weiAmount);

        // update state
        weiRaised = weiRaised.add(weiAmount);

        _processPurchase(_beneficiary, tokens);
        emit TokenPurchase(msg.sender, _beneficiary, weiAmount, tokens);

        _forwardFunds();
    }

    /**
    * @dev Override to extend the way in which ether is converted to tokens.
    * @param _weiAmount Value in wei to be converted into tokens
    * @return Number of tokens that can be purchased with the specified _weiAmount
    */
    function _getTokenAmount(uint256 _weiAmount) internal view returns (uint256) {
        return _weiAmount / rate * 1 ether;
    }

    /**
    * @dev Validation of an incoming purchase. Use require statements to revert state when conditions are not met. Use super to concatenate validations. ***ПEPEOПPEДEЛEHO***
    * @param _beneficiary Address performing the token purchase
    * @param _weiAmount Value in wei involved in the purchase
    */
    function _preValidatePurchase(address _beneficiary, uint256 _weiAmount) internal {
        require(_beneficiary != address(0));
        require(_weiAmount != 0);

        require(now > start && now < start + period * 1 days);

        if (now > start.add(15 * 1 days)) {
            rate = rate2;
        }

        uint256 tokens = _getTokenAmount(_weiAmount);
        totalMinted = totalMinted.add(tokens);

        require(totalSupply >= totalMinted);

    }

    /**
    * @dev Source of tokens. Override this method to modify the way in which the crowdsale ultimately gets and sends its tokens.
    * @param _beneficiary Address performing the token purchase
    * @param _tokenAmount Number of tokens to be emitted
    */
    function _deliverTokens(address _beneficiary, uint256 _tokenAmount) internal {
        super.transfer(_beneficiary, _tokenAmount);
    }

    /**
    * @dev Executed when a purchase has been validated and is ready to be executed. Not necessarily emits/sends tokens.
    * @param _beneficiary Address receiving the tokens
    * @param _tokenAmount Number of tokens to be purchased
    */
    function _processPurchase(address _beneficiary, uint256 _tokenAmount) internal {
        _deliverTokens(_beneficiary, _tokenAmount);
    }

    /**
    * @dev Determines how ETH is stored/forwarded on purchases.
    */
    function _forwardFunds() internal {
        multisig.transfer(msg.value);
    }

}

Current exchanges


https://cryptohoma.com/bitcointalk/ico/eth.png (https://etherdelta.com/#0xa0c0abf5fb0db10f208064fcbd651634dea49ac5-ETH)https://cryptohoma.com/bitcointalk/ico/waves1.png (https://beta.wavesplatform.com)




Thank you. Waiting for your feedback and suggestions!


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: Somz1 on April 29, 2018, 07:04:05 AM
How do you Integrate all these features in Telegram, and does the erc 20 token function in Telegram, like a bot wallet or something I mean


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: SHALARIBA on April 29, 2018, 07:12:59 AM
How do you Integrate all these features in Telegram, and does the erc 20 token function in Telegram, like a bot wallet or something I mean

Hi! All functions will work on the basis of Telegram (Bot). And will be integrated via API


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: Crypto-capitalist on April 29, 2018, 07:22:31 AM
But I think that is TON for Telegramm.


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: queenandking12193 on April 29, 2018, 07:25:30 AM
Interesting project. I will be waiting for more information, let's see another comment this project before enjoying this  & how this project will turn out.


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: snikers3553 on April 29, 2018, 07:30:39 AM
where can I get your token or pre-sale is already finished?


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: SHALARIBA on April 29, 2018, 07:37:02 AM
Interesting project. I will be waiting for more information, let's see another comment this project before enjoying this  & how this project will turn out.
Thank You


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: SHALARIBA on April 29, 2018, 07:38:10 AM
where can I get your token or pre-sale is already finished?
Yes, the PRE-SALE is over! ICO will start tomorrow 30.04.18


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: sarfield on April 29, 2018, 07:38:41 AM
Homa token was already doing pre-sale and now preparing ico for tomorrow April 30, ico lasts a month with 2 stages, hoping the trip can be smooth and reach the target.


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: SHALARIBA on April 29, 2018, 07:40:42 AM
Homa token was already doing pre-sale and now preparing ico for tomorrow April 30, ico lasts a month with 2 stages, hoping the trip can be smooth and reach the target.
Thanks for your support!


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: CTO@MyBitMine on April 29, 2018, 09:32:47 AM
Interesting project. I will follow the news


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: foppertc on April 29, 2018, 09:51:40 AM
The project is quite interesting and the idea is new, but I can not quite understand how all this will work? ???


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: SHALARIBA on April 29, 2018, 10:02:27 AM
The project is quite interesting and the idea is new, but I can not quite understand how all this will work? ???
Software integration via API 8)


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: MertinLyter on April 29, 2018, 10:29:20 AM
I have a few questions about this project.
1. Why did you decide to conduct ICO on the platform of the Etherium? After all, there are several analogues, for example NEO
2. What will be the discount for the purchase of tokens in the 1st round of ICO?


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: SHALARIBA on April 29, 2018, 10:35:31 AM
I have a few questions about this project.
1. Why did you decide to conduct ICO on the platform of the Etherium? After all, there are several analogues, for example NEO
2. What will be the discount for the purchase of tokens in the 1st round of ICO?
1. Ethereum is a more flexible platform and it deserves more trust from us!
2. Discount in the first stage of ICO will be 73.3%


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: HerousNeo on April 29, 2018, 10:59:56 AM
I have a few questions about this project.
1. Why did you decide to conduct ICO on the platform of the Etherium? After all, there are several analogues, for example NEO
2. What will be the discount for the purchase of tokens in the 1st round of ICO?
1. Ethereum is a more flexible platform and it deserves more trust from us!
2. Discount in the first stage of ICO will be 73.3%
I think that the choice of the ETH platform for ICO is completely justified, since this platform uses 95% of all projects, it is time-tested and completely safe.


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: CTO@MyBitMine on April 29, 2018, 11:30:20 AM
How will the funds collected at the ICO be distributed ?


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: MertinLyter on April 29, 2018, 11:50:21 AM
Tell me if there are alternative methods for buying tokens? It is not very convenient for me to work with ETH, are there ways to buy tokens for dollars, or with the help of another fiat currency?


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: SHALARIBA on April 29, 2018, 11:56:34 AM
How will the funds collected at the ICO be distributed ?
The collected funds will be distributed as follows.
65% for the development of the project and the remaining 35% for advertising and further purchase of tokens.


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: nafantc on April 29, 2018, 12:10:36 PM
Tell me if there are alternative methods for buying tokens? It is not very convenient for me to work with ETH, are there ways to buy tokens for dollars, or with the help of another fiat currency?
Most of the projects that are conducted by ICO on the ETH platform accept payments only in this crypto currency, these are the conditions of the platform, nothing can be done about it. ETH can be purchased on any crypto exchange or in any exchanger, it's very simple and fast.


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: MertinLyter on April 29, 2018, 12:40:45 PM
Tell me if there are alternative methods for buying tokens? It is not very convenient for me to work with ETH, are there ways to buy tokens for dollars, or with the help of another fiat currency?
Most of the projects that are conducted by ICO on the ETH platform accept payments only in this crypto currency, these are the conditions of the platform, nothing can be done about it. ETH can be purchased on any crypto exchange or in any exchanger, it's very simple and fast.
Thanks for the frank answer. I will not be stopped by this, I still intend to invest in the project, I just wanted to save and not pay a commission when exchanging Fiat in ETH.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: cryptonuim6 on April 30, 2018, 01:00:37 PM
Tell me, do you negotiate with cryptocurrency exchanges about listing your token? If conducted, with what exchanges?


Title: Re: ✅ [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: nafantc on April 30, 2018, 01:17:13 PM
Tell me, do you negotiate with cryptocurrency exchanges about listing your token? If conducted, with what exchanges?
HOMA is already trading on the WAVES decentralized exchange, at the moment negotiations are underway with Cryptopia, CoinExchange and YOBIT cryptocurrency exchanges.


Title: Re: ✅ [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: SHALARIBA on April 30, 2018, 01:27:25 PM
Tell me, do you negotiate with cryptocurrency exchanges about listing your token? If conducted, with what exchanges?
HOMA is already trading on the WAVES decentralized exchange, at the moment negotiations are underway with Cryptopia, CoinExchange and YOBIT cryptocurrency exchanges.
;D thank you for your help! I invite you to work with us in support


Title: Re: ✅ [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: IavanHer3 on April 30, 2018, 01:54:10 PM
Tell me, do you negotiate with cryptocurrency exchanges about listing your token? If conducted, with what exchanges?
HOMA is already trading on the WAVES decentralized exchange, at the moment negotiations are underway with Cryptopia, CoinExchange and YOBIT cryptocurrency exchanges.
You forgot to mention Exmo cryptocurrency exchange, which is also being negotiated with. This is a small exchange, because the more exchanges that trade coin HOMA, the better.


Title: Re: ✅ [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: BatistaCru on April 30, 2018, 02:18:23 PM
Tell me the first round, the ICO has already begun? On the website the date beginning April 30, how to buy tokens?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: CTO@MyBitMine on April 30, 2018, 04:00:55 PM
I see you have tokens for bounty company! How to become a member?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: SHALARIBA on April 30, 2018, 04:04:18 PM
I see you have tokens for bounty company! How to become a member?
Yes, write me in telegram @Norbeee


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: SHALARIBA on May 02, 2018, 10:13:10 AM
Current exchanges


https://cryptohoma.com/bitcointalk/ico/eth.png (https://etherdelta.com/#0xa0c0abf5fb0db10f208064fcbd651634dea49ac5-ETH)https://cryptohoma.com/bitcointalk/ico/waves1.png (https://beta.wavesplatform.com)


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: MertinLyter on May 02, 2018, 11:21:02 AM
Current exchanges


https://cryptohoma.com/bitcointalk/ico/eth.png (https://etherdelta.com/#0xa0c0abf5fb0db10f208064fcbd651634dea49ac5-ETH)https://cryptohoma.com/bitcointalk/ico/waves1.png (https://beta.wavesplatform.com)
It is immediately evident that the team is extremely interested in the project, because it has huge potential. etherdelta is a good exchange for young projects.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: IavanHer3 on May 02, 2018, 11:53:06 AM
I see you have tokens for bounty company! How to become a member?
If I correctly understood that bounty the company carries out the activity in the closed mode, probably owners of the project decided to work, only with qualitative advertizing which brings results.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: nafantc on May 02, 2018, 12:24:23 PM
I see you have tokens for bounty company! How to become a member?
If I correctly understood that bounty the company carries out the activity in the closed mode, probably owners of the project decided to work, only with qualitative advertizing which brings results.
And correctly make, that spend a closed bounty company. Tired of the cases when the participants of the bounty sharply merge all earned coins, in turn, the price of the coin falls.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: foppertc on May 02, 2018, 02:38:06 PM
Having studied the website, I saw that the project team is going to launch Airdrop. Can be to know more specifically on timing?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: DjonMnemonik on May 02, 2018, 03:22:55 PM
Having studied the website, I saw that the project team is going to launch Airdrop. Can be to know more specifically on timing?

I, too, observed, that the planned launch airdrop and on this earmarked for rewards 2% from issued by tokens. I want to be part of airdrop.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: mitrajkt on May 02, 2018, 03:54:24 PM
Where is the white paper? Or about team if any i can not see it, i still want to know more about homa token thank you dev. :D


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: BatistaCru on May 02, 2018, 04:18:39 PM
I wanted to ask a question about tokens: what will happen to tokens that will not be sold in the ICO process?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: martinryder321 on May 02, 2018, 04:20:21 PM
I will refer some people to follow this project and I really support this project because it can be seen from its development very well and hopefully many like this project and good luck


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: blumkinnn on May 02, 2018, 05:27:28 PM
I wanted to ask a question about tokens: what will happen to tokens that will not be sold in the ICO process?
The website makes it clear that all tokens allocated to ICO that cannot be sold will be completely destroyed.


Title: Re: ✅ [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: DjonMnemonik on May 02, 2018, 06:05:08 PM
I wanted to know if there were any negotiations with cryptocurrency exchanges like Binance or Polonies about listing your coins to them??


Title: Re: ✅ [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: HazardXXX on May 02, 2018, 06:13:44 PM
I wanted to know if there were any negotiations with cryptocurrency exchanges like Binance or Polonies about listing your coins to them??
If we consider the information that is located on the website of the project, the negotiations are conducted with YOBIT, EXMO, CoinExchange и CRYPTOPIA.


Title: Re: ✅ [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: nafantc on May 02, 2018, 07:30:39 PM
I wanted to know if there were any negotiations with cryptocurrency exchanges like Binance or Polonies about listing your coins to them??
If we consider the information that is located on the website of the project, the negotiations are conducted with YOBIT, EXMO, CoinExchange и CRYPTOPIA.
It is very good that the negotiations are conducted, the more exchanges will work with Homa, the more popularity will gain the project itself.


Title: Re: ✅ [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: MertinLyter on May 03, 2018, 06:31:56 AM
I wanted to know if there were any negotiations with cryptocurrency exchanges like Binance or Polonies about listing your coins to them??
If we consider the information that is located on the website of the project, the negotiations are conducted with YOBIT, EXMO, CoinExchange и CRYPTOPIA.
I think the most important exchange in this list is YOBIT, because it has quite large volumes of trading, this is the best exchange for young projects and their tokens.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: DjonMnemonik on May 03, 2018, 07:37:32 AM
I decided to buy some HOMA tokens for myself. Please tell me do I need to complete the verification of identity on the stock exchange of Yobit before you purchase tokens? I would like to understand how difficult it is to buy these tokens?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Flance12 on May 03, 2018, 07:41:53 AM
Interested


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: vensky on May 03, 2018, 07:48:14 AM
Did not get it, what is the ico goal, i mean soft cap and hard cap, number of $$$ please)))


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Vinxent on May 03, 2018, 08:26:30 AM
I think your project is very good and interesting, I'm sure your project will be great success, I also hope this project has a bright future  :)
egretia


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: MelnikBitok on May 03, 2018, 12:48:15 PM
Post your prices for the tokens. I understand, now began the first round of ICO, I am interested in the price of the token and 1 and in the 2nd round of sales. I would like to have time to get into the first round)


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: love.prettygirlc3 on May 03, 2018, 12:49:32 PM
I am interested in this project as well after reading the available information on first page . I think this project is very promising. I am stay tuned to wait for next information. Hope that the dev team will be open bounty


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: MertinLyter on May 03, 2018, 03:37:05 PM
I am interested in this project as well after reading the available information on first page . I think this project is very promising. I am stay tuned to wait for next information. Hope that the dev team will be open bounty
First of all, this project is interesting to me in terms of quick profit, because it is already almost functioning, you do not need to wait 2-3 years until the tokens begin to grow in the market.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: DjonMnemonik on May 03, 2018, 04:20:05 PM
I am interested in this project as well after reading the available information on first page . I think this project is very promising. I am stay tuned to wait for next information. Hope that the dev team will be open bounty
First of all, this project is interesting to me in terms of quick profit, because it is already almost functioning, you do not need to wait 2-3 years until the tokens begin to grow in the market.
I agree with you, everyone wants a quick profit, not to sit and hold tokens on the wallet for years. I have long invested in the project and I advise you to do the same.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: HerousNeo on May 03, 2018, 04:58:25 PM
Guys, what's the discount on the purchase token valid now? On the website you can see only the price of the token, but nepoymu what percentage discounts.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Kot Kotofej on May 03, 2018, 05:23:22 PM
I crawled through the entire website of the project, but never found how I can buy HOMA ? A very unusual situation:)


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Kolona on May 03, 2018, 05:33:10 PM
I crawled through the entire website of the project, but never found how I can buy HOMA ? A very unusual situation:)
You have not studied the site very carefully, here is a link to the instruction on the purchase of tokens.
cryptohoma.com/assets/byu_homa_waves_walet.eng.pdf


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: johnhg464 on May 03, 2018, 05:35:03 PM
Great project, with information constantly updated and lots of useful content for the enthusiasts. Thanks for sharing!


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: IavanHer3 on May 03, 2018, 07:41:08 PM
I crawled through the entire website of the project, but never found how I can buy HOMA ? A very unusual situation:)
Not there looking, pay attention to the FAQ section, there is absolutely all the information to get acquainted with the project as a whole.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: nafantc on May 03, 2018, 08:02:43 PM
It is a pity that I did not have time to get to the pre-sale, would save a lot of money, I had to invest now, it's good that I got to the first round of ICO. I liked this project very much when I studied all its prospects in the future.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: ZloiRediska on May 05, 2018, 12:32:39 PM
I see you have tokens for bounty company! How to become a member?
If I correctly understood that bounty the company carries out the activity in the closed mode, probably owners of the project decided to work, only with qualitative advertizing which brings results.
And correctly make, that spend a closed bounty company. Tired of the cases when the participants of the bounty sharply merge all earned coins, in turn, the price of the coin falls.
Do you really think that people who have received their coins for a company of generosity, merge them and thereby bring down the rate? You do not mind that the company generosity is allocated 2-3% of the collected funds. How can 2% of the funds bring down the rate of the remaining 98% ???


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: ARTiShock2008 on May 05, 2018, 01:52:07 PM
It is a pity that I did not have time to get to the pre-sale, would save a lot of money, I had to invest now, it's good that I got to the first round of ICO. I liked this project very much when I studied all its prospects in the future.
I agree. he missed the pre-sale. but I'm glad that I did not miss this project at all!


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Guardsman on May 05, 2018, 03:50:58 PM
Good idea for the project. I already saw the work of bots for exchanging cryptocurrency in a telegram. this is a great solution!


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Hanna_Money on May 05, 2018, 04:20:39 PM
But if you understand that the idea of the project to some extent overlaps with the concept of the project TON. It will not be easy to compete with such a giant, it is not easy, but it does not mean that it is impossible! )))


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: SHALARIBA on May 05, 2018, 07:00:43 PM
Good idea for the project. I already saw the work of bots for exchanging cryptocurrency in a telegram. this is a great solution!
Thank You! Our team thinks so too.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Maxpayne86 on May 06, 2018, 12:16:15 PM
Good idea for the project. I already saw the work of bots for exchanging cryptocurrency in a telegram. this is a great solution!
Thank You! Our team thinks so too.
The idea of a project obvious but as we see it will work good with connection to Telegram


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: gabriella on May 06, 2018, 02:18:24 PM
Good idea for the project. I already saw the work of bots for exchanging cryptocurrency in a telegram. this is a great solution!
Thank You! Our team thinks so too.
The idea of a project obvious but as we see it will work good with connection to Telegram
I can agree with you in your suggestion that project associated and working with telegram do it well


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Maxpayne86 on May 06, 2018, 03:52:38 PM
Post your prices for the tokens. I understand, now began the first round of ICO, I am interested in the price of the token and 1 and in the 2nd round of sales. I would like to have time to get into the first round)
This information is making me interesting too, waiting eagerly for the prices for next sale rounds


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: gabriella on May 06, 2018, 05:33:29 PM
Post your prices for the tokens. I understand, now began the first round of ICO, I am interested in the price of the token and 1 and in the 2nd round of sales. I would like to have time to get into the first round)
This information is making me interesting too, waiting eagerly for the prices for next sale rounds
Do you want to invest in this project also? I'm impressed by this project from good side and this team makes me confident in a good future after release


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Allexmdd on May 07, 2018, 10:16:52 AM
An interesting project, I have not seen such an idea, I am sure that the project will find its regular customers.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: foppertc on May 07, 2018, 10:28:47 AM
How much do you want to collect in the first round of ICO? what is hardcap and softcap? Interested in such information and the second round of ICO.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: MertinLyter on May 07, 2018, 10:37:12 AM
How much do you want to collect in the first round of ICO? what is hardcap and softcap? Interested in such information and the second round of ICO.
In the first round of the ISO they want to collect a little more than 400 ETH, and the second 561ETH. The figures are small compared to other projects, so I think that it will be possible to raise the necessary amount. We hope that the project will succeed.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: DjonMnemonik on May 07, 2018, 11:19:12 AM
Do you not think that spending 5% of tokens on the bounty of the company and 2% on the remuneration of the airdrop participants is a lot ?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: MelnikBitok on May 07, 2018, 11:58:24 AM
Do you not think that spending 5% of tokens on the bounty of the company and 2% on the remuneration of the airdrop participants is a lot ?
Many projects do not save on the bounty of the company, as it is advertising of the project, and advertising does not happen much.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: FaucetKING on May 07, 2018, 12:00:35 PM
I can see that HOMA team is going to list the coin in some good exchangers and i mean "Cryptopia" but, how could you guys pay for the listing when you only got 12 ETH in the PREICO ? it's weird.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: cryptonuim6 on May 07, 2018, 12:31:46 PM
I can see that HOMA team is going to list the coin in some good exchangers and i mean "Cryptopia" but, how could you guys pay for the listing when you only got 12 ETH in the PREICO ? it's weird.
It is possible that there are other agreements between the project and Cryptopia exchange. I heard that the listing of promising coins do not have to pay exorbitant amounts in bitcoin.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: HerousNeo on May 07, 2018, 01:38:06 PM
I can see that HOMA team is going to list the coin in some good exchangers and i mean "Cryptopia" but, how could you guys pay for the listing when you only got 12 ETH in the PREICO ? it's weird.
negotiations are also underway with Exmo and CoinExchange cryptocurrency exchanges, do you think THESE exchanges are less important than Cryptopia ?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: nhaila on May 07, 2018, 01:57:55 PM
it is obvious that this project will have a high enough target because I think this token supply must be pretty much also seen from the price of the first step and the second step that has a considerable comparison about how much hardcap for this project?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: nafantc on May 07, 2018, 03:17:31 PM
it is obvious that this project will have a high enough target because I think this token supply must be pretty much also seen from the price of the first step and the second step that has a considerable comparison about how much hardcap for this project?
Hardcap just 561,5 ETH and I am surprised by this figure. The product itself has long been ready, it remains to raise funds for the launch and for negotiations with cryptocurrency exchanges, because for the listing of tokens on the exchange, you also need to pay.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Kot Kotofej on May 07, 2018, 04:51:52 PM
it is obvious that this project will have a high enough target because I think this token supply must be pretty much also seen from the price of the first step and the second step that has a considerable comparison about how much hardcap for this project?
Hardcap just 561,5 ETH and I am surprised by this figure. The product itself has long been ready, it remains to raise funds for the launch and for negotiations with cryptocurrency exchanges, because for the listing of tokens on the exchange, you also need to pay.
A very small amount, I think that 560 ETH will be collected and the project itself will be extremely successful. I've already invested  300$ in HOMA tokens.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Allexmdd on May 07, 2018, 05:03:40 PM
As a potential investor, I need to know what you will do with tokens that cannot be sold in the ICO process ? Will you destroy them?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: blumkinnn on May 07, 2018, 05:12:26 PM
As a potential investor, I need to know what you will do with tokens that cannot be sold in the ICO process ? Will you destroy them?
The website of the project clearly States that all unsold tokens will be burned, as well as that after the ICO tokens will not be created!


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: LaScuderia on May 07, 2018, 05:27:41 PM
Most likely they paid their money out of their money, I do not think that you can get free of charge to the stock exchanges with only a good idea and minimum turnover. There should always be something else like some additional chip even for small exchanges, not to mention bitrex and binance.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Kolona on May 07, 2018, 06:28:36 PM
Most likely they paid their money out of their money, I do not think that you can get free of charge to the stock exchanges with only a good idea and minimum turnover. There should always be something else like some additional chip even for small exchanges, not to mention bitrex and binance.
I heard that to make a listing on binance need to pay as much as 50 bitcoins, I think that is a huge amount. In addition, there is a voting system on Binance, where traders give their votes for interesting coins in their opinion.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: cryptonuim6 on May 07, 2018, 06:42:18 PM
I have heard that HOMA tokens are going to be listed on the Yobit cryptocurrency exchange, how are the progress on this issue?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Ortorturus on May 07, 2018, 06:48:17 PM
I have heard that HOMA tokens are going to be listed on the Yobit cryptocurrency exchange, how are the progress on this issue?
It would be very good if it talks about listing with the stock exchange Yobit ended in success, this cryptocurrency exchange is great for young projects, such as CRYPTOHOMA.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Allexandr on May 07, 2018, 07:31:41 PM
I have heard that HOMA tokens are going to be listed on the Yobit cryptocurrency exchange, how are the progress on this issue?
It would be very good if it talks about listing with the stock exchange Yobit ended in success, this cryptocurrency exchange is great for young projects, such as CRYPTOHOMA.
You are right, cryptocurrency exchange Yobit can play a crucial role in the future of the project, because there are many investors and traders who will be able to invest in the HOMA token.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: bojoketikung on May 08, 2018, 05:09:15 AM
I have heard that HOMA tokens are going to be listed on the Yobit cryptocurrency exchange, how are the progress on this issue?
It would be very good if it talks about listing with the stock exchange Yobit ended in success, this cryptocurrency exchange is great for young projects, such as CRYPTOHOMA.
You are right, cryptocurrency exchange Yobit can play a crucial role in the future of the project, because there are many investors and traders who will be able to invest in the HOMA token.

HOMA tokens have a good development, in terms of market no doubt, many investors who believe HOMA tokens can hit the world of blockchain, so the development for the future remains fairly bright.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: DjonMnemonik on May 08, 2018, 10:27:06 AM
I have heard that HOMA tokens are going to be listed on the Yobit cryptocurrency exchange, how are the progress on this issue?
All that is known now is that the negotiations are underway, I expect that by the end of the ICO work will be carried out on all the above cryptocurrency exchanges.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: IavanHer3 on May 08, 2018, 10:44:48 AM
I have heard that HOMA tokens are going to be listed on the Yobit cryptocurrency exchange, how are the progress on this issue?
All that is known now is that the negotiations are underway, I expect that by the end of the ICO work will be carried out on all the above cryptocurrency exchanges.
I believe that exchanges like CRYPTOPIA and CoinExchange will have a much better impact on the price of the HOMA token than Yobit. According to this, it is better to focus on them.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: BatistaCru on May 08, 2018, 10:52:48 AM

I believe that exchanges like CRYPTOPIA and CoinExchange will have a much better impact on the price of the HOMA token than Yobit. According to this, it is better to focus on them.
Each cryptocurrency exchange is important, the more HOMA shines on them, the better it will affect the price of the token itself.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: FaucetKING on May 08, 2018, 03:46:18 PM
I can see that HOMA team is going to list the coin in some good exchangers and i mean "Cryptopia" but, how could you guys pay for the listing when you only got 12 ETH in the PREICO ? it's weird.
negotiations are also underway with Exmo and CoinExchange cryptocurrency exchanges, do you think THESE exchanges are less important than Cryptopia ?
Lol, these are ones of my favorite exchangers pal, it will be awesome to get the coin listed on one of them, but for me, cryptopia would be the most amazing exchanger to list the coin in.
Good luck.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: silvia76 on May 10, 2018, 12:46:45 PM
I can see that HOMA team is going to list the coin in some good exchangers and i mean "Cryptopia" but, how could you guys pay for the listing when you only got 12 ETH in the PREICO ? it's weird.
negotiations are also underway with Exmo and CoinExchange cryptocurrency exchanges, do you think THESE exchanges are less important than Cryptopia ?
Cryptopia is very important, but it will not forget that the dialogue with the exchange Yobit is also conducted. I would like to see the HOMA token on all these cryptocurrency exchanges.


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: Vampireminer11 on May 10, 2018, 04:06:58 PM
where can I get your token or pre-sale is already finished?
ICO will last until may 31, you have another 3 weeks before the end of trading.


Title: Re: [ANN] [ICO] CRYPTOHOMA | Token for crypto-community in Telegram
Post by: Kot Kotofej on May 10, 2018, 06:40:48 PM
where can I get your token or pre-sale is already finished?
ICO will last until may 31, you have another 3 weeks before the end of trading.
Yes indeed there was plenty of time, let's not forget about the second round of the ICO, but there is a discount on the purchase of tokens will be less.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: potapo on May 10, 2018, 06:52:24 PM
I am sure that after the project's ICO, the cost of tokens will increase several times. I think it's worth buying a token right now, then to win on that we will be their holders.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: HazardXXX on May 10, 2018, 06:54:34 PM
I am sure that after the project's ICO, the cost of tokens will increase several times. I think it's worth buying a token right now, then to win on that we will be their holders.
I think that this is the main interest of all investors, but it is necessary to take into account all the risks in advance.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Kolona on May 10, 2018, 07:24:14 PM
How is the collection of funds in the first round of sales of ICO? I would like to know how much investors are interested in the project.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: IavanHer3 on May 11, 2018, 11:59:04 AM
I advise everyone to join because I find this project has good team and good mentor will help the project achieve the goals that the project put forward. ;D Good luck to all!
First of all, I see the interest of developers in listing HOMA on cryptocurrency exchanges, this will positively affect the price of the token, respectively, profit for investors.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: foppertc on May 11, 2018, 05:33:47 PM
When will HOMA appear on the cryptocurrency exchange? The first round of ICO is coming to an end, it's time to decide with the listing of the token on the exchange.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Kot Kotofej on May 11, 2018, 06:53:17 PM
When will HOMA appear on the cryptocurrency exchange? The first round of ICO is coming to an end, it's time to decide with the listing of the token on the exchange.
I heard that negotiations are conducted with several exchanges, usually listing for cryptocurrency exchanges takes place after the ICO.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Ortorturus on May 11, 2018, 08:15:17 PM
When will HOMA appear on the cryptocurrency exchange? The first round of ICO is coming to an end, it's time to decide with the listing of the token on the exchange.
I heard that negotiations are conducted with several exchanges, usually listing for cryptocurrency exchanges takes place after the ICO.
To be more precise, negotiations are conducted with YOBIT, EXMO, CoinExchange and CRYPTOPIA. The list of cryptocurrency exchanges is large.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: MelnikBitok on May 12, 2018, 08:34:40 AM

To be more precise, negotiations are conducted with YOBIT, EXMO, CoinExchange and CRYPTOPIA. The list of cryptocurrency exchanges is large.
Personally, I am waiting for the appearance of HOMA tokens in the first place, on the cryptocurrency exchange YOBIT, it is very good for new projects.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: MertinLyter on May 12, 2018, 08:44:25 AM

To be more precise, negotiations are conducted with YOBIT, EXMO, CoinExchange and CRYPTOPIA. The list of cryptocurrency exchanges is large.
Personally, I am waiting for the appearance of HOMA tokens in the first place, on the cryptocurrency exchange YOBIT, it is very good for new projects.
Yes, indeed, the cryptocurrency exchange YOBIT is very important, there are actively trading many large traders and investors, but CRYPTOPIA is no worse.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: DjonMnemonik on May 12, 2018, 10:23:48 AM

To be more precise, negotiations are conducted with YOBIT, EXMO, CoinExchange and CRYPTOPIA. The list of cryptocurrency exchanges is large.
Personally, I am waiting for the appearance of HOMA tokens in the first place, on the cryptocurrency exchange YOBIT, it is very good for new projects.
Yes, indeed, the cryptocurrency exchange YOBIT is very important, there are actively trading many large traders and investors, but CRYPTOPIA is no worse.
The disputable situation, in fact, all cryptocurrency exchanges are needed, and the more of them, the better for the price of HOMA.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Ursuka on May 12, 2018, 10:44:36 AM
this project is very developed website to explain about all project ideas and the development of coin sales or ICO, I want to have coins from this project, where I can discuss more about ICO


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: JuleGulie on May 12, 2018, 02:48:26 PM
this project is very developed website to explain about all project ideas and the development of coin sales or ICO, I want to have coins from this project, where I can discuss more about ICO

This thread on the forum specifically created to discuss the project and its ICO can write here all your thoughts.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Tyler86 on May 12, 2018, 03:03:21 PM
this project is very developed website to explain about all project ideas and the development of coin sales or ICO, I want to have coins from this project, where I can discuss more about ICO

Do you want to offer help to HOMA developers? I saw that they have a fully equipped team of professionals, but the extra help is always useful.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Kot Kotofej on May 12, 2018, 03:28:39 PM
And how many coins will be issued for sale? And what will happen to the unsold tokens? This is a very important issue.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: blumkinnn on May 12, 2018, 03:44:18 PM
Is there a fixed minimum amount I can buy tokens for? Let's say I want to buy only 100 HOMA, can I do it?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: cryptonuim6 on May 12, 2018, 03:54:48 PM
Is there a fixed minimum amount I can buy tokens for? Let's say I want to buy only 100 HOMA, can I do it?
You can buy a minimum of 1 token , but do not forget that the transaction fee will cost about 0.40$.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: nistra on May 12, 2018, 04:11:42 PM
what problem did you have when creating and implementing your project and how did you find a solution to fix it?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Kolona on May 12, 2018, 04:42:32 PM
Is there a fixed minimum amount I can buy tokens for? Let's say I want to buy only 100 HOMA, can I do it?
You can buy a minimum of 1 token , but do not forget that the transaction fee will cost about 0.40$.
This is a very favorable aspect, even small investors can enter the CRYPTOHOMA project, I hope that the lack of investment minimums will have a positive impact on sales.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Allexmdd on May 12, 2018, 05:08:52 PM
How can I contact the administrators of the project?  I would like to offer my services in the promotion of the project.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: SHALARIBA on May 12, 2018, 05:26:14 PM
How can I contact the administrators of the project?  I would like to offer my services in the promotion of the project.
Hi! You can write to me at Telegram @Norbeee


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: Ortorturus on May 12, 2018, 05:26:36 PM
How can I contact the administrators of the project?  I would like to offer my services in the promotion of the project.
The website has all the contacts: you can Contact the project administrators via Telegram: @Norbeee, @Black_cat25


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: haoji137 on May 12, 2018, 05:31:19 PM
I like your website, information is relatively comprehensive, hope that the future development of the project will be very good.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: AndreGreat on May 12, 2018, 09:47:28 PM
pre-sale successfully completed? but you collected only 12 and a half ethers. is this a successful conclusion? and tell me, with which exchanges are being negotiated?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: SHALARIBA on May 13, 2018, 06:47:44 AM
pre-sale successfully completed? but you collected only 12 and a half ethers. is this a successful conclusion? and tell me, with which exchanges are being negotiated?
We have a relatively small project, and millions of dollars are not needed to create it. First of all, the listing of the coin will be on the exchanges YoBit and CoinExchange.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: SHALARIBA on May 13, 2018, 12:53:16 PM
I like your website, information is relatively comprehensive, hope that the future development of the project will be very good.
thank you my friend :)


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: LaScuderia on May 13, 2018, 08:37:43 PM
pre-sale successfully completed? but you collected only 12 and a half ethers. is this a successful conclusion? and tell me, with which exchanges are being negotiated?

Do not agree such small fees mean that you will have to save everything from advertising to exchanges and ending with technical development. By the way, what is collected means that all who invested will give out a large number of tokens and in the token there will almost be only a few dozen holders?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: LaScuderia on May 14, 2018, 12:21:06 PM
Most likely they paid their money out of their money, I do not think that you can get free of charge to the stock exchanges with only a good idea and minimum turnover. There should always be something else like some additional chip even for small exchanges, not to mention bitrex and binance.
I heard that to make a listing on binance need to pay as much as 50 bitcoins, I think that is a huge amount. In addition, there is a voting system on Binance, where traders give their votes for interesting coins in their opinion.

The voting system really does not really work, they will still ask that they give the bitcoins. But of course in a smaller amount than if you just pay. Although I still think that it is too frivolous to pay so much for getting on a large exchange.
Money can be spent much better than simply giving it to the administrators of exchanges.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: SHALARIBA on May 14, 2018, 01:15:05 PM
what problem did you have when creating and implementing your project and how did you find a solution to fix it?
We only had one problem. Most people have difficulties buying tokens and storing them. We support our users by recording instructions and training videos.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: NumBit765 on May 14, 2018, 01:51:23 PM
pre-sale successfully completed? but you collected only 12 and a half ethers. is this a successful conclusion? and tell me, with which exchanges are being negotiated?
At the moment, the coin can already be purchased on the decentralized waves exchange.
We are negotiating with the exchange YOBIT, EXMO, CoinExchange and CRYPTOPIA


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎
Post by: BatistaCru on May 14, 2018, 03:35:12 PM
pre-sale successfully completed? but you collected only 12 and a half ethers. is this a successful conclusion? and tell me, with which exchanges are being negotiated?
At the moment, the coin can already be purchased on the decentralized waves exchange.
We are negotiating with the exchange YOBIT, EXMO, CoinExchange and CRYPTOPIA
I wonder how much it costs listing on EXMO, small cryptocurrency exchange, which does not help to increase the price of tokens HOMA.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: AndreGreat on May 14, 2018, 04:41:57 PM
I understand everything, of course. but only 12 eth. it's a bit strange. that is, you want to say that this is enough for the implementation of the project and everything else?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: SHALARIBA on May 14, 2018, 04:53:21 PM
I understand everything, of course. but only 12 eth. it's a bit strange. that is, you want to say that this is enough for the implementation of the project and everything else?
We have a relatively small project, and millions of dollars are not needed to create it. First of all, the listing of the coin will be on the exchanges YoBit and CoinExchange.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MertinLyter on May 14, 2018, 06:15:14 PM
I understand everything, of course. but only 12 eth. it's a bit strange. that is, you want to say that this is enough for the implementation of the project and everything else?
I think that owners and developers know better how much they need to implement their project.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: HerousNeo on May 14, 2018, 06:40:13 PM
I heard that the first round of ICO ends tomorrow? What will be the discount on tokens in the second round of sales?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: blumkinnn on May 14, 2018, 07:14:11 PM
I heard that the first round of ICO ends tomorrow? What will be the discount on tokens in the second round of sales?
That's right, the first round ends tomorrow, if you plan to invest in the project, you can still buy tokens at the maximum discount.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kolona on May 14, 2018, 07:23:12 PM
I heard that the first round of ICO ends tomorrow? What will be the discount on tokens in the second round of sales?
That's right, the first round ends tomorrow, if you plan to invest in the project, you can still buy tokens at the maximum discount.
Guys, and the difference in price token will much, if compare price in the first round ICO and in the second? Or this difference generally is not present?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Faust91 on May 14, 2018, 08:14:58 PM
I heard that the first round of ICO ends tomorrow? What will be the discount on tokens in the second round of sales?
That's right, the first round ends tomorrow, if you plan to invest in the project, you can still buy tokens at the maximum discount.
Guys, and the difference in price token will much, if compare price in the first round ICO and in the second? Or this difference generally is not present?
Step 1.  30.04.18 - 15.05.18 ( 1 ETH = 90 909 HOMA )
Step 2.  15.05.18 - 30.05.18 ( 1 ETH = 66 667 HOMA )
You can calculate the difference yourself.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: DoctorCripto on May 14, 2018, 09:38:47 PM

Step 1.  30.04.18 - 15.05.18 ( 1 ETH = 90 909 HOMA )
Step 2.  15.05.18 - 30.05.18 ( 1 ETH = 66 667 HOMA )
You can calculate the difference yourself.
The difference in the discount is visible to the naked eye, lucky for those investors who came first.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: IavanHer3 on May 15, 2018, 04:16:31 PM
I have one question why the project itself is built on the ETH platform, and you can only pay for the purchase of tokens through the vaves wallet?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: NumBit765 on May 15, 2018, 04:55:32 PM
I have one question why the project itself is built on the ETH platform, and you can only pay for the purchase of tokens through the vaves wallet?
I was surprised when I discovered this payment method, perhaps it is done for the security of payments?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: foppertc on May 15, 2018, 05:08:54 PM
I have one question why the project itself is built on the ETH platform, and you can only pay for the purchase of tokens through the vaves wallet?
I was surprised when I discovered this payment method, perhaps it is done for the security of payments?
Ethereum network is the most secure, I do not think that payment via Waves wallet is made to increase security, there are other motives.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Yuliaryder on May 15, 2018, 05:32:49 PM
I have one question why the project itself is built on the ETH platform, and you can only pay for the purchase of tokens through the vaves wallet?
I was surprised when I discovered this payment method, perhaps it is done for the security of payments?
Ethereum network is the most secure, I do not think that payment via Waves wallet is made to increase security, there are other motives.
If it's not for safety, then what is it for? I don't think the speed of transactions in the Waves network is faster than in the Ethereum network.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: PureHunter on May 15, 2018, 07:06:13 PM
I considered the project very carefully, the prospects are very large, but the developers will have to try hard to cope with the marketing part.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: blumkinnn on May 15, 2018, 07:19:50 PM
I considered the project very carefully, the prospects are very large, but the developers will have to try hard to cope with the marketing part.
In fact, the project is not very big, and for its implementation does not need a lot of money. I think that the project will collect its 12 ETH without advertising.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kolona on May 15, 2018, 07:39:21 PM
I considered the project very carefully, the prospects are very large, but the developers will have to try hard to cope with the marketing part.
In fact, the project is not very big, and for its implementation does not need a lot of money. I think that the project will collect its 12 ETH without advertising.
12,5 ETH - this was the purpose of pre-sale, which has long been successfully collected for ICO is quite different figures.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: foppertc on May 16, 2018, 08:39:37 PM
I considered the project very carefully, the prospects are very large, but the developers will have to try hard to cope with the marketing part.
In fact, the project is not very big, and for its implementation does not need a lot of money. I think that the project will collect its 12 ETH without advertising.
12,5 ETH - this was the purpose of pre-sale, which has long been successfully collected for ICO is quite different figures.
A very small amount, I first see such small numbers, this suggests that the technical part of the project is completely ready, we need money for listing tokens on the exchange


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: nafantc on May 16, 2018, 08:57:32 PM
What are your ideas? Why do we need a HOMA token? The very idea of the project I caught, but why do we need a token-is unclear.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Faust91 on May 16, 2018, 09:14:29 PM
What are your ideas? Why do we need a HOMA token? The very idea of the project I caught, but why do we need a token-is unclear.
PAYMENT FOR SERVICES IN THE PROJECTS CRYPTOHOMA.  This is the main purpose of the token, it is really necessary.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: foppertc on May 16, 2018, 09:23:59 PM
What are your ideas? Why do we need a HOMA token? The very idea of the project I caught, but why do we need a token-is unclear.
Of course, the main goal of the token is to increase in price, at least this is the main point for investors. Token holders, the project itself gives some nice buns.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MelnikBitok on May 17, 2018, 10:33:42 AM
What are your ideas? Why do we need a HOMA token? The very idea of the project I caught, but why do we need a token-is unclear.
Of course, the main goal of the token is to increase in price, at least this is the main point for investors. Token holders, the project itself gives some nice buns.
Many investors are afraid to go to the ICO, as many Scam projects appeared recently, the project CRYPTOHOMA is real?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Allexmdd on May 17, 2018, 10:50:25 AM

Many investors are afraid to go to the ICO, as many Scam projects appeared recently, the project CRYPTOHOMA is real?
The project is quite real, the technical part is almost ready, there are 2 important steps left, it is to raise as much money as possible and make a listing of tokens for crypto-currency exchanges.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: foppertc on May 17, 2018, 05:56:35 PM

Many investors are afraid to go to the ICO, as many Scam projects appeared recently, the project CRYPTOHOMA is real?
Nobody forces you to invest in CRYPTOHOMA, I'm saying that the project is really good and promising, though very small.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kot Kotofej on May 17, 2018, 06:26:59 PM
From the side, the project looks very good, there is a road map, a website and even white paper.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Ortorturus on May 17, 2018, 06:33:16 PM
On the site I saw the information that this project announced the bounty company and even airdrop, how soon they will be launched?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kolona on May 17, 2018, 07:04:19 PM
On the site I saw the information that this project announced the bounty company and even airdrop, how soon they will be launched?
Bounty to be done in private mode, and airdrop already ended, all the awards were handed out earlier.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kot Kotofej on May 18, 2018, 07:12:02 PM
On the site I saw the information that this project announced the bounty company and even airdrop, how soon they will be launched?
Bounty to be done in private mode, and airdrop already ended, all the awards were handed out earlier.
It is a pity that access to the bounty company is limited, I would love to take part in it, will have to buy HOMA


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: HazardXXX on May 18, 2018, 08:04:51 PM
I heard that you promised to pay dividends to all your investors, you can find out how much it will turn out in dollars?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Ortorturus on May 18, 2018, 08:11:06 PM
I heard that you promised to pay dividends to all your investors, you can find out how much it will turn out in dollars?
Coin holders HOMA will get a dividend from every transactions users of the service. The exact percentage of profit is unknown.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kolona on May 18, 2018, 08:15:20 PM
I heard that you promised to pay dividends to all your investors, you can find out how much it will turn out in dollars?
I didn't even know that token holders would get dividends, it's great news, additional earnings will not be superfluous.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: GuruBitov on May 18, 2018, 08:43:36 PM
I heard that you promised to pay dividends to all your investors, you can find out how much it will turn out in dollars?
I didn't even know that token holders would get dividends, it's great news, additional earnings will not be superfluous.
That's what I was attracted to this project, any investor wants to receive dividends, and the project CRYPTOHOMA gives such an opportunity.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: silvia76 on May 18, 2018, 08:52:38 PM
I read that CRYPTOHOMA will combine several projects at once and one of them is a trading School for beginners. Will there be a discount for token holders to study at this school?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kot Kotofej on May 19, 2018, 06:18:53 PM
How are things with listing your tokens on the yobit cryptocurrency exchange? When will I see the true price of HOMA?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Ortorturus on May 19, 2018, 06:26:38 PM
How are things with listing your tokens on the yobit cryptocurrency exchange? When will I see the true price of HOMA?
I do not think that there will be problems with this exchange, usually there are no problems with listing on Yobit.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MertinLyter on May 19, 2018, 06:51:32 PM
How are things with listing your tokens on the yobit cryptocurrency exchange? When will I see the true price of HOMA?
I do not think that there will be problems with this exchange, usually there are no problems with listing on Yobit.
For more than six months, as the owners of the cryptocurrency exchange Yobit changed their attitude to the listing of tokens, now it is much heavier than it was before.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: blumkinnn on May 19, 2018, 07:05:00 PM
How are things with listing your tokens on the yobit cryptocurrency exchange? When will I see the true price of HOMA?
I do not think that there will be problems with this exchange, usually there are no problems with listing on Yobit.
For more than six months, as the owners of the cryptocurrency exchange Yobit changed their attitude to the listing of tokens, now it is much heavier than it was before.
I also heard about this, on the yobit crypto-currency exchange and so much garbage, now they are more careful about the coin listing, it is not so easy to get to them.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: DoctorCripto on May 19, 2018, 07:31:52 PM

I also heard about this, on the yobit crypto-currency exchange and so much garbage, now they are more careful about the coin listing, it is not so easy to get to them.
And what do cryptocurrency exchanges, except Yobit planned listing HOMA? I am sure that there are alternatives.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kolona on May 19, 2018, 08:08:25 PM

I also heard about this, on the yobit crypto-currency exchange and so much garbage, now they are more careful about the coin listing, it is not so easy to get to them.
And what do cryptocurrency exchanges, except Yobit planned listing HOMA? I am sure that there are alternatives.
Now, the owners of the project are actively negotiating with cryptocurrency exchanges YOBIT, EXMO, CoinExchange and CRYPTOPIA. I hope they will succeed.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: HerousNeo on May 19, 2018, 08:25:30 PM
When will I see the HOMA tokens on the Yobit exchange. after all, has long promised to add it.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: AndreGreat on May 19, 2018, 11:05:34 PM
I'm a bit surprised at what is written here. the manager repeats the same answer, for each of my questions, and you protect them. Well, I do not know, I do not have confidence in this project


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: DoctorCripto on May 20, 2018, 03:23:15 PM
I am waiting for the HOMA token to appear on at least one crypto-exchange exchange, this is a sign of the quality of the project.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MertinLyter on May 20, 2018, 03:41:00 PM
I am waiting for the HOMA token to appear on at least one crypto-exchange exchange, this is a sign of the quality of the project.
This issue has already been discussed above, listing on cryptocurrency exchanges will happen after the ICO, then it will be too late to decide.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: HerousNeo on May 20, 2018, 04:24:35 PM
CRYPTOHOMA is a universal project that combines many functions. I thought it over well and decided to invest in it.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kolya786 on May 22, 2018, 02:23:55 PM
I'm confused, on which exchanges the HOMA token is already trading, and on which only the listing is planned?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: foppertc on May 22, 2018, 03:08:25 PM
I'm confused, on which exchanges the HOMA token is already trading, and on which only the listing is planned?
The first post of the topic States that the token is traded on the WAVES and etherdelta exchanges, but I can't find HOMA there.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Faust91 on May 22, 2018, 03:44:15 PM
I'm confused, on which exchanges the HOMA token is already trading, and on which only the listing is planned?
The first post of the topic States that the token is traded on the WAVES and etherdelta exchanges, but I can't find HOMA there.
Negotiations on listing on cryptocurrency exchanges are still underway, I hope that in June they will end with success.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: wingding on May 22, 2018, 05:38:32 PM
Sorry, but I did not quite understand what your tokens will be for. and what advantages will investors have? and by the way, tell me, what is the value of your token?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: GyramCripto on May 22, 2018, 06:27:22 PM
Sorry, but I did not quite understand what your tokens will be for. and what advantages will investors have? and by the way, tell me, what is the value of your token?
Now the second round of token sales is held, the price of 66 667 HOMA = 1 ETH. There is a good discount.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: SHALARIBA on May 22, 2018, 07:29:50 PM
Sorry, but I did not quite understand what your tokens will be for. and what advantages will investors have? and by the way, tell me, what is the value of your token?
Hello! Our tokens can be paid in applications for the crypto community in Telegram.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: nafantc on May 23, 2018, 01:15:06 PM
Sorry, but I did not quite understand what your tokens will be for. and what advantages will investors have? and by the way, tell me, what is the value of your token?
Hello! Our tokens can be paid in applications for the crypto community in Telegram.
Also, holders of the HOMA coin will receive dividends from all the operations of users in the service - this is the main plus for the investor.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: TimurBit on May 23, 2018, 01:34:26 PM

Also, holders of the HOMA coin will receive dividends from all the operations of users in the service - this is the main plus for the investor.
The holders of the HOMA token will receive dividends-sounds very tasty, I wonder how much the owners of the project are going to give to their investors?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Faust91 on May 23, 2018, 01:47:25 PM

Also, holders of the HOMA coin will receive dividends from all the operations of users in the service - this is the main plus for the investor.
The holders of the HOMA token will receive dividends-sounds very tasty, I wonder how much the owners of the project are going to give to their investors?
It all depends on the popularity of the project and the number of operations between users, the more of them, the more profit for the coin holders.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kolya786 on May 23, 2018, 04:00:13 PM
Are there any approximate figures how much will the HOMA token cost after entering the crypto-currency exchanges?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: TimurBit on May 23, 2018, 07:19:46 PM
Are there any approximate figures how much will the HOMA token cost after entering the crypto-currency exchanges?
The project owners assure that after listing on the exchange, the price of the token will not be lower than 0.00003000 ETH, which is significantly different from the price of the ICO


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MelnikBitok on May 24, 2018, 11:52:05 AM
Are there any approximate figures how much will the HOMA token cost after entering the crypto-currency exchanges?
The project owners assure that after listing on the exchange, the price of the token will not be lower than 0.00003000 ETH, which is significantly different from the price of the ICO
It is likely that the price will be exactly the same, because the tokens themselves are not released much, and the project is small.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Allexmdd on May 24, 2018, 12:17:32 PM
Are there any restrictions on the purchase of tokens, or the minimum amount? Let's say I want to buy a 10-20$  HOMA.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: DoctorCripto on May 24, 2018, 01:37:52 PM
Are there any restrictions on the purchase of tokens, or the minimum amount? Let's say I want to buy a 10-20$  HOMA.
You can buy a minimum of 1 token , but do not forget that the transaction fee will cost about $0.40


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MertinLyter on May 24, 2018, 01:44:54 PM
Are there any restrictions on the purchase of tokens, or the minimum amount? Let's say I want to buy a 10-20$  HOMA.
I purchased tokens for  200$, the operation was successful, tokens on my personal account, I do not think that there is a minimum amount of 20$ can safely buy.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MorenoBry on May 24, 2018, 04:38:15 PM
Are there any restrictions on the purchase of tokens, or the minimum amount? Let's say I want to buy a 10-20$  HOMA.
You can buy a minimum of 1 token , but do not forget that the transaction fee will cost about $0.40
It's quite funny, I wonder if these clowns will find that buy exactly 1 token? I do not see any sense in such investments.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kolona on May 24, 2018, 08:38:07 PM
I can't find the branch with the bounty program, is it active or has not started yet? I want to take part in it.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Allexmdd on May 24, 2018, 09:09:58 PM
I can't find the branch with the bounty program, is it active or has not started yet? I want to take part in it.
I will disappoint you, the bounty company was held in closed mode, it has long been over.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: silvia76 on May 25, 2018, 10:57:17 AM
I can't find the branch with the bounty program, is it active or has not started yet? I want to take part in it.
I will disappoint you, the bounty company was held in closed mode, it has long been over.
I would also like to take part in the bounty company, sorry that they are over:( will start from what is.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: PureHunter on May 25, 2018, 03:14:19 PM
I read that the project CRYPTOHOMA was created to combine all the services that are necessary for the crypto community in the telegram messenger. Can you elaborate on that?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: GuruBitov on May 25, 2018, 03:24:31 PM
I read that the project CRYPTOHOMA was created to combine all the services that are necessary for the crypto community in the telegram messenger. Can you elaborate on that?
Bot for the exchange of cryptocurrencies and the Bot (store) with payment cryptocurrency is the 2 most important service which will unite the project CRYPTOHOMA


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: IavanHer3 on May 25, 2018, 05:06:44 PM
I read that the project CRYPTOHOMA was created to combine all the services that are necessary for the crypto community in the telegram messenger. Can you elaborate on that?
Bot for the exchange of cryptocurrencies and the Bot (store) with payment cryptocurrency is the 2 most important service which will unite the project CRYPTOHOMA
You forgot to mention the service-trading School for beginners, I believe that this service will be extremely popular.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Tyler86 on May 25, 2018, 06:07:18 PM

You forgot to mention the service-trading School for beginners, I believe that this service will be extremely popular.
All services are relevant today, as well as the cryptocurrency exchanger, and the school for beginners.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Kot Kotofej on May 25, 2018, 06:40:27 PM
I was intrigued by this project, in theory, it will not be globally large, but will be very useful for crypto communities. I think it is not too late to join the number of investors.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Ortorturus on May 25, 2018, 07:10:07 PM
I understood correctly that the second round of ICO is coming to an end? How much time is left to complete sales?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: GuruBitov on May 25, 2018, 07:31:03 PM
I read that the project CRYPTOHOMA was created to combine all the services that are necessary for the crypto community in the telegram messenger. Can you elaborate on that?
Bot for the exchange of cryptocurrencies and the Bot (store) with payment cryptocurrency is the 2 most important service which will unite the project CRYPTOHOMA
You forgot to mention the service-trading School for beginners, I believe that this service will be extremely popular.
Yes, indeed, I forgot to mention the school for beginners, but I think that the school goes by the wayside, the main thing-it's a telegram bot for exchange.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Nyur on May 26, 2018, 07:09:27 AM
The main thing is that large financial companies start investing in the project, then there will be success! How do I understand this is more a tool for corporate investment?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: BatistaCru on May 26, 2018, 04:21:58 PM
The main thing is that large financial companies start investing in the project, then there will be success! How do I understand this is more a tool for corporate investment?
CRYPTOHOMA project which will bring together all the services useful to the crypto community in Telegram messenger.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: DoctorCripto on May 26, 2018, 05:55:43 PM
Project developers promise 273% stayed for 5 weeks for all their first investors, tell me how you can guarantee such a large percentage of income in such which terms?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Tyler86 on May 26, 2018, 06:03:11 PM
Project developers promise 273% stayed for 5 weeks for all their first investors, tell me how you can guarantee such a large percentage of income in such which terms?
The token price on pre-sales was 0.00000800 ETH, and the expected price after listing on the exchange was 0.00003000 ETH


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MertinLyter on May 27, 2018, 02:00:54 PM
Project developers promise 273% stayed for 5 weeks for all their first investors, tell me how you can guarantee such a large percentage of income in such which terms?
The token price on pre-sales was 0.00000800 ETH, and the expected price after listing on the exchange was 0.00003000 ETH
I think it looks too good. It is very difficult to predict the price policy of the token, you can know the approximate data, but it is impossible to say for sure.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Bitcoinmeetups.org on May 27, 2018, 02:08:15 PM
Hello,

Do you have any airdrop? I volunteer to receive your coin at:

0x979f13d7ba6C21C6d25d433C3978ac81c956e502


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: HerousNeo on May 27, 2018, 08:30:38 PM
Will payments within the network CRYPTOHOMA completely anonymous or have to undergo the process of KYC?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: DoctorCripto on May 27, 2018, 09:18:59 PM
What happens if you do not collect the minimum amount to start the project? Will there be several options?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MertinLyter on May 27, 2018, 09:41:14 PM
What happens if you do not collect the minimum amount to start the project? Will there be several options?
If the minimum threshold is not collected, all funds will be returned to investors in the same way that the investment was made.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MariaHoume on May 28, 2018, 03:11:52 PM
What happens if you do not collect the minimum amount to start the project? Will there be several options?
If the minimum threshold is not collected, all funds will be returned to investors in the same way that the investment was made.
This is the right step, it is better to hold the ICO again, after some time, than, in case of failure, the project will simply be closed.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: KlounBit5 on May 28, 2018, 06:38:57 PM
How much is the HOMA token worth now, if there is any discount now, for the purchase of tokens? Or have I already missed it?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: MelnikBitok on May 28, 2018, 07:14:17 PM
How much is the HOMA token worth now, if there is any discount now, for the purchase of tokens? Or have I already missed it?
At the second stage, the ICO coin can be purchased at a price of 0.00001500 ETH, discounts are still valid.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: NumBit765 on May 28, 2018, 08:21:20 PM
How much is the HOMA token worth now, if there is any discount now, for the purchase of tokens? Or have I already missed it?
At the second stage, the ICO coin can be purchased at a price of 0.00001500 ETH, discounts are still valid.
Can I clarify? How many percent discount now? I can not find information on the website of the project, I see only the cost and not words about the discount.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: GyramCripto on May 29, 2018, 06:02:51 PM
How much is the HOMA token worth now, if there is any discount now, for the purchase of tokens? Or have I already missed it?
At the second stage, the ICO coin can be purchased at a price of 0.00001500 ETH, discounts are still valid.
Can I clarify? How many percent discount now? I can not find information on the website of the project, I see only the cost and not words about the discount.
There are only 2 days left until the end of the second round, the price of tokens 1 ETH = 66 667 HOMA, good discounts were before, now the price is.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: nafantc on May 29, 2018, 07:05:16 PM
How much is the HOMA token worth now, if there is any discount now, for the purchase of tokens? Or have I already missed it?
At the second stage, the ICO coin can be purchased at a price of 0.00001500 ETH, discounts are still valid.
Can I clarify? How many percent discount now? I can not find information on the website of the project, I see only the cost and not words about the discount.
There are only 2 days left until the end of the second round, the price of tokens 1 ETH = 66 667 HOMA, good discounts were before, now the price is.
There is one last chance for investors to buy tokens at a low price, I am waiting for the listing of token crypto-currency exchanges


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: DoctorCripto on May 30, 2018, 03:38:11 PM
the process of selling HOMA tokens is coming to an end, there is only 1 day left, I hope everyone had time to buy tokens at discounts.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: IavanHer3 on May 30, 2018, 04:07:15 PM
the process of selling HOMA tokens is coming to an end, there is only 1 day left, I hope everyone had time to buy tokens at discounts.
I have long purchased HOMA tokens, back in the first round of ICO, when the discount was much higher than now. When will the tokens be listed on cryptocurrency exchanges?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Tyler86 on May 30, 2018, 04:55:20 PM
the process of selling HOMA tokens is coming to an end, there is only 1 day left, I hope everyone had time to buy tokens at discounts.
I have long purchased HOMA tokens, back in the first round of ICO, when the discount was much higher than now. When will the tokens be listed on cryptocurrency exchanges?
You did everything right, because this is the point, to buy tokens at a discount, and then, after listing on cryptocurrency exchanges to sell them and make money on it.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: cryptomayer on August 16, 2018, 06:18:38 PM
Cryptohoma Token [HOMA] is listed: https://yobit.net/en/trade/HOMA/BTC


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Laamadeus on August 21, 2018, 05:19:33 PM
A total of 50 000 000 coins will be issued, all coins not sold in ICO will be burned!

So how many coins are left?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Levontres on August 21, 2018, 06:20:40 PM
Whether other cryptoexchanges, for transfer of a coin of CRYPTOHOMA are considered? Definitely, the token will be useful and irreplaceable for associates of cryptodens!


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: alex75 on August 22, 2018, 08:35:53 PM
ПPИBET,зaчeм дoпycкaм дpyгим пoльзoвaтeлям мoнипyлиpoвaть вaшeй мoнeтoй нa Yobit?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: alex75 on August 22, 2018, 08:37:27 PM
ПPИBET,зaчeм дoпycкaм дpyгим пoльзoвaтeлям мoнипyлиpoвaть вaшeй мoнeтoй нa Yobit?
дpyгим пoльзoвaпeлям  мoнипyлиpoвaть тoкeнoм?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: zaitsev123 on August 23, 2018, 07:15:57 PM
what about new exchanges?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Laamadeus on August 25, 2018, 01:21:06 AM
Lol  ;D Someones here whining because won´t get profit in just 7 days  :D Hold on just little bit, or you just lose your money. If you bought ico and sell them loss after couple days... that is your strategy, but it is not most efficient strategy.


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: Grifosha on August 25, 2018, 09:08:40 PM
Have you solved the problem with putting the coin on Ebit? If I'm not mistaken, was there a problem with the number of tokens in your contract?


Title: Re: ✅ [ANN] 🚀 [ICO] CRYPTOHOMA | Token for crypto-community in Telegram 🌎📈
Post by: SHALARIBA on September 03, 2018, 07:01:36 AM
Lol  ;D Someones here whining because won´t get profit in just 7 days  :D Hold on just little bit, or you just lose your money. If you bought ico and sell them loss after couple days... that is your strategy, but it is not most efficient strategy.
Total coins HOMA 5216475 on the stock exchange YoBit! This number will never change.
https://etherscan.io/token/0xa0c0abf5fb0db10f208064fcbd651634dea49ac5?a=0x86f14ee4cd77077db769d87b34210223371137cf