Pages:
Author

Topic: [ANN] ✅ Xios PoS/PoW No ICO/No Airdrop/No Premine/ ⚡ 485+ Masternodes 🔥Scrypt🔥 - page 41. (Read 95823 times)

sr. member
Activity: 267
Merit: 255
Who’s running the Twitter Account? Is there a dedicated social media manager? No posts in 5 days. It should be engaging at the very least with the $XIOS/#XIOS tags, if not more.

Optimally, with all the hype around BCH / BTG, this isn’t the time yet for major news or roadmap announcements. Major updates can wait until #altsareback. But we do need some exposure.
newbie
Activity: 62
Merit: 0
Has anyone successfully compiled a wallet on a Raspberry Pi?  Sometimes when I compile wallets from github it works, sometimes not so much.
newbie
Activity: 13
Merit: 0
How are things going, what do you think guys?
hero member
Activity: 700
Merit: 501
1000% ROI Masternode Coin
No Premine is a very good move
newbie
Activity: 3
Merit: 0
member
Activity: 204
Merit: 10
Pls ignore Warning. Cyberbullying in progress.Sad.
full member
Activity: 196
Merit: 100


Looks like XIOS community suddenly just died. Discord was so full of action a week ago and now it's dead.



There's been very little activity from the team. Needs more updates, discussion.
full member
Activity: 280
Merit: 100


Looks like XIOS community suddenly just died. Discord was so full of action a week ago and now it's dead.

newbie
Activity: 4
Merit: 0
great coin and great project  wish coin can place on big exchange site 
full member
Activity: 280
Merit: 100

I followed the steps correctly. Everything got up. But the masternode keeps disconnecting. It runs for few moments and then stops.

Few explanations:
The masternode starts successfully from the local wallet.
The status on the local wallet as well as the server shows "enabled"
After few moments the status changes to "remove".

When I restart the server as well as the local wallet then only the problem gets fixed. But again for few moments only. And the infinite loop goes on.

Any help here?

Is your local wallet locked, unlocked or unlocked for staking only? Try to play with those options and see if any of them works. If not, you can eliminate that.

wallet conf file has staking=0

how to check locked/unlocked?

Unlock the wallet, it's in the settings. When unlocking you have checkbox for staking only.



Do you mean encrypted? No. My wallet is not encrypted.


And you configured only 1 masternode? Not multiple ones?

member
Activity: 64
Merit: 10

I followed the steps correctly. Everything got up. But the masternode keeps disconnecting. It runs for few moments and then stops.

Few explanations:
The masternode starts successfully from the local wallet.
The status on the local wallet as well as the server shows "enabled"
After few moments the status changes to "remove".

When I restart the server as well as the local wallet then only the problem gets fixed. But again for few moments only. And the infinite loop goes on.

Any help here?

Is your local wallet locked, unlocked or unlocked for staking only? Try to play with those options and see if any of them works. If not, you can eliminate that.

wallet conf file has staking=0

how to check locked/unlocked?

Unlock the wallet, it's in the settings. When unlocking you have checkbox for staking only.



Do you mean encrypted? No. My wallet is not encrypted.
full member
Activity: 280
Merit: 100

I followed the steps correctly. Everything got up. But the masternode keeps disconnecting. It runs for few moments and then stops.

Few explanations:
The masternode starts successfully from the local wallet.
The status on the local wallet as well as the server shows "enabled"
After few moments the status changes to "remove".

When I restart the server as well as the local wallet then only the problem gets fixed. But again for few moments only. And the infinite loop goes on.

Any help here?

Is your local wallet locked, unlocked or unlocked for staking only? Try to play with those options and see if any of them works. If not, you can eliminate that.

wallet conf file has staking=0

how to check locked/unlocked?

Unlock the wallet, it's in the settings. When unlocking you have checkbox for staking only.

member
Activity: 64
Merit: 10

I followed the steps correctly. Everything got up. But the masternode keeps disconnecting. It runs for few moments and then stops.

Few explanations:
The masternode starts successfully from the local wallet.
The status on the local wallet as well as the server shows "enabled"
After few moments the status changes to "remove".

When I restart the server as well as the local wallet then only the problem gets fixed. But again for few moments only. And the infinite loop goes on.

Any help here?

Is your local wallet locked, unlocked or unlocked for staking only? Try to play with those options and see if any of them works. If not, you can eliminate that.

wallet conf file has staking=0

how to check locked/unlocked? Do you mean encrypted? No. My wallet is not encrypted.
full member
Activity: 280
Merit: 100

I followed the steps correctly. Everything got up. But the masternode keeps disconnecting. It runs for few moments and then stops.

Few explanations:
The masternode starts successfully from the local wallet.
The status on the local wallet as well as the server shows "enabled"
After few moments the status changes to "remove".

When I restart the server as well as the local wallet then only the problem gets fixed. But again for few moments only. And the infinite loop goes on.

Any help here?

Is your local wallet locked, unlocked or unlocked for staking only? Try to play with those options and see if any of them works. If not, you can eliminate that.
member
Activity: 64
Merit: 10

I see that a lot of people (especially on Discord) are still struggling  setting up MNs. Here are detailed steps you have to do including VPS server setup:

# --------------------------
# 1. Deploy Ubuntu 16.04 VPS
# --------------------------

# --------------------------
# 2. Add swap
# --------------------------
Code:
cd /var
touch swap.img
chmod 600 swap.img
dd if=/dev/zero of=/var/swap.img bs=2048k count=1000
mkswap /var/swap.img
swapon /var/swap.img
echo "/var/swap.img    none    swap    sw    0    0" >> /etc/fstab

# --------------------------
# 3. Add new user
# --------------------------
Code:
adduser --shell /bin/bash xios_user

# --------------------------
# 4. visudo - add user to sudoers file
# --------------------------
Code:
xios_user    ALL=(ALL:ALL) ALL

# --------------------------
# 5. Create .ssh dir and copy ssh keys to .ssh/authorized_keys
# --------------------------
Code:
su xios_user
cd
mkdir .ssh
chmod 700 .ssh

# On local computer go to ~/.ssh directory
Code:
scp id_rsa.pub xios_user@VPS_IP_ADDRESS:~xios_user/.ssh

# On VPS
Code:
cd
mv ~xios_user/.ssh/id_rsa.pub ~xios_user/.ssh/authorized_keys

# --------------------------
# 6. Change /etc/ssh/sshd_config
# --------------------------

Code:
sudo su
vi /etc/ssh/sshd_config

# Update/add the lines
Code:
PermitRootLogin no
PasswordAuthentication no
AllowUsers xios_user

# --------------------------
# 7. Restart ssh
# --------------------------
Code:
/etc/init.d/ssh restart

# --------------------------------------------------------------
# SETUP XIOS MASTERNODE
# --------------------------------------------------------------

# ------------------
# VPS
# ------------------

# 1. Install dependencies
Code:
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool

# 2. Clone repo
Code:
git clone https://github.com/ButterRose/Xios.git xios

# 3. Build XIOSd
Code:
cd xios/src
sudo make -f makefile.unix

# 4. Run XIOSd daemon
Code:
./XIOSd -daemon

# Will see an error here

# 5. Edit ~/.XIOS/XIOS.conf
Code:
vi ~/.XIOS/XIOS.conf

Code:
rpcuser=XIOSrpc
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0


# 6. Start XIOSd again
Code:
./XIOSd -daemon

# 7. Check last block synced
Code:
./XIOSd getmininginfo

Code:
{
    "blocks" : 12633,
    "currentblocksize" : 0,
    "currentblocktx" : 0,
    "difficulty" : 176623.15359025,
    "blockvalue" : 100000000,
    "netmhashps" : 13230.39365848,
    "netstakeweight" : 108655610669683.62500000,
    "errors" : "",
    "pooledtx" : 0,
    "stakeweight" : {
        "minimum" : 0,
        "maximum" : 0,
        "combined" : 0
    },
    "testnet" : false
}

# 8. Generate masternode private key
Code:
./XIOSd masternode genkey

Generated masternode private key: MASTERNODE_PRIVATE_KEY

# 10. Stop XIOSd daemon
Code:
./XIOSd stop

# 9. Update XIOS.conf file
Code:
vi ~/.XIOS/XIOS.conf

Code:
rpcuser=XIOSrpc
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0

logtimestamps=1
port=9999
masternode=1
masternodeaddr=VPS_IP_ADDRESS:9999
masternodeprivkey=MASTERNODE_PRIVATE_KEY

# 10. Start XIOSd daemon again
Code:
./XIOSd -daemon

# ------------------
# WINDOWS
# ------------------

# 11. On your XIOS Wallet open Help->Debug Window->Console and type

Code:
getaccountaddress MASTERNODE_ALIAS

Masternode address: GENERATED_MASTERNODE_ADDRESS

# 12. Send 1,000 XIOS to the address above and wait for 15 confirmations


# 13. On Windows edit ~AppData/Roaming/XIOS.conf

Code:
rpcuser=XIOSrpc
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0
logtimestamps=1

# 12. On Windows Wallet console type

Code:
masternode outputs

Output:
{
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1" : "1",
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2" : "0"
}

# 13. Create the masternode.conf file.
# Inside your Windows wallet, click Masternodes -> My Master Nodes -> Create

Alias: MASTERNODE_ALIAS
Address: VPS_IP_ADDRESS:9999
Private Key: MASTERNODE_PRIVATE_KEY
TxHash: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1
Output Index: 1
Reward Address: REWARD_WALLET_ADDRESS
Reward %: 100

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

Hope this helps.




I followed the steps correctly. Everything got up. But the masternode keeps disconnecting. It runs for few moments and then stops.

Few explanations:
The masternode starts successfully from the local wallet.
The status on the local wallet as well as the server shows "enabled"
After few moments the status changes to "remove".

When I restart the server as well as the local wallet then only the problem gets fixed. But again for few moments only. And the infinite loop goes on.

Any help here?
hero member
Activity: 697
Merit: 520
That's great, hopefully brings more people into the coin! A shame bots are pumping and dumping in Yobit.

Yeah, that was quite a dump. Fortunately, I've had bids in the 5000-6500 satoshi range for the last couple weeks, and they've finally been filled! Glad to finally be on board. This is a long term hold. With a micro cap of $1-2M, this coin could see major growth over the next year. I think that privacy/fungibility is going to be a huge issue soon, too, so the timing couldn't be better.

I've got enough Xios to spin up a masternode. Looking into the HostMNS service now -- thanks for getting it added. It makes setting up a masternode much easier! Smiley
member
Activity: 80
Merit: 10
That's great, hopefully brings more people into the coin! A shame bots are pumping and dumping in Yobit.
member
Activity: 728
Merit: 19
BlockMunch.CLUB has added Xioscoin to it's Multi-Pool!  Only 0.25% Fee's!
We are now a Multi-Pool!  We mine the most profitable coin always, and maximize your return!

Choose your payout style.  We pay out in this coin, BTC, and any coin we currently have listed on the pool!

Example Config is Below for Xioscoin Pay:
Code:
-a scrypt -o stratum+tcp://blockmunch.club:3433 -u 2MYTaGztwiAZbvVLzUYWmWdVY5BKsChPip -p c=XIOS

Example Config Below for BTC Pay
Code:
-a scrypt -o stratum+tcp://blockmunch.club:3433 -u 1JFx3fE462vMsTeYkNK5yvdWeg2wpmxvBD -p c=BTC

Block Explorer Link:
Code:
blockmunch.club/explorer/XIOS

Peer List:
Code:
blockmunch.club/site/peers?id=1985

Welcome to the Block Munch Club!

hero member
Activity: 1862
Merit: 590
XIOS now on HOSTMNS !

Host your Xios Masternodes with HostMNS








XIOS FUND = 7091.10549000 XIOS

BTC FUND = 0.33237455 BTC


Development Update: Tor integration is currently still being ironed out. I suspect it wont take much longer to compile and pass testing.

Thanks to our partners at HostMNS we now have a great XIOS Masternode Hosting Service available!

www.hostmns.net/xios

We're on our way to 500+ Masternodes!





QUICK MASTERNODE SETUP GUIDE!

Step 1: Enabling Coin Control
1. Click Settings >> Options >> Display >> Tick Display coin control features (experts only!)
https://imgur.com/0IZRFpx

Step 2: Creating Masternode Address
Click Help >> Debug window >> Console tab 
* Type: getaccountaddress (Alias)
    * Example: getaccount address mn1 

* Copy the address provided as well as what you named Alias to the txt or doc file.
https://imgur.com/5xbOXoe

Step 3: Sending Coins to Masternode Address

Click Send tab >> Inputs >> (unselect)select all >> close the inputs page
* Past your masternode address to "Pay To:"
    * Note: "Label" should automatically display your Alias 

* Type exactly 1000 (no more no less) to "Amount:".

* Press Send and then click Yes

https://imgur.com/Fx7yOpH

Step 4: Obtaining Masternode Outputs
1. Click Transactions tab
    * Hover over your transaction to yourself and make sure you have atleast 1 confirmation .

2. Click Help >> Debug window >> Console
    * Type: masternode outputs 

    * Copy the output and output index and paste them to the txt or doc file.

https://imgur.com/bhxLXAH

Step 5: Pick a Payment Plan
https://i.imgur.com/rn41xfc.png

Step 6: Creating Masternode
1. After paying for the selected plan, [email protected] will send you a txt file.

2. Open txt file.

3. Click Masternodes tab >> Create 

4. Copy the Alias, Address, PrivKey, TX Hash, and Output Index from the txt file and paste it to the create tab

5. Click OK

6. Close out of wallet and reopen it.
https://imgur.com/loJ1gcW

Step 7: Starting Masternode
1. Click Transactions tab.

2. Hover over your Masternode payment (the one where you send the coin to your Masternode Address)

3. Wait until it has at least 15 confirmations 

4. Click Masternode tab >> update (at the bottom)

5. Click on the Masternode that shows up after pressing update

6. Click Start at the bottom of the wallet.

https://imgur.com/l5Jx8i8




Great update thanks. Anyone used HostMNS before, is that legit?

Yes this is great for the XIOS community who can't run a masternode. I also like to know if anyone else has ever used this service to run a masternode? I'm looking forward to see the TOR implemented into XIOS soon. XIOS is a good long term hold.
Pages:
Jump to: