Search content
Sort by

Showing 19 of 19 results by LEVOSWAP
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 25/11/2019, 14:59:21 UTC
You can now exchange your coin on https://levobit.io/.
Please send me feedback about our tiny crypto-exchange website, you will be rewarded for it.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 05/11/2019, 17:41:58 UTC
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

I updated the link of the blockchain explorer.
Coinexchange closed so you can't exchange anymore, however we will open a trade platform for Levocoin in the end of november.
I'm currently doing testing for our exchange platform, I will share it soon.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 24/04/2019, 14:21:10 UTC
This masternode have rewards and working fine Lhzdegq7AiC43Fomhbhii2k64uu3y73HEa,
did you check your configuration?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 07/03/2019, 06:32:55 UTC
Levocoin will be relisted on coinmarketcap within 72hours.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 01/03/2019, 09:15:31 UTC
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.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 10/02/2019, 17:45:44 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 10/02/2019, 09:04:41 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 10/02/2019, 08:39:33 UTC
I sent you private message with a tutorial for setup a masternode.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 23/01/2019, 08:05:17 UTC
Swap scheduled for 27th of February on coinexchange!  Smiley
Swap ratio is 1:1.
link https://www.coinexchange.io/market/LEVO/BTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 22/01/2019, 06:32:58 UTC
Russian chinese and japanese translation needed.
Contact me on telegram or email.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 20/01/2019, 17:08:12 UTC
I corrected the rpc port in the announcement:
RPC port: 5393
P2P port: 5394
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 19/01/2019, 21:26:07 UTC
you can solo mine with wallet

solo mining in wallet? what wallet? maybe other wallet but here no...

Join us in telegram I can help you for solo mining.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 19/01/2019, 20:16:24 UTC
Twitter account and telegram group links:

Twitter
Telegram group
Post
Topic
Board Announcements (Altcoins)
Re: LEVOCOIN LEVO - New digital currency that enables instant payments to everyone
by
LEVOSWAP
on 19/01/2019, 18:34:36 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 19/01/2019, 11:08:45 UTC
how much for masternode ?

20000LEVO for setup a masternode.

Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 19/01/2019, 11:01:37 UTC
this is a new coin Huh

New chain and new coin, premine will be send to coinexchange for the swap.


This market will be disabled on 02-01-2019
The LevoCoin (LEVO) currency will be delisted on 04-02-2019
LevoCoin is being delisted from CoinExchange. The market has been halted and all orders have been cancelled. The wallet will be delisted on the 4th of February. Please withdraw all LEVO balance before the 4th of February.


Delisting is on hold we are working with coinexchange  Wink
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 19/01/2019, 10:52:39 UTC
this is a new coin Huh

New chain and new coin, premine will be send to coinexchange for the swap.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 19/01/2019, 10:40:42 UTC
Algo is X11
Post
Topic
Board Announcements (Altcoins)
Topic OP
[ANN][SWAP][LEVOCOIN] New chain and wallet for levocoin!
by
LEVOSWAP
on 19/01/2019, 10:30:51 UTC
Swap of LEVOCOIN!

Quote
Exchange on https://levobit.io/.
New exchange platform for Levocoin !


Website
Blockexplorer

Windows wallet
Linux wallet
Source code
Mining pool

Levocoin will be not rebranded, next week we will share more details.
Coinexchange will do the Official Swap.


RPC port: 5393
P2P port: 5394

Contact