Bitcoin Forum
April 20, 2024, 04:21:15 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 »  All
  Print  
Author Topic: [ANN]🔥🚀 VIRTUS (VRT)| Tribus-PoW-MasterNode | PrivateSend & AtomicSwap active✨  (Read 34038 times)
VirtusPay (OP)
Newbie
*
Offline Offline

Activity: 120
Merit: 0


View Profile WWW
February 23, 2018, 07:44:22 AM
Last edit: April 06, 2018, 05:20:15 AM by VirtusPay
 #101

Virtus Masternode Setup Guide

This is a complete guide to setup Virtus (VRT) masternode on Ubuntu Vps.
Here I will show how to setup Virtus masternode on Ubuntu 16.04 x64 (1Gb Ram).

First of all download latest Virtus wallet on your local PC and let it sync.
Once it is fully synced then encrypt the wallet.
Then  backup your wallet.
You need have 25000.1 VRT in your wallet.

MAIN WALLET ON YOUR LOCAL PC
First of all unlock your wallet, go to Settings > Unlock wallet
To setup your Main Virtus wallet go to Tools > Debug Console
Then type
Code:
masternode genkey
You should see private key of your MN like this 7sRJ51FgXbxUINGRXVpRJ7CbpJv3WNp7cvtHhwrgqZj7Qqdyvb1

save the output in a text file. It will be referred as YOUR_PRIVATE_KEY

Then type
Code:
getnewaddress MN1
Then copy the returned address and send exactly 25000 VRT to this address.

Wait for 1 confirmation, then go to the debug console and type
Code:
masternode outputs
You should see one line corresponding to the transaction id (tx_id) of your 5000 coins with a digit identifier (digit) like this "d668077d1dadf951b4kjhuj8fdef2171ea3fee6efceb44e20777032efdfca9c6": "0"

Save these two strings in a text file.

Note that if you get more than 1 line, it's because you made multiple 25000 coins transactions, with the tx_id and digit associated

Next, go to Tools > Open masternode configuration file
Open the masternode.conf file and type at the bottom:
Code:
MN1 your_vps_ip:13881 YOUR_PRIVATE_KEY tx_id digit

Save it and close it.

Note that each line of the masternode.conf file corresponds to one masternode.

Now you need open Masternode tab, go to Settings > Options > Wallet > check Show masternode tab

Restart your main wallet.

MASTERNODE WALLET ON VPS
If you don't have enough RAM, create 2–4GB of swap memory
Code:
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab

For work with text files we need install nano
Code:
sudo apt-get update
sudo apt-get install nano

If you have a clean system, you need to install several dependencies
Code:
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils
sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev
sudo apt-get install libboost-all-dev
sudo apt-get install curl
sudo apt install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev
sudo apt-get install libminiupnpc-dev
sudo apt-get install libzmq3-dev

Then we need download Virtus wallet and run virtusd
Code:
wget https://github.com/VirtusPay/virtus/releases/download/v0.12.2.2/virtus-ubuntu16x64-0.12.2.2.tar.gz
tar -xvzf virtus-ubuntu16x64-0.12.2.2.tar.gz
rm virtus-ubuntu16x64-0.12.2.2.tar.gz
mv virtus-ubuntu16x64-0.12.2.2 virtus
cd virtus
./virtusd

Wait 3 minuts. After see "Warning: Make sure to encrypt your wallet and delete all non-encrypted backups after you verified that wallet works!" press Enter
wait 15 seconds and then press CTRL+C (exit from virtusd)

Open Virtus wallet configuration file
Code:
nano /root/.virtuscore/virtus.conf

and insert
Code:
rpcuser=youusername
rpcpassword=strongpassword
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
externalip=your_vps_ip:13881
masternode=1
masternodeprivkey=YOUR_PRIVATE_KEY

press CTRL+X
press Y
press ENTER

Now start you masternode wallet
Code:
./virtusd -daemon

wait 3 minuts. After see "Warning: Make sure to encrypt your wallet and delete all non-encrypted backups after you verified that wallet works!" press Enter.
Wait about 10 mins for your wallet to download the blockchain. You can check the progress with the following command :
Code:
./virtus-cli getblockcount

The block number has to catch up with the latest on the blockexplorer.

STARTING THE MASTERNODE
Go back to your MAIN wallet on local PC
First of all unlock your wallet and go to the Masternode tab.

You need to wait for 15 confirmations in order to start the masternode. Select the line corresponding to the masternode.
Click "Start-alias". Your masternode should be now switch to status PRE-ENABLED and after 15-20 minutes switch to status ENABLED !

CHECKING THE MASTERNODE STATUS
You can check the masternode status by going to the masternode wallet on your VPS and typing:
Code:
./virtus-cli masternode status

If your masternode is running it should print "Masternode successfully started".

If you have a firewall on your VPS, you need to open the 13881 port.
1713586875
Hero Member
*
Offline Offline

Posts: 1713586875

View Profile Personal Message (Offline)

Ignore
1713586875
Reply with quote  #2

1713586875
Report to moderator
Once a transaction has 6 confirmations, it is extremely unlikely that an attacker without at least 50% of the network's computation power would be able to reverse it.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713586875
Hero Member
*
Offline Offline

Posts: 1713586875

View Profile Personal Message (Offline)

Ignore
1713586875
Reply with quote  #2

1713586875
Report to moderator
AngryWhiteWolf
Full Member
***
Offline Offline

Activity: 616
Merit: 100



View Profile
February 23, 2018, 08:11:58 AM
 #102

Good luck with the project dev, I'll keep an eye on it. Curious to see the price of the coin after listing on the exchanges. Any prediction?
VirtusPay (OP)
Newbie
*
Offline Offline

Activity: 120
Merit: 0


View Profile WWW
February 23, 2018, 08:41:33 AM
Last edit: February 23, 2018, 08:53:25 AM by VirtusPay
 #103

Good luck with the project dev, I'll keep an eye on it. Curious to see the price of the coin after listing on the exchanges. Any prediction?


It's crypto bro...
A prediction dont work here )
koinov
Newbie
*
Offline Offline

Activity: 113
Merit: 0


View Profile WWW
February 23, 2018, 09:23:29 AM
 #104

Can't open your Italian thread...
VirtusPay (OP)
Newbie
*
Offline Offline

Activity: 120
Merit: 0


View Profile WWW
February 23, 2018, 09:49:26 AM
 #105

Can't open your Italian thread...

Yes. Problem have. Probably thread was deleted (
GEFE5T
Member
**
Offline Offline

Activity: 115
Merit: 10


View Profile
February 23, 2018, 10:11:14 AM
 #106

 When listing on the exchanges?
btc00
Full Member
***
Offline Offline

Activity: 361
Merit: 111


View Profile WWW
February 23, 2018, 12:29:39 PM
 #107

who have coins ? go to shared
y кoгo ecть мoнeты? зoвy в шapeд нoдy
https://t.me/shared_masternodes

https://t.me/crypto_tops aвтopcкий кaнaл вeдy c 2017 гoдa
http://retrodrop.pro coфт пpoeкт для cибилдepoв/peтpoдpпoepoв пoд мeтaмacк
VirtusPay (OP)
Newbie
*
Offline Offline

Activity: 120
Merit: 0


View Profile WWW
February 23, 2018, 12:36:35 PM
 #108

Website launched

https://www.virtuspay.co
sparkus
Full Member
***
Offline Offline

Activity: 327
Merit: 101


View Profile
February 23, 2018, 01:49:39 PM
 #109

-----------
-=ArcPool=- is ready for Virtus (tribus): https://arcpool.com
no need registration, payouts every 1 hour, welcome!
-a tribus -o stratum+tcp://eu1.arcpool.com:1702 -u <WALLET_ADDRESS> -p x
-----------
Block explorer: https://arcpool.com/explorer/2079
List of Nodes: https://arcpool.com/explorer/peers?id=2079
-----------
Discord: https://discord.gg/TyH8jvB
Twitter: https://twitter.com/arcpool_com
-----------

+++
ingvarfervent
Sr. Member
****
Offline Offline

Activity: 826
Merit: 302



View Profile
February 23, 2018, 03:20:24 PM
 #110

Website launched

https://www.virtuspay.co

Site look very good. At last good design  Smiley

Very good idea to set low rewards at start = defend for instamine  Cool

Hope MN auc. be good and dev have money to listing on mnonline and some good exchange   Wink
sefirotius
Full Member
***
Offline Offline

Activity: 658
Merit: 102


IDENA.IO - Proof-Of-Person Blockchain


View Profile
February 23, 2018, 04:25:15 PM
 #111

when there will be an auction?



[Senior Member]

             ▄▄▄ ▀▀▀▀▀▀▀▀▀ ▄▄▄
           ▄▀▀    ▄▄▄▄▄▄▄▄▄    ▀▀▄
        ▄▀▀  ▄▄▀█          ▀█▀▄▄  ▀▀▄
      ▄▀▀ ▄▄▀    ▀▀▄▄▄▄▄▄▄▀▀    ▀▄▄ ▀▀▄
     █   █            ▀            █   █
   ▄▀ █  ▀▄▄                     ▄█▀  █ ▀▄
  ▄▀ ▄▀ █▄ ▀▀▀██▄▄▄       ▄▄▄██▀▀  ██ ▀▄ ▀▄
  ▀▄▀▀▄ ██ ▄▄▄▄▄▄  ▀▄   ▄▀  ▄▄▄▄▄▄ ██ ▄▀▀▄▀
 ██   █ ██ ▀▄    ▀▄ █   █ ▄▀    ▄▀ ██ █  ▀██
 █  ▄█  ▀█  ▀▀▀▀▀▀▀ █   █ ▀▀▀▀▀▀▀  █   █▄  █
█▀ █  █  █          █   █          █  █  █ ▀▀
 █▀  ▄▀  █▀▄        █   █        ▄▀█  ▀▄  ▀█
 ▄  █▀   █ ▀█▄      ▀   ▀      ▄█▀ █  ▄▀█  ▄
 █▄▀  █  █                         █  █  ▀▄█
 ▀▄  █   ▀█        ▄▄▀▄▀▄▄        █▀   █  ▄
  ▀▄▀▀  █▄ █     ▀█  ▀▀▀  █▀     █ ▄█ ▄▀▀▄▀
   ▀ ▄  ██ █▀▄     ▀▀▄▄▄▀▀     ▄▀█ ██ ▀▄ ▀
    ▀█  ██ █ █▀▄    ▄▄▄▄▄    ▄▀█ █ ██  █▀
      ▀▄ ▀ █ █ ██▄         ▄██ █ █ ▀ ▄▀
        ▀▄ █ █ █ ▀█▄     ▄█▀ █ █ █ ▄▀
          ▀▀▄█ █    ▀▀▀▀▀    █ █▄▀▀
              ▀▀ ▄▄▄▄▄▄▄▄▄▄▄ ▀▀       
I  D  E  N  A       
Proof-of-Person Blockchain

Join the mining of the first human-centric
cryptocurrency       



    
▲    2 6 8 0

N  O  D  E  S       
               ██
                ██
                ██
                ██
                ██
         ▄      ██      ▄
         ███▄   ██   ▄███
          ▀███▄ ██ ▄███▀
            ▀████████▀
              ▀████▀
                ▀▀
██▄                            ▄██
███                            ███
███                            ███
███                            ███
 ███▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄███
  ▀▀██████████████████████████▀▀       
D O W N L O A D

Idena node      
▐         
▄▄████████▄▄
▄███▀▀      ▀▀███▄
▄██▀              ▀██▄
▄██              ▄▄▄ ██▄
▄██         ▄▄▄██████  ██▄
██    ▄▄▄███████▀████   ██
██ ▀█████████▀ ▄████    ██
██    ▀████▀ ▄██████    ██
██       ▀ ▄███████     ██
▀██        ██▀█████    ██▀
▀██       █   ▀██    ██▀
▀██▄              ▄██▀
▀███▄▄      ▄▄███▀
▀▀████████▀▀
    
▄▄▄██████▄▄▄
▄▄████████████████▄▄
▄█████▀▀        ▀▀█████▄
████▀                ▀████
███▀    ▄▄▄▄▄▄▄▄▄       ▀███
███      █   ▄▄ █▀▄        ███
██▀      █  ███ █  ▀▄      ▀██
███       █   ▀▀ ▀▀▀▀█       ███
███       █  ▄▄▄▄▄▄  █       ███
███       █  ▄▄▄▄▄▄  █       ███
██▄      █  ▄▄▄▄▄▄  █      ▄██
███      █          █      ███
███▄    ▀▀▀▀▀▀▀▀▀▀▀▀    ▄███
████▄                ▄████
▀█████▄▄        ▄▄█████▀
▀▀████████████████▀▀
▀▀▀██████▀▀▀
    
▄▄████████▄▄
▄███▀▀      ▀▀███▄
▄██▀              ▀██▄
▄██            ▄▄▄   ██▄
▄██   █▄       █████▄▀ ██▄
██    ███▄▄ ▄▄██████▀   ██
██     ██████████████   ██
██      █████████████   ██
██       ▀██████████    ██
▀██      ▄████████▀    ██▀
▀██ ▄▄████████▀▀     ██▀
▀██▄              ▄██▀
▀███▄▄      ▄▄███▀
▀▀████████▀▀
      ███





███   
REQUEST INVITATION   ███
  █
  █
  █
  █
  █
███

Code:
[
VirtusPay (OP)
Newbie
*
Offline Offline

Activity: 120
Merit: 0


View Profile WWW
February 23, 2018, 04:27:38 PM
 #112

when there will be an auction?

First MN-auction (5 MN) - 20.00PM   23.Feb.2018 UTC
Second MN-aucton (5 MN) - 08.00AM  25.Feb.2018 UTC
The auctions will be held in our Discord channel (preliminary registration is required) - https://discord.gg/SUQ6zT5
firesec
Full Member
***
Offline Offline

Activity: 182
Merit: 104


Knowledge must be free !


View Profile
February 23, 2018, 04:29:57 PM
 #113

Roadmap announced:




Bitcoin address for donations:  3EfLoRWJwrXnep29drmhT19aPJcdqszswK
VirtusPay (OP)
Newbie
*
Offline Offline

Activity: 120
Merit: 0


View Profile WWW
February 23, 2018, 07:01:48 PM
 #114

MasterNode-Auction will start in an hour

If someone did not register for the auction, do it now. Write me in Doscord-channel https://discord.gg/Y5Q3RjD
Digital Drug Lord
Member
**
Offline Offline

Activity: 294
Merit: 12


View Profile
February 24, 2018, 06:11:53 AM
 #115

Have two payments from Hash4Life and unfortunately nothing on my Virtus account what's going on?

Ticker: VRT
Something: Tribes - full PoW (Proof of Work)
Block Time: 60 seconds
Diff.Retargeting: every Block

Block Confirms for Mined Blocks: 101
Block Confirms for Sending / Receiving: 6
InstantSend Confirms: 5 sec.

As per the description above, I could have received 2 micro payments from the pool (hash4.life) for my wallet in ~ 30 minutes before, but so far I have not received anything.
What happens?  Roll Eyes

Sorry, but we are not owners of hash4.life.
Currently, there are temporary difficulties with the payment of this pool.
But they have a good reputation and after the arrival of the owner everything will be fixed.

run away from this pool and never come back, you have been robbed.

pools will rob you I only deal with 1 or 2 pools I know pay. sometimes they pay and it wont end up in wallet
ingvarfervent
Sr. Member
****
Offline Offline

Activity: 826
Merit: 302



View Profile
February 24, 2018, 07:25:01 AM
 #116

run away from this pool and never come back, you have been robbed.

pools will rob you I only deal with 1 or 2 pools I know pay. sometimes they pay and it wont end up in wallet

Not true. https://hash4.life paid normal and all transactions come to wallet.

On start pool paid manual, because VTS code have some problems
Conectiva7
Newbie
*
Offline Offline

Activity: 86
Merit: 0


View Profile WWW
February 24, 2018, 07:32:01 AM
 #117

Have two payments from Hash4Life and unfortunately nothing on my Virtus account what's going on?

Ticker: VRT
Something: Tribes - full PoW (Proof of Work)
Block Time: 60 seconds
Diff.Retargeting: every Block

Block Confirms for Mined Blocks: 101
Block Confirms for Sending / Receiving: 6
InstantSend Confirms: 5 sec.

As per the description above, I could have received 2 micro payments from the pool (hash4.life) for my wallet in ~ 30 minutes before, but so far I have not received anything.
What happens?  Roll Eyes

Sorry, but we are not owners of hash4.life.
Currently, there are temporary difficulties with the payment of this pool.
But they have a good reputation and after the arrival of the owner everything will be fixed.

run away from this pool and never come back, you have been robbed.

pools will rob you I only deal with 1 or 2 pools I know pay. sometimes they pay and it wont end up in wallet

Well I only have those coins in ~30Mhz:
https://prnt.sc/ij1khg
Maybe the average difficulty is normal, but I got the balance. (I tested 2 different addresses and both received.)
loatchoat
Full Member
***
Offline Offline

Activity: 210
Merit: 101


View Profile
February 24, 2018, 02:59:58 PM
 #118

run away from this pool and never come back, you have been robbed.

pools will rob you I only deal with 1 or 2 pools I know pay. sometimes they pay and it wont end up in wallet

Not true. https://hash4.life paid normal and all transactions come to wallet.

On start pool paid manual, because VTS code have some problems

I also certify that I have mined VRT on hash4. life 2 days and everything is normal

JohnDoe3490
Full Member
***
Offline Offline

Activity: 378
Merit: 102


View Profile
February 24, 2018, 04:04:40 PM
 #119

Marking this to see how it goes Smiley
VirtusPay (OP)
Newbie
*
Offline Offline

Activity: 120
Merit: 0


View Profile WWW
February 25, 2018, 04:25:11 AM
 #120

Second MasterNode-Auction will start in three hours

If someone did not register for the auction, do it now. Write me in Doscord-channel https://discord.gg/Y5Q3RjD
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 »  All
  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!