File tree 3 files changed +5
-5
lines changed
Transceiver/WormholeTransceiver
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import "./WormholeTransceiverState.sol";
16
16
17
17
/// @title WormholeTransceiver
18
18
/// @author Wormhole Project Contributors.
19
- /// @notice Transceiver implementation for the Wormhole.
19
+ /// @notice Transceiver implementation for Wormhole.
20
20
///
21
21
/// @dev This contract is responsible for sending and receiving NTT messages
22
22
/// that are authenticated through Wormhole Core.
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ interface INttManager is INttManagerState {
55
55
error RefundFailed (uint256 refundAmount );
56
56
57
57
/// @notice Error when the tranceiver already attested to the message.
58
- /// To ensure the client does not continue to initiate calls to the ateestationReceived function.
58
+ /// To ensure the client does not continue to initiate calls to the attestationReceived function.
59
59
/// @dev Selector 0x2113894.
60
60
/// @param nttManagerMessageHash The hash of the message.
61
61
error TransceiverAlreadyAttestedToMessage (bytes32 nttManagerMessageHash );
@@ -80,7 +80,7 @@ interface INttManager is INttManagerState {
80
80
error InvalidRecipient ();
81
81
82
82
/// @notice Error when the amount burned is different than the balance difference,
83
- /// since NTT does not support burn fees.
83
+ /// since NTT does not support burn fees.
84
84
/// @dev Selector 0x02156a8f.
85
85
/// @param burnAmount The amount burned.
86
86
/// @param balanceDiff The balance after burning.
Original file line number Diff line number Diff line change @@ -57,13 +57,13 @@ interface IWormholeTransceiver is IWormholeTransceiverState {
57
57
error TransferAlreadyCompleted (bytes32 vaaHash );
58
58
59
59
/// @notice Receive an attested message from the verification layer.
60
- /// This function should verify the `encodedVm` and then deliver the attestation
60
+ /// This function should verify the `encodedVm` and then deliver the attestation
61
61
/// to the transceiver NttManager contract.
62
62
/// @param encodedMessage The attested message.
63
63
function receiveMessage (bytes memory encodedMessage ) external ;
64
64
65
65
/// @notice Parses the encoded instruction and returns the instruction struct.
66
- /// This instruction is specific to the WormholeTransceiver contract.
66
+ /// This instruction is specific to the WormholeTransceiver contract.
67
67
/// @param encoded The encoded instruction.
68
68
/// @return instruction The parsed `WormholeTransceiverInstruction`.
69
69
function parseWormholeTransceiverInstruction (bytes memory encoded )
You can’t perform that action at this time.
0 commit comments