@@ -140,8 +140,9 @@ interface INttManager is IManagerBase {
140
140
/// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
141
141
/// to send a message with the incrementing sequence number and the token transfer payload.
142
142
/// @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.
144
144
/// @param recipient The recipient address.
145
+ /// @return msgId The resulting message ID of the transfer
145
146
function transfer (
146
147
uint256 amount ,
147
148
uint16 recipientChain ,
@@ -154,11 +155,12 @@ interface INttManager is IManagerBase {
154
155
/// to send a message with the incrementing sequence number and the token transfer payload.
155
156
/// @dev Transfers are queued if the outbound limit is hit and must be completed by the client.
156
157
/// @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.
158
159
/// @param recipient The recipient address.
159
160
/// @param refundAddress The address to which a refund for unussed gas is issued on the recipient chain.
160
161
/// @param shouldQueue Whether the transfer should be queued if the outbound limit is hit.
161
162
/// @param encodedInstructions Additional instructions to be forwarded to the recipient chain.
163
+ /// @return msgId The resulting message ID of the transfer
162
164
function transfer (
163
165
uint256 amount ,
164
166
uint16 recipientChain ,
@@ -189,8 +191,8 @@ interface INttManager is IManagerBase {
189
191
/// @dev This function enforces attestation threshold and replay logic for messages. Once all
190
192
/// validations are complete, this function calls `executeMsg` to execute the command specified
191
193
/// 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.
194
196
/// @param payload The VAA payload.
195
197
function attestationReceived (
196
198
uint16 sourceChainId ,
@@ -203,7 +205,7 @@ interface INttManager is IManagerBase {
203
205
/// as an NttManagerMessage to extract the sequence, msgType, and other parameters.
204
206
/// @dev This function is exposed as a fallback for when an `Transceiver` is deregistered
205
207
/// 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.
207
209
/// @param sourceNttManagerAddress The address of the sender's nttManager contract.
208
210
/// @param message The message to execute.
209
211
function executeMsg (
@@ -217,15 +219,16 @@ interface INttManager is IManagerBase {
217
219
function tokenDecimals () external view returns (uint8 );
218
220
219
221
/// @notice Returns registered peer contract for a given chain.
220
- /// @param chainId_ chain ID.
222
+ /// @param chainId_ Wormhole chain ID.
221
223
function getPeer (uint16 chainId_ ) external view returns (NttManagerPeer memory );
222
224
223
225
/// @notice Sets the corresponding peer.
224
226
/// @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.
226
228
/// @param peerContract The address of the peer nttManager contract.
227
229
/// @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
229
232
function setPeer (
230
233
uint16 peerChainId ,
231
234
bytes32 peerContract ,
@@ -235,12 +238,14 @@ interface INttManager is IManagerBase {
235
238
236
239
/// @notice Sets the outbound transfer limit for a given chain.
237
240
/// @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
239
243
function setOutboundLimit (uint256 limit ) external ;
240
244
241
245
/// @notice Sets the inbound transfer limit for a given chain.
242
246
/// @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.
245
250
function setInboundLimit (uint256 limit , uint16 chainId ) external ;
246
251
}
0 commit comments