Bitcoin Forum
November 08, 2024, 08:33:05 PM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 4 5 6 »
21  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 26, 2017, 08:49:33 AM
problems with the masternode, in the local wallet is allowed, but in the other wallets are not seen

pools not include support for payments to masternodes?

2017-11-26 07:45:26 UpdateTip: new best=00000000017d05320f7ce72ef2f52bdeb33f1aa1e353834dbc3610bd17b32097  height=7675  log2_work=50.51423  tx=10029  date=2017-11-26 07:45:07 progress=0.999830  cache=0.1MiB(187tx)
2017-11-26 07:45:26 CMasternodePayments::ProcessBlock -- Start: nBlockHeight=7685, masternode=381c104a10dda3c79a8025a64f707a6f242b387bb1ba6dd599254423557e0353-1
2017-11-26 07:45:26 CMasternodePayments::ProcessBlock -- ERROR: Failed to find masternode to pay

Yo need update to last version 1.2.0

For windows
https://onex.cash/wallets/onex-win64-v1-2-0.zip

For linux
https://github.com/onexcash/onex-core

Thanks!
22  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 25, 2017, 11:23:23 PM
The new website is now available, enjoy it!

https://onex.cash/
23  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 25, 2017, 10:34:12 PM
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.
24  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 25, 2017, 10:31:39 PM
Onex masternodes start in 140 block's!!! at block 7560!!! guys prepare your Onex coins!!!
Masternode start payments at block 10080 or 7560?

7560 we have made changes to give stability to the network
25  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 25, 2017, 10:04:52 PM
Onex masternodes start in 140 block's!!! at block 7560!!! guys prepare your Onex coins!!!
26  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 25, 2017, 07:12:33 PM
Is this another one masternode scam coin?
ANN thread saying 5.000 for MN and website 10.000 Smiley

That's because we modify the amount of coins needed for the MN, but we don't modify the website, because we are finishing the new one!
27  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 25, 2017, 05:00:30 PM
whtats the issue with this coin ? are you planning to list in any other exchanges ?

Of course, we're already dealing with it, but we have to prioritize, first we have to solve the problems with diff, then launch the new website, and continue dealing with the exchanges
28  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 25, 2017, 03:17:57 PM
Dev, wake up!
ONEX still has a chance.
You can fix all.
So, you have such variants:
-Start MN's immediately. It can stabilize network.
-Relaunch of project. With new name, with new life, and with swap ONEX to the new coin like 1:1. But you should choose same stats as ONEX have.
-You can fix network problem during couple hours and we will go far. But, as i see, network was paralyzed more than one day ago. And i suppose, you can't fix this problem right now. So, this variant is difficult to realize.

We've faced the problem. It's unpleasant but not deadly.
Yes, we have panic sell. But a lot of newborn projects had similar problems.
Even if you don't wanna make any changes, you shold be here. You are the captain of your ship.
Cummunity will support you and will help you. But, you should be here!
Hope, you will read this text, Dev.


we are working on it now to see if we can leave it solved soon, we have problems with the difficulty adjustments, any doubt here we are
29  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 24, 2017, 10:11:48 PM
Dev you can fix block time and difficulty?

we're working on it!
30  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 23, 2017, 04:49:01 PM
Signature Bounty

- Jr Member: 5 ONEX per week

- Member: 15 ONEX per week

- Full Member: 30 ONEX per week

- Sr Member: 40 ONEX per week

- Hero & Legendary: 55 ONEX per week

Registration form

Temporarily closed

Registered users


Green - Accepted
Orange - Erroneous information or signature without updating

IMPORTANT:

Signature campaign rules


1: Keep your signature unchanged throughout the week so that you can receive your ONEX
2: You must have a minimum of 15 messages each week you participate in the campaign
3: Accepted messages will be those that have a minimum of 50 characters.
First payments made, in a few days we will continue to make payments to people who are completing the week.

Users who are purple in color did not comply with any of the 3 rules, will receive a symbolic amount to keep the signature, in the round of the second week if any rule is broken will be discarded.

New amounts set for second week payments
31  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 23, 2017, 03:56:45 PM

Signature Bounty

- Jr Member: 15 ONEX per week

- Member: 30 ONEX per week

- Full Member: 70 ONEX per week

- Sr Member: 110 ONEX per week

- Hero & Legendary: 150 ONEX per week

Registration form

Temporarily closed

Registered users


Green - Accepted
Orange - Erroneous information or signature without updating

IMPORTANT:

Signature campaign rules


1: Keep your signature unchanged throughout the week so that you can receive your ONEX
2: You must have a minimum of 15 messages each week you participate in the campaign
3: Accepted messages will be those that have a minimum of 50 characters.
Temporarily closed registration to the signature campaign, we will make the first week's payments to all those who comply with the campaign rules, users who do not yet take a week will receive the payments as soon as they comply.

thanks to all participants
32  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 5000 (50% Reward) / ASIC Resistance / [NEOSCRYPT] on: November 22, 2017, 08:23:17 PM

Masternode start payments at block 10080 !

Masternode required 5000 ONEX

¡we're updating everything, thank you all for your support!
33  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 50% Reward / ASIC Resistance / [NEOSCRYPT] on: November 22, 2017, 06:15:55 PM
Hello, Dev!
Strong community - the one of most important thing in the cryptocurrency world, isn't it ?
I am part of community. And i suggest, to change some options:
-MN's starting block. 7500-10000 block instead 15000
-Reduce requirements for MN. 5000-7500 instead 10000
 
These options are difficult to reach. Onex is falling down. It's trading below cost now.
You can make poll, and everyone will vote for preferred option.
Onex can be great project.
Do something, please. We have little time!
 


Thank you very much for your contributions, we are looking forward to making changes, there will be news soon!
34  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 50% Reward / ASIC Resistance / [NEOSCRYPT] on: November 21, 2017, 06:14:59 PM
What is it precisely that Onex Cash is meant to be? What will your platform be used for?

A fast, secure and anonymous payment platform including masternode, right now we are focused on the explorer and exchanges, we have many more ideas, but we don't want to say anything until we have developed the fundamentals.

There are a lot of projects presently aiming at becoming a major payment platform, some of which look ridiculously bad and some of which have very strong teams and a lot of funding. You need to pour a lot of work and money into this in order to be able to compete with them.
All the project have objectives that alway great but not many projects do great things. Many coin is just a simulation of other coins. Making improvements is not easy.

Sure but it would be naive to think that competition in this sector is low. In fact it is very fierce so I hope One Cash is on top of things right from the start!

That's why we are working on project stuff all day long, we hope to give you some good news soon!
35  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 50% Reward / ASIC Resistance / [NEOSCRYPT] on: November 20, 2017, 10:46:06 PM
All payments have been made, thank you all for participating and supporting the project
Hi!
I wrote about MN's couple hours ago. I will repeat my question.
When will MN's be started? A wanna get one, but as i see, there are still 10 coins/block. It means, MN's are disabled.
Thank you!

Excuse me , after block 15120
36  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 50% Reward / ASIC Resistance / [NEOSCRYPT] on: November 20, 2017, 09:55:41 PM
ONEX INFORMATION

Network (GH/s)
1.9761

Difficulty
192.9228858581909

Coin Supply (ONEX)
506290.66839509

i saw my name in the spreadsheet labeled using a purple one,
and i noticed that i need to verify it.
but i did it,i sent you a message a day ago when the sheet out.
so why my name still labeled using a purple one dev ?
or i might be missing something in here ? or what should i do to verify it.
thanks you in advance

Sorry, I missed it, I just made the transfer, thanks for the support.
37  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 50% Reward / ASIC Resistance / [NEOSCRYPT] on: November 20, 2017, 09:01:21 PM
ONEX INFORMATION

Network (GH/s)
1.9761

Difficulty
192.9228858581909

Coin Supply (ONEX)
506290.66839509
38  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 50% Reward / ASIC Resistance / [NEOSCRYPT] on: November 20, 2017, 08:46:41 PM
All payments have been made, thank you all for participating and supporting the project
39  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 50% Reward / ASIC Resistance / [NEOSCRYPT] on: November 20, 2017, 03:42:05 PM
What is the payment DAY for this coin signature campaign? I asked because i feel that the dev should have a specific day which all participants shall be able to receive their funds.


tomorrow we'll start checking to see if the requirements have been met and we'll start with the first payments.
40  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Onex Cash / Masternodes 50% Reward / ASIC Resistance / [NEOSCRYPT] on: November 20, 2017, 03:11:18 PM

Airdrop spreadsheet


Orange:  this discards for erroneous information, post antique.
Purple: must verify that they were the ones who registered themselves, to avoid the fraud of people registering using the post of others

Tomorrow the payments will be made

 
DISCORD CHANNEL!


I'm green, but haven't received. It ccan be my fault I've installed the wallet after sending the form.

Please, this in the information of the airdrop that it would take a minimum of 8 hours to make the payments, in a few hours we start the delivery!

Quote
Airdrop Information


Once the airdrop closes, it will take a minimum of 8 hours to receive the rewards, as we will review one by one all the information to avoid fraud, double counting and so on.
Pages: « 1 [2] 3 4 5 6 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!