novy
|
|
September 12, 2017, 08:18:17 AM |
|
IAM in the list and didn't get coins also
|
|
|
|
Dfinest
|
|
September 12, 2017, 08:26:40 AM |
|
Did you guys send PM to the devs with your Twitter profile link included? If not, try this way, then maybe you will get the free coins.
|
|
|
|
zopply
|
|
September 12, 2017, 08:27:24 AM |
|
IAM in the list and didn't get coins also
They have not been sent yet. 1st Week only finishes tomorrow so you have to be patient.
|
|
|
|
Dfinest
|
|
September 12, 2017, 08:30:34 AM |
|
IAM in the list and didn't get coins also
They have not been sent yet. 1st Week only finishes tomorrow so you have to be patient. Exactly, the 1st week started on 5th September, so there is no need to worry.
|
|
|
|
snodo
|
|
September 12, 2017, 08:35:44 AM |
|
I see tweets masternodecoin which says that "all the gifts to follow us are sent" but why I have not received it anyone can explain? Did not receive the twitter bounty either. I think I was too late - following on Twitter for over a week, but told him just two days ago The problem was: I thought the campaign is over already as mentioned in the OP, so I didn't PM him. But 2 days ago I have seen many people still getting the bounty, so I told him on twitter - maybe I should send a PM
|
|
|
|
Altcoinster
|
|
September 12, 2017, 09:10:24 AM |
|
Oh man, the people are still discuss about the Airdrop and that there is no signature needed. That what I read before 2 weeks here. And guys!!!! You dont need a signature to participate in the airdrop. Just follow the rules on the first page and relax yourself
|
|
|
|
bananadines
|
|
September 12, 2017, 09:21:45 AM |
|
I am on board at this airdrop! Lets see what this coin will bring in the future Would be nice see a working block explorer to checkout the latest transactions
|
|
|
|
preda
|
|
September 12, 2017, 09:46:45 AM |
|
guys watching the lists of partecipants of airdrop i see still some red line there... i was a red too the error of many is just the submit date wrong, you have to put the submit data you join airdrop, so if you see your red line means something is wrong with your submit date or somethingelse just "modify your registration again with correct date" then pm the dev so he will fix the file!! thanks devs for the correction on mine
|
|
|
|
Dfinest
|
|
September 12, 2017, 09:47:55 AM |
|
Investing in a new coin/token via ICO requires trusting the cybersecurity practices of the company/project Securecoin Capital just launched a service (in beta) to grade ICO's on their cybersecurity capabilities as part of creating awareness around #CryptoHygiene ( https://www.securecoin.capital/cryptohygiene) Every ICO will be given 1 of these 3 Grades for their cybersecurity capabilities 'A': best in class 'B': average 'F': sub-standard You can subscribe to the #CryptoHygiene newsletter to get 10-15 cybersecurity grades/week for free ( https://www.securecoin.capital/coins) For members, they have created an on-demand service to request grading specific ICO's that need to be prioritized ( https://www.securecoin.capital/gifts) So before investing in an ICO - check its #CryptoHygiene Subscribed, thanks for the information!
|
|
|
|
Lionheart200
Newbie
Offline
Activity: 6
Merit: 0
|
|
September 12, 2017, 10:55:36 AM |
|
What I wanna say is that there should have been a roadmap at given its a new coin to put us a ease somewhat if there are people are worrying about what is the goal or future of this coin
|
|
|
|
ioanbtc
|
|
September 12, 2017, 11:55:34 AM |
|
I want to know. The 2nd airdrop will be sent weekly? And will be sent after a week after users join it?
|
|
|
|
teosanru
|
|
September 12, 2017, 12:28:09 PM |
|
I want to know. The 2nd airdrop will be sent weekly? And will be sent after a week after users join it?
will be sent 7 days after your registration (weekly), if you comply with the established rules
|
|
|
|
snodo
|
|
September 12, 2017, 12:30:48 PM |
|
I will write a short step-by-step guide for debian (which should be same as ubuntu) and publish it later on.
So here it is: # # ########################### # 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.
|
|
|
|
jonval21
Full Member
Offline
Activity: 588
Merit: 111
I love the Cryptocurrency world
|
|
September 12, 2017, 12:54:50 PM |
|
I have been following MasternodeCoin since the beginning hope to be part of the airdrop.
|
|
|
|
soros123
Newbie
Offline
Activity: 35
Merit: 0
|
|
September 12, 2017, 12:56:35 PM |
|
the second airdrop has ended?
|
|
|
|
Koontas
|
|
September 12, 2017, 01:13:47 PM |
|
Isn't here anybod in who is able to setup a block explorer? I have asked the guys from https://chainz.cryptoid.info/ if they could integrate Masternodecoin there.
|
Don't trust any exchange!
|
|
|
maursader
Sr. Member
Offline
Activity: 509
Merit: 250
Disrupt the banking system!
|
|
September 12, 2017, 01:22:56 PM |
|
Do you also plan to offer a Mac wallet? That would be great. In the mean time I will use my dedicated wallet desktop computer running on Windows.
|
|
|
|
abdulmad
|
|
September 12, 2017, 01:30:25 PM |
|
It is a scam yea ! 100 % premined and 100 % designed to enrich it's creator. Actually this is not an airdrop, it's signature campaign. So dev will airdrop pay for sigs just 10 or 20 % of premine and the rest he will stake and try to sell slowly. But the problem is that nobody will buy this shitcoin. There is no github, there are no innovations, there is no team of devs, just unknown and shady person. We already have the same deeponion scam with massive amount of shills involved, but deeponion is collapsing and the same will happen to this shitcoin within a couple of days. You can try to scam some dumb newbies ,but there is no way to cheat the market. if here the rookie is you, because you're not going to cry any other side Don't take note of these two trolls, they are paid shills and only spread FUD, they did the same in the ONION ANN.
|
|
|
|
|
cryptobits3
|
|
September 12, 2017, 01:44:02 PM |
|
join the airdrops, I can not understand by the table they added or not good project, and I think devs will still fix the whole situation
|
|
|
|
|