-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert Changes to shared folders, will be in Chainlink repo
- Loading branch information
1 parent
0688f98
commit 90ee01d
Showing
12 changed files
with
655 additions
and
1,080 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
14 changes: 14 additions & 0 deletions
14
contracts/src/v0.8/ccip/interfaces/IRegistryModuleOwnerCustom.sol
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,14 @@ | ||
// SPDX-License-Identifier: BUSL-1.1 | ||
pragma solidity ^0.8.19; | ||
|
||
interface IRegistryModuleOwnerCustom { | ||
/// @notice Registers the admin of the token using the `getCCIPAdmin` method. | ||
/// @param token The token to register the admin for. | ||
/// @dev The caller must be the admin returned by the `getCCIPAdmin` method. | ||
function registerAdminViaGetCCIPAdmin(address token) external; | ||
|
||
/// @notice Registers the admin of the token using the `owner` method. | ||
/// @param token The token to register the admin for. | ||
/// @dev The caller must be the admin returned by the `owner` method. | ||
function registerAdminViaOwner(address token) external; | ||
} |
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
Oops, something went wrong.