Skip to content
Merged
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
8 changes: 0 additions & 8 deletions contracts/chain-adapters/Arbitrum_Adapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,6 @@ contract Arbitrum_Adapter is AdapterInterface {

ArbitrumL1ERC20GatewayLike public immutable l1ERC20Gateway;

event L2GasLimitSet(uint32 newL2GasLimit);

event L2MaxSubmissionCostSet(uint256 newL2MaxSubmissionCost);

event L2GasPriceSet(uint256 newL2GasPrice);

event L2RefundL2AddressSet(address newL2RefundL2Address);

/**
* @notice Constructs new Adapter.
* @param _l1ArbitrumInbox Inbox helper contract to send messages to Arbitrum.
Expand Down
2 changes: 0 additions & 2 deletions contracts/chain-adapters/Optimism_Adapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ contract Optimism_Adapter is CrossDomainEnabled, AdapterInterface {
address public immutable snx = 0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F;
address public immutable snxOptimismBridge = 0xCd9D4988C0AE61887B075bA77f08cbFAd2b65068;

event L2GasLimitSet(uint32 newGasLimit);

/**
* @notice Constructs new Adapter.
* @param _l1Weth WETH address on L1.
Expand Down
2 changes: 0 additions & 2 deletions contracts/interfaces/AdapterInterface.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ pragma solidity ^0.8.0;
*/

interface AdapterInterface {
event HubPoolChanged(address newHubPool);

event MessageRelayed(address target, bytes message);

event TokensRelayed(address l1Token, address l2Token, uint256 amount, address to);
Expand Down