Skip to content

Commit 0d37b0f

Browse files
authored
evm: enhance ITransceiver interface with config getters (#458)
1 parent 5d3a0d5 commit 0d37b0f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

evm/src/interfaces/ITransceiver.sol

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ interface ITransceiver {
3737
bytes32 recipientNttManagerAddress, bytes32 expectedRecipientNttManagerAddress
3838
);
3939

40+
/// @notice Returns the owner address of the NTT Manager that this transceiver is related to.
41+
function getNttManagerOwner() external view returns (address);
42+
43+
/// @notice Returns the address of the token associated with this NTT deployment.
44+
function getNttManagerToken() external view returns (address);
45+
4046
/// @notice Returns the string type of the transceiver. E.g. "wormhole", "axelar", etc.
4147
function getTransceiverType() external view returns (string memory);
4248

0 commit comments

Comments
 (0)