Bitcoin Forum
April 16, 2024, 11:02:56 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 [140] 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 ... 318 »
  Print  
Author Topic: ▉ANN▉ MTNC ▉▉▉▉░ Masternodecoin ░▉▉▉ Multiple Privacy Center Platform  (Read 239042 times)
sud
Sr. Member
****
Offline Offline

Activity: 826
Merit: 301



View Profile
September 20, 2017, 01:00:26 PM
 #2781

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.
1713308576
Hero Member
*
Offline Offline

Posts: 1713308576

View Profile Personal Message (Offline)

Ignore
1713308576
Reply with quote  #2

1713308576
Report to moderator
1713308576
Hero Member
*
Offline Offline

Posts: 1713308576

View Profile Personal Message (Offline)

Ignore
1713308576
Reply with quote  #2

1713308576
Report to moderator
Activity + Trust + Earned Merit == The Most Recognized Users on Bitcointalk
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713308576
Hero Member
*
Offline Offline

Posts: 1713308576

View Profile Personal Message (Offline)

Ignore
1713308576
Reply with quote  #2

1713308576
Report to moderator
1713308576
Hero Member
*
Offline Offline

Posts: 1713308576

View Profile Personal Message (Offline)

Ignore
1713308576
Reply with quote  #2

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

Activity: 616
Merit: 100



View Profile
September 20, 2017, 02:05:47 PM
 #2782

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.
free2yu
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250



View Profile
September 20, 2017, 02:16:12 PM
 #2783



   Really do not miss the money, but to contribute to the encrypted money community, I have to support!
    Smiley
SEELE^^01
Full Member
***
Offline Offline

Activity: 952
Merit: 137



View Profile
September 20, 2017, 02:32:50 PM
 #2784

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...
cygan
Legendary
*
Offline Offline

Activity: 3122
Merit: 7642


Cashback 15%


View Profile WWW
September 20, 2017, 03:03:38 PM
 #2785


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?

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
fanten
Full Member
***
Offline Offline

Activity: 266
Merit: 101

The Future of Global Copyright Registration


View Profile
September 20, 2017, 03:07:51 PM
 #2786

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.

Smile
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
September 20, 2017, 03:44:07 PM
 #2787

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://bitcointalk.org/index.php?topic=2126606.0

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



then it is true that this exchange is a scam?
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
September 20, 2017, 03:47:41 PM
 #2788

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
ideaupdater (OP)
Sr. Member
****
Offline Offline

Activity: 630
Merit: 252


Masternodecoin Team


View Profile
September 20, 2017, 03:50:04 PM
 #2789

all bounty send before 9.12

ideaupdater (OP)
Sr. Member
****
Offline Offline

Activity: 630
Merit: 252


Masternodecoin Team


View Profile
September 20, 2017, 03:51:50 PM
 #2790

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.

nezero
Full Member
***
Offline Offline

Activity: 276
Merit: 102


View Profile
September 20, 2017, 03:57:55 PM
 #2791

Glad to see I've been added onto spreadsheet. I'd like to get more involved in this community, let me know how...  Grin

muvie
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
September 20, 2017, 04:00:30 PM
 #2792

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?!?
Drokzid
Sr. Member
****
Offline Offline

Activity: 927
Merit: 257


HAIL THE KING!


View Profile WWW
September 20, 2017, 04:03:05 PM
Last edit: September 20, 2017, 04:18:35 PM by Drokzid
 #2793

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?

BTC IS KING!
wwzsocki
Legendary
*
Offline Offline

Activity: 2716
Merit: 1706


First 100% Liquid Stablecoin Backed by Gold


View Profile WWW
September 20, 2017, 04:47:53 PM
 #2794

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?

Dfinest
Full Member
***
Offline Offline

Activity: 461
Merit: 101


View Profile
September 20, 2017, 04:55:25 PM
 #2795

Hm, something is happening, price per coin rised well over 50 percent in the last 15 minutes.
theinvestdude
Full Member
***
Offline Offline

Activity: 630
Merit: 103

Bounty Manager For Hire!!


View Profile
September 20, 2017, 04:57:00 PM
 #2796

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.
RichardBTC
Full Member
***
Offline Offline

Activity: 201
Merit: 100


View Profile
September 20, 2017, 06:07:49 PM
 #2797

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?


   ⚡⚡ PRiVCY ⚡⚡   ▂▃▅▆█ PRiVCY (PRIV) is a new PoW/PoS revolutionary privacy project  ☞ Best privacy crypto-market! █▆▅▃▂
    Own Your Privacy! ───────────────── WebsiteGithub  |  Bitcointalk  |  Twitter  |  Discord  |  Explorer ─────────────────
   ✯✯✯✯✯                 ✈✈✈[Free Airdrop - Starts 9th June][Tor]✈✈✈ ║───────────║ Wallet ➢ Windows  |  macOS  |  Linux
cygan
Legendary
*
Offline Offline

Activity: 3122
Merit: 7642


Cashback 15%


View Profile WWW
September 20, 2017, 06:12:38 PM
 #2798

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

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
September 20, 2017, 06:16:55 PM
 #2799

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
teosanru
Hero Member
*****
Offline Offline

Activity: 2100
Merit: 618


View Profile
September 20, 2017, 06:18:09 PM
 #2800

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
Pages: « 1 ... 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 [140] 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 ... 318 »
  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!