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 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)", ]); 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) {