Website: https://dashradar.com
GitHub: https://github.com/Antti-Kaikkonen/DashRadar
Features
Last edited:
I tried to add InstantSend support but it isn't working in the live mode yet.You've got both TX and IX? Played around with one of these before, didn't get IX working but always wanted to see what PrivateSend looked like on it![]()
Yeah at some point i deployed a broken version with that problem and it seems you happened use it at the same timeSorry, I wasn't clear there, I meant both inputs and outputs, I'd tried it with the insight websocket API and it only broadcast outputs so everything was disjointed, PrivateSend transactions where obvious but they weren't connected. I see now you've got both and there's a nice nest of tangled up furballs forming as PrivateSend does its thingReally nice seeing that, it doesn't leave a whole lot of room for doubt that PrivateSend transactions are untraceable.
Good luck showing InstantSend, looking forward to watching this develop![]()
Yeah, I'd seen that here too, no idea what might be causing it though :/ Another I get is with poor network connectivity, for some reason the missed transactions when network traffic is stalled seem to come together as a single transaction when it's re-established. I was getting the same before, iirc it was from insight but I didn't get as far as seeing whether they could be detected and queried and I doubt it's much of a problem for most.Yeah at some point i deployed a broken version with that problem and it seems you happened use it at the same time
Edit: Current problem is that it sometimes displays a transaction with wrong icon (dash logo). I don't know why but I'll try to find out..
Thanks. Just updated it with edge arrows to make it more intuitive.I love this thing! Well done, sir or madam.
Sorry but I don't understand what you are referring to? What you mean by "it"?It really depends on where your data is stored, what kind of visualizations you are planning to build, hosted vs an open source solution etc. https://artjoker.net/services/blockchain-development-services/
MATCH (tx:Transaction)-[:INCLUDED_IN]->(b:Block) where (b.height > 600000 AND b.height < 700000) RETURN count(tx);
MATCH (n:TransactionOutput) where NOT (n)-[:SPENT_IN]->(:TransactionInput) return count(n);
MATCH (tx:Transaction {pstype:7})-[conn:PREVIOUS_ROUND]->(:Transaction)-[:INCLUDED_IN]->(b:Block) where b.height>600000 with tx, count(conn) as connection_count with connection_count, count(tx) as tx_count return connection_count, tx_count ORDER BY connection_count;
MATCH (b:Block) RETURN b.height ORDER BY b.height DESC LIMIT 1;