Skip to content

Commit 25fe0a9

Browse files
authored
improve: Add Security contact to contracts (#951)
1 parent edf0bf8 commit 25fe0a9

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

contracts/Universal_SpokePool.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import "./SpokePool.sol";
1313
* @dev This contract has one onlyOwner function to be used as an emergency fallback to execute a message to
1414
* this SpokePool in the case where the light-client is not functioning correctly. The owner is designed to be set
1515
* to a multisig contract on this chain.
16+
* @custom:security-contact bugs@across.to
1617
*/
1718
contract Universal_SpokePool is OwnableUpgradeable, SpokePool, CircleCCTPAdapter {
1819
/// @notice The data store contract that only the HubPool can write to. This spoke pool can only act on

contracts/chain-adapters/Universal_Adapter.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ interface IOwnable {
1919
* @dev This contract can be redeployed to point to a new HubPoolStore if the data store gets corrupted and new data
2020
* can't get written to the store for some reason. The corresponding Universal_SpokePool contract will
2121
* also need to be redeployed to point to the new HubPoolStore.
22+
* @custom:security-contact bugs@across.to
2223
*/
2324
contract Universal_Adapter is AdapterInterface, CircleCCTPAdapter {
2425
/// @notice Contract that stores calldata to be relayed to L2 via storage proofs.

contracts/chain-adapters/utilities/HubPoolStore.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ interface IHubPool {
1515
* @dev This contract DOES NOT prevent replay attacks of storage proofs on the L2 spoke pool if the
1616
* UniversalStorageProof_Adapters using this contract are mapped to spokepools with the same address on different
1717
* L2 chains. See comment in storeRelayAdminFunctionCalldata() for more details.
18+
* @custom:security-contact bugs@across.to
1819
*/
1920
contract HubPoolStore {
2021
error NotHubPool();

0 commit comments

Comments
 (0)