Skip to content

Commit

Permalink
evm: enhance ITransceiver interface with config getters (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
nik-suri authored Jun 17, 2024
1 parent 5d3a0d5 commit 0d37b0f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions evm/src/interfaces/ITransceiver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ interface ITransceiver {
bytes32 recipientNttManagerAddress, bytes32 expectedRecipientNttManagerAddress
);

/// @notice Returns the owner address of the NTT Manager that this transceiver is related to.
function getNttManagerOwner() external view returns (address);

/// @notice Returns the address of the token associated with this NTT deployment.
function getNttManagerToken() external view returns (address);

/// @notice Returns the string type of the transceiver. E.g. "wormhole", "axelar", etc.
function getTransceiverType() external view returns (string memory);

Expand Down

0 comments on commit 0d37b0f

Please sign in to comment.