Bitcoin Forum
May 05, 2024, 09:02:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 »  All
  Print  
Author Topic: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!  (Read 1266 times)
MATPOC
Newbie
*
Offline Offline

Activity: 155
Merit: 0


View Profile WWW
January 21, 2019, 05:32:20 AM
 #21

Hi, guys.

You are welcome to Tokyo pool - pool.rig.tokyo!

-a x11 -o stratum+tcp://pool.rig.tokyo:3533 -u your_address -p c=LEVO

About pool":

 - We have setuped advanced difficulty autotuning - your profit will be nice!
 - hourly payments
 - fee is 0.5%


Welcome to pool support in telegram: t.me/tokyo_pool - I will advice you good diff.

POOL FEE is only 1%! JOIN US!

Enjoy!


Thank you.

1714899771
Hero Member
*
Offline Offline

Posts: 1714899771

View Profile Personal Message (Offline)

Ignore
1714899771
Reply with quote  #2

1714899771
Report to moderator
1714899771
Hero Member
*
Offline Offline

Posts: 1714899771

View Profile Personal Message (Offline)

Ignore
1714899771
Reply with quote  #2

1714899771
Report to moderator
1714899771
Hero Member
*
Offline Offline

Posts: 1714899771

View Profile Personal Message (Offline)

Ignore
1714899771
Reply with quote  #2

1714899771
Report to moderator
The block chain is the main innovation of Bitcoin. It is the first distributed timestamping system.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
LEVOSWAP (OP)
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
January 22, 2019, 06:32:58 AM
 #22

Russian chinese and japanese translation needed.
Contact me on telegram or email.
LEVOSWAP (OP)
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
January 23, 2019, 08:05:17 AM
 #23

Swap scheduled for 27th of February on coinexchange!  Smiley
Swap ratio is 1:1.
link https://www.coinexchange.io/market/LEVO/BTC
descomplicabit
Newbie
*
Offline Offline

Activity: 19
Merit: 10


View Profile
February 09, 2019, 05:44:56 PM
 #24

I'm having trouble activating a masternode, I'm getting the "Failed to verify MNB"
I'm using the latest version of the compiled wallet from the source code available on github
LEVOSWAP (OP)
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
February 10, 2019, 08:39:33 AM
 #25

I sent you private message with a tutorial for setup a masternode.
LEVOSWAP (OP)
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
February 10, 2019, 09:04:41 AM
 #26

Use the following instructions to setup a masternode for LEVOCOIN on Ubuntu Server 18.04.

Make sure that you have the following requirements.

- Required amount of coins to setup the masternode.  ( 20000LEVO)
- A wallet to store your coins.
- A server or VPS.

The instructions are split in three sections.


Setup the control wallet (1/2)
Open your wallet and wait until the wallet has downloaded the complete blockchain.

Go to “Tools”.
Click “Debug console”.
This is the console where you will execute all commands.

Create a masternode private key.

Code:
masternode genkey

Example output

75eqvNfaEfkd3YTwQ3hMwyxL2BgNSrqHDgWc6jbUh4Gdtnro2Wo

Show your collateral address.

Code:
getaccountaddress "MN1"

Example output

Nad4xtgdwf7c5y45ruy5MWtVY43zYMCvva

Keep note of the masternode private key and the collateral address.


Setup the VPS
Install Ubuntu Server 18.04 on a VPS.

Update your Ubuntu machine.

Code:
sudo apt-get update
sudo apt-get upgrade

Install the required dependencies.

Code:
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python3 libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libboost-all-dev libboost-program-options-dev
sudo apt-get install libminiupnpc-dev libzmq3-dev libprotobuf-dev protobuf-compiler unzip software-properties-common

Install Berkeley DB.

Code:
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev

Download daemon

Code:
wget "http://levocoin.io/download/levocoin-daemon-linux.tar.gz" -O levocoin-daemon-linux.tar.gz
wget "http://levocoin.io/download/levocoin-qt-linux.tar.gz" -O levocoin-qt-linux.tar.gz

Extract the tar files.

Code:
tar -xzvf levocoin-daemon-linux.tar.gz
tar -xzvf levocoin-qt-linux.tar.gz

Install the daemon and tools.

Code:
sudo mv levocoind levocoin-cli levocoin-tx /usr/bin/

Create the config file.

Code:
mkdir $HOME/.levocoin
nano $HOME/.levocoin/levocoin.conf

Paste the following lines in levocoin.conf.

#----
rpcuser=rpc_levocoin
rpcpassword=yourpassword
rpcallowip=127.0.0.1
#----
listen=1
server=1
daemon=1
maxconnections=64
#----
masternode=1
masternodeprivkey=REPLACE_WITH_MASTERNODE_PRIVATE_KEY
externalip=REPLACE_WITH_EXTERNAL_IP_OF_VPS
#----

Replace the text “REPLACE_WITH_MASTERNODE_PRIVATE_KEY” with the “masternode private key” that you created using the command “masternode genkey”.

E.G. masternodeprivkey=75eqvNfaEfkd3YTwQ3hMwyxL2BgNSrqHDgWc6jbUh4Gdtnro2Wo

Replace the text “REPLACE_WITH_EXTERNAL_IP_OF_VPS” with the external IP address of your VPS.

E.G. externalip=136.144.171.201

Start your node with the following command.

Code:
levocoind

Setup the control wallet (2/2)
Transfer the required amount of coins to the “collateral address” that you created using the command “getaccountaddress "MN1"”. -------20000LEVO----------

Wait until the transaction has the required masternode confirmations.

Go to Tools.
Click Debug console.

Enter the following command.

Code:
masternode outputs

Example output


[
  {
    "06e38868bb8f9958e34d5155437d009b72dff33fc28874c87fd42e51c0f74fdb" : "0",
  }
]


Go to “Tools”.
Click “Open Masternode Configuration File”.

Modify the following line and paste it into notepad.

MN1 136.144.171.201:5394 75eqvNfaEfkd3YTwQ3hMwyxL2BgNSrqHDgWc6jbUh4Gdtnro2Wo 06e38868bb8f9958e34d5155437d009b72dff33fc28874c87fd42e51c0f74fdb 0

MN1 - Alias for your masternode.

136.144.171.201 - External IP of your VPS.

5394 - Replace with P2P port of levocoin.

75eqvNfaEfkd3YTwQ3hMwyxL2BgNSrqHDgWc6jbUh4Gdtnro2Wo - Masternode private key from the command “masternode genkey”.

06e38868bb8f9958e34d5155437d009b72dff33fc28874c87fd42e51c0f74fdb - Transaction hash from the command “masternode outputs”.

0 - Single digit from the command “masternode outputs”.

Save the file and close notepad.

Shutdown your wallet and re-open your wallet.

Go to “Settings”.
Click “Unlock Wallet”.

Enter your wallet passphrase and unlock your wallet.

Go to “Tools”.
Click “Debug console”.

Start your masternode using the command.

Code:
masternode start-alias MN1

It will take +/- 30 minutes to activate your masternode
robert3harrison
Full Member
***
Offline Offline

Activity: 219
Merit: 100


View Profile
February 10, 2019, 02:08:57 PM
Last edit: February 10, 2019, 02:32:19 PM by robert3harrison
 #27

Is the only way to get new LEVO coins to send to CoinExchange? I have all my coins in an old LEVO wallet...
Margary
Sr. Member
****
Offline Offline

Activity: 854
Merit: 252


★Bitvest.io★ Play Plinko or Invest!


View Profile
February 10, 2019, 02:52:11 PM
 #28

Is the only way to get new LEVO coins to send to CoinExchange? I have all my coins in an old LEVO wallet...

I think, you should keep the coins on your wallet for some time. it will be unwittingly sweat for even better opportunities



BIG WINNER!
[15.00000000 BTC]


▄████████████████████▄
██████████████████████
██████████▀▀██████████
█████████░░░░█████████
██████████▄▄██████████
███████▀▀████▀▀███████
██████░░░░██░░░░██████
███████▄▄████▄▄███████
████▀▀████▀▀████▀▀████
███░░░░██░░░░██░░░░███
████▄▄████▄▄████▄▄████
██████████████████████
▀████████████████████▀
▄████████████████████▄
██████████████████████
█████▀▀█▀▀▀▀▀▀██▀▀████
█████░░░░░░░░░░░░░▄███
█████░░░░░░░░░░░░▄████
█████░░▄███▄░░░░██████
█████▄▄███▀░░░░▄██████
█████████░░░░░░███████
████████░░░░░░░███████
███████░░░░░░░░███████
███████▄▄▄▄▄▄▄▄███████
██████████████████████
▀████████████████████▀
▄████████████████████▄
███████████████▀▀▀▀▀▀▀
███████████▀▀▄▄█░░░░░█
█████████▀░░█████░░░░█
███████▀░░░░░████▀░░░▀
██████░░░░░░░░▀▄▄█████
█████░▄░░░░░▄██████▀▀█
████░████▄░███████░░░░
███░█████░█████████░░█
███░░░▀█░██████████░░█
███░░░░░░████▀▀██▀░░░░
███░░░░░░███░░░░░░░░░░
▀██░▄▄▄▄░████▄▄██▄░░░░
▄████████████▀▀▀▀▀▀▀██▄
█████████████░█▀▀▀█░███
██████████▀▀░█▀░░░▀█░▀▀
███████▀░▄▄█░█░░░░░█░█▄
████▀░▄▄████░▀█░░░█▀░██
███░▄████▀▀░▄░▀█░█▀░▄░▀
█▀░███▀▀▀░░███░▀█▀░███░
▀░███▀░░░░░████▄░▄████░
░███▀░░░░░░░█████████░░
░███░░░░░░░░░███████░░░
███▀░██░░░░░░▀░▄▄▄░▀░░░
███░██████▄▄░▄█████▄░▄▄
▀██░████████░███████░█▀
▄████████████████████▄
████████▀▀░░░▀▀███████
███▀▀░░░░░▄▄▄░░░░▀▀▀██
██░▀▀▄▄░░░▀▀▀░░░▄▄▀▀██
██░▄▄░░▀▀▄▄░▄▄▀▀░░░░██
██░▀▀░░░░░░█░░░░░██░██
██░░░▄▄░░░░█░██░░░░░██
██░░░▀▀░░░░█░░░░░░░░██
██░░░░░▄▄░░█░░░░░██░██
██▄░░░░▀▀░░█░██░░░░░██
█████▄▄░░░░█░░░░▄▄████
█████████▄▄█▄▄████████
▀████████████████████▀




Rainbot
Daily Quests
Faucet
robert3harrison
Full Member
***
Offline Offline

Activity: 219
Merit: 100


View Profile
February 10, 2019, 03:15:59 PM
 #29

Is the only way to get new LEVO coins to send to CoinExchange? I have all my coins in an old LEVO wallet...

I think, you should keep the coins on your wallet for some time. it will be unwittingly sweat for even better opportunities

What?
robert3harrison
Full Member
***
Offline Offline

Activity: 219
Merit: 100


View Profile
February 10, 2019, 03:27:06 PM
 #30

Just started the new levocoin daemon and it gives me this error in the log:

Warning: At least 1 of 2 masternodes are running on a newer software version. Please check latest releases, you might need to update too.

Any ideas?
LEVOSWAP (OP)
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
February 10, 2019, 05:45:44 PM
 #31

Is the only way to get new LEVO coins to send to CoinExchange? I have all my coins in an old LEVO wallet...

The swap is conducted exclusively on coinexchange, so yes if you want new Levo, send your old Levo on coinexchange before 27 February.

Quote
Warning: At least 1 of 2 masternodes are running on a newer software version. Please check latest releases, you might need to update too.
It's not an error, it's just a warning. The wallet is up-to-date
robert3harrison
Full Member
***
Offline Offline

Activity: 219
Merit: 100


View Profile
February 27, 2019, 02:13:04 PM
 #32

Any word on how long the swap will take today?
LEVOSWAP (OP)
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
March 01, 2019, 09:15:31 AM
 #33

hello,
LevoCoin has swapped to a new chain, you can trade now to coinexchange

https://www.coinexchange.io/market/LEVO/BTC

Don't forget to generate a new address to deposit your new levo.
pinpins
Member
**
Offline Offline

Activity: 1022
Merit: 19


View Profile WWW
March 05, 2019, 12:40:19 PM
 #34

 
You can now mine Levocoin at  autoexchange mining pool Zergpool.com at 0.5% fee. Please use following commands for different mining options
 
Option 1 Auto coin switch by profitability within algorithm with payment to wallet
Code:
 -o stratum+tcp://x11.mine.zergpool.com:3533 -u <YOURBTCWALLET> -p c=BTC 

Option 2 Direct coin mining to coin wallet
Code:
 -o stratum+tcp://x11.mine.zergpool.com:3533 -u <YOURLEVOWALLET> -p c=LEVO,mc=LEVO

Option 3 Direct coin mining with autoexchange to specified coin wallet
Code:
 -o stratum+tcp://x11.mine.zergpool.com:3533 -u <YOURBTCWALLET> -p c=BTC,mc=LEVO

Please note mc stands for mining coin symbol, c stand for payout coin symbol

Autoexchange to BTC, LTC, DASH or any other currency we mine
Happy mining,
 cheers pinpin
LEVOSWAP (OP)
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
March 07, 2019, 06:32:55 AM
 #35

Levocoin will be relisted on coinmarketcap within 72hours.
robert3harrison
Full Member
***
Offline Offline

Activity: 219
Merit: 100


View Profile
April 06, 2019, 04:57:12 PM
 #36

Started up a masternode, but haven't received any rewards since 3/23/19. Was receiving rewards consistently.

Says there are only 2 masternodes, mine and 1 other.

What's up?
LEVOSWAP (OP)
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
April 24, 2019, 02:21:10 PM
 #37

This masternode have rewards and working fine Lhzdegq7AiC43Fomhbhii2k64uu3y73HEa,
did you check your configuration?
Arhgus
Newbie
*
Offline Offline

Activity: 199
Merit: 0


View Profile
August 27, 2019, 10:35:11 AM
 #38

is anyone alive here?  Huh
bokieie
Jr. Member
*
Offline Offline

Activity: 56
Merit: 1


View Profile
September 04, 2019, 09:03:45 AM
 #39

Does this Bitcointalk promotion works for you? I'm asking because we are planning to start our own project and thinking about USING this forum as marketing media.
talkshi
Newbie
*
Offline Offline

Activity: 80
Merit: 0


View Profile WWW
October 10, 2019, 07:35:29 AM
 #40

So I mined some coins I don't know why what is this coin going to be doing in future here? Any plans? If you need Ideas I am genius with thinking outside the box let me know
Pages: « 1 [2] 3 »  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!