-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Arbitrum's vendored contracts to Nitro (#3692)
Co-authored-by: Francisco <[email protected]>
- Loading branch information
Showing
8 changed files
with
399 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright 2021-2022, Offchain Labs, Inc. | ||
// For license information, see https://github.com/nitro/blob/master/LICENSE | ||
// SPDX-License-Identifier: BUSL-1.1 | ||
|
||
// solhint-disable-next-line compiler-version | ||
pragma solidity >=0.6.9 <0.9.0; | ||
|
||
interface IDelayedMessageProvider { | ||
/// @dev event emitted when a inbox message is added to the Bridge's delayed accumulator | ||
event InboxMessageDelivered(uint256 indexed messageNum, bytes data); | ||
|
||
/// @dev event emitted when a inbox message is added to the Bridge's delayed accumulator | ||
/// same as InboxMessageDelivered but the batch data is available in tx.input | ||
event InboxMessageDeliveredFromOrigin(uint256 indexed messageNum); | ||
} |
Oops, something went wrong.