NEMBEX - NEM Blockexplorer is here - in alpha

We are ready to show you our blockexplorer.
It currently still lacks features and is deployed on a somewhat small VPS so performance can be suboptimal at times but we'd like to get feedback from you guys.

Feature ideas ? (it currently still lacks some standard features but we're of course working on those)

How do you like the design ?

Found bugs ?

How's the performance for you ?

note: It'll work best in browsers that support websockets. Anyone using e.g. IE will not have auto-update of the lists and will have to refresh the page manually to see the latest info.

[url=http://chain.nem.ninja/]http://chain.nem.ninja/

X and Y axis needs to be defined of its dimension, i.e., need to include in there the x axis title and the y axis title.

Otherwise it looks good!


X and Y axis needs to be defined of its dimension, i.e., need to include in there the x axis title and the y axis title.

Otherwise it looks good!


I suppose you're talking about the blocktime chart ?
If so then this is already forwarded to the front-end dev.

Hi,

nice, i like it!

I get some little bugs: For me the time and date on the tx page is displayed wrong and it seems that the search is currently not working.

Else: Good work!

Come on community: We need more tx on the network!  :slight_smile:

Greetings
Owon


Hi,

nice, i like it!

I get some little bugs: For me the time and date on the tx page is displayed wrong and it seems that the search is currently not working.

Else: Good work!

Come on community: We need more tx on the network!  :)

Greetings
Owon


Yeah, for TX it seems that the displaying mixed am with pm - already reported :)
Search works for me. Currently you can only search for tx and blocks by hash though. And you have to hit enter to trigger the search.

Looks good. Maybe the font and colors of tx text could be a bit more optimized toward ease of reading.

I think Loi will spend more time on the design once branding is done.

Hello.

I have registered here as well now.
I will follow this thread so you can post bugs here too beside the trello board.

Hello

This are answers related to the post posted in another thread but
I think as we have dedicated thread to the block chain explorer we should post here.

http://forum.nemcoin.com/index.php?topic=2230.msg3602#msg3602

Thanks robin for your feedback.
1) currently there is no search button to press when you to search data.
The magnifier tool is just an image I propose to add a search button and also leave the current <ENTER>
functionality for those used to skip the search button in future after rebranding (redesign)
2) Acknowledged!
Points 1,2 won't change for now i will solve this issues after the rebranding phase like patmas3r mentioned further in
the other thread.

3) this was a bug its been solved.
    also when you have content bigger than your screen and you scroll down you don't need to
    scroll on top gain to close the dialog just click on the greyed transparent area.

Please post any further info, suggestion or bug related to the block chain explorer in this thread
and I will try to answer you here.





Can you add the rich list to the nembex?

Here is a current list: http://pastebin.com/raw.php?i=Davh4ANE

and

Here is some python to look-up all account balances if you want to put it on a cron and save to csv and load on the webpage:

import urllib, urllib2, json, requests
url = "http://127.0.0.1:7890/account/importances"
response = urllib.urlopen(url);
data = json.loads(response.read())
parent =  data["data"]
for item in parent:
  url2="http://127.0.0.1:7890/account/get?address=%s" % item["address"]
  response2 = urllib.urlopen(url2);
  data2 = json.loads(response2.read())
  parent2 =  data2["account"]
  print "%s,%s"  % (item["address"],  unicode(parent2["balance"]))
print('All done')

Why are NEMBEX updates stopped?

Plz Check

and

Thanks

Hello?

I will ping @gimre as he is the owner of the repo.

However, I am sure that he would appreciate more developers working on this block explorer. Gimer is very busy working on Catapult :slight_smile:

sorry I don’t have time for this, it might be better idea to use http://explorer.ournem.com/

2 Likes