From 4c25a57b3ead4554bfa04ab709a76b9a0e92f1e7 Mon Sep 17 00:00:00 2001 From: Alvarez <140459501+prestoalvarez@users.noreply.github.com> Date: Sat, 23 Aug 2025 19:05:31 +0200 Subject: [PATCH 1/3] Update useStakingAction.ts --- src/views/Staking/hooks/useStakingAction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Staking/hooks/useStakingAction.ts b/src/views/Staking/hooks/useStakingAction.ts index c58c305dd..89a5946b1 100644 --- a/src/views/Staking/hooks/useStakingAction.ts +++ b/src/views/Staking/hooks/useStakingAction.ts @@ -94,7 +94,7 @@ const performStakingActionBuilderFn = ( const acceleratingDistributor = getConfig() .getAcceleratingDistributor() .connect(signer); - // Check if this wallet has permissions to interract with the + // Check if this wallet has permissions to interact with the // AcceleratingDistibutor function regarding staking/unstaking // with the provided LP Token if (innerApprovalRequired) { From b8ae6d24e48e40a1df6b3af6889ce929b5bffdbe Mon Sep 17 00:00:00 2001 From: Alvarez <140459501+prestoalvarez@users.noreply.github.com> Date: Sat, 23 Aug 2025 19:05:52 +0200 Subject: [PATCH 2/3] Update evm.ts --- src/views/Bridge/hooks/useBridgeAction/strategies/evm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Bridge/hooks/useBridgeAction/strategies/evm.ts b/src/views/Bridge/hooks/useBridgeAction/strategies/evm.ts index 4ee1f9ce1..242e38f0d 100644 --- a/src/views/Bridge/hooks/useBridgeAction/strategies/evm.ts +++ b/src/views/Bridge/hooks/useBridgeAction/strategies/evm.ts @@ -330,7 +330,7 @@ export class EVMBridgeActionStrategy extends AbstractBridgeActionStrategy { amount ); - // Create a txn calldata for transfering amount to recipient + // Create a txn calldata for transferring amount to recipient const erc20Interface = new utils.Interface([ "function transfer(address to, uint256 amount) returns (bool)", ]); From bb12bcf4cd699c63715fa740b664bcb519fb684c Mon Sep 17 00:00:00 2001 From: Alvarez <140459501+prestoalvarez@users.noreply.github.com> Date: Sat, 23 Aug 2025 19:06:39 +0200 Subject: [PATCH 3/3] Update rewards.ts --- src/utils/rewards.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/rewards.ts b/src/utils/rewards.ts index 966f8584d..7a85ca4fc 100644 --- a/src/utils/rewards.ts +++ b/src/utils/rewards.ts @@ -88,7 +88,7 @@ export function deriveNewStakingValues( ? fixedPointAdjustment : fractionOfMaxMultiplier; - // Use the fractional amount to resolve the new multplier that the user has at + // Use the fractional amount to resolve the new multiplier that the user has at // receiving additional % on their staking reward APY const updatedMultiplier = noStake || updatedTimeEstimateInSeconds.eq(0) @@ -98,7 +98,7 @@ export function deriveNewStakingValues( .mul(origin.maxMultiplier.sub(fixedPointAdjustment)) .div(fixedPointAdjustment) ); - // Convert the new multplier into a percentage of it and the + // Convert the new multiplier into a percentage of it and the // maximum multiplier const updatedMultiplierPercentage = origin.maxMultiplier.eq(0) ? 0