Skip to content

Commit 79fad5e

Browse files
committed
refactor: renaming
1 parent 63b56c3 commit 79fad5e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/contracts/interfaces/ICrossChainRegistry.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ interface ICrossChainRegistry is ICrossChainRegistryErrors, ICrossChainRegistryE
141141
/**
142142
* @notice Gets the transport destinations for a given operatorSet
143143
* @param operatorSet the operatorSet to get the transport destinations for
144-
* @return An array of chainIDs that the operatorSet is configured to transport to
144+
* @return An array of chainIDs that are transport destinations for the given operatorSet
145145
*/
146146
function getTransportDestinations(
147147
OperatorSet calldata operatorSet
@@ -157,8 +157,8 @@ interface ICrossChainRegistry is ICrossChainRegistryErrors, ICrossChainRegistryE
157157
) external returns (OperatorSetConfig memory);
158158

159159
/**
160-
* @notice Gets the whitelisted chainIDs
161-
* @return An array of chainIDs that are whitelisted
160+
* @notice Gets the list of chains that are supported by the CrossChainRegistry
161+
* @return An array of chainIDs that are supported by the CrossChainRegistry
162162
*/
163-
function getWhitelistedChainIDs() external returns (uint32[] memory);
163+
function getSupportedChains() external view returns (uint32[] memory);
164164
}

0 commit comments

Comments
 (0)