Bitcoin Forum
June 29, 2024, 08:58:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] TradecoinV2 on: June 20, 2017, 04:08:06 PM
Will tradecoin get hardcoded nodes put into the next update?   annoying to have to type in addnodes.

also, what's up with the website?  it's been down since the beginning.. tradecoin.site

2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CDN] Canada eCoin [CDN] 🍁 Community Takeover 🍁 Celebrating Canada 150 on: June 19, 2017, 03:32:06 PM
Want to make sure I understand right. Usually when threads are changed and something is left out it is bad, but...

Quote
-staggered block rewards: blocks 0-500:25 eCoins, 501-1000: 50 eCoins, 1001-2000:75 eCoins, 2001+:100 eCoins (resuming normal halving schedule after reaching 100 eCoin block rewards

So, there was no premine and early blocks were a little smaller, that's correct?

Are there some negatives people are aware of, aside from distribution not so great?

Correct, no premine and early blocks were small.  You can check this yourself by going to a cdn blockchain explorer and start inspecting transactions from block 1.

Negatives are the same as for any other smaller coin.  Trying to get adoption and growing the community.   As long as the community keeps putting in the effort (and we have a small but strong core community) the coin will continue growing.   I know the current main dev for this coin personally and I can tell you he is not out to just make his money and dump/disappear.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CDN] Canada eCoin [CDN] 🍁 Community Takeover 🍁 Celebrating Canada 150 on: June 10, 2017, 05:13:30 PM
Canada's 150th birthday coming up soon on July 1st!   Be sure you all come to our discord to help us celebrate.  Also make sure you at least say hello to better your chances of getting a nice surprise... the more active you are in our channels, the better.


CDN discord link --> https://discord.gg/whZ8gB5
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CDN] Canada eCoin [CDN] 🍁 Community Takeover 🍁 Celebrating Canada 150 on: June 09, 2017, 05:09:36 PM
Good growth going on!   Let's make it to 1000 sats!
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★★ GameCredits - The future of in-game monetization ★★★ on: June 04, 2017, 06:18:05 PM
Stats page added for GAME at http://game.cryptocronic.com

6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚒ Syscoin -Active Lightning Networks!Decentralized Business Blockchain Platform! on: June 01, 2017, 05:58:04 PM
Added stats page for Syscoin at http://sys.cryptocronic.com/
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CDN] Canada eCoin [CDN] 🍁 Community Takeover 🍁 Celebrating Canada 150 on: May 29, 2017, 12:39:17 AM
takeover ?.. gosh i hope this goes well and i do wish the very best to the Devs. and if you guys need a hand with something ? please let me know and if i can -- i certainly will

It was taken over quite a while ago but this is finally the new official ANN thread which the new team controls (the original team is nowhere to be found).

8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CDN] Canada eCoin [CDN] 🍁 Community Takeover 🍁 Celebrating Canada 150 on: May 28, 2017, 11:36:25 PM
Awesome job on the new thread team!

Looking forward to great things for CDN going ahead.
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚒ Syscoin -Active Lightning Networks!Decentralized Business Blockchain Platform! on: May 28, 2017, 03:11:44 PM
Btw in core 2.2 ive put scrypt in and used it how its meant to be used.. as a kdf function for zka in bm web.

what is kdf, zka and bm?
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚒ Syscoin -Active Lightning Networks!Decentralized Business Blockchain Platform! on: May 26, 2017, 04:54:48 PM
What was the reasoning from going from Scrypt to SHA256?
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚒ Syscoin -Active Lightning Networks!Decentralized Business Blockchain Platform! on: May 26, 2017, 01:16:35 PM
Look in the source code for reward halving...

Code:
if(nHeight <= 525601)
     nSubsidy = 16.39*COIN; 
else if(nHeight <= 1051202)
     nSubsidy = 16.63*COIN; 
else if(nHeight <= 1576803)
     nSubsidy = 16.88*COIN; 
else if(nHeight <= 2102404)
     nSubsidy = 17.14*COIN; 
else if(nHeight <= 2628005)
     nSubsidy = 17.39*COIN; 
else if(nHeight <= 3153606)
     nSubsidy = 17.65*COIN; 
else if(nHeight <= 3679207)
     nSubsidy = 17.92*COIN; 
else if(nHeight <= 4204808)
     nSubsidy = 9.09*COIN; 
else if(nHeight <= 4730409)
     nSubsidy = 9.16*COIN; 
else if(nHeight <= 5256010)
     nSubsidy = 9.23*COIN; 
else if(nHeight <= 5781611)
     nSubsidy = 9.30*COIN; 
else if(nHeight <= 6307212)
     nSubsidy =  9.37*COIN;
else if(nHeight <= 6832813)
     nSubsidy =  9.44*COIN;
else if(nHeight <= 7358414)
     nSubsidy = 9.51*COIN;
else if(nHeight <= 7884015)
     nSubsidy = 9.58*COIN;
else if(nHeight <= 8409616)
     nSubsidy = 9.65*COIN;
else if(nHeight <= 8935217)
     nSubsidy = 9.73*COIN;
else if(nHeight <= 9460818)
     nSubsidy = 9.80*COIN;
else if(nHeight <= 9986419)
     nSubsidy = 9.87*COIN;
else if(nHeight <= 10512020)
     nSubsidy = 9.95*COIN;
else if(nHeight <= 11037621)
     nSubsidy = 10.02*COIN;
else if(nHeight <= 11563222)
     nSubsidy = 10.10*COIN;
else if(nHeight <= 12088823)
     nSubsidy = 10.17*COIN;
else if(nHeight <= 12614424)
     nSubsidy = 10.25*COIN;
else if(nHeight <= 13140025)
     nSubsidy = 10.33*COIN;
else if(nHeight <= 13665626)
     nSubsidy = 10.40*COIN;
else if(nHeight <= 14191227)
     nSubsidy = 10.48*COIN;
else if(nHeight <= 14716828)
     nSubsidy = 10.56*COIN;
else if(nHeight <= 15242429)
     nSubsidy = 10.64*COIN;
else if(nHeight <= 15768030)
     nSubsidy = 10.72*COIN;
else if(nHeight <= 16293631)
     nSubsidy = 10.80*COIN;
else if(nHeight <= 16819232)
     nSubsidy = 10.88*COIN;
else if(nHeight <= 17344833)
     nSubsidy = 10.96*COIN;
else if(nHeight <= 17870434)
     nSubsidy = 11.04*COIN;
else if(nHeight <= 18396035)
     nSubsidy = 11.13*COIN;
else if(nHeight <= 18921636)
     nSubsidy = 11.21*COIN;
else if(nHeight <= 19447237)
     nSubsidy = 11.29*COIN;
else if(nHeight <= 19972838)
     nSubsidy = 11.38*COIN;
else if(nHeight <= 20498439)
     nSubsidy = 11.46*COIN;
else if(nHeight <= 21024040)
     nSubsidy = 11.55*COIN;
else if(nHeight <= 21549641)
     nSubsidy = 11.64*COIN;
else if(nHeight <= 22075242)
     nSubsidy = 11.72*COIN;
else if(nHeight <= 22600843)
     nSubsidy = 11.82*COIN;
else if(nHeight <= 23126444)
     nSubsidy = 11.90*COIN;
else if(nHeight <= 23652045)
     nSubsidy = 11.99*COIN;
else if(nHeight <= 24177646)
     nSubsidy = 12.08*COIN;
else
     nSubsidy = 0;

LOL, where did they come up with this?
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚒ Syscoin -Active Lightning Networks!Decentralized Business Blockchain Platform! on: May 26, 2017, 01:08:08 PM

Mate, check page 1 - specifications. Check this too: https://chainz.cryptoid.info/sys/


I did see the specs on page 1, which is why I'm confused.  It has a Mining Schedule showing interest (as if this was POS), yet it says SHA256 merge mining.  Looking the blockchain, the current reward is 16.39 SYS for SHA256.  I can't find the breakdown for reward halving.  I guess I'll have to go looking in the source code.
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⚒ Syscoin -Active Lightning Networks!Decentralized Business Blockchain Platform! on: May 26, 2017, 12:32:55 PM
With the changes that syscoin has gone thru over the years, I am a bit confused with it's current state.  The official website does not answer my questions.

So, is sys currently SHA256 minable or proof-of-stake or both?  
What is the current reward?  What is the halving or reward reduction schedule?
How many confirmations until maturity?
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [MOON] Mooncoin 🌙 35985+ funded addresses! LTC, then DOGE, then MOON! on: May 25, 2017, 02:31:10 PM
will moon be mooning soon?  should i buy up a bunch now before the show starts?
15  Alternate cryptocurrencies / Altcoin Discussion / Re: Big list of all crypto events? on: May 25, 2017, 01:12:07 PM

Awesome, thanks!

16  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Steemit.com: Blogging is the new Mining on: May 25, 2017, 01:06:45 PM
Ned Scott, ceo of steem, speaking today at Token Summit in NYC!
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage on: May 25, 2017, 01:03:41 PM
David Vorick, founder/ceo of Sia speaking at Token Summit in NYC today!  Buy now before the mooning!
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ZEC] ZCASH - All coins are created equal. Discussion Thread (Unofficial) on: May 25, 2017, 01:01:11 PM
Zooko Wilcox, founder of ZCash, speaking at Token Summit in NYC today!
19  Alternate cryptocurrencies / Altcoin Discussion / Big list of all crypto events? on: May 25, 2017, 12:58:06 PM
Is there anywhere that I can find a list of ALL cryptocurrency events / conferences happening through-out the year?

20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ZEC] ZCASH - All coins are created equal. Discussion Thread (Unofficial) on: May 22, 2017, 02:21:49 PM
What will ZEC CEO, Zooko Wilcox, announce at Consensus 2017 this week?  Buy up zec before the price moons!

Hope you all got a piece of the moon today!!!  PM me if you want me to give me donations for the hot tip.
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!