mirror of
https://github.com/tig-foundation/tig-monorepo.git
synced 2026-02-22 02:47:50 +08:00
26 lines
1.1 KiB
Bash
26 lines
1.1 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Ask for player_id as input
|
|
read -p "Enter player ID: " PLAYER_ID
|
|
|
|
BLOCK_ID=$(curl -s https://mainnet-api.tig.foundation/get-block | jq -r '.block.id')
|
|
RESP=$(curl -s "https://mainnet-api.tig.foundation/get-benchmarks?block_id=$BLOCK_ID&player_id=$PLAYER_ID")
|
|
|
|
BENCHMARKS=$(echo $RESP | jq -c '[.benchmarks[]] | sort_by(.settings.challenge_id, -.details.num_solutions)')
|
|
|
|
declare -A SOLUTIONS_COUNT
|
|
|
|
for BENCHMARK in $(echo $BENCHMARKS | jq -c '.[]'); do
|
|
ID=$(echo $BENCHMARK | jq -r '.id')
|
|
SETTINGS=$(echo $BENCHMARK | jq -c '.settings')
|
|
CHALLENGE_ID=$(echo $BENCHMARK | jq -r '.settings.challenge_id')
|
|
NUM_SOLUTIONS=$(echo $BENCHMARK | jq -r '.details.num_solutions')
|
|
printf "ID: %-38s #Solutions: %-5s Settings: %-50s \n" "$ID" "$NUM_SOLUTIONS" "$SETTINGS"
|
|
SOLUTIONS_COUNT["$CHALLENGE_ID"]=$(( ${SOLUTIONS_COUNT["$CHALLENGE_ID"]:-0} + NUM_SOLUTIONS ))
|
|
done
|
|
|
|
echo "Total solutions by Challenge ID:"
|
|
for CHALLENGE_ID in "${!SOLUTIONS_COUNT[@]}"; do
|
|
echo "Challenge ID: $CHALLENGE_ID, Total Solutions: ${SOLUTIONS_COUNT[$CHALLENGE_ID]}"
|
|
done |