Replies: 2 comments 1 reply
-
Useful sqlite query for dumping block commit information: SELECT
block_headers.burn_header_height as burn_height,
b.index_block_hash as index_block_hash,
payments.address as miner,
block_headers.parent_block_id as parent_ibh,
block_headers.block_height as stacks_height,
block_headers.burn_header_timestamp as burn_time,
b.arrival_time as arrival_time,
b.processed_time as processed_time
FROM staging_blocks as b
INNER JOIN block_headers ON block_headers.index_block_hash = b.index_block_hash
INNER JOIN payments ON payments.index_block_hash = b.index_block_hash
WHERE payments.miner = 1 GROUP BY block_headers.burn_header_height
ORDER BY burn_height DESC; This can be executed against the cat query_info.sql | sqlite3 -csv mainnet/chainstate/vm/index.sqlite > ~/Documents/block_data_dump_1.csv |
Beta Was this translation helpful? Give feedback.
0 replies
-
From @wileyj, to dump peer node IPs: Take this address: SP3HDY11ZDHYTMP6A850RW4EM7YQCPFP9WMEXFZHK, decode it to a public key, then simply grep that key in a neighbors list.
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Active Chain Issues Google Doc
The entity created 10 siblings to overrule the smaller miners with their fork.
from @peters.btc (Discord Conversation Link) GitHub: @Ston3cutt3r
https://discord.com/channels/621759717756370964/730814571517968436/1091340722143252510
Supporting Documentation Google Sheet
Beta Was this translation helpful? Give feedback.
All reactions