Bitcoin Forum
May 04, 2024, 01:34:13 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: May 14, 2014, 08:19:05 PM
When Craptsy and mintpal will add this coin?

You can help by voting on mintpal https://www.mintpal.com/voting#NGC
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: May 12, 2014, 06:03:49 PM
What I wonder is how much of the pre-mine will be burned.

The dev said he is putting an automated script to do the burning, but looking here -- http://explorer.nigeriacoin.org/address/NigeriaDestroyCurrencyHAhaHAmoSNy2 -- I see the process ends on April 8th and the total burned coins is around 3 billions NGC. And the pre-mine is around 44 billions (almost half of the 88 billions total mineable coins).

Looks like the daemon on the block explorer is offline, but here are the transaction hashes for all burns since the date you mentioned:
Code:
b16f58deee1c4d9ceb294a679d14d73462d112664311336a6bb8df6788097d8a
ee3aa8ecbf964f8e571ddd68fcc57e765e2710bbc63678b5e81830ac56725420
2eadeaeafe7c2091f38ca32e43338c630761ff0d5eb07af7b570b2ad4658ddab
e959f90acda6879374bbe6c0a7f92028b502e45a8d5b40e58040e7a9f22ba1ac
167a21d41b559d7d7ff7652c44fa5074915839ff319cdaa49e33179805e5339c
82765dbd25374c110be7d91a433bd7ebf5d62820e4f0b7f6d67a684010f70b68
6c04ed9143e6f25f1186b8673b7466268c7fe8fa9ed2db85c76fb9a7b86c5fc1
1aab0a6ab6a6446ce37520f40300528b30d6592959b323ed5fc11de27cd87dd0
840bf4e48914147f9d7b87daaddd7da4c302c3b1fc42e4c956598cacc2ce8648
e9cbdfe8804742683c16477830f72b9eab6be3750e975e2f0df212fa71b1cb45
9b48b5aed40c379b84ebaad328d8858c188af5ea447c95c33570a75546537e5e
762d6d542bd686484b8131fe52cf542bad9240d56859fc7ab6b3af15d2156051
743f8e8a168d305e4eca27016f63e3517976830ea169a39fd174fd44d78c4918
34543441dc8b731bef8de16d224a83e80b7b8c441150721783e15f4ad0382373
5d5d69697891da2366717fd0320d86caa09db3de434444b8ecb8c925af9669b2
3b701ab6fbfe9cec117de05c4129fe36540f322704b91feaffc007d03a76c297
0cfbee4d25790b61e56fdddab0b1877ff343ba4717dc5c1d7560f23dfb0f547c
29048fc696d861f3de97eed3c3ed734cbc8eec76a932b31ba0eceb90b01be678
5eb339a2056ac2671edba2ec8c313c7fda7e3775418fec829943d7f8e1b725b6
9b14a387ff47f5b5b70b89585686fdb71dcc96bbe646c5e560c83b009c02d090
b46501c00d607fc4316e2fd0abfb9ba6f8ecd063917cc0655f1acfad05d03a29

You can look at them by opening the debug console and running
Code:
getrawtransaction TXHASH_HERE 1

Note the 1 on the end or you'll just get the raw hex representation

If anyone wants to set up a block explorer you need to first install our skein python module from https://github.com/nigeriacoin/p2pool/tree/master/skeinhash and then add the below entries to your Abe/Chain.py

replace the create function defininition at the beginning of the file with this
Code:
def create(policy, **kwargs):
    # XXX It's about time to interpret policy as a module name.
    if policy in [None, "Bitcoin"]: return Bitcoin(**kwargs)
    if policy == "Testnet":         return Testnet(**kwargs)
    if policy == "Namecoin":        return Namecoin(**kwargs)
    if policy == "LegacyNoBit8":    return Sha256Chain(**kwargs)
    if policy == "NovaCoin":        return NovaCoin(**kwargs)
    if policy == "CryptoCash":      return CryptoCash(**kwargs)
    if policy == "Hirocoin":        return Hirocoin(**kwargs)
    if policy == "X11":             return X11Chain(**kwargs)
    if policy == "Bitleu":          return Bitleu(**kwargs)
    if policy == "Keccak":          return KeccakChain(**kwargs)
    if policy == "Maxcoin":         return Maxcoin(**kwargs)
    if policy == "NigeriaCoin":     return NigeriaCoin(**kwargs)
    return Sha256NmcAuxPowChain(**kwargs)

Then add
Code:
class SkeinChain(Chain):
   def block_header_hash(chain, header):
       import skeinhash
       return skeinhash.getPoWHash(header)

class NigeriaCoin(SkeinChain):
    def __init__(chain, **kwargs):
        chain.name = 'NigeriaCoin'                       
        chain.code3 = 'NGC'
        chain.address_version = '\x35'
        chain.magic = '\x2f\x23\x2c\x25'
        Chain.__init__(chain, **kwargs)

    datadir_conf_file_name = "nigeriacoin.conf"
    datadir_rpcport = 3556

And add "policy": "NigeriaCoin" to your datastore entry in your config file (to make sure abe uses the right chain policy), e.g.
Code:
datadir = [{
    "dirname": "/home/ubuntu/.nigeriacoin",
    "chain": "NigeriaCoin",
    "policy": "NigeriaCoin",
    "code3": "NGC",
    "address_version": "\u0035"}]
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: April 11, 2014, 04:14:18 PM
NigeriaCoin in the press!


http://www.equities.com/editors-desk/currencies-forex/brave-new-crypto-world
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: April 01, 2014, 02:26:41 AM
Well that escalated quickly.   Shocked

The network Hash rate (3.2 GH/s) and difficulty (was 400+) jumped up quite a bit when the C-Cex exchange was announced.

We should probably be pushing for more exchanges. Im thinking mintpal.

Anyone else willing to spend a tiny fraction of btc to get NGC up the list?

Don't you think it's better to concentrate the volume onto one exchange?
5  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: CoinMarketCap.com - Market Cap Rankings of All Cryptocurrencies! on: March 31, 2014, 06:45:09 PM
Please add NigeriaCoin.  We filled out the form with the required information.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: March 31, 2014, 05:25:31 PM
NGC added to C-CEX!!!!

https://twitter.com/CryptoCurrEncyX/statuses/450679661560090625

Quote
    C-CEX.com @CryptoCurrEncyX

    NigeriaCoin (NGC) added! https://c-cex.com/?p=ngc-btc
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: March 31, 2014, 04:41:04 PM
Is C-CEX having trouble adding the NGC coin for some reason? It doesn't seem to have been added despite winning their vote.

I think we need to get this coin on some respected exchanges to draw some additional mining interest to the coin - network hash rate seems to be decreasing (3185662818 now).

I would think with the increased prevalence of Scrypt ASICS that miners would be looking into alternative hashes, and I think NGC has a lot of advantages as a coin.

I am trying to talk to C-CEX support on Skype now.
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: March 30, 2014, 01:56:05 PM
Hi, someone know how optimise cgminer with this algo ? I test few config but I believe just run without parameters for me is better ...

Intensity 10 seems to be the trick.  Memory speeds don't seem to matter with Skein.

Also, good news! We won the C-CEX vote! 

Prepare for NGC -> Western Union remittances and NGC/BTC trading!!
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: March 30, 2014, 07:08:02 AM
What's up with the pools? They seem to be buggy since last night and not updating information properly. What ones are working well for others?

do you have problens with ngc.plasr.com?
what do you mean "buggy"?

Well CrunchHarder was not showing my hash rate, blocks, or credits, and Tales from the Scrypt was totally down. The manager of Tales told me they were DDOS attacked and fixed it. Haven't tried ngc.plasr.com yet. There were no people on it last time I checked and I am a small time miner (single 280X) so I won't get any coins if I'm the only one.

I've mined on crunchharder, talesfromthescrypt until it got taken down by DDoS, and poolerino.  I have 2 290s and get really nice payouts still, so you should still get some payouts on an 280x.

There's probably going to be 1-3 exchanges coming up in the next few days to a week!  I think when people realize how nice the Skein algo is for mining, they will also come over to the coin.
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: March 29, 2014, 04:32:09 AM
Besides paga ( https://www.mypaga.com/paga-web/start.paga ) Nigerias latest mobile payment solution, many merchants start to accept Nigeria Coin!

https://i.imgur.com/1RBEy5Q.jpg





This is good news.  We may soon have a Western Union USD / NGC exchange soon if we get onto c-cex!
11  Alternate cryptocurrencies / Altcoin Discussion / Re: ** UNDERRATED ALT-COINS ** on: March 28, 2014, 08:15:08 PM


NigeriaCoin

First altcoin on 0.9.0 Bitcoin Core (All the latest and greatest features)
Skein Algo
Coin Distribution Symmetry

12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 on: March 28, 2014, 05:41:31 PM
Keep the votes coming!!!  We're currently winning!!!

https://c-cex.com/index.html?id=vote


13  Alternate cryptocurrencies / Altcoin Discussion / Re: ★★ DigiByte ★★ 1st Alt Coin to Implement Bitcoin Core 0.9.0 Protocol on: March 28, 2014, 05:37:55 PM
As far as we know
Then we are the 1st Scrypt Coin Smiley

Touche.   Cheesy
14  Alternate cryptocurrencies / Altcoin Discussion / Re: ★★ NigeriaCoin ★★ 1st Alt Coin to Implement Bitcoin Core 0.9.0 - NOT Digibyte! on: March 28, 2014, 05:06:56 PM
fuck off we don't need no coins anymore

That's what the initial bitcoin miners said to the litecoin guys.   Shocked

Show your longterm plans first, show yourself, show your real name, attend in crypto gatherings or else find another job. This goes for all other devs who want to make a crypto.

I prefer the coin not to be about me.  I needs to be owned by the community.  Once it gains enough traction I will disappear into the void of dorian never to return, unless someone has a train to sell me.
15  Alternate cryptocurrencies / Altcoin Discussion / Re: ★★ NigeriaCoin ★★ 1st Alt Coin to Implement Bitcoin Core 0.9.0 - NOT Digibyte! on: March 28, 2014, 04:40:23 PM
fuck off we don't need no coins anymore

That's what the initial bitcoin miners said to the litecoin guys.   Shocked
16  Alternate cryptocurrencies / Altcoin Discussion / Re: ★★ NigeriaCoin ★★ 1st Alt Coin to Implement Bitcoin Core 0.9.0 - NOT Digibyte! on: March 28, 2014, 04:38:42 PM
So what?  Wink

Just saying.  2nd place is the first loser.  Tongue
Being first to implement someone else's code is something to be very proud of.  Roll Eyes  

NGC is the first to implement the CDS feature for combating price drops due to dilution from PoW distribution and inflation.  It's also using a Skein algo which runs about 30% cooler on GPUs with about 30% less power consumption which is great for any miners in the Northern Hemisphere or other hot areas as we move into the warmer part of the year.
17  Alternate cryptocurrencies / Altcoin Discussion / Re: ★★ DigiByte ★★ 1st Alt Coin to Implement Bitcoin Core 0.9.0 Protocol on: March 28, 2014, 04:29:27 PM
As far as we know we are the first Alt Coin to implement the Bitcoin v0.9.0 Protocol. We would love to have you help us test the Scrypt implementation out before we replace the main download link on the Digibyte.co website.

We have done initial testing and everything appears to be working well. We appreciate any and all feedback.

DigiByte v 2.9 Facts:
*Not a mandatory update
*Backwards compatible
*Includes exe installer
*Implements the latest Bitcoin 0.9 protocol features into DigiByte.

Windows x64 bit version: http[Suspicious link removed]
Windows x32 bit version: http[Suspicious link removed]

As always BACK UP your wallet.dat before upgrading!

You are not. NigeriaCoin was!

https://bitcointalk.org/index.php?topic=520100.0


Total disinformation! Every first comes from Vaporware Coin!

Ok... after checking it out... I think you're serious! I figured it was a joke!


Hahah totally serious!  NigeriaCoin is pro.  A funny meme with the best tech.  It should be called IronyCoin instead but you woudn't get funny pool pages like this one: https://ngc.crunchharder.net/index.php or this one http://ngc.talesfromthescrypt.org/index.php.   Grin Grin Grin
18  Alternate cryptocurrencies / Altcoin Discussion / Re: ★★ NigeriaCoin ★★ 1st Alt Coin to Implement Bitcoin Core 0.9.0 - NOT Digibyte! on: March 28, 2014, 04:27:01 PM
So what?  Wink

Just saying.  2nd place is the first loser.  Tongue
19  Alternate cryptocurrencies / Altcoin Discussion / ★★ NigeriaCoin ★★ 1st Alt Coin to Implement Bitcoin Core 0.9.0 - NOT Digibyte! on: March 28, 2014, 04:15:46 PM
In response to DigiByte's claim https://bitcointalk.org/index.php?topic=542795.0, we refute it with prior art.

[ANN][0.9.0][NGC] NigeriaCoin - Skein - Coin Distribution Symmetry - Mar 26 - 00:00GMT or Mar 25th 8PM EDT
https://bitcointalk.org/index.php?topic=520100.0
20  Alternate cryptocurrencies / Altcoin Discussion / Re: ★★ DigiByte ★★ 1st Alt Coin to Implement Bitcoin Core 0.9.0 Protocol on: March 28, 2014, 04:08:58 PM
As far as we know we are the first Alt Coin to implement the Bitcoin v0.9.0 Protocol. We would love to have you help us test the Scrypt implementation out before we replace the main download link on the Digibyte.co website.

We have done initial testing and everything appears to be working well. We appreciate any and all feedback.

DigiByte v 2.9 Facts:
*Not a mandatory update
*Backwards compatible
*Includes exe installer
*Implements the latest Bitcoin 0.9 protocol features into DigiByte.

Windows x64 bit version: http[Suspicious link removed]
Windows x32 bit version: http[Suspicious link removed]

As always BACK UP your wallet.dat before upgrading!

You are not. NigeriaCoin was!

https://bitcointalk.org/index.php?topic=520100.0
Pages: [1] 2 3 4 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!