Skip to content

Commit

Permalink
add security contact
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Jan 2, 2024
1 parent 2e0734b commit c6ed3fa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ethereum/contracts/bridge/interfaces/IL1Bridge.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

pragma solidity 0.8.20;

/// @title L1 Bridge contract interface
/// @author Matter Labs
/// @custom:security-contact [email protected]
interface IL1Bridge {
event DepositInitiated(
bytes32 indexed l2DepositTxHash,
Expand Down
2 changes: 2 additions & 0 deletions ethereum/contracts/bridge/interfaces/IL1BridgeLegacy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

pragma solidity 0.8.20;

/// @title L1 Bridge contract legacy interface
/// @author Matter Labs
/// @custom:security-contact [email protected]
interface IL1BridgeLegacy {
function deposit(
address _l2Receiver,
Expand Down
3 changes: 3 additions & 0 deletions ethereum/contracts/governance/IGovernance.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

pragma solidity 0.8.20;

/// @title Governance contract interface
/// @author Matter Labs
/// @custom:security-contact [email protected]
interface IGovernance {
/// @dev This enumeration includes the following states:
/// @param Unset Default state, indicating the operation has not been set.
Expand Down
1 change: 1 addition & 0 deletions ethereum/contracts/zksync/libraries/LibMap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pragma solidity 0.8.20;

/// @notice Library for storage of packed unsigned integers.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibMap.sol)
/// @custom:security-contact [email protected]
library LibMap {
/// @dev A uint32 map in storage.
struct Uint32Map {
Expand Down
2 changes: 2 additions & 0 deletions zksync/contracts/bridge/interfaces/IL1Bridge.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

pragma solidity 0.8.20;

/// @title L1 Bridge contract interface
/// @author Matter Labs
/// @custom:security-contact [email protected]
interface IL1Bridge {
function finalizeWithdrawal(
uint256 _l2BatchNumber,
Expand Down

0 comments on commit c6ed3fa

Please sign in to comment.