Skip to content

Commit af67b2a

Browse files
authored
evm: More minor natspec improvements (#495)
1 parent 5b39fee commit af67b2a

File tree

4 files changed

+37
-14
lines changed

4 files changed

+37
-14
lines changed

evm/src/interfaces/IManagerBase.sol

+8-3
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ interface IManagerBase {
106106

107107
/// @notice Error when the manager doesn't have a peer registered for the destination chain
108108
/// @dev Selector 0x3af256bc.
109-
/// @param chainId The target chain id
109+
/// @param chainId The target Wormhole chain id
110110
error PeerNotRegistered(uint16 chainId);
111111

112112
/// @notice Fetch the delivery price for a given recipient chain transfer.
113-
/// @param recipientChain The chain ID of the transfer destination.
113+
/// @param recipientChain The Wormhole chain ID of the transfer destination.
114114
/// @param transceiverInstructions The transceiver specific instructions for quoting and sending
115115
/// @return - The delivery prices associated with each enabled endpoint and the total price.
116116
function quoteDeliveryPrice(
@@ -120,7 +120,7 @@ interface IManagerBase {
120120

121121
/// @notice Sets the threshold for the number of attestations required for a message
122122
/// to be considered valid.
123-
/// @param threshold The new threshold.
123+
/// @param threshold The new threshold (number of attestations).
124124
/// @dev This method can only be executed by the `owner`.
125125
function setThreshold(uint8 threshold) external;
126126

@@ -166,12 +166,17 @@ interface IManagerBase {
166166
function getThreshold() external view returns (uint8);
167167

168168
/// @notice Returns a boolean indicating if the transceiver has attested to the message.
169+
/// @param digest The digest of the message.
170+
/// @param index The index of the transceiver
171+
/// @return - Boolean indicating whether the transceiver at index `index` attested to a message digest
169172
function transceiverAttestedToMessage(
170173
bytes32 digest,
171174
uint8 index
172175
) external view returns (bool);
173176

174177
/// @notice Returns the number of attestations for a given message.
178+
/// @param digest The digest of the message.
179+
/// @return count The number of attestations received for the given message digest
175180
function messageAttestations(bytes32 digest) external view returns (uint8 count);
176181

177182
/// @notice Returns of the address of the token managed by this contract.

evm/src/interfaces/INttManager.sol

+16-11
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,9 @@ interface INttManager is IManagerBase {
140140
/// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
141141
/// to send a message with the incrementing sequence number and the token transfer payload.
142142
/// @param amount The amount to transfer.
143-
/// @param recipientChain The chain ID for the destination.
143+
/// @param recipientChain The Wormhole chain ID for the destination.
144144
/// @param recipient The recipient address.
145+
/// @return msgId The resulting message ID of the transfer
145146
function transfer(
146147
uint256 amount,
147148
uint16 recipientChain,
@@ -154,11 +155,12 @@ interface INttManager is IManagerBase {
154155
/// to send a message with the incrementing sequence number and the token transfer payload.
155156
/// @dev Transfers are queued if the outbound limit is hit and must be completed by the client.
156157
/// @param amount The amount to transfer.
157-
/// @param recipientChain The chain ID for the destination.
158+
/// @param recipientChain The Wormhole chain ID for the destination.
158159
/// @param recipient The recipient address.
159160
/// @param refundAddress The address to which a refund for unussed gas is issued on the recipient chain.
160161
/// @param shouldQueue Whether the transfer should be queued if the outbound limit is hit.
161162
/// @param encodedInstructions Additional instructions to be forwarded to the recipient chain.
163+
/// @return msgId The resulting message ID of the transfer
162164
function transfer(
163165
uint256 amount,
164166
uint16 recipientChain,
@@ -189,8 +191,8 @@ interface INttManager is IManagerBase {
189191
/// @dev This function enforces attestation threshold and replay logic for messages. Once all
190192
/// validations are complete, this function calls `executeMsg` to execute the command specified
191193
/// by the message.
192-
/// @param sourceChainId The chain id of the sender.
193-
/// @param sourceNttManagerAddress The address of the sender's nttManager contract.
194+
/// @param sourceChainId The Wormhole chain id of the sender.
195+
/// @param sourceNttManagerAddress The address of the sender's NTT Manager contract.
194196
/// @param payload The VAA payload.
195197
function attestationReceived(
196198
uint16 sourceChainId,
@@ -203,7 +205,7 @@ interface INttManager is IManagerBase {
203205
/// as an NttManagerMessage to extract the sequence, msgType, and other parameters.
204206
/// @dev This function is exposed as a fallback for when an `Transceiver` is deregistered
205207
/// when a message is in flight.
206-
/// @param sourceChainId The chain id of the sender.
208+
/// @param sourceChainId The Wormhole chain id of the sender.
207209
/// @param sourceNttManagerAddress The address of the sender's nttManager contract.
208210
/// @param message The message to execute.
209211
function executeMsg(
@@ -217,15 +219,16 @@ interface INttManager is IManagerBase {
217219
function tokenDecimals() external view returns (uint8);
218220

219221
/// @notice Returns registered peer contract for a given chain.
220-
/// @param chainId_ chain ID.
222+
/// @param chainId_ Wormhole chain ID.
221223
function getPeer(uint16 chainId_) external view returns (NttManagerPeer memory);
222224

223225
/// @notice Sets the corresponding peer.
224226
/// @dev The nttManager that executes the message sets the source nttManager as the peer.
225-
/// @param peerChainId The chain ID of the peer.
227+
/// @param peerChainId The Wormhole chain ID of the peer.
226228
/// @param peerContract The address of the peer nttManager contract.
227229
/// @param decimals The number of decimals of the token on the peer chain.
228-
/// @param inboundLimit The inbound rate limit for the peer chain id
230+
/// @param inboundLimit The inbound rate limit for the peer chain id. This is formatted in the normal
231+
/// token representation. e.g. a limit of 100 for a token with 6 decimals = 100_000_000
229232
function setPeer(
230233
uint16 peerChainId,
231234
bytes32 peerContract,
@@ -235,12 +238,14 @@ interface INttManager is IManagerBase {
235238

236239
/// @notice Sets the outbound transfer limit for a given chain.
237240
/// @dev This method can only be executed by the `owner`.
238-
/// @param limit The new outbound limit.
241+
/// @param limit The new outbound limit. This is formatted in the normal
242+
/// token representation. e.g. a limit of 100 for a token with 6 decimals = 100_000_000
239243
function setOutboundLimit(uint256 limit) external;
240244

241245
/// @notice Sets the inbound transfer limit for a given chain.
242246
/// @dev This method can only be executed by the `owner`.
243-
/// @param limit The new limit.
244-
/// @param chainId The chain to set the limit for.
247+
/// @param limit The new limit. This is formatted in the normal
248+
/// token representation. e.g. a limit of 100 for a token with 6 decimals = 100_000_000
249+
/// @param chainId The Wormhole chain ID to set the limit for.
245250
function setInboundLimit(uint256 limit, uint16 chainId) external;
246251
}

evm/src/interfaces/IRateLimiter.sol

+9
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,23 @@ interface IRateLimiter {
8484
address recipient;
8585
}
8686

87+
/// @notice Returns the currently remaining outbound capacity allowed
88+
/// before transfers are queued (if desired)
8789
function getCurrentOutboundCapacity() external view returns (uint256);
8890

91+
/// @notice Returns the queued transfer details for a given sequence in the outbound queue
92+
/// @param queueSequence The position of the transfer in the outbound queue
8993
function getOutboundQueuedTransfer(
9094
uint64 queueSequence
9195
) external view returns (OutboundQueuedTransfer memory);
9296

97+
/// @notice Returns the currently remaining inbound capacity allowed from a given chain
98+
/// before transfers are queued auutomatically
99+
/// @param chainId The Wormhole chain ID of the peer
93100
function getCurrentInboundCapacity(uint16 chainId) external view returns (uint256);
94101

102+
/// @notice Returns the queued transfer details for a given message digest in the inbound queue
103+
/// @param digest The digest of the transfer in the inbound queue
95104
function getInboundQueuedTransfer(
96105
bytes32 digest
97106
) external view returns (InboundQueuedTransfer memory);

evm/src/interfaces/ITransceiver.sol

+4
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ interface ITransceiver {
6262
/// @param instruction An additional Instruction provided by the Transceiver to be
6363
/// executed on the recipient chain.
6464
/// @param nttManagerMessage A message to be sent to the nttManager on the recipient chain.
65+
/// @param recipientNttManagerAddress The Wormhole formatted address of the peer NTT Manager on the recipient chain.
66+
/// @param refundAddress The Wormhole formatted address of the refund recipient
6567
function sendMessage(
6668
uint16 recipientChain,
6769
TransceiverStructs.TransceiverInstruction memory instruction,
@@ -71,8 +73,10 @@ interface ITransceiver {
7173
) external payable;
7274

7375
/// @notice Upgrades the transceiver to a new implementation.
76+
/// @param newImplementation The address of the new implementation contract
7477
function upgrade(address newImplementation) external;
7578

7679
/// @notice Transfers the ownership of the transceiver to a new address.
80+
/// @param newOwner The address of the new owner
7781
function transferTransceiverOwnership(address newOwner) external;
7882
}

0 commit comments

Comments
 (0)