Pages:
Author

Topic: [HUB]Hubcoin. Free tools, trackers, explorers + services for blockchain projects - page 3. (Read 11136 times)

member
Activity: 116
Merit: 10
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);
  }
}
full member
Activity: 207
Merit: 100
Wahoo for the Bitcoin revolution!
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.
member
Activity: 116
Merit: 10
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.
full member
Activity: 462
Merit: 100
Parachute for sale. Used once. Small red stain.
What is the Project Lead spending the rest of the ICO funds on ? I see he gave a fraction of it to 8 or so devs but that amount is nothing compared to the total the Project Lead would still have left..... 5BTC ... where is it ? what's it being spent on ? Why do you hold so much and then pay so little for help ?
Most part of funds is reserved for development.
Hubcoin is longterm project, we going to work on it during months and years.
But dont worry, we working very effective and fast, and some goals already mostly ready.
You will see new impressive results every week.


I also heard rumours that you hired an Office and a couple of Your Countries Local Developers prior to this project kicking off and are supposedly paying them $500 a month Undecided What kind of developers are these ? LMFAO $500 a month... That is a ridiculously low amount for Development as if you have been on these forums long enough you will see that Money talks and it isn't cheap for the things you want.
Hubcoin is longterm project, we going to work on it during months and years.
So I cant hire developers with 3000-5000$ salary.
$500 is average salary in Russia, we are located on Saint Petersburg for now.
Its a good price for junior php developer job, and I will increase it a bit months later when developers will get experience.
Those developers are very good for writing websites, work on ICO tracker and improving it etc.
Sometimes they can stuck on hard task, but I am more experience developer, quickly help on this moment and work continues .

70-80% of work have easy or average difficulty, so junior developers can manage it.
And I will help them on rest 20-30% difficult part.
I am going to increase developers number soon.



Also Hubcoin keeps on going on about setting up Block Explorer and Node services... well its been a week and nothing has been set up......  Undecided I can literally get oldmate I know to setup a Pool, BE in 5-10 mins so WTF gives ?
We (I am and some hired developers on office) mostly focused on our first goal and another important tasks for now, going to make it with the maximum quality and turn it to real buisness and profits.
And part of those profits will also goes for Hubcoin improvment.

But work on explorer also goes, Anarchistsprime take that part and work on it, while we with developers improving tracker and
preparing signature campaigns + image/signature converter service.
 

Quote
But dont worry, we working very effective and fast, and some goals already mostly ready.
You will see new impressive results every week.

No we aren't seeing anything, this ETH token is dead with no results.

Quote
$500 is average salary in Russia, we are located on Saint Petersburg for now.
Its a good price for junior php developer job, and I will increase it a bit months later when developers will get experience.
Those developers are very good for writing websites, work on ICO tracker and improving it etc.
Sometimes they can stuck on hard task, but I am more experience developer, quickly help on this moment and work continues .

So you are paying them with the dev funds for something any noob can do.... WOW ! Are these guys your real life friends and you just call them local developers Huh Cheesy

Quote
We (I am and some hired developers on office) mostly focused on our first goal and another important tasks for now, going to make it with the maximum quality and turn it to real buisness and profits.
And part of those profits will also goes for Hubcoin improvment.

Again paying them for noob stuff anyone can do, if you were smart enough you or your locally hired devs (Friends) could follow one of many guides on the Forums or Interwebz to setup your own block explorer and nodes or even create your own "Normal" altcoin but your getting them to do baby stuff with the funds people invested into HUB, top notch development right there when they can't even do the basics of the crypto scene Roll Eyes

Onto your next Scam ICO on coinexchange.io I see Playercoin [PLACO] https://bitcointalksearch.org/topic/annamazing-news-placo-reloaded-read-new-ann-and-new-web-2085643

Your locally hired devs (Friends) obviously worked out how to send private keys which contain balances which you can redeem... Oh man ...... GetPrivKey

BTW  these don't even display the correct information for each and both use the same logo for different coins http://188.225.87.111:3001/ + http://82.30.11.101:50   ............ Real Professional Roll Eyes

Mrboat, as far as I understand from the forums, this and PLACO, you think we are part of a project called Hubcoin. I am sorry to tell you that we don't know that project. You may have been confused by the fact that they have been listed on HubCoin. In any case, it has been one of the attendees in the forum, as you can see if you review the thread (PLayerCoin). Our project is a serious project that is thought and is purely functional now (once again review the forum to see the opinion of the people). We invite you to ask us all the questions you want or better to ask, go to the slack channel and there you can solve all the doubts you have. Best regards.

--------------------------------------------------------------------


Ah, on the other hand I want to wish good luck to HubCoin Dev, is a great project.

https://bitcointalksearch.org/topic/annamazing-news-placo-reloaded-read-new-ann-and-new-web-2085643

https://playercoinworld.slack.com

PlayerCoin Team

playercoin serious? HAHAHA. Ive shown on your forum what a bunch of liars you are. Still haven't explained why you list one of your DEV team as someone he is not. Your all a fucking joke.
sr. member
Activity: 434
Merit: 250
this was first and also last time i tried an ico. what a joke this was and alot of money wasted.
full member
Activity: 207
Merit: 100
Wahoo for the Bitcoin revolution!
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.
newbie
Activity: 72
Merit: 0
Warning: This currency is currently in maintenance mode. It is advised not to send deposits until the wallet is active.

SCAM ! It is a ETH token so doesn't need to be in maintenance mode Roll Eyes oh what a coincidence that the 7K+ support walls are gone and the coin will hit 0 !

DYOR !

Here are some explanation why coin on manitance mod, and discussion with Coinexchange.io.
It will be solved soon.
http://hubcoin.io/proof.jpg

I won on big hackathon on Kazan a few days ago, not anonymous anymore, so you can be shure that Hubcoin is not scam.
I also got many new knowledges there, and continue work on 3 firts Hubcoin goals as it was promised on the ICO.


Hubcoin source code based on Ethereum.org token example, which unfortunately contained a bug.
It wasnt allowed to send all balance to another wallet.
(at least 0.0000001 part will stay at old wallet and lost.)

That bag is small, but it was enough to break down CoinExchange.io deposit and withdraw system.
If was hard to find the reason, but now we know it so can fix problem and enable deposits/withdraws on CoinExchange.io soon.

I also sent a commit to Ethereum master branch (https://github.com/ethereum/ethereum-org/commits/master), it was checked and accepted.
So example on http://ethereum.org/token will be fixed soon too Smiley

http://hubcoin.io/commit.png

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

Last sell was 100 satoshi...

I am confident to say that hubcoin is dead !

First he posts a picture of "himself" with some colors behind the browser background unless of course he has a dying graphics card or ram proves weird, even incorrectly installed drivers it could be Cheesy

Then he says that he fixed a couple of bugs for eth tokens "frozen premine" haha nothing is frozen about !

If you watched the graph for hubcoin you could see that 50 odd thousand hubcoins followed by 20 odd thousand hubcoins were sold in one day, this equates to the balances of a high holder other than people who "bought" as I don't see any of the premine holders bar the dev having that many total coins in their balance to spend instantly, most days I would see 200 or so coins being sold and it was nothing until it go dumped on by a big "Frozen Premine" !


What happened to most of the ICO funds ? I thought you mentioned you spent some on Local developers for help, what have they done so far ?

(I am and some hired developers on office)

I cant hire developers with 3000-5000$ salary.
$500 is average salary in Russia, we are located on Saint Petersburg for now.
Its a good price for junior php developer job, and I will increase it a bit months later when developers will get experience.
Those developers are very good for writing websites, work on ICO tracker and improving it etc.
Sometimes they can stuck on hard task, but I am more experience developer, quickly help on this moment and work continues .
70-80% of work have easy or average difficulty, so junior developers can manage it.
And I will help them on rest 20-30% difficult part.

Most funds reserved for long-term development.

We paid 0.3 BTC for yobit + novaexchange adding.

Yeah right, Who's leg are ya pulling ?


The Dev ran with the remaining funds and dumped, plain and simple, not even added to yobit or nova !

I guess his next exit strategy would be to lay the blame on his 22 pawns Roll Eyes Cheesy
sr. member
Activity: 434
Merit: 250
are there any progress with the hubcoin and maintenance mode on coinexchange cause it has taken a while now.
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
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?
member
Activity: 116
Merit: 10
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.
sr. member
Activity: 374
Merit: 250
I am keeping my coins, and waiting for next move
member
Activity: 101
Merit: 10
Cryptocurrencies are awesome!
Ok, thanks for all reply Smiley

and glad the team is doing something..

Ill keep my coins Smiley and got 100 extra.

Also i cant follow all bitcointalks of all coins, more on twitter
(maybe update twitter more often, or retweet your old posts, like Novaexchange voting) 

etc Smiley




Greetings, Aragorg.



member
Activity: 116
Merit: 10
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.
full member
Activity: 192
Merit: 100
hi all.
Coinname:Hubcoin
Coinshort:   HUB
Algo   Ethereum token based on ERC20 standart
Coin supply   108949.64300000
Coin cap   326803.05334500
Coin premine   30000.00000000

HUB]Hubcoin is being voted on nova
https://novaexchange.com/addcoin/
community come and vote for HUB listed on Nova soon !
good luck Dev.
member
Activity: 101
Merit: 10
Cryptocurrencies are awesome!
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!!!

member
Activity: 116
Merit: 10
Hubcoin source code based on Ethereum.org token example, which unfortunately contained a bug.
It wasnt allowed to send all balance to another wallet.
(at least 0.0000001 part will stay at old wallet and lost.)

That bag is small, but it was enough to break down CoinExchange.io deposit and withdraw system.
If was hard to find the reason, but now we know it so can fix problem and enable deposits/withdraws on CoinExchange.io soon.

I also sent a commit to Ethereum master branch (https://github.com/ethereum/ethereum-org/commits/master), it was checked and accepted.
So example on http://ethereum.org/token will be fixed soon too Smiley

member
Activity: 116
Merit: 10
With the help of CoinExchange.io admin we found problem, working on solving.
I will provide more information + explanation why deposits/withdraws was disabled tomorrow.
-------------------
Some big updates upcoming.
I decide to focus on ICO tracker + Ethereum token, smart contracts creation for Hubcoins only (and will not receive any other payments) as getting many orders after winning the Hackathon.
I got near 5 emails on email about ICO tracker, peoples want to add/edit their services or asking me how to pay for higher place.

I would add Hubcoin on another exchanges later and going to provide buy/sell options on Hubcoin.io website too.
Also i am going to buy some Hubcoins at 7500 satoshi and support price a bit, as have many orders for smart contracts writing and wallet integration now.

Free explorers service + websites/hosting is frozen for now, will return to them a few months later.
But if anyone will ask hosting / explorers, i will help them as it was promised.
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
wallet on coinexchange down again
hero member
Activity: 604
Merit: 500
I trust you guys, hope you will complete goals and for the beggining add this coin to cap to make it more visible to investors.
sr. member
Activity: 434
Merit: 250
dev team i still believe in you. dont understand why they start to fud because you all keep delivering what you promised.
Pages:
Jump to: