moved old docs -> old_docs dir for clarity when devving

This commit is contained in:
mfahampshire
2024-08-28 12:29:01 +02:00
parent f7c39397b3
commit 2a2ecab852
589 changed files with 14281 additions and 46 deletions
@@ -0,0 +1,7 @@
#!/bin/bash
stake_unyx=$(curl -s -L https://api.nymtech.net/cosmos/staking/v1beta1/pool | jq 'values["pool"]["bonded_tokens"]')
stake_unyx=$(python -c "print(int($stake_unyx))")
stake_nyx=$(python -c "print($stake_unyx / 1000000)")
voting288k_percent=$(python -c "print(288000 / $stake_nyx * 100)")
echo ${voting288k_percent:0:4}%
@@ -0,0 +1,4 @@
#!/bin/bash
stake=$(curl -s -L https://api.nymtech.net/cosmos/staking/v1beta1/pool | jq 'values["pool"]["bonded_tokens"]')
echo ${stake:1:2}.${stake:3:3}