Pages:
Author

Topic: [ANN][HLM] HELIUM - page 30. (Read 189458 times)

newbie
Activity: 3
Merit: 0
April 29, 2018, 12:51:35 PM
And to anticipate the following question:

The number of coins for a masternode in Helium will continue to be 1,000 HLM, although for the testnet it will take 10,000 tHLM.

But, where can the coin be bought ??
full member
Activity: 272
Merit: 107
Paranoid In Chief
April 29, 2018, 12:07:12 PM
so, for the clients - Graham has uploaded the following for OSX and WinX. I think he's still working on the winx client:

OS X: https://mega.nz/#!HFNWDICA!afI3m2KyI5hQ2a67hU2MvhTFgYuiT2WdqkPRQtvvnfo
WinX: https://mega.nz/#!jNl0nY7K!bRNdZmY840zXaeNMPkZIJSJu9rnM33iveddBZOiC2_U

Once you have these installed you can mine the 10,000 xHLM by going into the debug console and typing: setgenerate true 1
It is a CPU eater, so to turn it off: setgenerate false
I've found that if you close the wallet and bring it back it up you have to run the setgenerate true 1 again for it to start mining again.

Note: in prod there won't be any mining. Enjoy it in testnet Smiley

There is no Windows wallet because there was an error/bug and Graham was not able to cross compile it.
hero member
Activity: 744
Merit: 514
gotta let a coin be a coin
April 29, 2018, 11:51:20 AM
so, for the clients - Graham has uploaded the following for OSX and WinX. I think he's still working on the winx client:

OS X: https://mega.nz/#!HFNWDICA!afI3m2KyI5hQ2a67hU2MvhTFgYuiT2WdqkPRQtvvnfo
WinX: in progress

Once you have these installed you can mine the 10,000 xHLM by going into the debug console and typing: setgenerate true 1
It is a CPU eater, so to turn it off: setgenerate false
I've found that if you close the wallet and bring it back it up you have to run the setgenerate true 1 again for it to start mining again.

Note: in prod there won't be any mining. Enjoy it in testnet Smiley
hero member
Activity: 744
Merit: 514
gotta let a coin be a coin
April 29, 2018, 11:22:13 AM
Here are the steps to build the wallet on Linux (without gui)

git clone https://github.com/gjhiggins/diproton
cd diproton/
git checkout flibbertygibbert
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev libboost-all-dev libprotobuf-dev protobuf-compiler libdb4.8-dev libdb4.8++-dev
./autogen.sh
./configure --with-incompatible-bdb --disable-tests --disable-bench
make
sudo make install

You have to press enter and Y in different spots
full member
Activity: 272
Merit: 107
Paranoid In Chief
April 29, 2018, 11:17:51 AM
And to anticipate the following question:

The number of coins for a masternode in Helium will continue to be 1,000 HLM, although for the testnet it will take 10,000 tHLM.
hero member
Activity: 744
Merit: 514
gotta let a coin be a coin
April 29, 2018, 11:12:25 AM
that's a cut-n-paste from slack on my guide. On the masternode you may want to run the commands under the cli like: /usr/local/bin/heliumd -daemon -testnet  - commands are sent via helium-cli, such as: helium-cli -testnet masternode status

that way you keep the server headless (without X) since you don't need it
hero member
Activity: 744
Merit: 514
gotta let a coin be a coin
April 29, 2018, 11:10:25 AM
Testnet Masternode Guide:

What do you need?
10000 tHLM
1 main wallet on a host with the 10000 tHLM
1 wallet on your masternode
masternode with a public IP or NATed
make sure port TCP 19009 is open to the masternode IP for testnet

Note: port 19009 and 10000 tHLM are specific for testnet.

Steps - modified from here for Helium Testnet: https://pivxmasternode.org/2017/03/08/step-step-guide-setting-masternode/

1) Using the main wallet, enter the debug console and type the following command:
```masternode genkey```
- this is the masternode privkey

2) Using the main wallet still, enter the following command:
```getaccountaddress your_masternode_name_aka_alias```
- copy the address

3) In main wallet send 10000 tHLM to the copied address

4) Still in the main wallet, enter the command into the console:
```masternode outputs```
 - proof that it went through, needed for next step

5) On the place where the main wallet is go to the Helium testnet directory:

Linux: ~/.helium/testnet4
Mac: ~/Library/Application Support/Helium or ~/.helium/testnet4
Win: %Appdata%/Helium/testnet4

Find masternode.conf and add the following line to it:
:19009
Example:
```masternode_name_aka_alias 31.14.135.27:19009 892WPpkqbr7sr6Si4fdsfssjjapuFzAXwETCrpPJubnrmU6aKzh c8f4965ea57a68d0e6dd384324dfd28cfbe0c801015b973e7331db8ce018716999 1```

Substitute it with your own values and without the “<>”s

6) Still on the main computer, open the helium.conf file (Find it or use the edit the config file in the helium-qt client under “Tools”). Make it look like this:

```rpcuser=long random username
 rpcpassword=longer random password
 rpcallowip=127.0.0.1
 listen=0
 server=1
 daemon=1
 logtimestamps=1
 maxconnections=256```
Save it, close and restart the wallet.

6) Still on the main computer, open the helium.conf file (Find it or use the edit the config file in the helium-qt client under “Tools”). Make it look like this:

```rpcuser=long random username
 rpcpassword=longer random password
 rpcallowip=127.0.0.1
 listen=0
 server=1
 daemon=1
 logtimestamps=1
 maxconnections=256```
Save it, close and restart the wallet.

7) Now on the masternode, find the helium testnet data directory here.(Linux: ~/.helium/testnet4). Open the helium.conf file and make it look like this:

```rpcuser=long random username that you used in last step
 rpcpassword=longer random password that you used in last step
 rpcallowip=127.0.0.1
 listen=1
 server=1
 daemon=1
 logtimestamps=1
 maxconnections=256
 masternode=1
 externalip=your unique public ip address - or your NAT address, whatsmyip.org will see it
 bind=your unique public ip address, IP of the system - ifconfig -a will show it
 masternodeaddr=your unique public ip address - or your NAT address, whatsmyip.org will see it
 masternodeprivkey=Result of Step 1```

Cool Close and restart this masternode wallet.

9) On main wallet (not masternode) open debug and enter:

```masternode start-alias lockwallet our_masternode_name_aka_alias```
- remember the name you gave it in step 2

If you did it right, you should see something like this:

               
```{
                       "overall" : "Successfully started 1 masternode, failed to start 0, total 1",
                       "detail" : {
                          "status" : {
                             "alias" : "mn1",
                             "result" : "successful"
                         }
                 }```

10) Use the following command to check status:

```masternode status```

You should see something like:

```{
"vin" : "CTxIn(COutPoint(masternode output, index
), scriptSig=)",
"service" : "ip:19009",
"pubkey" : "masternode address",
"status" : "Masternode successfully started"
}```
newbie
Activity: 3
Merit: 0
April 29, 2018, 06:18:03 AM
I don't see this as a scam ico or anything like that. You have some dedicated folks trying to get the coin and business off the ground.  A lot of folks are doing work on the effort to move it along, some pro bono, because they like the community and there are some standup folks that have put a lot on the line to make this thing happen. If it were one of those clone n dumps then it would've released with a half-ass build last year and then silence. I like helping with the project even though I missed the airdrop and have zero skin in this game. Sometimes it's just fun to code and help Smiley

They're making pretty good progress and we've gotten 3 masternodes up in testnet. Feel free to play in the environment and help out. If you have any questions on how to get a masternode up in testnet feel free to ping me or join us on slack.




Hello, sorry for my English, but it's translated directly from google traslator. I would like to obtain a masternode in testnet, could you tell me the steps that I have to follow to obtain it?
hero member
Activity: 744
Merit: 514
gotta let a coin be a coin
April 29, 2018, 02:23:20 AM
I don't see this as a scam ico or anything like that. You have some dedicated folks trying to get the coin and business off the ground.  A lot of folks are doing work on the effort to move it along, some pro bono, because they like the community and there are some standup folks that have put a lot on the line to make this thing happen. If it were one of those clone n dumps then it would've released with a half-ass build last year and then silence. I like helping with the project even though I missed the airdrop and have zero skin in this game. Sometimes it's just fun to code and help Smiley

They're making pretty good progress and we've gotten 3 masternodes up in testnet. Feel free to play in the environment and help out. If you have any questions on how to get a masternode up in testnet feel free to ping me or join us on slack.
newbie
Activity: 14
Merit: 0
April 28, 2018, 11:10:55 PM
Can i get update if dev team plan to honor tha snapshot which happened on October?
Is it going to be another snapshot? Says so in first page?

"We will be looking at a snapshot of the Spreadcoin addresses on a well advertised specific date, giving people plenty of notice. Discussions with exchanges will take place prior to any formal details being released."

Thanks Cheesy

sr. member
Activity: 686
Merit: 250
April 28, 2018, 01:43:47 PM
Everything is as usual. Different people with different opinions. But the desire is the same, as the pesimists and critics, and the aptemists. Everyone wants to wait for a working product. I also, at first, praised, then criticized, and now took a neutral streak and just wait.
sr. member
Activity: 924
Merit: 256
April 28, 2018, 12:14:53 PM
My bet is on  "they are really the next big thing waiting to happen..."
The fact it's taking so long bodes well in my view.
After all, this isn't just another garbage scammy-ass cash grabbing  ICO that spring up daily
in the crypto theater,complete with an Ann thread infested with teen aged crypto-credulous noobs
who think they are gonna get rich in a day because they got in early and bought a billion worthless tokens...

....damn!  this coffee is good...  Cheesy
I like the last word from you, " ..damn! this coffee is good  Grin"
legendary
Activity: 3388
Merit: 3514
born once atheist
April 28, 2018, 08:50:12 AM
My bet is on  "they are really the next big thing waiting to happen..."
The fact it's taking so long bodes well in my view.
After all, this isn't just another garbage scammy-ass cash grabbing  ICO that spring up daily
in the crypto theater,complete with an Ann thread infested with teen aged crypto-credulous noobs
who think they are gonna get rich in a day because they got in early and bought a billion worthless tokens...

....damn!  this coffee is good...  Cheesy
copper member
Activity: 25
Merit: 0
April 28, 2018, 12:37:36 AM
So it's been over a year and this is still in progress?

I'm absolutely stunned. I have to say that seems like they are doing something right because, for a non released project and having over 100+ pages, that's just bizarre

Either they have given false hope, or spam bot OR they are really the next big thing waiting to happen..

PICK 1
hero member
Activity: 785
Merit: 502
April 27, 2018, 08:48:21 PM
The thing that worries me about this whole situation is why not tell us. Instead of watching us all asking 'when launch' for months why didnt your team just pop in and say it. Hey ppls one of the founding members bailed on me give me some time to figure out the details. It would have shown more fortitude then to leave the general holders wondering why for so long. (Months in this case).

Hindsight is 20/20 but that alone would have been pretty standard because from my estimation none of this team is young and wisdom does come from age.
legendary
Activity: 3388
Merit: 3514
born once atheist
April 27, 2018, 07:13:38 PM
I really am excited with what is going here at Helium. Devs are really crafting  an innovative cryptocurrency with exciting features that never seen before from other projects.

noob account. classic spam bot comment. with one variable field ..."Helium"  

 not rocket science
jr. member
Activity: 109
Merit: 5
hodl
April 27, 2018, 05:51:52 PM
Where can i buy or will be able to buy this coin?  Huh

Chain has not launched yet but soon devs will launch. We have a wallet and and test net. After launch, you can buy at cryptopia. Other exchanges will follow ,I hope.
newbie
Activity: 39
Merit: 0
April 27, 2018, 05:23:16 PM
Where can i buy or will be able to buy this coin?  Huh
full member
Activity: 307
Merit: 100
0xb58D6E68944e195420843fA98c4A3481a5914282
April 27, 2018, 11:34:50 AM
Devs are really crafting  an innovative cryptocurrency with exciting features that never seen before from other projects.

For example?
hero member
Activity: 744
Merit: 514
gotta let a coin be a coin
April 27, 2018, 12:45:27 AM
Testnet is up and running. We've been running wallets, making transactions, and playing with mining. It's all testnet, so it isn't any sort of real HLM. Anyway, if you want to give it a go we got instructions on how to download the testnet wallet for osx, winx, and linux. I run my stuff on linux, so if you want to try it out here are the instructions for that (ubuntu 16.04):

git clone https://github.com/gjhiggins/diproton
cd diproton/
git checkout flibbertygibbert
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev libboost-all-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev libdb4.8-dev libdb4.8++-dev
./autogen.sh
./configure --with-incompatible-bdb --with-qrencode --disable-tests --disable-bench --with-gui
make
sudo make install

The osx and winx are much easier. To run the client make sure you specify -testnet or if you run one of the binary clients specify testnet=1 in the config file. All this goodness can be found here: https://onetrollbox.slack.com/messages/C6F7VAFFA/
Pages:
Jump to: