Bitcoin Forum
May 07, 2024, 03:07:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17] 18 19 20 21 »
321  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: July 30, 2016, 10:51:54 AM
Somebody actually have a working block explorer for this coin?  ( NDL )
Not that I know of.
I want to put one up, but just don't have the time.
-Dave

i'm still running http://dognose.com:40023/ that i put up months ago.
just a simple ABE explorer.
it does have a bad habit of hanging/stalling. but it generally is there trundling along...

I have not been able to connect to it for a while. I figured it was dead.
Is it a server issue (lack of CPU / RAM / something else), or another issue?
-Dave


probably 'other', ABE itself or the SQL server perhaps. i've not had time or brain energy to look into it. i work a summer seasonal job 6 days a week. winter months are my play with the computer months. i've done an ABE --rescan and it made no difference.

Code:

abe.conf:
---------
default-loader = blkfile
dbtype MySQLdb
connect-args {"user":"abe","db":"abe","passwd":"secret :)"}
upgrade
port 40023
host dognose.com
datadir = [{
        "dirname" : "/home/ndl/.noodlyappendagecoin",
        "chain" : "NoodlyAppendageCoin",
        "conf" : "noodlyappendagecoin.conf",
        "loader" : "blkfile",
        "policy" : "Sha256Chain",       # not coins algorithm, but chain format used
        "code3" : "NDL",
        "address_version" : "u0305",            # hex value of base58.h PUBKEY_ADDRESS
        "magic" : "u0f0bu0c00u0b06u0d0b"        # main.cpp uchar pchMessageStart[4]
        }]

and

Code:
runabe.sh:
----------
#!/bin/bash
if [ "x$1" = "x--init" ]; then
        python -m Abe.abe --config abe.conf --commit-bytes 100000 --no-serve
elif [ "x$1" = "x--rescan" ]; then
        python -m Abe.abe --config abe.conf --rescan --no-serve
else
        python -m Abe.abe --config abe.conf >/dev/null 2>&1 &
fi

and according to my notes i had done this:

Code:
mysql -u root -p
 create database abe;
 CREATE USER 'abe'@'localhost' IDENTIFIED BY 'password';
 grant all on abe.* to abe;
 quit

i run the explorer under the ndl login user that is running the noodlydaemon

322  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: July 29, 2016, 12:57:03 AM
Somebody actually have a working block explorer for this coin?  ( NDL )
Not that I know of.
I want to put one up, but just don't have the time.
-Dave

i'm still running http://dognose.com:40023/ that i put up months ago.
just a simple ABE explorer.
it does have a bad habit of hanging/stalling. but it generally is there trundling along...
323  Bitcoin / Project Development / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: May 09, 2016, 01:10:41 AM
Try to re-run the coin daemon with -reindex -indexes
I have similar problem yesterday with two daemons and both fix it

alas, it made no difference
324  Bitcoin / Project Development / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: April 26, 2016, 10:21:05 PM
Can you please also post your MetalMusicCoin3.py also. Thanks.

i'm using the PpcPosChain policy, the .py file is as follows
Code:
# Copyright(C) 2014 by Abe developers.

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with this program.  If not, see
# <http://www.gnu.org/licenses/agpl.html>.

from . import BaseChain
from .. import deserialize

class PpcPosChain(BaseChain):
    """
    A blockchain with proof-of-stake as in Peercoin.
    """
    def ds_parse_transaction(chain, ds):
        return deserialize.parse_Transaction(ds, has_nTime=True)

    def ds_parse_block(chain, ds):
        d = BaseChain.ds_parse_block(chain, ds)
        d['block_sig'] = ds.read_bytes(ds.read_compact_size())
        return d

and this is what the .MetalMusicCoin3 directory structure looks like:
Code:
.
./database
./database/log.0000000138
./database/log.0000000140
./database/log.0000000143
./database/log.0000000141
./database/log.0000000144
./database/log.0000000145
./database/log.0000000139
./database/log.0000000142
./MetalMusicCoin3.conf
./blk0001.dat
./peers.dat
./.lock
./wallet.dat
./MetalMusicCoin3d.pid
./blkindex.dat
./db.log
./debug.log
325  Bitcoin / Project Development / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: April 17, 2016, 06:52:37 PM
i'm trying to get bitcoin-abe 0.8pre to work with MetalMusicCoin3 (a pos/pow coin.)
i tried the following configuration but get an abort. does this version of abe handle
more recent PoS coins?

Code:
datadir = [{
        "dirname" : "/home/ndl/.noodlyappendagecoin",
        "chain" : "NoodlyAppendageCoin",
        "conf" : "noodlyappendagecoin.conf",
        "loader" : "blkfile",
        "policy" : "Sha256Chain",       # not coins algorithm, but chain format used
        "code3" : "NDL",
        "address_version" : "u0305",            # hex value of base58.h PUBKEY_ADDRESS
        "magic" : "u0f0bu0c00u0b06u0d0b"        # main.cpp uchar pchMessageStart[4]
        }]
datadir += [{
        "dirname" : "/home/metalcoin/.MetalMusicCoin3",
        "chain" : "MetalMusicCoin3",
        "conf" : "MetalMusicCoin3.conf",
        "loader" : "blkfile",
        "policy" : "PpcPosChain",
        "code3" : "MTLMC",
        "address_version" : "u0303",
        "magic" : "u0c0eu0f0bu0f0au0d0b"        # {0xce, 0xfb, 0xfa, 0xdb}
        }]


ndl@carpdiem:~$ ./runabe.sh --init
Opened /home/ndl/.noodlyappendagecoin/blocks/blk00001.dat
block_tx 551775 646045
block_tx 551776 646046
commit
Opened /home/metalcoin/.MetalMusicCoin3/blk0001.dat
Exception at 72056513165787274
Failed to catch up {'blkfile_offset': 0, 'blkfile_number': 1, 'chain_id': 2, 'loader': u'blkfile', 'conf': u'MetalMusicCoin3.conf', 'dirname': u'/home/metalcoin/.MetalMusicCoin3', 'id': 14L}
Traceback (most recent call last):
  File "/usr/lib64/python2.7/site-packages/Abe/DataStore.py", line 2529, in catch_up
    store.catch_up_dir(dircfg)
  File "/usr/lib64/python2.7/site-packages/Abe/DataStore.py", line 2836, in catch_up_dir
    store.import_blkdat(dircfg, ds, blkfile['name'])
  File "/usr/lib64/python2.7/site-packages/Abe/DataStore.py", line 2958, in import_blkdat
    b = chain.ds_parse_block(ds)
  File "/usr/lib64/python2.7/site-packages/Abe/Chain/__init__.py", line 82, in ds_parse_block
    d['transactions'].append(chain.ds_parse_transaction(ds))
  File "/usr/lib64/python2.7/site-packages/Abe/Chain/__init__.py", line 75, in ds_parse_transaction
    return deserialize.parse_Transaction(ds)
  File "/usr/lib64/python2.7/site-packages/Abe/deserialize.py", line 90, in parse_Transaction
    d['txIn'].append(parse_TxIn(vds))
  File "/usr/lib64/python2.7/site-packages/Abe/deserialize.py", line 46, in parse_TxIn
    d['sequence'] = vds.read_uint32()
  File "/usr/lib64/python2.7/site-packages/Abe/BCDataStream.py", line 71, in read_uint32
    def read_uint32 (self): return self._read_num('<I')
  File "/usr/lib64/python2.7/site-packages/Abe/BCDataStream.py", line 110, in _read_num
    (i,) = struct.unpack_from(format, self.input, self.read_cursor)
error: unpack_from requires a buffer of at least 4 bytes

326  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] METAL MUSIC COIN [PLEASE UPGRADE NOW TO MTLMC V3] on: April 16, 2016, 04:13:23 PM
hi cananyone in here guild me to how i can masternode this coin? Huh

pretty much the same as any other cryptocoin.
depends on what operating system you are using (linux? mac? windows?)
but there are many guides found via google for many coins.

basically you run the daemon <coin>d binary continuously. i believe the QT wallet may work as well
if you put daemon=1 (?) in the config file.

you must also make sure any firewall you have opens up that coin's default PORT to incoming external
connections.

you may also have to configure your internet provider's router/wifi box to "port forward" the coin's default PORT to your
machine within your home network.
327  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SXC][NSFW] Sexcoin - Now accepted by Coinpayments.net! on: April 06, 2016, 05:04:35 AM
windows/qt wallet available for download somewhere?
or mac?
everything seems to point to non-existent site sex-coin.info


Hi and good to hear from you - the SXC forum can be found at http://sexcoinforum.com/index.php

While the SXC website is http://www.sexcoin.info/

Hope to see you over there.

thanks!
328  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [SXC][NSFW] Sexcoin - Now accepted by Coinpayments.net! on: April 06, 2016, 12:57:54 AM
windows/qt wallet available for download somewhere?
or mac?
everything seems to point to non-existent site sex-coin.info
329  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [I0C] I0coin - The Best Choice In Digital Currency on: February 12, 2016, 06:50:06 PM

I0coin is back online at Cryptopia.  I believe they reverted back to the 0.8.x wallet for now.  We'll continue to look into the issue with the new wallet.

any word what is happening?
i still have a whole whack of transactions since late december from cryptoblox faucett that are not confirming.
they occasionally get a glimmer of confirms, then it goes away again.
at one point back on feb.1 i got at least 12 ! confirms and figured things were sorted out so i sent everything to cryptopia exchange. then all the confirms went away again, and of course my send isnt confirmed along with my income.

for the last 10 days i've been running two machines with the same wallet. one running 11.9 version code and the other running 8.6.1 version. neither one is confirming. but still the occasional blip of one or two confirms that go away again.

Sad Sad
330  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [I0C] I0coin - The Best Choice In Digital Currency on: January 18, 2016, 07:35:07 PM
Been using the 10C faucet @ cryptoblox.com. Payouts is alright for a faucet. Unfortunately I have 9 deposits now that are not confirmed. Last confirmed deposit was on 12/26/15. Sent an email a week ago to faucet support, but as of date no reply. Does anyone know if there's a problem with this faucet? It's depositing, just not confirming Sad  Thanks in advance for you time Smiley

I've been a bit curious about them because their payouts are not showing up on the block explorer.  I'll send a PM and ask.


CryptoBlox hasn't logged in since early November, but I PM'ed him anyway.  The wallet doesn't seem to be syncing with the block chain even though payouts are still being generated and posted.  If CryptoBlox updates the wallet or just restarts it should come back online.  In the mean time, I wouldn't use the faucet.  We may need to get another one.



Thanks for checking into the faucet. Hope Cryptoblox restarts or updates wallet, I'd really like the coins, haha :p
If not yeah, another faucet would be great! Smiley

me too Sad
not had any of the payouts confirm since about dec.23rd.
i also sent a message with no response.
i also see that one of the adservers ('adbit') used on the pages is throwing up error messages too. looks
like cryptoblox admin has just not been around for a while... hope it isnt health issues or anything like that Sad

331  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: October 03, 2015, 01:16:17 AM

abe explorer for NDL right here: http://dognose.com:40023/
a link to the above is found at my general NDL webpage, http://dognose.com/ndl

anyone have any sort of contact info for the original dev/author of NDL ?


I keep getting connection timed out for the block explorer ? Are you sure it's running ?

The one (and only) commit refers to a Paul Bradley : https://github.com/His-Holy-Noodliness/noodlyappendagecoin/commits/master
Besides that, it's not a lot of info available any more it seems.

after it times out, try again. i dont know/understand ABE's internal workings, but i'm suspecting its not updating new blocks into its database until it gets a request. then goes away for a time doing the updates.

retries a couple minutes later usually work for me.

if it is NOT running you would get an instant web error, not a time-out.
332  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: October 03, 2015, 01:13:55 AM
I am SO sorry, but when I saw this I had to laugh into an epileptic fit. Spaghetti coin. OYE VAY! What the ^^^^! OMG this forum location can leave me laughing. I thought sexcoin was bad (funny) when it came out, same with WankCoin. This is odd and VERY DAMN FUNNY.I am SORRY, but had to laugh.

may your funnybone be eternally touched by His Noodly Appendage
333  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: September 28, 2015, 07:33:21 PM
anyone know what the current block is?

my daemons are showing block 379258 as of sat.aug.15 13:14:35 2015 (gmt-4)


Mining right along it seems....

I have 57,176,325 NDL... or about 0.4 percent of all possible...

I am sure many NDL are forever lost due to early failures at exchanges and mining pools... that isn't such a bad thing...  But a block explorer would be nice, and someone to try and find out what happened to the 3 percent pre-mine et al.

abe explorer for NDL right here: http://dognose.com:40023/
a link to the above is found at my general NDL webpage, http://dognose.com/ndl

anyone have any sort of contact info for the original dev/author of NDL ?
334  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: August 15, 2015, 05:16:58 PM
anyone know what the current block is?

my daemons are showing block 379258 as of sat.aug.15 13:14:35 2015 (gmt-4)
335  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: August 08, 2015, 03:32:41 PM
i can set up an explorer like http://bat.hashhound.net:4001 is there anyone willing to host it?

That would be great.... we need an explorer and a website.... then we can get the coin listed on Cryptopia and they can set up a scrypt pool there as well... Plus they have trading pairs besides BTC/Alt....   LTC/Alt... UNO/Alt... etc....



as i posted earlier, i already have an ABE explorer running at my ndl website
336  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: July 18, 2015, 04:27:17 PM
i see some connections to my noodlyappendagecoin daemon.
but they do not appear to be 'open' as full nodes.

please consider running an open full node. you do not have to run your computer all the time,
but when it is running, it would be very helpful if you provide full two-way node services.

please read
 http://dognose.com/ndl/#fullnode

thankyou!
337  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: July 14, 2015, 11:36:28 PM
Well...  NDL lives.... is there a block explorer?

Possibly, I could put one up for us if there is a need for it.
I usually will run an instance of Abe when I need a block explorer and have used Abe for Noodlyappendagecoin without issue in the past.

my google-fu is not being adequate to find something i'd like. has someone come up with a sql query or Abe python module to generate a richlist from the abe database?
338  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: July 14, 2015, 12:00:35 AM
i have an Abe blockchain explorer configured for NoodlyAppendageCoin
for the time being it can be found at http://dognose.com:40023/
but i'll probably move it.

a current link will always be in my NDL resource page at http://dognose.com/ndl

please check a couple of your transactions in the explorer to test if i have it
configured and working correctly.
339  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NDL - The coin for Pastafarians - Flying Spaghetti Monster Cryptocurrency! on: July 07, 2015, 09:12:28 PM
I've connected and helped to move blockchain forward to be just 8 weeks old now Smiley

thank-you!
340  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.22] on: July 05, 2015, 09:31:45 PM
It's usually in there assigned to PUBKEY_ADDRESS in one way or another.

thanks!
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17] 18 19 20 21 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!