Bitcoin Forum
April 24, 2024, 03:22:45 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 [34] 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 »
661  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 04, 2016, 04:37:37 AM
We're on Safecex, FINALLY!!!  Cheesy
https://safecex.com/market?q=DNET/BTC

Happy Trading (Happy Accumulation).

Nice, because the market on btcpool.exchange has bids and offers crossed. First sign of a broken exchange.

Hey s3v3n, I'd like to run multiple masternodes on either a linux VPS instance or a linux server at home. Does each masternode require its own external IP address? Or can I simply run them in parallel using a different port for each daemon?

You would need to slice your VPS into 10gb sections with at least 512 MB ram (at minimum) and run each wallet independently. They can share 1 external IP, but obviously must use different internal IP's let your router do the auto port assignments on the way out of your network.
662  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 03, 2016, 01:32:23 AM
Post your Addy JK so people can donate to your efforts!! Smiley
663  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 02, 2016, 07:01:25 PM
@glen123

Until the PoS change occurs, those numbers are still being calculated. There are some calculations that still need to be worked out. We don't want this coin to have major inflationary issues, so we are not sure those previous numbers are appropriate.
664  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 02, 2016, 07:14:29 AM
In the OP the link to dnet.gcpool.eu is broken and the exchange link should probably be btcpool.exchange/Market?pair=DNET/BTC.

Thanks, I updated the btcpool.exchange link, but the GCPool Link is just a really bad connection. not sure what is up with the connection delay
665  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 02, 2016, 05:34:35 AM
Thanks for cluttering up the ANN.. Smiley but you can figure out what the Max Coin Supply is with a little bit of math bro.. 250 x 1440 x 180 = 64800000

but since this coin will go PoS, essentially there is no max, as PoS allows you to generate a small amount of coin forever.
666  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 02, 2016, 03:14:02 AM
The Explorer is now Online and Synced!! Thanks JK!!

http://darknetexplorer.coin-server.com/

667  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 02, 2016, 02:28:10 AM
I have as well. Thanks Guys!!
668  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 02, 2016, 01:41:46 AM
We welcome any exchange. We have already submitted requests to Polo and Bittrex. Please feel free to take a moment and submit a request as well.

Thank You
669  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 01, 2016, 10:11:52 PM
OK, here is how to setup multiple DarkNet masternodes. I am going to use RPis as the masternodes in this example,
with a wallet on your laptop acting as the controller, I am also going to write this for 2 masternodes,
but the directions could be expanded to as many as you want. The concept could also be changed around as
you please using VPSs or other computers as your masternodes, as well as something else for the controller.
If using a VPS, or darknetd as opposed to the Qt wallet, all of the commands that are to be entered in the
console should be entered on the command line preceded by "./darknet-cli",for example "./darknet-cli masternode
genkey". This should go without saying, but don't enter the quotation marks when entering commands.

Step 1: From the very begining, on your laptop in the console enter "masternode genkey" twice, and enter
"getaccountaddress MN1" and "getaccountaddress MN2", the MN1 and MN2 could be substituted with any name
you would like to call the masternode addresses.

Step 2: Send 10k DNET to each of the addresses generated in step 1, making sure to send exactly 10k, in
one transaction to each. Now, execute "masternode outputs" in the console of your laptop wallets.

Step 3: Open the masternode.conf file in the data directory of your laptop's wallet and edit it. In one
line for each masternode follow this format: ALIAS IP:51472 MASTERNODEPRIVKEY TRANSACTIONHASH INDEX​. The
ALIAS can be anything you want it to be, but for simplicities sake it may be best to use the name you used
for the wallet addresses, MN1 and MN2 in this example. The IP is the IP where the masternode wallet can be
found. the MASTERNODEPRIVKEY is the output from the command "masternode genkey" you entered earlier.
The TRANSACTIONHASH and INDEX are the output you received when you executed "masternode outputs" earlier.

Step 4: Open the darknet.conf file in the data directory of the controller wallet, again, on the laptop in
this example, Modify the contents to match this:
rpcuser=long random username
rpcpassword=longer random password
rpcallowip=127.0.0.1
listen=0
server=1
daemon=1
logtimestamps=1
maxconnections=256

Step 5: Close the wallet and restart it.

Step 6: Open the darknet.conf file in the data directory of one of your masternode wallets, on a RPi in this
example. modify the contents of the file to look like this:
rpcuser=long random username
rpcpassword=longer random password
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
masternode=1
masternodeprivkey=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Replacing the username and password with your own, and replacing the Xs with the masternode private key that
corresponds to the masternode alias you would like for this masternode.

Step 7: Close and restart that wallet.

Step 8: repeat steps 5 and 6 for the other masternode wallet, the other RPi in this example.

Final step: Now, both of your masternodes are setup, you just need to start them, you will do this with the
controlling wallet on your laptop. Open the console of the controlling wallet and enter "masternode start-many"
you should get an output something like this:
{
    "overall" : "Successfully started 2 masternodes, failed to start 0, total 2",
    "detail" : {
        "status" : {
            "alias" : "mn1",
            "result" : "successful"
        },
        "status" : {
            "alias" : "mn2",
            "result" : "successful"
        }
}
Thank you for very Nice tutorial, however i still have a issue.
Can you post an exact example of this line: ALIAS IP:51472 MASTERNODEPRIVKEY TRANSACTIONHASH INDEX​ ?

Have tried this, and wallet gets Runtime error:
MN1 xxx.xx.xx.xx:9998 MASTERNODEPRIVKEY TRANSACTIONHASH 1(index)

MN1 xxx.xx.xx.xx:9998 MASTERNODEPRIVKEY
"TRANSACTIONHASH" : "1"

Where is my error/s?
Thank you,

IW

Wrong port numbers
670  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 01, 2016, 04:44:58 AM
it will always be 10k, and there is an active exchange with sell orders as I write this.. Smiley

btcpool.exchange
671  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 01, 2016, 04:17:06 AM
This coin seems ok, could be used for a lot more things, mining is decent but ATM it is hard to get the 10K for a Obfuscation Masternode.

The increased difficulty of obtaining the required DNET to build a Masternode is what will help keep this coin moving in the right direction.
672  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 01, 2016, 04:14:35 AM
whats the max coin amount?

In the PoW phase, the max possible coins will be 64800000

We are still working the numbers to see what the following PoS phases will be. The numbers that have been proposed are just suggestions at this point.
673  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 01, 2016, 03:24:03 AM
Here are the daemon files, I have also included a script to just install the required deps etc. make sure you

chmod +x Install-Darknet-Deps

then

./Install-Darknet-Deps

https://github.com/Darknet-Crypto/Darknet/releases/download/v1.0.0.0/Darknet-Daemons-v1.0.0.0.zip

674  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 01, 2016, 02:32:41 AM
I will make available the daemon files for your server shortly, as long as you have run the install script to install the deps, the binaries will work.

Though for various reasons providing statically linked binaries is a bad idea, we will provide these shortly.

Please be aware that running Masternodes on low cost VPS's may work now, but as the network grows, the resources that the Masternodes will use will increase and you will start having issues.

675  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: February 01, 2016, 01:49:03 AM
There is now a Script available to install the Darknet wallet on you RPi2.

This has been tested on the Latest Jesse Raspbian Build and the Wheezy Raspbian Build available from the Raspberry Website Now. To avoid any issues, please use a clean fresh Raspbian Image.

Just download the script through the RPi itself then;

chmod +x Install-Darknet-RPi2

then to start the installation

./Install-Darknet-RPi2

The script will download, install all the necessary deps and git source as well as compile the binary and move it to your home directory.

When completed,

./darknet-qt
676  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: January 31, 2016, 09:34:29 PM
- Your coins will not gain weight right now as PoS has not been implemented yet.

- We are looking into the issue with the Nodes becoming inactive every few hours.

- Masternodes will get their percentage of whatever is being staked per block, instead of their percentage of what is being mined right now.

- Masternodes will always receive a higher reward than staking will as you are locking up your deposit for the benefit of the network.
677  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: January 31, 2016, 09:14:48 PM
The only reason I have found to get the error "Not capable masternode:" when you go to fire up your Masternode is you have not opened up port 51472 in your firewall. This has to happen, as the masternode needs to know what it's external IP address is. If anyone has another working solution, please let us know..
678  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: January 31, 2016, 05:41:08 PM
OK, It's pretty easy to create a masternode,

Create an Address and Name it MN1 or whatever you want. Send 10k (exactly 10k) DNET to this address. Wait until there are a minimum of 15 confirmations to the transaction.

Then you need to go to the console and type; masternode genkey (record this key)

then go to your darknet.conf file and put the following in the file;

rpcuser=( Create a Random Username)
rpcpassword=( Create a Random Password )
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
masternode=1
masternodeprivkey=(place key that was generated by mastered genkey here)

Now make sure your router has port 51472 open to the world. (its just for communications to other masternodes)

after all of the above has been completed reboot your wallet

then go to the console and type; masternode start.

If you followed everything exactly is should work fine.
679  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: January 31, 2016, 02:04:52 AM
Hey everyone, lets move some hash to coin-server.com (Zero Fee's) so we are not beating up on the btcpool
680  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] DARKNET [DNET] QRK ALGO - PoW/PoS on: January 31, 2016, 01:50:29 AM
There is another Pool online now with Zero Fee's!! coin-server.com Check it out guys
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 [34] 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!