@@ -40,8 +40,8 @@ interface INttManager is INttManagerState {
40
40
error DeliveryPaymentTooLow (uint256 requiredPayment , uint256 providedPayment );
41
41
42
42
//// @notice The transfer has some dust.
43
- //// @dev This is a security measure to prevent users from losing funds.
44
- //// This is the result of trimming the amount and then untrimming it.
43
+ //// @dev This is a security measure to prevent users from losing funds.
44
+ //// This is the result of trimming the amount and then untrimming it.
45
45
//// @param amount The amount to transfer.
46
46
error TransferAmountHasDust (uint256 amount , uint256 dust );
47
47
@@ -87,9 +87,9 @@ interface INttManager is INttManagerState {
87
87
error BurnAmountDifferentThanBalanceDiff (uint256 burnAmount , uint256 balanceDiff );
88
88
89
89
/// @notice Transfer a given amount to a recipient on a given chain. This function is called
90
- /// by the user to send the token cross-chain. This function will either lock or burn the
91
- /// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
92
- /// to send a message with the incrementing sequence number and the token transfer payload.
90
+ /// by the user to send the token cross-chain. This function will either lock or burn the
91
+ /// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
92
+ /// to send a message with the incrementing sequence number and the token transfer payload.
93
93
/// @param amount The amount to transfer.
94
94
/// @param recipientChain The chain ID for the destination.
95
95
/// @param recipient The recipient address.
@@ -100,9 +100,9 @@ interface INttManager is INttManagerState {
100
100
) external payable returns (uint64 msgId );
101
101
102
102
/// @notice Transfer a given amount to a recipient on a given chain. This function is called
103
- /// by the user to send the token cross-chain. This function will either lock or burn the
104
- /// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
105
- /// to send a message with the incrementing sequence number and the token transfer payload.
103
+ /// by the user to send the token cross-chain. This function will either lock or burn the
104
+ /// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
105
+ /// to send a message with the incrementing sequence number and the token transfer payload.
106
106
/// @dev Transfers are queued if the outbound limit is hit and must be completed by the client.
107
107
/// @param amount The amount to transfer.
108
108
/// @param recipientChain The chain ID for the destination.
@@ -141,8 +141,8 @@ interface INttManager is INttManagerState {
141
141
142
142
/// @notice Called by an Endpoint contract to deliver a verified attestation.
143
143
/// @dev This function enforces attestation threshold and replay logic for messages. Once all
144
- /// validations are complete, this function calls `executeMsg` to execute the command specified
145
- /// by the message.
144
+ /// validations are complete, this function calls `executeMsg` to execute the command specified
145
+ /// by the message.
146
146
/// @param sourceChainId The chain id of the sender.
147
147
/// @param sourceNttManagerAddress The address of the sender's nttManager contract.
148
148
/// @param payload The VAA payload.
@@ -152,11 +152,11 @@ interface INttManager is INttManagerState {
152
152
TransceiverStructs.NttManagerMessage memory payload
153
153
) external ;
154
154
155
- /// @notice Called after a message has been sufficiently verified to execute the command in the message.
156
- /// This function will decode the payload as an NttManagerMessage to extract the sequence, msgType,
157
- /// and other parameters.
155
+ /// @notice Called after a message has been sufficiently verified to execute
156
+ /// the command in the message. This function will decode the payload
157
+ /// as an NttManagerMessage to extract the sequence, msgType, and other parameters.
158
158
/// @dev This function is exposed as a fallback for when an `Transceiver` is deregistered
159
- /// when a message is in flight.
159
+ /// when a message is in flight.
160
160
/// @param sourceChainId The chain id of the sender.
161
161
/// @param sourceNttManagerAddress The address of the sender's nttManager contract.
162
162
/// @param message The message to execute.
0 commit comments