Bitcoin Forum
May 29, 2024, 03:01:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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] 61 62 63 64 65 66 67 68 »
  Print  
Author Topic: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT]  (Read 67532 times)
mrkhajit
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
January 02, 2018, 02:00:30 PM
 #1181

I'm need start masternode on windows.
marvel213
Member
**
Offline Offline

Activity: 280
Merit: 13


View Profile
January 03, 2018, 08:00:51 AM
 #1182

Dev does visit the site but he doesn't post anything what's happening...

This is going forward with or without him. If he wants to contribute, very good. If not, no problem.

Good.  need to be in more exchanges though.  I do have a masternode.

I mean this coin is just as good as innova or any other dash clones.  It needs proper care and loving.
marvel213
Member
**
Offline Offline

Activity: 280
Merit: 13


View Profile
January 03, 2018, 08:03:03 AM
 #1183

I'm need start masternode on windows.

Try to follow this guide.  It should work same as OneX

https://www.youtube.com/watch?v=Mek55iQ9Dsg
ivan376
Full Member
***
Offline Offline

Activity: 742
Merit: 100


stabilascan.org


View Profile
January 03, 2018, 08:43:04 AM
 #1184

It seems that I no longer receives onex from the bounties....

wolverine5pl
Sr. Member
****
Offline Offline

Activity: 431
Merit: 250


View Profile
January 03, 2018, 10:36:16 PM
 #1185


I have had good luck with Altminer.net. I recommend using the dedicated port as I also have had the same problem with the YIIMP style pools getting confused with the c=<COIN> and getting paid out in VIVO instead of ONEX.

Make sure your wallet address is correct as well.

Hope this helps and Happy Mining!  Grin


Ah, the first coin paid! And the buy-sell spread on coinsmarkets.com is so big. As for solo-mining you have to install wallets, synchronise the chains, it's time and resourse consuming, y'know
altminer blocked me today for nothing LOL
wolverine5pl
Sr. Member
****
Offline Offline

Activity: 431
Merit: 250


View Profile
January 03, 2018, 10:37:25 PM
 #1186

Masternode Setup
This guide will help you to setup a masternode on an Ubuntu 16.04 64bit Server.

Basic Requirements
5.000 ONEX
A main wallet (We’ll use the Windows Wallet v.1.1.2)
Masternode Server (Ubuntu 16.04 that will be online 24/7)
(OPTIONAL) WinSCP (https://winscp.net/eng/download.php)
(Please keep in mind that for security reasons you’re gonna need a single IP for each masternode you’re planning to run)
Getting the Ubuntu Server ready

Updating
Once you’ve logged in for the first time on your new Ubuntu Server you should always update your package lists from the repositories.
Code:
apt-get update

Installing needed libraries

The Onex-Daemon needs some basic libraries in order to run.
Let’s get them:
Code:
sudo apt-get install git automake build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev libminiupnpc-dev

Compiling the Daemon

Now it’s time to decide. Do you want to compile the daemon on your own, or do you want to download a precompiled daemon which will save some time?
We are going to talk about both.
OPTION ONE - Compiling on your own

Getting the newest version

Code:
git clone https://github.com/onexcash/onex-core.git

OR updating an existing onex

Code:
cd onex-core && git pull

Compiling the source

Code:
cd onex-core
./autogen.sh
./configure
make

Once your ONEX source is compiled without an error you can skip the following step “(OPTIONAL) Getting precompiled daemon”.
OPTION TWO - Precompiled files

If you don’t want to compile the source by yourself,  this is where you’ll go.

Code:
mkdir onex
cd onex
wget https://onex.cash/wallets/linux/onexd && chmod +x onexd
wget https://onex.cash/wallets/linux/onex-cli && chmod +x onex-cli

Running the Daemon the first time

Running the Daemon the first time will help us to create the basic folder structure and to check for errors.
IMPORTANT: The path is different for the ones who compiled on there own and the ones who downloaded the precompiled files!

Code:
/root/onex-core/src/onexd
(For the ones who compiled on their own server)

Code:
/root/onex/onexd
(For the ones who downloaded the precompiled daemon)

Editing the configs

Once you’ve run the Daemon for the first time - it will show you to setup a rpcuser and rpcpassword and close right after it - it has also created the folder structure where the blockchain and all config files are going to be.
We want to edit those files now slightly but we’ll come back later for the finishing touch.
The easiest way is to use WinSCP to edit your conf-files. If you are somehow don’t want to use WinSCP follow these steps:
Code:
apt-get install nano
Nano is a great console-based text-editor.

Code:
nano /root/.onexcore/onex.conf

Let’s open the onex.conf located in the .onexcore folder. This folder was created by the daemon on the first run!
What goes inside the config?

Your configuration files gets read by the ONEX-Daemon on startup.
There are a lot of things you can tweak, add or remove.

This is just a basic configuration for a simple masternode setup:
Code:
rpcuser={CHOOSE A RANDOM USER}
rpcpassword={CHOOSE A RANDOM PASSWORD}
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
masternode=1
externalip={YOUR SERVER IP}
bind={YOUR SERVER IP}

Save the config and let’s get over to the main-wallet.

Main wallet setup

In order to get the masternodes to run, we need to send 5.000 ONEX to an address we are just going to create.
We use a system called “Cold-Wallet”. This system is meant for better security because actually your masternode won’t have any access to your wallet.
Masternode Priv-Key

As you might’ve saw we need a “masternodeprivkey” - this key indicates a private key that is used by your wallet and the masternode.
In your Wallet-App go to: Tools -> Debugconsole.
Code:
masternode genkey
This will generate a private key - We need to add that key to the “masternodeprivkey”-field in the onex.conf on the Ubuntu server.
Generate a wallet-address

Each masternode needs it’s own address. We are going to send 5.000 ONEX to this address later.
Code:
getaccountaddress mn1
You can change mn1 to whatever you want to name your masternode.
Save the address you’ve just generated for the next step.
Sending 5.000 ONEX to the address

Let’s send 5.000 ONEX to that address. Yes - make sure this is only 5.000 ONEX. No less, no more.)
Wait for the transaction to have at least 15 confirmations before continuing.
I won’t get further into sending ONEX.
Getting the transaction

For our local masternode-config we need to get the transaction id and following number.
Back into the main-wallets debugconsole enter:
Code:
masternode outputs
It will display a list of valid masternode transactions. If this is your first masternode there will be only one for sure.
The list contains a longer number (transaction ID) and a following number.
Save both of these somewhere for the next step.
Local configs

We are almost there. Just a few lines to edit and we are able to start our masternode. onex.conf

Open your local onex.conf (Find it or use the “Edit config file” in the onex-qt client under “Tools”).
Make it look similiar to this:
Code:
rpcuser={CHOOSE A RANDOM USER}
rpcpassword={CHOOSE A RANDOM PASSWORD}
rpcallowip=127.0.0.1
masternode.conf

Open your local masternode.conf (You can find it or open it like you’ve opened the onex.conf via the Wallet-App)
{YOURMASTERNODENAME} {YOURIP}:18291 {YOURMASTERNODEPRIVKEY} {TRANSACTIONID} {TRANSACTION_FOLLOW_ID}
which should result in something like that:
mn1 1.2.3.4:18291 3Xgpvye4AEMviBBvybpbUJorN4NCs8Hqdznovo3Q2nWQxX2BkMY 897dd18650799053b912ec0d0ab685c5527cff24666c66f944fb20624e05fe5f 1

Starting everything up

After editing all the files locally we need to get back to our Ubuntu Server and enter the “masternodeprivkey” and for sure start the daemon.
As I’ve told you in the step where we’ve created the privkey, we need to add that to the onex.conf on our server. Get back to that step if you are not sure how to open the config.
Starting the daemon on the Ubuntu server

After adding the “masternodeprivkey” in we want to start the daemon.
Code:
/root/onex/onexd -daemon
OR
Code:
/root/onex-core/src/onexd -daemon
(If you’ve compiled on your own)
The daemon should start minimzed. You’ll only see a message like this:
ONEX server starting
Remote-Start the masternode

Once you’ve restarted your Wallet-App get back into the debugconsole and enter:
masternode start-alias {YOURMASTERNODENAME}
Congratulations. You’ve successfully setup a masternode on your own.


anyone get the daemon to work.... can't seem to get mine up

would it work on rasp pi?
marvel213
Member
**
Offline Offline

Activity: 280
Merit: 13


View Profile
January 04, 2018, 03:52:20 AM
 #1187

Quote
would it work on rasp pi?

Yes it would work.  I tried it on ubuntu mate.  Does not work with raspian.

You need a different IP other than your local wallet. 
marvel213
Member
**
Offline Offline

Activity: 280
Merit: 13


View Profile
January 04, 2018, 03:54:05 AM
 #1188

I got paid 45 coins in 1 day time.  Payments are frequent like every couple of hours.   5 coins each time.

Can anyone get this coin in another exchange besides coinsmarket?
Chetty
Full Member
***
Offline Offline

Activity: 235
Merit: 153


View Profile
January 04, 2018, 01:50:59 PM
 #1189

coinsmarkets.com only, no more exchange

DeepOnion    ▬▬  Anonymous and Untraceable  ▬▬    ENJOY YOUR PRIVACY  •  JOIN DEEPONION
▐▐▐▐▐▐▐▐   ANN  Whitepaper  Facebook  Twitter  Telegram  Discord    ▌▌▌▌▌▌▌▌
Get $ONION  (✔Cryptopia  ✔KuCoin)  |  VoteCentral  Register NOW!  |  Download DeepOnion
ayamark789
Full Member
***
Offline Offline

Activity: 171
Merit: 100


View Profile
January 04, 2018, 02:12:53 PM
 #1190

This is so popular I did not notice that the main trading platform where? Where can I see the price chart?
wolverine5pl
Sr. Member
****
Offline Offline

Activity: 431
Merit: 250


View Profile
January 05, 2018, 10:15:18 AM
 #1191

Want to support Your coin. when new ppl can sign up for signature bounty>?
nuna
Member
**
Offline Offline

Activity: 208
Merit: 15


View Profile
January 05, 2018, 12:55:53 PM
 #1192

Is sentinel needed for Masternode? My Masternode status ist always pre_enabeld and some hours later restart_required  Undecided
tazmako
Full Member
***
Offline Offline

Activity: 350
Merit: 100


XDNA - Most innovative cryptocurrency in 2018


View Profile
January 06, 2018, 09:02:37 PM
 #1193

wait for next exchange will make this coin price going up!

XDNA ❱❭ Dynamic. New. Adaptable.
Revolution in PoW GPU mining | Innovation in Masternode investing
° BitGun ° T.N.T. ° XDNA Foundation °
Stable block reward even with a 10000% increase of hashrate![/url]
                 |Website| Whitepaper| Discord| Telegram | Github|                
marvel213
Member
**
Offline Offline

Activity: 280
Merit: 13


View Profile
January 07, 2018, 02:45:33 PM
 #1194

Is sentinel needed for Masternode? My Masternode status ist always pre_enabeld and some hours later restart_required  Undecided

I used sentinel just in case.  You must be the very top one.  I saw that it need a restart.  Grin  I haven't had a single disconnect for 4 days..  Getting paid every couple of hours.  Now accumulating coins with no exchange to sell them.  Angry  Waiting for coinsmarket but Onex really need another exchange.

I got some tips from this video for installing sentinel...  Sentinel section starts @ 36 minutes into the video.

https://www.youtube.com/watch?v=7xuQ0-Kch7U&t=8s
marecek666
Member
**
Offline Offline

Activity: 236
Merit: 12


View Profile
January 08, 2018, 02:51:10 PM
 #1195

could be a very interesting coin, but
- main webpage page is not working (timeout)
- official pool is down again
- altminer pool has a lot of connection issues
and there is no other reasonable pool to mine with. Is this coin going to be alive? Could devs give us a list of pools which supports Onex Cash mining? Is it possible to get listing on coinmarketcap ?
MistGold
Full Member
***
Offline Offline

Activity: 196
Merit: 100



View Profile
January 08, 2018, 03:29:25 PM
 #1196

where can i dl wallet?
wolverine5pl
Sr. Member
****
Offline Offline

Activity: 431
Merit: 250


View Profile
January 08, 2018, 03:36:02 PM
 #1197

could be a very interesting coin, but
- main webpage page is not working (timeout)
- official pool is down again
- altminer pool has a lot of connection issues
and there is no other reasonable pool to mine with. Is this coin going to be alive? Could devs give us a list of pools which supports Onex Cash mining? Is it possible to get listing on coinmarketcap ?
Have you tried mining-dutch.nl?
yaserega1986
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
January 08, 2018, 04:02:32 PM
 #1198


Prompt please, earlier on AMD worked bat with such configuration nsgminer --neoscrypt -g 1 -w 128 -I 16 -o stratum+tcp://eu1.altminer.net:10005 -u XFMSpUzSDhJAfKRvgTc3sBsaqpiW1pR4r6 -p c=ONEX,
now refuses to work. Already tried so nsgminer --neoscrypt -g 1 -w 128 -I 16 -o stratum+tcp://eu1.altminer.net:10005 -O XFMSpUzSDhJAfKRvgTc3sBsaqpiW1pR4r6:c=ONEX
marecek666
Member
**
Offline Offline

Activity: 236
Merit: 12


View Profile
January 08, 2018, 04:08:01 PM
 #1199

could be a very interesting coin, but
- main webpage page is not working (timeout)
- official pool is down again
- altminer pool has a lot of connection issues
and there is no other reasonable pool to mine with. Is this coin going to be alive? Could devs give us a list of pools which supports Onex Cash mining? Is it possible to get listing on coinmarketcap ?
Have you tried mining-dutch.nl?
will try
wolverine5pl
Sr. Member
****
Offline Offline

Activity: 431
Merit: 250


View Profile
January 08, 2018, 04:21:59 PM
 #1200

We do need exchange tho
Pages: « 1 ... 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] 61 62 63 64 65 66 67 68 »
  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!