We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d3a0d5 commit 0d37b0fCopy full SHA for 0d37b0f
evm/src/interfaces/ITransceiver.sol
@@ -37,6 +37,12 @@ interface ITransceiver {
37
bytes32 recipientNttManagerAddress, bytes32 expectedRecipientNttManagerAddress
38
);
39
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
46
/// @notice Returns the string type of the transceiver. E.g. "wormhole", "axelar", etc.
47
function getTransceiverType() external view returns (string memory);
48
0 commit comments