Author

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

sr. member
Activity: 616
Merit: 256
the 50k coins from the 1st airdrop arrived today to my wallet!
big thanks!!!  Cheesy Wink
Congratulations. great news
1 node means
sr. member
Activity: 616
Merit: 256
53 nodes!!!!!. Is it really a maining? but it's not the time yet. and on the exchange so far no major trades have been observed
full member
Activity: 432
Merit: 112
I had filled out the form a few days ago but I did not have the signature, I hope it will not be late.
legendary
Activity: 3304
Merit: 8633
icarus-cards.eu
the 50k coins from the 1st airdrop arrived today to my wallet!
big thanks!!!  Cheesy Wink
sr. member
Activity: 868
Merit: 251
Empowering crypto w/ sustainable energy
hey does somebody now if can stake my coins at the pi ?
So if its possible is there a tutorial ?

I think it's possible.
I will try out tomorrow and write a tutorial if it works.

Anyone have the the Masternodecoin Wallet running on the Raspberry Pi?


Here is a short guide to compile the masternode daemon on a raspberry pi 3.
It took ages to compile, but it worked in the end.
CAREFUL: I did not test it yet - you will have to try if staking will work. Also I am not able to test if you can run a masternode on it because so far I don't have the 50000 tokens.

Code:
#
# ###########################
# raspbian-stretch-lite (tested with version of 2017-08-16) on a Raspberry Pi 3
# (running install from a user-account with sudo rights)
# ###########################
#

# Install dependencies
sudo apt-get update
sudo apt-get install git build-essential 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

# set the swap space on sd-card to 1 GB (the amount of physical memory is insufficient)
sudo echo "CONF_SWAPSIZE=2048" > /etc/dphys-swapfile
sudo systemctl restart dphys-swapfile

#
# Build Berkeley DB
# raspbian-stretch 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
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 daemon
cd src
make -f makefile.unix # only 1 core - it will take much longer on more cores, because the RAM is always full and needs to be swapped


# Now you can run the Daemon just by typing "Masternodecoind"

Thank you for working out something, i will order a pi on amazon soon Smiley
I will try it when it arrives and let you know
full member
Activity: 518
Merit: 102
Hello friend, what should be done to receive the node?
sr. member
Activity: 1015
Merit: 289
Hello!
I`m very interested in this project and MTNC  in general.
Beleiive, that MTNC is  very undervalued now, so it has the great potential to grow in future 
Will there be the third round of airdrop or another bounty campaign?

Yes, it is clearly undervalued, especially if you compare it with somehow similar projects like for example deep onion. If the devs will know how to handle it value will grow.
full member
Activity: 420
Merit: 101
Hello!
I`m very interested in this project and MTNC  in general.
Beleiive, that MTNC is  very undervalued now, so it has the great potential to grow in future 
Will there be the third round of airdrop or another bounty campaign?
full member
Activity: 276
Merit: 102
Very interested in this coin. Trying to find a coin that I get really involved in. Is there an OSX wallet available?
full member
Activity: 252
Merit: 108
hey does somebody now if can stake my coins at the pi ?
So if its possible is there a tutorial ?

I think it's possible.
I will try out tomorrow and write a tutorial if it works.

Anyone have the the Masternodecoin Wallet running on the Raspberry Pi?


Here is a short guide to compile the masternode daemon on a raspberry pi 3.
It took ages to compile, but it worked in the end.
CAREFUL: I did not test it yet - you will have to try if staking will work. Also I am not able to test if you can run a masternode on it because so far I don't have the 50000 tokens.

Code:
#
# ###########################
# raspbian-stretch-lite (tested with version of 2017-08-16) on a Raspberry Pi 3
# (running install from a user-account with sudo rights)
# ###########################
#

# Install dependencies
sudo apt-get update
sudo apt-get install git build-essential 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

# set the swap space on sd-card to 1 GB (the amount of physical memory is insufficient)
sudo echo "CONF_SWAPSIZE=2048" > /etc/dphys-swapfile
sudo systemctl restart dphys-swapfile

#
# Build Berkeley DB
# raspbian-stretch 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
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 daemon
cd src
make -f makefile.unix # only 1 core - it will take much longer on more cores, because the RAM is always full and needs to be swapped


# Now you can run the Daemon just by typing "Masternodecoind"
sr. member
Activity: 672
Merit: 250
21 posts a week for such small amount of coins? And isnt it correct a full MN was handed out earlier? I like airdrops but I dont think this is worth it. I may just purchase some though

if the coin is going to have value come the future.

21 posts are not hard by any means, there are so many ways of engaging and posting quality content, c'mon don't be lazy now lol.
legendary
Activity: 3304
Merit: 8633
icarus-cards.eu
the first round airdrop still open for some friends , please follow the rule right now ,we can not wait untill you finish it(it almost about 40 days), if you still  ignore the rule before 9.24 ,we will reject your application.

i have finished the rules (eg. republish the article) since weeks ...
sr. member
Activity: 630
Merit: 252
Masternodecoin Team
the first round airdrop still open for some friends , please follow the rule right now ,we can not wait untill you finish it(it almost about 40 days), if you still  ignore the rule before 9.24 ,we will reject your application.
sr. member
Activity: 630
Merit: 252
Masternodecoin Team
Yeah would be really nice to see some more coins for payout. 21 posts is a lot of stuff in one week. I think real MTNC support should get some more rewards for doing this. Smiley
actually keep active in bitcointalk community can give you more chance to find more good project, that's benefit for you all . right?

Agree, it's just 3 posts a day on the whole forum. Not that much if you are into other projects and altcoins.

Hey ideaupdater, since you are back, got a question about block explorer - are we looking for someone to make a new, fully working one?

yeah , official explore build in win system ,it always broken down for some reason,  the explorer builder can not fix it so we need second explorer set up in linux system.
sud
sr. member
Activity: 826
Merit: 301
Yeah would be really nice to see some more coins for payout. 21 posts is a lot of stuff in one week. I think real MTNC support should get some more rewards for doing this. Smiley
actually keep active in bitcointalk community can give you more chance to find more good project, that's benefit for you all . right?

Agree, it's just 3 posts a day on the whole forum. Not that much if you are into other projects and altcoins.

Hey ideaupdater, since you are back, got a question about block explorer - are we looking for someone to make a new, fully working one?
sr. member
Activity: 630
Merit: 252
Masternodecoin Team
Yeah would be really nice to see some more coins for payout. 21 posts is a lot of stuff in one week. I think real MTNC support should get some more rewards for doing this. Smiley
actually keep active in bitcointalk community can give you more chance to find more good project, that's benefit for you all . right?
full member
Activity: 210
Merit: 100
Yeah would be really nice to see some more coins for payout. 21 posts is a lot of stuff in one week. I think real MTNC support should get some more rewards for doing this. Smiley
full member
Activity: 326
Merit: 104
Santa Coin
21 posts a week for such small amount of coins? And isnt it correct a full MN was handed out earlier? I like airdrops but I dont think this is worth it. I may just purchase some though

if the coin is going to have value come the future.
sr. member
Activity: 630
Merit: 252
Masternodecoin Team
hi all ,all pms feed back already.

i'm still have something need to be done so if any delay ,sorry.
hero member
Activity: 867
Merit: 500
Anyone have the the Masternodecoin Wallet running on the Raspberry Pi?
I think he will work there without problems. I have an operating system Windows 10 - in the operative memory (RAM) of the masternode it takes only 60 MB, the resources of the Celeron processor (CPU) are 3%. This is a very little demanding masternode, I recommend!  Wink
Jump to: