Skip to content

Commit

Permalink
Update max supply
Browse files Browse the repository at this point in the history
  • Loading branch information
thr2240 committed Sep 25, 2023
1 parent 7babb19 commit 6f46c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion running_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if [[ $overwrite == "y" || $overwrite == "Y" ]]; then

# Set token supply
jq '.app_state["token"]["tokens"]["initial_supply"]="100000000"' "$GENESIS" >"$TMP_GENESIS" && mv "$TMP_GENESIS" "$GENESIS"
jq '.app_state["token"]["tokens"]["max_supply"]="5000000"' "$GENESIS" >"$TMP_GENESIS" && mv "$TMP_GENESIS" "$GENESIS"
jq '.app_state["token"]["tokens"]["max_supply"]="500000000"' "$GENESIS" >"$TMP_GENESIS" && mv "$TMP_GENESIS" "$GENESIS"

# Allocate genesis accounts (cosmos formatted addresses)
for i in "${!KEYS[@]}"; do
Expand Down

0 comments on commit 6f46c57

Please sign in to comment.