Author

Topic: ▉ANN▉ MTNC ▉▉▉▉░ Masternodecoin ░▉▉▉ Multiple Privacy Center Platform - page 178. (Read 239101 times)

legendary
Activity: 3304
Merit: 8633
Crypto Swap Exchange
the coin and also the mtnc community are growing and growing  Grin
hero member
Activity: 2114
Merit: 619
now masternodecoin has up 91% at 0.124042

I remember even the stupid one who said two weeks ago that the currency would fail, that the next day, nobody would buy the currency, today the volume returns to $ 14,923 usd
 Grin Grin
hero member
Activity: 2114
Merit: 619
Hm, something is happening, price per coin rised well over 50 percent in the last 15 minutes.

its normal, those buyers probably wanting to run a masternode and for that reason the price will pump.

it is great news that the coin will rise again in price
legendary
Activity: 3304
Merit: 8633
Crypto Swap Exchange
Glad to see I've been added onto spreadsheet. I'd like to get more involved in this community, let me know how...  Grin

HI where is this spreadsheet?



please check the first post from the mtnc dev.
there you can find all infos also all the spreadsheets
full member
Activity: 201
Merit: 100
Glad to see I've been added onto spreadsheet. I'd like to get more involved in this community, let me know how...  Grin

HI where is this spreadsheet?

full member
Activity: 630
Merit: 103
Bounty Manager For Hire!!
Hm, something is happening, price per coin rised well over 50 percent in the last 15 minutes.

its normal, those buyers probably wanting to run a masternode and for that reason the price will pump.
full member
Activity: 461
Merit: 101
Hm, something is happening, price per coin rised well over 50 percent in the last 15 minutes.
legendary
Activity: 2744
Merit: 1708
First 100% Liquid Stablecoin Backed by Gold
I want to confirm that I have received my Masternodecoins for second airdrop round. I will hodl and stake to gain more of free coins. Will there be next airdrop round? How is this coin distributed?
sr. member
Activity: 935
Merit: 257
HAIL THE KING!
I have not received any MNTC this week. When will the latest airdrop round be paid? I have written much more than 20 posts a week. The last payment was on 12th of September. So the next airdrop round ended yesterday, or not?
sr. member
Activity: 476
Merit: 250
Are there any ongoing efforts to establish a usable block explorer? Wanna check my balances rather if the payments arrived, but I can't access my wallet pc right now? If I type in my address into the block explorer in the OP, I am redirected to the homepage only?!?
full member
Activity: 276
Merit: 102
Glad to see I've been added onto spreadsheet. I'd like to get more involved in this community, let me know how...  Grin
sr. member
Activity: 630
Merit: 252
Masternodecoin Team
1: airdrop form will be update later .

2 :about airdrop issue , please read airdrop rule carefully .

3: we will pay for masternodes.pro later.

4: reddit community is necessary .

5: roadmap is under the way.

good luck all.


ideaupdater you should ask one or two people, who are here from the start, to manage those tables and airdrops for you tbh.

dev i can help you with this. u can let me know if you need this.. i can help.

I think it would be a good idea for a team of users to help in checking the list for the airdrop, so Dev would not have so much work accumulated


thanks all guys , we will pm you if necessary.
sr. member
Activity: 630
Merit: 252
Masternodecoin Team
hero member
Activity: 2114
Merit: 619
1: airdrop form will be update later .

2 :about airdrop issue , please read airdrop rule carefully .

3: we will pay for masternodes.pro later.

4: reddit community is necessary .

5: roadmap is under the way.

good luck all.


ideaupdater you should ask one or two people, who are here from the start, to manage those tables and airdrops for you tbh.

dev i can help you with this. u can let me know if you need this.. i can help.

I think it would be a good idea for a team of users to help in checking the list for the airdrop, so Dev would not have so much work accumulated
hero member
Activity: 2114
Merit: 619
Thanks for 60 MTNC as my first airdrop. I am waiting for 3rd airdrop of masternoidcoin. How can we bought more MTNC? Is this coin listed at any third party exchange yet?

MTNC is listed on Cryptopia, Novaexchange and bitzure

!!! Warning Exchange BITZURE - SCAM !!!

Details: https://bitcointalksearch.org/topic/ann-bitzure-latest-digital-asset-exchange-made-by-traders-for-traders-2126606

@ideaupdater edit, pls, the first post in the topic.



then it is true that this exchange is a scam?
full member
Activity: 266
Merit: 101
The Future of Global Copyright Registration
1: airdrop form will be update later .

2 :about airdrop issue , please read airdrop rule carefully .

3: we will pay for masternodes.pro later.

4: reddit community is necessary .

5: roadmap is under the way.

good luck all.


ideaupdater you should ask one or two people, who are here from the start, to manage those tables and airdrops for you tbh.

dev i can help you with this. u can let me know if you need this.. i can help.
legendary
Activity: 3304
Merit: 8633
Crypto Swap Exchange

So here it is:
Code:
#
# ###########################
# Debian 9 (Stretch)
# (running from a user-account with sudo rights)
# ###########################
#

#
# Install dependencies
#
sudo apt-get update
sudo apt-get install git build-essential qt5-default libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2



#
# Build Berkeley DB
# Debian 9 ships with version 5.3 but this wallet needs older version 4.8
# The required version is not hosted in the newer debian repositories, so we need to compile on our own.
#
# Fetch the source
cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
# verify it's really the file we are looking for
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
# ONLY CONTINUE if there is no error - should be a line like this:
# -> db-4.8.30.NC.tar.gz: OK
tar -xzvf db-4.8.30.NC.tar.gz

# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

# I added LD_LIBRARY_PATH to my .bashrc, so the bdb lib can be found by the executable we will compile later on
export LD_LIBRARY_PATH="/usr/local/lib/"



#
# Get MasterNodeCoin sources from github and compile it
#
cd ~
mkdir masternodecoin
cd masternodecoin
git clone https://github.com/masternodecoin/masternodecoin.git .

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh


# Now we can build the MasterNodeCoin-QT binary ...
qmake
make -j4 # compile on 4 cores
# ... and copy the resulting binary to bin-folder
cp Masternodecoin-qt /usr/bin/Masternodecoin


# to run it simply type "Masternodecoin" to a terminal
# or create a link to the binary in the start-menu / on the desktop

# Data (Blockchain and wallet.dat) is saved to ~/.Masternodecoin

Hope this will help!
And also I hope I didn't miss anything.
Correct me if something is wrong with it.

i cant run/install the masternode-qt on my raspberry pi with this guide
someone has already run it?
full member
Activity: 952
Merit: 137
1: airdrop form will be update later .

2 :about airdrop issue , please read airdrop rule carefully .

3: we will pay for masternodes.pro later.

4: reddit community is necessary .

5: roadmap is under the way.

good luck all.



It sound like a solid plan. There will be also a 3rd airdrop round?
Thank you for all your hard work.


yes, sounds very solid. i also hope that there will be a 3rd different airdrop round too, after the month of 2nd airdrop.

dev is working hard on his end Smiley hope we will get our share.

could bite me in the ass that i wasnt an earyl airdropper of those 50k mnc...
sr. member
Activity: 266
Merit: 250


   Really do not miss the money, but to contribute to the encrypted money community, I have to support!
    Smiley
full member
Activity: 616
Merit: 100
1: airdrop form will be update later .

2 :about airdrop issue , please read airdrop rule carefully .

3: we will pay for masternodes.pro later.

4: reddit community is necessary .

5: roadmap is under the way.

good luck all.



It sound like a solid plan. There will be also a 3rd airdrop round?
Thank you for all your hard work.
Jump to: