Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/utils/rewards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/views/Bridge/hooks/useBridgeAction/strategies/evm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
]);
Expand Down
2 changes: 1 addition & 1 deletion src/views/Staking/hooks/useStakingAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down