Pages:
Author

Topic: ANN [NETKO][NETKO] PoW/PoS | NO PREMINE | BLAKE2S | 8.MARCH 2017 - page 35. (Read 86125 times)

hero member
Activity: 746
Merit: 500
legendary
Activity: 1820
Merit: 1092
~Full-Time Minter since 2016~
Hey guys, I am researching for low cap and fair launched tokens and just found this a few days ago.

I still dont get what the project is about, can anyone explain it to me please?

maybe @staysecure as I have seen he is active in the thread.

I am also waiting for block 12900 so that I can POS if I get an explanation and find the project good enough.

Thanks!

i would say the page one OP (original post) by stay secure about wraps it up
How do we vote for Netko on POSwallet.com?
You don't; they dropped voting the last time I checked. They also delisted 98% of the coins there.

Will any voting pools be setup? Or how does POS run from the wallet? Last time I mined something was decred after mainnet was released and want to be ready for this one.

Not shure what you had in mind. Proof of stake will run same as any other pure PoS coin. Wallet must be online connected to the p2p netowork and a possitive balance on wallet. If wallet is encrypted it must be unlocked for staking. After that its a competition for PoS block rewards.

Once the wallet is unlocked is there a command to run, or does the wallet automatically do POS?

a few pages back (or maybe the OP i cant remember) , it was stated to set coin lock limit on some coins or to lock your wallets until around 12900 so that your debug dosent get bloated with hitting empty PoS blocks
PoS will start automatically (given your on latest wallet from OP)
legendary
Activity: 1108
Merit: 1005
@STAYSECURE

please, answer me this https://bitcointalksearch.org/topic/m.19765781
POS is near and I can't stake, because I don't have working wallet.
I want to stake securely.
sr. member
Activity: 1021
Merit: 324
How do we vote for Netko on POSwallet.com?
You don't; they dropped voting the last time I checked. They also delisted 98% of the coins there.

Will any voting pools be setup? Or how does POS run from the wallet? Last time I mined something was decred after mainnet was released and want to be ready for this one.

Not shure what you had in mind. Proof of stake will run same as any other pure PoS coin. Wallet must be online connected to the p2p netowork and a possitive balance on wallet. If wallet is encrypted it must be unlocked for staking. After that its a competition for PoS block rewards.

Once the wallet is unlocked is there a command to run, or does the wallet automatically do POS?
full member
Activity: 176
Merit: 100
Hey guys, I am researching for low cap and fair launched tokens and just found this a few days ago.

I still dont get what the project is about, can anyone explain it to me please?

maybe @staysecure as I have seen he is active in the thread.

I am also waiting for block 12900 so that I can POS if I get an explanation and find the project good enough.

Thanks!
full member
Activity: 201
Merit: 100
Hello devs, can we expect this coin on some other exchanges?


You did read the OP before asking this? A market was made available on day one at network start. Sorry if you are not comfortable with Cryptopia 4 days after launch. At the moment we will focus on getting started on actuall use cases for the blockchain other than just being another altcoin in the wild with a sole monetary purpouse and for the record developers job never was and never will be exchange listing.

Excahanges that will see the potencial will list the coin at their will. We cant stop anyone from getting involved with NETKO as it is an open source project.

Developers job is to keep the seed network up, to fix any bugs in the code that may surface along the way and to never stop developing a service layer on top of the chain.

Submitting the coin listing request to exchanges can be done by anyone here ven you. We have no expectations of being listed on super hot / high volumen exchanges and have no intentions to pay premium listing fees. Listing on Cryptopia was a  curtesy of the ceo Grega and the sole reason i made this advice was the fact that Cryptopia is already more than just a growing exchange but has very cool features like marketplace, tipping slot, mineshaft, forums and more.

You can expect soon some listings on Cryptopia marketplace where you can buy some IT gear with NETKO. Meanwhile if you desire some new exchanges liek Poloniex go ahead https://poloniex.com/coinRequest.

Dont get me wrong we care about the community and we are all still shocked how NETKO was welcomed by the community and we will never forget that but we need to focus on the actuall use case that is written in the OP.

Thank you.

When we can expect some listings on Cryptopia marketplace where we can buy some IT gear with NETKO? In the next months?
hero member
Activity: 1472
Merit: 505
We are cryptocurrency
How do we vote for Netko on POSwallet.com?
You don't; they dropped voting the last time I checked. They also delisted 98% of the coins there.

Will any voting pools be setup? Or how does POS run from the wallet? Last time I mined something was decred after mainnet was released and want to be ready for this one.

Not shure what you had in mind. Proof of stake will run same as any other pure PoS coin. Wallet must be online connected to the p2p netowork and a possitive balance on wallet. If wallet is encrypted it must be unlocked for staking. After that its a competition for PoS block rewards.
hero member
Activity: 1472
Merit: 505
We are cryptocurrency
How do we vote for Netko on POSwallet.com?
You don't; they dropped voting the last time I checked. They also delisted 98% of the coins there.

Correct PoSWallet has delisted essentially all altcoins. Only blake2s coin left standing there is TAJ. (not shure whay they kept it).
hero member
Activity: 1472
Merit: 505
We are cryptocurrency
at block 11605 atm and POS only starts at block 12900 right?

Correct PoS kicksin at 12900 therefore in little less than 900 blocks.
legendary
Activity: 1108
Merit: 1005
Hi dev,
can you please check out this issue for me?

I'm trying to compile wallet in ubuntu 14.04,
but I'm getting this error.

Code:
src/blake2s-ref.c: In function ‘blake2s_init0’:
src/blake2s-ref.c:136:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) S->h[i] = blake2s_IV[i];
   ^
src/blake2s-ref.c:136:3: note: use option -std=c99 or -std=gnu99 to compile your code
src/blake2s-ref.c: In function ‘blake2s_init_param’:
src/blake2s-ref.c:148:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_compress’:
src/blake2s-ref.c:214:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 16; ++i )
   ^
src/blake2s-ref.c:217:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:214:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 16; ++i )
               ^
src/blake2s-ref.c:217:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c:261:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:217:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:261:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_final’:
src/blake2s-ref.c:320:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) /* Output full hash to temp buffer */
   ^
make: *** [build/blake2s-ref.o] Error 1
make: *** Waiting for unfinished jobs....

I have clean installation, I'm trying to compile with these steps:
https://github.com/netkotech/netko/blob/master/doc/readme-qt.rst


Can you help me, sort out this thing?
cheers

e: tried with gcc 4.8.4 and 4.9.4
full member
Activity: 176
Merit: 100
Anyone else here mining this?

I am mining this coin. Already got around 5,000 Netko holding
sr. member
Activity: 1021
Merit: 324
How do we vote for Netko on POSwallet.com?
You don't; they dropped voting the last time I checked. They also delisted 98% of the coins there.

Will any voting pools be setup? Or how does POS run from the wallet? Last time I mined something was decred after mainnet was released and want to be ready for this one.
legendary
Activity: 1820
Merit: 1092
~Full-Time Minter since 2016~

idk man, im on this coin to MAKE money, it's not MY project to PUT a penny into but my mining costs tbh Cheesy
ill prob just mine for as long as possible and then stake as much as i can, if the project is a top 25'er, we will see Trex without a penny from me Smiley
And if not ill dump my bags and take my BTC away happily Smiley
Some might be more intrested than me in crowdfunding that tho Smiley


let say you have 100k of 3M netko,
100k worth more less 4.6btc now
every such holder like you should contribute 0.1btc to have 3btc for bittrex entry,
bittrex entry will boost the price, let's make prediction: 20k sat (almost 10k was on cryptopia already)

your 0.1btc investment will change your 4.5btc into 20btc
if it's not MAKING money, I don't know what is ...

the only GUARANTEE is if one controls the variables, lets think of a few:
1: there's bigger miners that even us waiting with even bigger bags to dump on us as soon as trex
2: Trex bots make selling at a good price impossible (as they can)
3: This project goes nowhere, price plummets

prob more i never mentioned Cheesy

i control my keys, make my profits 100% my way, meh to funding anothers project, you sound like you need an ICO in your life! ;p ;p
sr. member
Activity: 358
Merit: 250
How do we vote for Netko on POSwallet.com?
You don't; they dropped voting the last time I checked. They also delisted 98% of the coins there.
sr. member
Activity: 1021
Merit: 324
How do we vote for Netko on POSwallet.com?
full member
Activity: 176
Merit: 100
at block 11605 atm and POS only starts at block 12900 right?
hero member
Activity: 1472
Merit: 505
We are cryptocurrency
NiceHash added blake2s algo today.

Get started: https://www.nicehash.com/?p=gstarted

Twitter: https://twitter.com/NiceHashMining/status/876816757633298432



Europe - Amsterdam (NiceHash)

Code:
stratum+tcp://blake2s.eu.nicehash.com:3361

USA - San Jose (WestHash)

Code:
stratum+tcp://blake2s.usa.nicehash.com:3361

China - Hong Kong (WestHash)

Code:
stratum+tcp://blake2s.hk.nicehash.com:3361

Japan - Tokyo (WestHash)

Code:
stratum+tcp://blake2s.jp.nicehash.com:3361

India - Chennai (WestHash)

Code:
stratum+tcp://blake2s.in.nicehash.com:3361

Brazil - Sao Paulo (WestHash)

Code:
stratum+tcp://blake2s.br.nicehash.com:3361
member
Activity: 79
Merit: 10
Is there a slack for this coin?
sr. member
Activity: 358
Merit: 250
Is there a slack for this coin?
Invitation to #Slack https://goo.gl/Lr1mAA


This is staysecure's unified slack for Netko, Tajcoin etc....
legendary
Activity: 1292
Merit: 1000

idk man, im on this coin to MAKE money, it's not MY project to PUT a penny into but my mining costs tbh Cheesy
ill prob just mine for as long as possible and then stake as much as i can, if the project is a top 25'er, we will see Trex without a penny from me Smiley
And if not ill dump my bags and take my BTC away happily Smiley
Some might be more intrested than me in crowdfunding that tho Smiley


let say you have 100k of 3M netko,
100k worth more less 4.6btc now
every such holder like you should contribute 0.1btc to have 3btc for bittrex entry,
bittrex entry will boost the price, let's make prediction: 20k sat (almost 10k was on cryptopia already)

your 0.1btc investment will change your 4.5btc into 20btc
if it's not MAKING money, I don't know what is ...
Pages:
Jump to: