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:
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
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
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
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.
datadir = [{
"dirname": "/home/ubuntu/.nigeriacoin",
"chain": "NigeriaCoin",
"policy": "NigeriaCoin",
"code3": "NGC",
"address_version": "\u0035"}]