Pages:
Author

Topic: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff - page 5. (Read 220986 times)

hero member
Activity: 714
Merit: 500
@kryptographer
Is there a working demo somewhere?
full member
Activity: 203
Merit: 100
hi,

can anyone post a download link for abe.sqlite bitcoin (or a trick to make it faster), this shit takes forever to finish. im still on block_tx 182130 3564583 since 7 days  Shocked
just dont use sqlite, its not meant for a serious DB, just for something small to play around/beginners. bitcoin is huge and dosnt fit this space.

You are blatantly wrong and misinformed. You should not make comments like those because people who (just like you) don't know better will take it for truth.

Sqlite does not offer a queing gateway for queries like postgresql or mysql does, but in terms of inherent concurrency it is in fact much more capable than both postgres and mysql is, and with notably higher performance while still consuming less memory. For sheer size of databases, it is faster and more efficient, but only for intra-process concurrency. Contrary to common believe, sqlite does have a transaction log, and it is suitable for multi-process concurrency just not on the same scale as a dbms with a queing gateway.
legendary
Activity: 1792
Merit: 1008
/dev/null
hi,

can anyone post a download link for abe.sqlite bitcoin (or a trick to make it faster), this shit takes forever to finish. im still on block_tx 182130 3564583 since 7 days  Shocked
just dont use sqlite, its not meant for a serious DB, just for something small to play around/beginners. bitcoin is huge and dosnt fit this space.
full member
Activity: 203
Merit: 100
hi,

can anyone post a download link for abe.sqlite bitcoin (or a trick to make it faster), this shit takes forever to finish. im still on block_tx 182130 3564583 since 7 days  Shocked

Yeah i feel your pain, I've been there :PP If you are not looking in-depth details of inputs or tracking addresses and already have the blockchain, check out RPC Ace explorer as it doesn't need installation no database etc.
full member
Activity: 210
Merit: 100
hi,

can anyone post a download link for abe.sqlite bitcoin (or a trick to make it faster), this shit takes forever to finish. im still on block_tx 182130 3564583 since 7 days  Shocked
full member
Activity: 203
Merit: 100
can Abe work with fresh algorithm? which policy can I use for fresh algorithm.

Hi, WildWestCoin needs in the new Block Explorer, who can help?
Write in WEST topic, please:
https://bitcointalksearch.org/topic/ann-wild-west-coin-x11-pow-pos-4747000-total-coins-pow-is-over-607493

Does anyone know the parameters needed for Guldencoin(NLG) - https://bitcointalksearch.org/topic/na-554412
I want to run ABE for NLG. Thanks!

Abe docs (and example confs) explain how to adapt for a new chain, there are some old unfixed problems though and you may need to edit the internal datastore.py to make it work. Another solution is to use an explorer which does not care for algorithm and work with all blockchain, like RPC Ace: https://bitcointalksearch.org/topic/announce-rpc-ace-a-simple-cut-down-block-explorer-alternative-686177
sr. member
Activity: 672
Merit: 250
Does anyone know the parameters needed for Guldencoin(NLG) - https://bitcointalksearch.org/topic/na-554412

I want to run ABE for NLG. Thanks!
"address_version": "\u00f3"
For rest, follow examples in abe.conf

Thanks, I hope you can be patient with me as I am still learning about this stuff.

I am using this tutorial - https://cryptocointalk.com/topic/1312-luckycoin-blockchain-explorer/

Here is where I am stuck -

Replace in the file bitcoin-abe/Abe/DataStore.py lines 73-74 with the coin parameters of the Luckycoin network.
{"chain":"Luckycoin","code3":"LKY", "address_version":"\x2f", "magic":"\xfb\xc0\xb6\xdb"},


Here is the how I presume this line should look for NLG -

{"chain":"GuldenCoin","code3":"NLG", "address_version":"\u00f3", "magic":"\xfb\xc0\xb6\xdb"}

but not sure of the 'magic' stuff.

Also 'DataStore.py lines 73-74' did not really match up... do I just add this line at the end of the 'chain_config' sequence?

Thanks!


sr. member
Activity: 486
Merit: 250
Technician
Does anyone know the parameters needed for Guldencoin(NLG) - https://bitcointalksearch.org/topic/na-554412

I want to run ABE for NLG. Thanks!
"address_version": "\u00f3"
For rest, follow examples in abe.conf
sr. member
Activity: 672
Merit: 250
Does anyone know the parameters needed for Guldencoin(NLG) - https://bitcointalksearch.org/topic/na-554412

I want to run ABE for NLG. Thanks!
sr. member
Activity: 486
Merit: 250
Technician
Does it work for X15 coins? Which type of chain should I select or is any external module to do this?

Code:
Traceback (most recent call last):
  File "Abe/abe.py", line 32, in
    import DataStore
  File "/home/abe/bitcoin-abe/Abe/DataStore.py", line 31, in
    import Chain
  File "/home/abe/bitcoin-abe/Abe/Chain/__init__.py", line 17, in
    from .. import deserialize, BCDataStream, util
ValueError: Attempted relative import beyond toplevel package

The last version tagged is 0.7.2, which is nearly two years old.  The last commit in master is only a couple of months old, but it doesn't do any good if it won't run. Is there another fork that people are using nowadays?  The coins I'm interested in monitoring are sha256d and scrypt coins.  Proof-of-stake support is needed for some.
Workaround: https://github.com/bitcoin-abe/bitcoin-abe/issues/134#issuecomment-59664151
hero member
Activity: 651
Merit: 501
My PGP Key: 92C7689C
I'm attempting to set up a Fudcoin explorer.  (After that, I'll expand it to the other coins for which I have daemons running, but I'm starting with Fudcoin.) I already have a Bitgem explorer running (see link in my sig) with the CryptoManiac fork, so I started with that.  It reads in the blockchain and starts the webserver, but when I try to access it, it fails with a division-by-zero error:

Code:
Traceback (most recent call last):
  File "/usr/lib/python2.7/wsgiref/handlers.py", line 85, in run
    self.result = application(self.environ, self.start_response)
  File "Abe/abe.py", line 209, in __call__
    handler(page)
  File "Abe/abe.py", line 307, in handle_chains
    100.0 - (100.0 * (ss + more) / (total_ss + more)))
ZeroDivisionError: float division by zero

If I put the offending code in a try-except block, the homepage comes up...but it only shows the genesis block.

I then tried the main branch.  It won't even start up:

Code:
Traceback (most recent call last):
  File "Abe/abe.py", line 32, in
    import DataStore
  File "/home/abe/bitcoin-abe/Abe/DataStore.py", line 31, in
    import Chain
  File "/home/abe/bitcoin-abe/Abe/Chain/__init__.py", line 17, in
    from .. import deserialize, BCDataStream, util
ValueError: Attempted relative import beyond toplevel package

The last version tagged is 0.7.2, which is nearly two years old.  The last commit in master is only a couple of months old, but it doesn't do any good if it won't run. Is there another fork that people are using nowadays?  The coins I'm interested in monitoring are sha256d and scrypt coins.  Proof-of-stake support is needed for some.
newbie
Activity: 29
Merit: 0
Hi, WildWestCoin needs in the new Block Explorer, who can help?
Write in WEST topic, please:
https://bitcointalksearch.org/topic/ann-wild-west-coin-x11-pow-pos-4747000-total-coins-pow-is-over-607493
legendary
Activity: 840
Merit: 1000
if you run it over FastCGI, restart your webserver.
You mean the whole server/machine (which I did), or just Apache? Only to be sure.

only the webserver means the program (in this case Apache)

OK, thanks to you both for clearing this up.
legendary
Activity: 2912
Merit: 1309
if you run it over FastCGI, restart your webserver.
You mean the whole server/machine (which I did), or just Apache? Only to be sure.

only the webserver means the program (in this case Apache)
legendary
Activity: 840
Merit: 1000
if you run it over FastCGI, restart your webserver.
You mean the whole server/machine (which I did), or just Apache? Only to be sure.
legendary
Activity: 1792
Merit: 1008
/dev/null
What I have been asking myself from the beginning: Is it just me or is it common practice in Abe, that an update/changing of the HTML-template is not reflected, until the database is build up again? Or am I doing something wrong? Just changed some HTML in the template (again) and it does not show up on the frontend. Would not like to rebuild the database again from the whole blockchain ...

Any idea?
You dont have to rebuild the DB, just restart Abe.

OK, I will try that. What command would you use for that? killall or anything better?

Edit: just restarted the server ... Wink
if you run it over FastCGI, restart your webserver.
if you run it with the Abe's internal HTTP server, just restart this Abe instance.
legendary
Activity: 840
Merit: 1000
What I have been asking myself from the beginning: Is it just me or is it common practice in Abe, that an update/changing of the HTML-template is not reflected, until the database is build up again? Or am I doing something wrong? Just changed some HTML in the template (again) and it does not show up on the frontend. Would not like to rebuild the database again from the whole blockchain ...

Any idea?
You dont have to rebuild the DB, just restart Abe.

OK, I will try that. What command would you use for that? killall or anything better?

Edit: just restarted the server ... Wink
legendary
Activity: 1792
Merit: 1008
/dev/null
What I have been asking myself from the beginning: Is it just me or is it common practice in Abe, that an update/changing of the HTML-template is not reflected, until the database is build up again? Or am I doing something wrong? Just changed some HTML in the template (again) and it does not show up on the frontend. Would not like to rebuild the database again from the whole blockchain ...

Any idea?
You dont have to rebuild the DB, just restart Abe.
legendary
Activity: 840
Merit: 1000
What I have been asking myself from the beginning: Is it just me or is it common practice in Abe, that an update/changing of the HTML-template is not reflected, until the database is build up again? Or am I doing something wrong? Just changed some HTML in the template (again) and it does not show up on the frontend. Would not like to rebuild the database again from the whole blockchain ...

Any idea?
jr. member
Activity: 54
Merit: 1
can Abe work with fresh algorithm? which policy can I use for fresh algorithm.
Pages:
Jump to: