Pages:
Author

Topic: [ANN] KingN Coin ★ Rare ★ Fair ★ Unique ★ SCRYPT/POS ★ Bounties! [KNC] - page 17. (Read 49911 times)

hero member
Activity: 559
Merit: 508
Looks like we managed the Storm without any dumping at all. Nice work! Cheesy
sr. member
Activity: 518
Merit: 250
LIVECASINO
woow youre great dev, keep that spirit on. I bet this coin will reach a good price on exchange. well just waiting for next exchange.

Yes, the reason we have not paid(Been extorted) For a listing is this slow and steady mind set, I feel like we need to earn listings and they should come naturally, an artificial pump/market is the exact opposite of what we are trying to create here!
still hasn't received anything dev still busy  Huh

When i tell you i will send you something today, i will send it today, spamming me and posting multiple times on the thread will only delay it, in fact you are lucky to still be getting anything!


Sent... Smiley
I posted multiple  times in this thread ? lol where ?  Huh
annyway...Thanks
newbie account not allowed wkwkwkwkwk LOL
member
Activity: 140
Merit: 10
woow youre great dev, keep that spirit on. I bet this coin will reach a good price on exchange. well just waiting for next exchange.

Yes, the reason we have not paid(Been extorted) For a listing is this slow and steady mind set, I feel like we need to earn listings and they should come naturally, an artificial pump/market is the exact opposite of what we are trying to create here!
still hasn't received anything dev still busy  Huh

When i tell you i will send you something today, i will send it today, spamming me and posting multiple times on the thread will only delay it, in fact you are lucky to still be getting anything!


Sent... Smiley
I posted multiple  times in this thread ? lol where ?  Huh
annyway...Thanks
hero member
Activity: 559
Merit: 508
woow youre great dev, keep that spirit on. I bet this coin will reach a good price on exchange. well just waiting for next exchange.

Yes, the reason we have not paid(Been extorted) For a listing is this slow and steady mind set, I feel like we need to earn listings and they should come naturally, an artificial pump/market is the exact opposite of what we are trying to create here!
still hasn't received anything dev still busy  Huh

When i tell you i will send you something today, i will send it today, spamming me and posting multiple times on the thread will only delay it, in fact you are lucky to still be getting anything!


Sent... Smiley
member
Activity: 140
Merit: 10
woow youre great dev, keep that spirit on. I bet this coin will reach a good price on exchange. well just waiting for next exchange.

Yes, the reason we have not paid(Been extorted) For a listing is this slow and steady mind set, I feel like we need to earn listings and they should come naturally, an artificial pump/market is the exact opposite of what we are trying to create here!
still hasn't received anything dev still busy  Huh
sr. member
Activity: 518
Merit: 250
LIVECASINO
We have been listed on an exchange: https://coinsmarkets.com/trade-BTC-KNC.htm

CONGRATS GUYS! Smiley
hopefull the next market is bittrex or poloniex..
keep work and goodluck dev
supportfull for $KNC
hero member
Activity: 559
Merit: 508
woow youre great dev, keep that spirit on. I bet this coin will reach a good price on exchange. well just waiting for next exchange.

Yes, the reason we have not paid(Been extorted) For a listing is this slow and steady mind set, I feel like we need to earn listings and they should come naturally, an artificial pump/market is the exact opposite of what we are trying to create here!
full member
Activity: 518
Merit: 101
woow youre great dev, keep that spirit on. I bet this coin will reach a good price on exchange. well just waiting for next exchange.
hero member
Activity: 559
Merit: 508
Price is going up steadily  Grin
I just bought more KNC to hodl  Cool

Slow and steady wins the race! Smiley

Also I've come to the realization after talking to numerous experienced traders, I may have to post a small portion of my stash for sale to get things started so new people can get in, or facilitate a couple deals, so if any of you are interested let me know, any proceeds will go right back into the coin!
newbie
Activity: 32
Merit: 0
Price is going up steadily  Grin
I just bought more KNC to hodl  Cool
hero member
Activity: 559
Merit: 508
Finally, I've managed to make kingncoind daemon compiled successfully on Linux CentOS 6

This is my step by step, in case someone else having the same issue like what I am struggling with.

clone the git repo:
Code:
git clone https://github.com/ulandort/kingncoin-source.git

cd (change current working directory) into the newly created directory, and go straight to src folder:
Code:
cd kingncoin-source/src

If you're using VPS, maybe there is no command line called lscpu.
The workaround for this is by editing the file makefile.unix,
change the line:
Code:
ARCH:=$(system lscpu | head -n 1 | awk '{print $2}')

to:
Code:
ARCH:=$(uname -p)

If your boost-thread library version is 1.37 and above,
add new variable below this line:
Code:
# for boost 1.37, add -mt to the boost libraries

type/insert a new line:
Code:
BOOST_LIB_SUFFIX=-mt

How to find out the boost-thread library version?
Just type this command if you are using CentOS machine:
Code:
rpm -qa | grep boost-thread

in my case, it is: boost-thread-1.41.0-25.el6.centos.x86_64

Close/save the file.

Then you have to create a folder called zerocoin inside folder obj, which is not yet available:
Code:
mkdir -p obj/zerocoin

After that, give executable permission to file build_detect_platform:
Code:
chmod +x src/leveldb/build_detect_platform

Compile  libleveldb.a and libmemenv.a library which is needed for linking kingncoind binnary:
Code:
cd src/leveldb && make libleveldb.a libmemenv.a

After everything compiled, go back to src directory and start compiling:
Code:
cd .. && make -f makefile.unix USE_UPNP=-

I dont want to use UPNP for now, I dont know what it is used for.

refference: https://github.com/exclusivecoin/Exclusive/issues/1

Hope that helps someone.

Cheers!


Amazing work and Great Details on how to do it.


Send me a PM with your KNC address. Wink

Oh yeah and to the person with the question on advertising to tourists, when/if this coin goes above the 25-30$ range I will pay for a hotel at Niagara falls out of my own pocket and distribute like 200 KNC in like 100 paper wallets. Smiley

And if we continue to climb in price after that point you can bet your ass i'll buy a banner on a bus and a bunch of other cool shit. Smiley
member
Activity: 197
Merit: 11
Finally, I've managed to make kingncoind daemon compiled successfully on Linux CentOS 6

This is my step by step, in case someone else having the same issue like what I am struggling with.

clone the git repo:
Code:
git clone https://github.com/ulandort/kingncoin-source.git

cd (change current working directory) into the newly created directory, and go straight to src folder:
Code:
cd kingncoin-source/src

If you're using VPS, maybe there is no command line called lscpu.
The workaround for this is by editing the file makefile.unix,
change the line:
Code:
ARCH:=$(system lscpu | head -n 1 | awk '{print $2}')

to:
Code:
ARCH:=$(uname -p)

If your boost-thread library version is 1.37 and above,
add new variable below this line:
Code:
# for boost 1.37, add -mt to the boost libraries

type/insert a new line:
Code:
BOOST_LIB_SUFFIX=-mt

How to find out the boost-thread library version?
Just type this command if you are using CentOS machine:
Code:
rpm -qa | grep boost-thread

in my case, it is: boost-thread-1.41.0-25.el6.centos.x86_64

Close/save the file.

Then you have to create a folder called zerocoin inside folder obj, which is not yet available:
Code:
mkdir -p obj/zerocoin

After that, give executable permission to file build_detect_platform:
Code:
chmod +x src/leveldb/build_detect_platform

Compile  libleveldb.a and libmemenv.a library which is needed for linking kingncoind binnary:
Code:
cd src/leveldb && make libleveldb.a libmemenv.a

After everything compiled, go back to src directory and start compiling:
Code:
cd .. && make -f makefile.unix USE_UPNP=-

I dont want to use UPNP for now, I dont know what it is used for.

refference: https://github.com/exclusivecoin/Exclusive/issues/1

Hope that helps someone.

Cheers!
member
Activity: 140
Merit: 10
Hey you checked your pm yet  Huh
hero member
Activity: 559
Merit: 508
We have reached parity with the Canadian dollar! (Home country of Dev/Managers) Smiley

Good job everyone and hopefully the future is bright!

Just build a roadmap for your coin, It's helps your coin

We certainly will but we have other more important priorities to deal with first. Smiley

I have received PM's from a few people regarding the future of the coin and have noticed a bit of skepticism, well I will certainly do what i can to diminish that skepticism I don't really see where it is coming from, So far the price of this coin has only went up, Everyone who was involved got at least 5-10USD for free, This coin will continue to improve and reach points of price discovery, Now i understand some of you feel that a coin needs "features" to be valued, This is simply not true. Take a look at many of the top 100 coins on CMC for example, Many of these claim to have features but in reality they don't have a working feature or it is useless to the industry they tried catering too, and are mainly valued because of the ICO, I could have certainly went the ICO route or made a Ethereum Token, but no, from the beginning I promised something Transparent, Clean and easy to use! So if you think this coin will not appreciate over the years, feel free to dump them onto my conglomerate. Smiley



Thanks!

The Kingn Team.

Every new project in cryptos will have sketicism, critics, and  even trolls, so you'll have to deal with them in order to defend and protect your project, because they can take you down, even if your coin has 0.0005 BTC in exchange, even if this didn't have any ICO, people will have fear in spend money buying a coin, hoping to hold or trade, is a risk for them, so you will have to prove the wrong, and the more you show that you know what you are doing, the better for creating a good and healthy community, in that regard, i wish you good luck.

@Jason Lol the amount of new accounts spamming me is actually hilarious, not sure when they'll realize i'm not that gullible. XD

@Voltaje I Appreciate your support and everyone else, I will do my absolute best to not let you guys down. Smiley


Also, the exchange is currently improving the POS code so there staking is disabled temporarily. expect blocks to be a bit slower for a little bit as weight and wallets shift around, but no concerns other then that. Smiley
sr. member
Activity: 350
Merit: 250
We have reached parity with the Canadian dollar! (Home country of Dev/Managers) Smiley

Good job everyone and hopefully the future is bright!

Just build a roadmap for your coin, It's helps your coin

We certainly will but we have other more important priorities to deal with first. Smiley

I have received PM's from a few people regarding the future of the coin and have noticed a bit of skepticism, well I will certainly do what i can to diminish that skepticism I don't really see where it is coming from, So far the price of this coin has only went up, Everyone who was involved got at least 5-10USD for free, This coin will continue to improve and reach points of price discovery, Now i understand some of you feel that a coin needs "features" to be valued, This is simply not true. Take a look at many of the top 100 coins on CMC for example, Many of these claim to have features but in reality they don't have a working feature or it is useless to the industry they tried catering too, and are mainly valued because of the ICO, I could have certainly went the ICO route or made a Ethereum Token, but no, from the beginning I promised something Transparent, Clean and easy to use! So if you think this coin will not appreciate over the years, feel free to dump them onto my conglomerate. Smiley



Thanks!

The Kingn Team.

Every new project in cryptos will have sketicism, critics, and  even trolls, so you'll have to deal with them in order to defend and protect your project, because they can take you down, even if your coin has 0.0005 BTC in exchange, even if this didn't have any ICO, people will have fear in spend money buying a coin, hoping to hold or trade, is a risk for them, so you will have to prove the wrong, and the more you show that you know what you are doing, the better for creating a good and healthy community, in that regard, i wish you good luck.
sr. member
Activity: 413
Merit: 250
What's the next step for the KNC?
BTW, I have sent a PM with KNC address to try my luck .
another newbie a.k.a brand new. Good luck
full member
Activity: 139
Merit: 100
What's the next step for the KNC?
BTW, I have sent a PM with KNC address to try my luck .
hero member
Activity: 559
Merit: 508
We have reached parity with the Canadian dollar! (Home country of Dev/Managers) Smiley

Good job everyone and hopefully the future is bright!

Just build a roadmap for your coin, It's helps your coin

We certainly will but we have other more important priorities to deal with first. Smiley

I have received PM's from a few people regarding the future of the coin and have noticed a bit of skepticism, well I will certainly do what i can to diminish that skepticism I don't really see where it is coming from, So far the price of this coin has only went up, Everyone who was involved got at least 5-10USD for free, This coin will continue to improve and reach points of price discovery, Now i understand some of you feel that a coin needs "features" to be valued, This is simply not true. Take a look at many of the top 100 coins on CMC for example, Many of these claim to have features but in reality they don't have a working feature or it is useless to the industry they tried catering too, and are mainly valued because of the ICO, I could have certainly went the ICO route or made a Ethereum Token, but no, from the beginning I promised something Transparent, Clean and easy to use!



Thanks!

The Kingn Team.
sr. member
Activity: 404
Merit: 250
We have reached parity with the Canadian dollar! (Home country of Dev/Managers) Smiley

Good job everyone and hopefully the future is bright!

Just build a roadmap for your coin, It's helps your coin
hero member
Activity: 559
Merit: 508
We have reached parity with the Canadian dollar! (Home country of Dev/Managers) Smiley

Good job everyone and hopefully the future is bright!
Pages:
Jump to: