Bitcoin Forum
May 09, 2024, 08:25:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 [8] 9 10 »  All
  Print  
Author Topic: [HUB]Hubcoin. Free tools, trackers, explorers + services for blockchain projects  (Read 11128 times)
HubCoinDev (OP)
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
September 25, 2017, 12:25:47 PM
Last edit: September 25, 2017, 12:41:07 PM by HubCoinDev
 #141

We going to make Hubcoin hard fork on next week (or a bit later).
For fixing 2 bugs + possible adding safe math for additional security.
(My own premine freezing code works perfect, both bugs inherited from token examples at Ethereum.org. )
It is only one possible way to enable deposits/withdraws on CoinExchange.io and we agreed with CoinExchange.io admin about it.
Balance distribution and Hubcoin ownage will be 100% same, so there will be no problems.
It will require only to change token id on wallets.
Then we continue Hubcoin development, will follow promised goals but will not limit us to it.

How's the hard fork setup going on? In need of anything?

New contract, which based on OpenZeppelin and Tierion (best practise and most safe code) is almost ready.
I am going to launch it on next days (Need to resync Ethereum blockchain).
Then we will contact CoinExchange.io admin and turn on deposits + withdraws.

I am also working on smart contracts development + payment integration services ( receiving ethereum, bitcoin, crowdfunding contracts for ICO etc)
and it will be also ready approximately on next week, after enabling Hubcoin deposits and withdraws as it is required.
There are very high demand, so we'll focus on this and will provide this services for Hubcoin.
1715243142
Hero Member
*
Offline Offline

Posts: 1715243142

View Profile Personal Message (Offline)

Ignore
1715243142
Reply with quote  #2

1715243142
Report to moderator
"You Asked For Change, We Gave You Coins" -- casascius
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715243142
Hero Member
*
Offline Offline

Posts: 1715243142

View Profile Personal Message (Offline)

Ignore
1715243142
Reply with quote  #2

1715243142
Report to moderator
1715243142
Hero Member
*
Offline Offline

Posts: 1715243142

View Profile Personal Message (Offline)

Ignore
1715243142
Reply with quote  #2

1715243142
Report to moderator
freegold
Full Member
***
Offline Offline

Activity: 207
Merit: 100

Wahoo for the Bitcoin revolution!


View Profile WWW
September 27, 2017, 02:36:11 AM
 #142

Hi hubdev, are you still listing icos? Please check out the openmoney eth ico (in my signature) and please list it. Openmoney is an ecosystem to solve blockchain monetization and distribution for mainstream app developers.

thanks and keep up the good work and don't listen to the naysayers Smiley

We going to make Hubcoin hard fork on next week (or a bit later).
For fixing 2 bugs + possible adding safe math for additional security.
(My own premine freezing code works perfect, both bugs inherited from token examples at Ethereum.org. )
It is only one possible way to enable deposits/withdraws on CoinExchange.io and we agreed with CoinExchange.io admin about it.
Balance distribution and Hubcoin ownage will be 100% same, so there will be no problems.
It will require only to change token id on wallets.
Then we continue Hubcoin development, will follow promised goals but will not limit us to it.

How's the hard fork setup going on? In need of anything?

New contract, which based on OpenZeppelin and Tierion (best practise and most safe code) is almost ready.
I am going to launch it on next days (Need to resync Ethereum blockchain).
Then we will contact CoinExchange.io admin and turn on deposits + withdraws.

I am also working on smart contracts development + payment integration services ( receiving ethereum, bitcoin, crowdfunding contracts for ICO etc)
and it will be also ready approximately on next week, after enabling Hubcoin deposits and withdraws as it is required.
There are very high demand, so we'll focus on this and will provide this services for Hubcoin.

Markethive ... A FREE social marketing platform that has the combined power of LinkedIn, Hubspot, Amazon and Techcrunch, plus the power of the blockchain ... https://markethive.com/freegold/page/freegold
HubCoinDev (OP)
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
September 28, 2017, 03:19:43 PM
Last edit: October 01, 2017, 03:29:29 PM by HubCoinDev
 #143

Hi hubdev, are you still listing icos? Please check out the openmoney eth ico (in my signature) and please list it. Openmoney is an ecosystem to solve blockchain monetization and distribution for mainstream app developers.

thanks and keep up the good work and don't listen to the naysayers Smiley
Yes, just added OPEN MONEY ico on tracker!  Smiley
For now I am focusing in creating Hubcoin's new contract and enabling deposits/withdraws on CoinExchange, but I will continue working on trackers and have an expanded and better explained roadmap with our main goals later, once we get the new smart contract ready and working.

New contract is almost ready, already tested it a bit and looks good.
I am going to launch it and distribute same balances + unfreeze tomorrow.
Quote
pragma solidity ^0.4.13;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant 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;
  }

  function sub(uint256 a, uint256 b) internal constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) constant returns (uint256);
  function transfer(address to, uint256 value) returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) returns (bool);
  function approve(address spender, uint256 value) returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @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) returns (bool) {
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    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) constant returns (uint256 balance) {
    return balances[_owner];
  }

}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) 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 amout of tokens to be transfered
   */
  function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
    var _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // require (_value <= _allowance);

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

  /**
   * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) returns (bool) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    require((_value == 0) || (allowed[msg.sender][_spender] == 0));

    allowed[msg.sender][_spender] = _value;
    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 specifing the amount of tokens still avaible for the spender.
   */
  function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() {
    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) onlyOwner {
    if (newOwner != address(0)) {
      owner = newOwner;
    }
  }

}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev modifier to allow actions only when the contract IS paused
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev modifier to allow actions only when the contract IS NOT paused
   */
  modifier whenPaused {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused returns (bool) {
    paused = true;
    Pause();
    return true;
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused returns (bool) {
    paused = false;
    Unpause();
    return true;
  }
}

/**
 * @title Hubcoin Token
 * @dev ERC20 Hubcoin Token (HUB)
 *
 * HUB Tokens are divisible by 1e8 (100,000,000) base
 * units referred to as 'Grains'.
 *
 * HUB are displayed using 8 decimal places of precision.
 *
 * 1 HUB is equivalent to:
 *   100000000 == 1 * 10**8 == 1e8 == One Hundred Million Grains
 *
 * All initial HUB Grains are assigned to the creator of
 * this contract.
 *
 */
contract Hubcoin is StandardToken, Pausable {

  string public constant name = 'Hubcoin';                       // Set the token name for display
  string public constant symbol = 'HUB';                                       // Set the token symbol for display
  uint8 public constant decimals = 6;                                          // Set the number of decimals for display
  uint256 public constant INITIAL_SUPPLY = 326804 * 10**uint256(decimals); // 326803326803 HUB specified in Grains
  uint256 public constant total_freeze_term = 86400;   //Both freeze stages duration
  uint256 public constant launch_date = 1506591300;
  uint256 public constant launch_term = 3600*10;

  mapping (address => uint256) public frozenAccount;

  event FrozenFunds(address target, uint256 frozen);
  event Burn(address burner, uint256 burned);

  /**
   * @dev Hubcoin Constructor
   * Runs only on initial contract creation.
   */
  function Hubcoin() {
    totalSupply = INITIAL_SUPPLY;                               // Set the total supply
    balances[msg.sender] = INITIAL_SUPPLY;                      // Creator address is assigned all
  }

  /**
   * @dev Transfer token for a specified address when not paused
   * @param _to The address to transfer to.
   * @param _value The amount to be transferred.
   */
  function transfer(address _to, uint256 _value) whenNotPaused returns (bool) {
    freezeCheck(msg.sender, _value);

    return super.transfer(_to, _value);
  }

  /**
   * @dev Transfer tokens from one address to another when not paused
   * @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) whenNotPaused returns (bool) {
    freezeCheck(msg.sender, _value);

    return super.transferFrom(_from, _to, _value);
  }

  /**
   * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender when not paused.
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) whenNotPaused returns (bool) {
    return super.approve(_spender, _value);
  }


  function freezeAccount(address target, uint256 freeze)  onlyOwner  {
        require(block.timestamp < (launch_date + launch_term));
        frozenAccount[target] = freeze;
        FrozenFunds(target, freeze);
  }

  function freezeCheck(address _from, uint256 _value)  returns (bool) {


    uint forbiddenPremine =  launch_date - block.timestamp + total_freeze_term;
    if (forbiddenPremine < 0) forbiddenPremine = 0;

    require(balances[_from] >= _value.add( frozenAccount[_from] * forbiddenPremine / total_freeze_term) ); // Check if the sender has enough
    return true;
  }

   function burn(uint256 _value) onlyOwner public {
    require(_value > 0);

    address burner = msg.sender;
    balances[burner] = balances[burner].sub(_value);
    totalSupply = totalSupply.sub(_value);
    Burn(burner, _value);
  }
}
Joni22
Full Member
***
Offline Offline

Activity: 319
Merit: 100


View Profile
September 28, 2017, 04:17:52 PM
 #144

I'm not any dev team. i'm trader + investor in hub ico and placo ico and the other coins. thanks  Wink

BITCOIN - ETHERIUM - DOGECOIN - EVACASH (EVC) - ADEVPLUS2.0
donarito
Hero Member
*****
Offline Offline

Activity: 604
Merit: 500



View Profile
September 29, 2017, 07:11:41 PM
 #145

well I see that the things are going on, that's good. but what about some small but quite important things like adding to coinmarketcap? any movements there?


                                 ▄████████▄
                               ▄█████████████▄
                             ▒▓███████████████░
                            ▒▓█████████████████░
                            ▒▓█▓▒██████████▒▓██░
                            ▒▓█████████████████░
                             ▒▓███████████████░
                               ▀████████████▀
        ▒██░                ▄▄▄▄  ▀██████▀
            ▄███▄         ▄██████▄
            ▀███▀  ▄    ▒██████████░
                 ▄███▄  ▒██████████░
                 ▀███▀    ▀██████▀
                   ▀  ▄███▄ ▀▀▀▀
                     ▒█████░
                      ▀███▀
7%|  Annual Income
   VirtacoinPLUS
|  X 11    POW | POS
   Mining. Staking. Rewards.  
|  DECENTRALIZED INCOME HYBRID
    Created for The People.  By The People.  
|



                   ▄▄████
              ▄▄████████▌
         ▄▄█████████▀███
    ▄▄██████████▀▀ ▄███▌
▄████████████▀▀  ▄█████
▀▀▀███████▀   ▄███████▌
      ██    ▄█████████
       █  ▄██████████▌
       █  ███████████
       █ ██▀ ▀██████▌
       ██▀     ▀████
                 ▀█▌




     ▄▄█▀▀ ▄▄▄▄▄▄▄▄ ▀▀█▄▄
   ▐██▄▄██████████████▄▄██▌
   ████████████████████████
  ▐████████████████████████▌
  ███████▀▀▀██████▀▀▀███████
 ▐██████     ████     ██████▌
 ███████     ████     ███████
▐████████▄▄▄██████▄▄▄████████▌
▐████████████████████████████▌
 █████▄▄▀▀▀▀██████▀▀▀▀▄▄█████
  ▀▀██████          ██████▀▀
      ▀▀▀            ▀▀▀
Aragorg
Member
**
Offline Offline

Activity: 101
Merit: 10

Cryptocurrencies are awesome!


View Profile
October 01, 2017, 02:26:29 PM
 #146

HUB team is pissing me off, how can this low supply coin go to 27satoshi Huh



Time   Type   Price   HUB   BTC
2017-10-01 08:14:05   buy   0.00001500   2535.35688558   0.03803035
2017-10-01 06:44:53   sell   0.00000027   2535.35688558   0.00068455

This guy who bought, sold for alot more.

Why HUB team is letting this happen?

I advice to start trading on hub yourselves.

Or at least do something...

Coinmarketcap is still not added... i adviced this in beginning.

Is this coin just a big scam??

I am very patient... but this is taking to long, please step up your game.

Do promotions, twitter, facebook, here, etc... Be active.

I am still holding. But dont know for how long.

This progress is starting to piss me off, because it looks like you all are on vacation and doing nothing.


Greetings Aragorg

kkofor
Sr. Member
****
Offline Offline

Activity: 365
Merit: 250


View Profile
October 01, 2017, 02:51:53 PM
 #147

what happen to the website. link doesn't working anymore. get fatal error when open ICO listing menu
HubCoinDev (OP)
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
October 01, 2017, 03:35:26 PM
 #148

well I see that the things are going on, that's good. but what about some small but quite important things like adding to coinmarketcap? any movements there?
We need to launch new smart contract for solving deposit/withdraw problem at coinexchange and some important bugfixes,
before adding Hubcoin to coinmarketcap.
I am working on it, and all is ready. Just wrote to CoinExchange.io admin and waiting for answer now.


Do promotions, twitter, facebook, here, etc... Be active.
We cant work on this and do any promotion before solving those bugs and enabling deposits/withdraws on CoinExchange.io
It is almost ready, i wrote to CoinExchange.io admin a few minutes ago and waiting for answer now.

what happen to the website. link doesn't working anymore. get fatal error when open ICO listing menu
For now all is working fine.
Can you give me links to it or may be screenshots?
I will fix it, if problem still exists.
Mr. Boat
Newbie
*
Offline Offline

Activity: 72
Merit: 0


View Profile
October 01, 2017, 04:36:02 PM
 #149

no more godamn excuses!!!! I see alot of new coins added on coinmarketcap and your not added yet, so i think you guys are doing nothing to get added there.

And if you are, you are performing to little pressure on CMC devs

This is really unacceptable....

Im thinking of selling it all... it seems like nothing is happening with Hubcoin development.

Go take care of it!!!

If its not added this week, i am dumping it all.
Did you red previous message?

We working on it.
May be they wont add Hubcoin because deposits/withdraws on CoinExchange.io not working.

So plan about adding Hubcoin to coinmarketcap is:
1) Found bug which not allow to work automatical deposit/withdraw system on CoinExchange.io
As you can see in previous message - bug is founded, it was on Ethereum.org/token code, and I also fixed it on Ethereum.org


2)Adapt and enable deposits/withdraws on CoinExchange.io, for now I am negotiate with CoinExchange.io admin about details and time and will
provide more information on next days.

3) When it will work fine and deposits + withdraws will be ready, I will send request to coinmarketcap.com again, and put request message to their thread if they will not add it and push them with other ways.

We going to make Hubcoin hard fork on next week (or a bit later).
For fixing 2 bugs + possible adding safe math for additional security.
(My own premine freezing code works perfect, both bugs inherited from token examples at Ethereum.org. )
It is only one possible way to enable deposits/withdraws on CoinExchange.io and we agreed with CoinExchange.io admin about it.
Balance distribution and Hubcoin ownage will be 100% same, so there will be no problems.
It will require only to change token id on wallets.
Then we continue Hubcoin development, will follow promised goals but will not limit us to it.

We going to make Hubcoin hard fork on next week (or a bit later).
For fixing 2 bugs + possible adding safe math for additional security.
(My own premine freezing code works perfect, both bugs inherited from token examples at Ethereum.org. )
It is only one possible way to enable deposits/withdraws on CoinExchange.io and we agreed with CoinExchange.io admin about it.
Balance distribution and Hubcoin ownage will be 100% same, so there will be no problems.
It will require only to change token id on wallets.
Then we continue Hubcoin development, will follow promised goals but will not limit us to it.

How's the hard fork setup going on? In need of anything?

New contract, which based on OpenZeppelin and Tierion (best practise and most safe code) is almost ready.
I am going to launch it on next days (Need to resync Ethereum blockchain).
Then we will contact CoinExchange.io admin and turn on deposits + withdraws.

I am also working on smart contracts development + payment integration services ( receiving ethereum, bitcoin, crowdfunding contracts for ICO etc)
and it will be also ready approximately on next week, after enabling Hubcoin deposits and withdraws as it is required.
There are very high demand, so we'll focus on this and will provide this services for Hubcoin.

New contract is almost ready, already tested it a bit and looks good.
I am going to launch it and distribute same balances + unfreeze tomorrow.

well I see that the things are going on, that's good. but what about some small but quite important things like adding to coinmarketcap? any movements there?
We need to launch new smart contract for solving deposit/withdraw problem at coinexchange and some important bugfixes,
before adding Hubcoin to coinmarketcap.
I am working on it, and all is ready. Just wrote to CoinExchange.io admin and waiting for answer now.


Do promotions, twitter, facebook, here, etc... Be active.
We cant work on this and do any promotion before solving those bugs and enabling deposits/withdraws on CoinExchange.io
It is almost ready, i wrote to CoinExchange.io admin a few minutes ago and waiting for answer now.

what happen to the website. link doesn't working anymore. get fatal error when open ICO listing menu
For now all is working fine.
Can you give me links to it or may be screenshots?
I will fix it, if problem still exists.

Well now ! In everybody else's defense you sure do speak a lot of shit !

From September 9th you have been saying the new HUB is all ready to go and you've been talking to coinexchange.io admin yet still nothing has happened almost 1 month later.... judging by your post history that you sporadically edit after venting (Like your whole personal attack on CoinExchange.io) Yes it is all archived Cool I wouldn't trust anything you say.

For a fact I know this is all a farce from the HUBcoin dev as I was sending 20 odd coins a day to coinexchange.io with no problems what so ever with the standard ETH gas price, no problems ! Explain that then if the code was broken with tx fees like how you say Roll Eyes

Remember the Premine wasn't frozen either, "Frozen" was such a stupid name to call it, should of been "Daily Unlock Premine"... anyway the coin isn't worth shit at these prices & even if any of the premine holders eventually get to unload their coins it will still be worth nothing !
robelneo
Legendary
*
Offline Offline

Activity: 3234
Merit: 1202


Bons.io Telegram Casino


View Profile WWW
October 01, 2017, 10:30:24 PM
 #150

I'm glad Hubcoin is now moving and they are now on coinexchange I'm sure there's a lot more to come to this project, considering there are a lot of team on board this project, definitely the project will push the price of this token, congratulations to the team


        █████████████████      ███████████████    ██████████  ████████    █████████████
    █    ███████   ███████  ████████      █████  ███████████ ████████    ██████   ██████ 
        █████████   ███████  ████████      █████  ████████████████████  ████████   ▀▀▀▀▀▀
   ▅▅  ████████   ███████  ████████      █████  ████████████████████  ████████
  █  ▀▀  ████████████████    ████████      █████  ████████████████████    ██████████████
     ▅▅████████   ███████  ████████      █████  ████████████████████              █████   
       ▀▀████████   ███████  ████████      █████  ████████████████████  ▄▄▄▄▄▄      █████
▅▅▅▅▄ ████████   ███████  ████████      █████  ████████ ███████████  ▀▀██████████████
        █████████████████     ████████████████   ████████ ███████████    ▀▀▀██████████


Your Intro
Telegram Casino
to Fun & Entertainment
The Next-Gen
Gaming Space
     ▃▃▃▃▃▃▃▃▃▃▃▃▃
  ▄▄█████████████▄▄
██▀               ▀████▄
                       ██
   ██            ■■    ██
 ██████        ■■  ■■  ███
   ██    ▀ ▀     ■■    ███     
     ▃▃▃▃▃▃▃▃▃▃        ██
    █████████████      ██
    ██          ████████▀
████▀           ▀█████▀
smyslov
Sr. Member
****
Offline Offline

Activity: 2002
Merit: 269


View Profile
October 01, 2017, 10:35:53 PM
 #151

I'm glad Hubcoin is now moving and they are now on coinexchange I'm sure there's a lot more to come to this project, considering there are a lot of team on board this project, definitely the project will push the price of this token, congratulations to the team

I've checked on coinmarketcap but why there are no stats on coinmarketcap, this project started months ago with good planning and they are already being traded and the platform are already here, but why no stat from coinmarketcap for reference, there should be one, c/mon guy submit it to coinmrketcap it's free
HubCoinDev (OP)
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
October 02, 2017, 09:50:51 AM
 #152

Thank you for support very much!  Smiley
Also thanks for the criticism, for example angry Mr. Boat posts and some other negative feedback was helpful in negotiations with CoinExchange.io admin.
It was a difficult debate, but finally, I got terms of solving problem and changing contract id to new on exchange (in 1 week).
I am not goint to wait and will continue Hubcoin development on this week, while waiting answer from exchange.
(Will demonstrate some new services soon).

hubcoindev [11:41 AM]
Hello, are you here?


[11:41]
Can we shedule changing hubcoin id?


ethought [11:41 AM]
Sorry we are dealing with a huge load of support at the moment due to a massive increase in traffic


[11:42]
I will get to you when I can, sorry for the delay


hubcoindev [11:42 AM]
Ok, i can wait but may be lets choose some date? a few days later for example


[11:42]
( Need to answer on forum as people getting nervous )


[11:43]
Or later


hubcoindev [12:04 PM]
I am getting many negative feedback on forum about Hubcoin and CoinExchange.io too


[12:04]
Why HUB team is letting this happen?

How's the hard fork setup going on? In need of anything?

are there any progress with the hubcoin and maintenance mode on coinexchange cause it has taken a while now.

Is this coin just a big scam??

This progress is starting to piss me off, because it looks like you all are on vacation and doing nothing.

For a fact I know this is all a farce from the HUBcoin dev as I was sending 20 odd coins a day to coinexchange.io with no problems what so ever with the standard ETH gas price, no problems ! Explain that then if the code was broken with tx fees like how you say


[12:05]
Looking forward for date when you can manage it very much


[12:05]
I dont ask you to make it immidiately, may be on next days, next week etc


ethought [12:05 PM]
Okay, we are starting to get tired of your attitude to be honest


[12:06]
We can do it in 1 week


hubcoindev [12:06 PM]
Its ok, thank you very much


[12:06]
I am very sorry for concern Lips sealed

If someone will be interested in this conversation, I can invite you to slack with CoinExchange.io admin and show.
HubCoinDev (OP)
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
October 02, 2017, 10:06:28 AM
 #153

We prepared the signature / translation campaign and made great tool to convert the image to bitcointalk signature. It will be aviable today.
It will be extremely useful for all bitcointalk users, and for our project too.
I like to say The idea is very good to limit spending from our developer holdings, which creates motivation for all of us to support development and long-term support. Sad to see little trolling here though, Where are FUDsters Huh JK!
Design must be improved but first and foremost, like every project, the core development of the project is a top priority.

That image conversation tool was ready many time ago, and published as it was promised http://hubcoin.io/pics/..
Quote from: HubCoinDev
Some another important work was made, we preparing signature / translation campaigns and make wonderful tool for convertation images to bitcointalk signatures. It will be aviable today on http://hubcoin.io/pics/.
It will be extremly useful for all bitcointalk users, and for our project too.

It need some design and interface improvment firstly, and then some promotion (posts to advertisment campaigns lesson threads etc).
We going to make it free but add some premium features for Hubcoins.
While we were solving the problem with the contract, CoinExchange.io deposits/withdraws and therefore, adding to coinmarketcap, we did not have time and energy for this.
But as it is solved, and we just need to wait answer and actions from CoinExchange.io, we going to continue development now.
ACP
Hero Member
*****
Offline Offline

Activity: 612
Merit: 520



View Profile
October 07, 2017, 09:40:26 AM
 #154

We prepared the signature / translation campaign and made great tool to convert the image to bitcointalk signature. It will be aviable today.
It will be extremely useful for all bitcointalk users, and for our project too.
I like to say The idea is very good to limit spending from our developer holdings, which creates motivation for all of us to support development and long-term support. Sad to see little trolling here though, Where are FUDsters Huh JK!
Design must be improved but first and foremost, like every project, the core development of the project is a top priority.

That image conversation tool was ready many time ago, and published as it was promised http://hubcoin.io/pics/..
Quote from: HubCoinDev
Some another important work was made, we preparing signature / translation campaigns and make wonderful tool for convertation images to bitcointalk signatures. It will be aviable today on http://hubcoin.io/pics/.
It will be extremly useful for all bitcointalk users, and for our project too.

It need some design and interface improvment firstly, and then some promotion (posts to advertisment campaigns lesson threads etc).
We going to make it free but add some premium features for Hubcoins.
While we were solving the problem with the contract, CoinExchange.io deposits/withdraws and therefore, adding to coinmarketcap, we did not have time and energy for this.
But as it is solved, and we just need to wait answer and actions from CoinExchange.io, we going to continue development now.
Ive been in slack and watching.
The inner fighting is ridiculous .
If you want to keep nodes+ explorer free listings please fire up some vps.
I suggest a swap to a traditional blockchain for investors and get away from eth. This is only causing concern.
Pay coinexchange to swap it and do a small rebrand as it conflicts with the hubcoin that has been worked on before this was launched, as I did mention in slack it would cause an issue (nobody listens) & it did.
You need to allow devs to guide.
There is no excuse for this to be so low. You could have supported the market more & I feel you have upset a few.
You can make this right. 
Brianc
Newbie
*
Offline Offline

Activity: 58
Merit: 0


View Profile
October 07, 2017, 09:15:17 PM
 #155

We prepared the signature / translation campaign and made great tool to convert the image to bitcointalk signature. It will be aviable today.
It will be extremely useful for all bitcointalk users, and for our project too.
I like to say The idea is very good to limit spending from our developer holdings, which creates motivation for all of us to support development and long-term support. Sad to see little trolling here though, Where are FUDsters Huh JK!
Design must be improved but first and foremost, like every project, the core development of the project is a top priority.

That image conversation tool was ready many time ago, and published as it was promised http://hubcoin.io/pics/..
Quote from: HubCoinDev
Some another important work was made, we preparing signature / translation campaigns and make wonderful tool for convertation images to bitcointalk signatures. It will be aviable today on http://hubcoin.io/pics/.
It will be extremly useful for all bitcointalk users, and for our project too.

It need some design and interface improvment firstly, and then some promotion (posts to advertisment campaigns lesson threads etc).
We going to make it free but add some premium features for Hubcoins.
While we were solving the problem with the contract, CoinExchange.io deposits/withdraws and therefore, adding to coinmarketcap, we did not have time and energy for this.
But as it is solved, and we just need to wait answer and actions from CoinExchange.io, we going to continue development now.
Ive been in slack and watching.
The inner fighting is ridiculous .
If you want to keep nodes+ explorer free listings please fire up some vps.
I suggest a swap to a traditional blockchain for investors and get away from eth. This is only causing concern.
Pay coinexchange to swap it and do a small rebrand as it conflicts with the hubcoin that has been worked on before this was launched, as I did mention in slack it would cause an issue (nobody listens) & it did.
You need to allow devs to guide.
There is no excuse for this to be so low. You could have supported the market more & I feel you have upset a few.
You can make this right. 


What's the Slack?
And yes, a rebrand would help. Rebrand, burn some coins of devs that arent on the coin anymore and especially limit their supply, I think the supply given to developers was too big.
Also, I offered all my help to help with the English branding, the dev is very smart but since his English isn't that good, the communication gets messy at times. But I know he is very smart and capable of having a coin that's worth more than what HUB is worth now.

Also, I suggest the dev to use some of the funds to get us in new exchanges, and in design of the website (even wordpress themes look better).
ACP
Hero Member
*****
Offline Offline

Activity: 612
Merit: 520



View Profile
October 09, 2017, 04:26:31 AM
 #156

I may have come across as negative in my last post but I am someone who goes strait to the point and this can be interpreted as rude or negative even critical.
What I am trying to say is there's options here and people willing to help with those options.
Seems like those left or those wanting to continue forward and keep their word (devs) need to become active again in slack channel for team and throw some good ideas around and go from there.
HubCoinDev (OP)
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
October 11, 2017, 10:42:05 AM
Last edit: October 11, 2017, 11:19:42 AM by HubCoinDev
 #157

Sadly but Ethought, CoinExchange.io admin dont reply.
May be he is extremely busy and have any urgent problems on CoinExchange.io, or anything else, dont know.
We cant wait more and made new plan without any required actions from CoinExchange.
(It created with the support of team and active members)

We will launch new contract without bugs and with improved security, will burn too big premine and decrease it to 10% as it was planned at start.
So there will be absolutely same amount for investors, and near 80k Hubcoins will be reserved for CoinExchange.io when he finally gets in touch.
Premine and distributed amount will be decreased much, from 250k coins to approximately 8k.
My part will be near 800 coins, and amount which will be distributed to another developers will be near 7200 coins. (10% as it was planned at start.)

Tomorrow or 1-2 days later we will launch new contract, will start work to adding it on other exchanges () + create our own exchange service.
We will continue poking CoinExchange.io too, investors will be able to withdraw funds and get same amount which they bought.

Now we stop waiting answer from them and just continue work.
Filling ICO tracker (650 ICOs for now), improving design, launching new contract with decreased premine etc.

(One of early design examples. We continue experiments and will prepare some prototypes, then will choose best design and implement it to website)
We will accept Hubcoins for ICO tracker, for moving ICOs upper on list and some services too.

As amount of Hubcoins outside of CoinExchange.io will be very few, only 8k, it is expected that price will increase much, CoinExchange.io will get massive feedback
and he will have to change id and enable deposits/withdraws anyway.





TrollCoins
Sr. Member
****
Offline Offline

Activity: 404
Merit: 329


One coin to Troll them all


View Profile WWW
October 11, 2017, 06:39:40 PM
 #158

Sorry to hear about the coinexchange drama, been out of touch due to blockchain issues on my end too but back on track now! Will join you whippersnappers & get a slack account, see you there.

Bloedhond666
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
October 12, 2017, 12:08:18 AM
 #159

HUB team is pissing me off, how can this low supply coin go to 27satoshi Huh



Time   Type   Price   HUB   BTC
2017-10-01 08:14:05   buy   0.00001500   2535.35688558   0.03803035
2017-10-01 06:44:53   sell   0.00000027   2535.35688558   0.00068455

This guy who bought, sold for alot more.

Why HUB team is letting this happen?

I advice to start trading on hub yourselves.

Or at least do something...

Coinmarketcap is still not added... i adviced this in beginning.

Is this coin just a big scam??

I am very patient... but this is taking to long, please step up your game.

Do promotions, twitter, facebook, here, etc... Be active.

I am still holding. But dont know for how long.

This progress is starting to piss me off, because it looks like you all are on vacation and doing nothing.


Greetings Aragorg


wow dude i knew you where looking for new gold but stop investing in these scamcoins....
Also be carefull because you might be tweeting promoting these scamcoins , some people might not be believing u anymore.
And last but not least invest in great coins....i got me 2500 link..swift banking...do some research you will find great coins passing by.
Hope you will make great profit.
Sincere ,,you know who !
Mr. Boat
Newbie
*
Offline Offline

Activity: 72
Merit: 0


View Profile
October 12, 2017, 11:59:48 PM
 #160

We will be hearing the same shit over & over again, time has proven it already as he has been promising a new contract each week for a couple of months and been saying "will be done in the next few days" Roll Eyes

Don't waste your time on this shit token and the false promises the Hubcoindev is offering.
Pages: « 1 2 3 4 5 6 7 [8] 9 10 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!