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
2 changes: 1 addition & 1 deletion src/adapter/l2Bridges/OFTL2Bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class OFTL2Bridge extends BaseL2BridgeAdapter {
contract: this.l2Bridge,
chainId: this.l2chainId,
method: "send",
unpermissionsed: false,
unpermissioned: false,
nonMulticall: true,
args: [sendParamStruct, feeStruct, refundAddress],
value: BigNumber.from(feeStruct.nativeFee),
Expand Down
2 changes: 1 addition & 1 deletion src/finalizer/utils/opStack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ async function getOVMStdEvents(
// that look exactly emit the same events as the standard bridge's ETH withdrawal process. This is used by the
// https://blast.io/en/bridge UI, so the following query allows this finalizer to finalize withdrawals of WETH
// from blast initiated through this hosted UI. ETH withdrawals sent in this manner through the Blast Bridge
// have the same ETHBridgeInitiated event signature so we only need to change the contract addres.
// have the same ETHBridgeInitiated event signature so we only need to change the contract address.
if (chainIsBlast(chainId)) {
const blastBridge = new Contract(CONTRACT_ADDRESSES[chainId].blastBridge.address, ovmStandardBridge.abi, provider);
const blastEthEvents = (
Expand Down