simplified sysadmins

This commit is contained in:
Mik-TF
2024-07-10 21:27:07 -04:00
parent 253724e273
commit 4c874c20ac
9 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
cd ../../collections/manual/values
coinId="threefold-token"
url="https://api.coingecko.com/api/v3/simple/price?ids=${coinId}&vs_currencies=usd";
curl -sL ${url} \
-H 'Accept: application/json' | jq '."threefold-token".usd' | xargs printf "%.3f" > tft_value.md
supply=$(cat tft_supply.md)
value=$(cat tft_value.md)
TFT_MARKETCAP=$(echo "$supply * $value" | bc -l)
printf "%'.0f" $TFT_MARKETCAP > tft_marketcap.md