From ca04f0b346c9f884829eb75379f65dff402ca806 Mon Sep 17 00:00:00 2001 From: Maximilian Hubert <64627729+gap-editor@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:30:37 +0100 Subject: [PATCH 1/5] typos exit-standby-all-chain-nodes.sh --- .github/scripts/exit-standby-all-chain-nodes.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 7c2a41f5c80acbc0fdc27802f268cbcfa7a1ab2e Mon Sep 17 00:00:00 2001 From: Maximilian Hubert <64627729+gap-editor@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:31:20 +0100 Subject: [PATCH 2/5] typo put-all-chain-nodes-on-standby.sh --- .github/scripts/put-all-chain-nodes-on-standby.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From a877c8f6bec48c5a259631c073453382865c86c1 Mon Sep 17 00:00:00 2001 From: Maximilian Hubert <64627729+gap-editor@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:33:37 +0100 Subject: [PATCH 3/5] typos seed-internal-testnet.sh --- .github/scripts/seed-internal-testnet.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" From bb905e70f756fffe6b12a142d1ae2ce58a00831e Mon Sep 17 00:00:00 2001 From: Maximilian Hubert <64627729+gap-editor@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:36:13 +0100 Subject: [PATCH 4/5] typos seed-protonet.sh --- .github/scripts/seed-protonet.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" From eaf0e47b73482fa4c3365107b1f39e9a03df5eba Mon Sep 17 00:00:00 2001 From: Maximilian Hubert <64627729+gap-editor@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:39:27 +0100 Subject: [PATCH 5/5] typo force-update-module-params.sh --- .github/scripts/examples/force-update-module-params.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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