From 6c4f12dfce41528579941e871101b10e29740763 Mon Sep 17 00:00:00 2001 From: Zentex Date: Tue, 3 Feb 2026 22:48:56 +0530 Subject: [PATCH] Fix typo: transfering -> transferring in L2StandardBridge --- .../packages/contracts-bedrock/src/L2/L2StandardBridge.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blast-optimism/packages/contracts-bedrock/src/L2/L2StandardBridge.sol b/blast-optimism/packages/contracts-bedrock/src/L2/L2StandardBridge.sol index b09e62f2..2660f1f0 100644 --- a/blast-optimism/packages/contracts-bedrock/src/L2/L2StandardBridge.sol +++ b/blast-optimism/packages/contracts-bedrock/src/L2/L2StandardBridge.sol @@ -12,7 +12,7 @@ import { Blast, YieldMode, GasMode } from "src/L2/Blast.sol"; /// @custom:proxied /// @custom:predeploy 0x4200000000000000000000000000000000000010 /// @title L2StandardBridge -/// @notice The L2StandardBridge is responsible for transfering ETH and ERC20 tokens between L1 and +/// @notice The L2StandardBridge is responsible for transferring ETH and ERC20 tokens between L1 and /// L2. In the case that an ERC20 token is native to L2, it will be escrowed within this /// contract. If the ERC20 token is native to L1, it will be burnt. /// NOTE: this contract is not intended to support all variations of ERC20 tokens. Examples