forked from taikoxyz/taiko-mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update security contact for surge specific contracts
- Loading branch information
1 parent
60dc55e
commit 8825362
Showing
4 changed files
with
4 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ import "../based/TaikoL1.sol"; | |
|
||
/// @title SurgeTaikoL1 | ||
/// @dev Labeled in AddressResolver as "taiko" | ||
/// @custom:security-contact [email protected] | ||
contract SurgeTaikoL1 is TaikoL1 { | ||
uint64 private immutable chainId; | ||
|
||
|
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ import "../tiers/LibTiers.sol"; | |
/// - Removed guardian tiers | ||
/// - Only one proving tier i.e TWO_OF_THREE | ||
/// - No contestation for the proof | ||
/// @custom:security-contact [email protected] | ||
abstract contract SurgeTierProviderBase is ITierProvider { | ||
uint96 public constant BOND_UNIT = 0.04 ether; | ||
|
||
|
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ import "./SurgeTierProviderBase.sol"; | |
import "../tiers/ITierRouter.sol"; | ||
|
||
/// @title SurgeTierRouter | ||
/// @custom:security-contact [email protected] | ||
contract SurgeTierRouter is SurgeTierProviderBase, ITierRouter { | ||
/// @inheritdoc ITierRouter | ||
function getProvider(uint256) external view returns (address) { | ||
|
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ import "./ComposeVerifier.sol"; | |
|
||
/// @title TwoOfThreeVerifier | ||
/// @dev Surge: Allows using any two of the three verifier from SGX / RISC0 / SP1 | ||
/// @custom:security-contact [email protected] | ||
contract TwoOfThreeVerifier is ComposeVerifier { | ||
uint256[50] private __gap; | ||
|
||
|