Pages:
Author

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

newbie
Activity: 34
Merit: 0
I have Question for masternode issue! I am running node since yesterday around 30 hrs and NO payments yet?

https://i.imgur.com/KG2F7pk.png

Does it take this long at 1st?

I did not follow 2 wallets method exactly in some tutorials. Made 2 addresses in same wallet. But apparently it works. Just dunno where the stakes are going!

newbie
Activity: 5
Merit: 0
Guys,
What could be the reason for immature coins although wallet is running 4 days in a row already?
the wallet is fully synced.
full member
Activity: 280
Merit: 100
I see instructions above to create MN.  First, is a VPS required? Assuming yes. 

Do the below instructions work to setup MN? I'm on Windows.
https://github.com/ddude1/Xios/wiki/Xios-Masternode-Windows

I've already got my coins in the XIOS wallet (Staking).  Is that a problem if i want to now setup a masternode? I'm assuming no and it will use the same wallet i have already created.

Thank you.

For your security reasons I would suggest VPS. You don't want to expose your IP address to everyone.
full member
Activity: 196
Merit: 100
I see instructions above to create MN.  First, is a VPS required? Assuming yes. 

Do the below instructions work to setup MN? I'm on Windows.
https://github.com/ddude1/Xios/wiki/Xios-Masternode-Windows

I've already got my coins in the XIOS wallet (Staking).  Is that a problem if i want to now setup a masternode? I'm assuming no and it will use the same wallet i have already created.

Thank you.

You don't need a VPS, just many prefer it.
newbie
Activity: 10
Merit: 0
I see instructions above to create MN.  First, is a VPS required? Assuming yes. 

Do the below instructions work to setup MN? I'm on Windows.
https://github.com/ddude1/Xios/wiki/Xios-Masternode-Windows

I've already got my coins in the XIOS wallet (Staking).  Is that a problem if i want to now setup a masternode? I'm assuming no and it will use the same wallet i have already created.

Thank you.
full member
Activity: 462
Merit: 101
im interested on mining this coin thru POS.. i cant seem to find any tutorials on how to do this.. can someone send me links? appreciated thanks

Thats really simple. Just install the wallet and let it sync. Then you need to transfer some coins to your wallet. Either you buy them or you need to mine them through POW (I recommend buying them). Than you have to keep your wallet online for as long as possible. Best would be 24/7. Thats all. It automatically Stakes. There more coins you have in your wallet the more profit you gain through staking.
jr. member
Activity: 85
Merit: 2
Well.. Day has 1440 Minutes so 1440 PoS Blocks per day. With 450 active MN thats ~2.5 hits for you.
member
Activity: 1708
Merit: 13
KUWA.ai
we are launching a new exchange as a team, we plan to add xios there too. we are a independent team of developers

Great news, can you tell us abouy the new exchange team ?
hero member
Activity: 1111
Merit: 588
How many coins do masternodes get per day guys ? I mean on average . Checked my masternodes today , and it seems that i get less than 2 blocks per day . Is this normal ?
sr. member
Activity: 560
Merit: 250
xios price to moon, it increases again!
full member
Activity: 280
Merit: 100

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.




Awesome guide!

I'd like to tip you!

Cheers =)


No worries

newbie
Activity: 14
Merit: 0

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.


Thank you for giving us an useful information!
I'll plan to set up this.
legendary
Activity: 1092
Merit: 1000

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.




Awesome guide!

I'd like to tip you!

Cheers =)
sr. member
Activity: 560
Merit: 250
sr. member
Activity: 560
Merit: 250
XIOS community is at the moment collecting btc for a bigger exchange.


i believe with cryptpia it goes at tleast to 70-80k sat if not more the price of xios
then we could add it to livecoin too.
already here at these exchanges it was already 50k . so think when its a bigger exchanges.
that would increase worth much
sr. member
Activity: 560
Merit: 250
xios is really top in price,while other coins reached down,xios is at good price still, in comparison with the bitcoin price
full member
Activity: 280
Merit: 100

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.


member
Activity: 144
Merit: 10
Hi
My wallet 2acJLzf7BGeKC8tDM8pLPEPFfdoe2pXBkW
Cryptocompare ID: lanhho1006
legendary
Activity: 1092
Merit: 1000
Can everyone UPVOTE and Share?

https://www.reddit.com/r/altcoin/comments/7agz1c/if_youre_a_staker_and_you_havent_heard_of_xios/?st=J9JDQ1WK&sh=af7c2281

Could be some good exposure for us, if we can stay on the hot/rising lists !

Had a pal get us going on there so far.
full member
Activity: 196
Merit: 100
Honestly I don't see the fault of price dropping only because of Btc forking and altcoins. I think that the decision to list XIOS on Yobit was totally wrong, and I say that because every great project fails on that exchange. I don't know how they are still working with their crap exchange system. I really like the xios project and bought some that I am holding, but I don't see any sucsess for us listed on Yobit.

YoBit's not so bad, it's not the best but it's a lot better than Coinsmarkets. There was a huge push at the time to get anywhere but Coinsmarkets, which was killing Xios because of no volume at the time, the situation was bad and YoBit were the first to come up with the goods.

Xios has actually been doing pretty well considering all the money's leaving alts for segwit. Xios looks like a coiled spring ready to pop when this segwit nonsense is over.

New exchanges would be nice but being on YoBit is by no means the end of the world.
Pages:
Jump to: