diff --git a/.github/scripts/examples/force-update-module-params.sh b/.github/scripts/examples/force-update-module-params.sh index 20c75c15..b912d574 100755 --- a/.github/scripts/examples/force-update-module-params.sh +++ b/.github/scripts/examples/force-update-module-params.sh @@ -29,7 +29,7 @@ wETH_CONTRACT_ADDRESS=0x5d6D67a665C9F169B0f9436E05B11108C1606043 kava config node "${CHAIN_API_URL}" kava config chain-id "${CHAIN_ID}" -# use the test keyring to allow scriptng key generation +# use the test keyring to allow scripting key generation kava config keyring-backend test # wait for transactions to be committed per CLI command diff --git a/.github/scripts/exit-standby-all-chain-nodes.sh b/.github/scripts/exit-standby-all-chain-nodes.sh index 3fad2155..d55962df 100755 --- a/.github/scripts/exit-standby-all-chain-nodes.sh +++ b/.github/scripts/exit-standby-all-chain-nodes.sh @@ -10,7 +10,7 @@ do # Possible states: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-lifecycle.html case "$autoscaling_group_state" in Standby) - # exit standby to make the node elgible for reciving + # exit standby to make the node eligible for reciving # requests from the target groups for the public load balancer autoscaling_group_name=$(aws autoscaling describe-auto-scaling-instances --instance-ids "$chain_node_instance_id" | jq -r '[.AutoScalingInstances | .[].AutoScalingGroupName] | join(" ")') @@ -19,7 +19,7 @@ do --auto-scaling-group-name "$autoscaling_group_name" ;; *) - echo "instance ($chain_node_instance_id) not in an elgible state ($autoscaling_group_state) for exiting standby, skipping" + echo "instance ($chain_node_instance_id) not in an eligible state ($autoscaling_group_state) for exiting standby, skipping" ;; esac done diff --git a/.github/scripts/put-all-chain-nodes-on-standby.sh b/.github/scripts/put-all-chain-nodes-on-standby.sh index 591e64d0..54454693 100755 --- a/.github/scripts/put-all-chain-nodes-on-standby.sh +++ b/.github/scripts/put-all-chain-nodes-on-standby.sh @@ -21,7 +21,7 @@ do --should-decrement-desired-capacity ;; *) - echo "instance ($chain_node_instance_id) not in an elgible state ($autoscaling_group_state) for going on standby, skipping" + echo "instance ($chain_node_instance_id) not in an eligible state ($autoscaling_group_state) for going on standby, skipping" ;; esac done diff --git a/.github/scripts/seed-internal-testnet.sh b/.github/scripts/seed-internal-testnet.sh index d94a62b0..2c18efdc 100755 --- a/.github/scripts/seed-internal-testnet.sh +++ b/.github/scripts/seed-internal-testnet.sh @@ -13,7 +13,7 @@ AVG_SECONDS_BETWEEN_BLOCKS=6.5 kava config node "${CHAIN_API_URL}" kava config chain-id "${CHAIN_ID}" -# use the test keyring to allow scriptng key generation +# use the test keyring to allow scripting key generation kava config keyring-backend test # wait for transactions to be committed per CLI command @@ -143,7 +143,7 @@ kava tx issuance issue 6000000000ukava kava1vlpsrmdyuywvaqrv7rx6xga224sqfwz3fyfh sleep $AVG_SECONDS_BETWEEN_BLOCKS -# parse space seperated list of validators +# parse space separated list of validators # into bash array read -r -a GENESIS_VALIDATOR_ADDRESS_ARRAY <<<"$GENESIS_VALIDATOR_ADDRESSES" diff --git a/.github/scripts/seed-protonet.sh b/.github/scripts/seed-protonet.sh index 57e9ff62..d225447b 100755 --- a/.github/scripts/seed-protonet.sh +++ b/.github/scripts/seed-protonet.sh @@ -13,7 +13,7 @@ AVG_SECONDS_BETWEEN_BLOCKS=6.5 kava config node "${CHAIN_API_URL}" kava config chain-id "${CHAIN_ID}" -# use the test keyring to allow scriptng key generation +# use the test keyring to allow scripting key generation kava config keyring-backend test # wait for transactions to be committed per CLI command @@ -103,7 +103,7 @@ kava tx issuance issue 6000000000ukava kava1vlpsrmdyuywvaqrv7rx6xga224sqfwz3fyfh sleep $AVG_SECONDS_BETWEEN_BLOCKS -# parse space seperated list of validators +# parse space separated list of validators # into bash array read -r -a GENESIS_VALIDATOR_ADDRESS_ARRAY <<< "$GENESIS_VALIDATOR_ADDRESSES"