Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

HHC2022-Blockchain

This is a JSON blob of the blockchain transactions from the SANS Holiday Hack Challenge 2022.

I wrote some Python code that pulled down each of the transactions from the start of HHC (Block #2 - 2022-12-07 16:44:46 GMT) until the report due date (Midnight, January 6th in any time zone on earth, Block #109059 - 2023-01-07 10:49:43 GMT) and saved them.

Some additional Python code turned the raw data into a big old JSON blob. If anyone is interested, they can peruse the transactions and pull out interesting information.

Ex.:

Find the top 10 most popular hats purchased by players

jq '. | select(.transactionData.memo | startswith("Purchased HatID")) | .transactionData.memo' 2022_transactions.json | cut -d '#' -f2 | sed 's/!"//g' | sort -n | uniq -c | sort -nr | head -n 10

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors