1. Is it possible to track how hashrate distributed in the network? I mean something like "Solo miner with IP a.a.a.a control 3% of total hashrate, Pool BBB controll 22% of total hashrate". So far I found only that some pools making their statistic public. But I don't see something interesting in block header specifications what can help at least determine who mined that block. 2. Is it possible to list or find in some way all transactions from "pooledtx"?
Well, answering my second question. Seems that I found it: Code: dcrctl --wallet getrawmempool But problem not yet solved. When I try to run gettransaction I always receive response "-5: No information for transaction" for all (both confirmed and unconfirmed) transactions, except my own (which I created in my wallet). Do I understand right, that to see full information for those mempooled transactions I should resync my wallet from the seed again? Is it possible, that it will be fixed one day?
@Dyrk: gettransaction is a wallet command (dcrwallet) and thus only refers to transactions in your wallet that involve your own addresses. The getrawmempool command is a chain command (dcrd). If you want to look at any given transaction on the chain, you can issue the getrawtransaction chain command (dcrd).