Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #578

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ contract DABridgeRouter is Version0, Router {
/**
* @notice Receive messages sent via Nomad from other remote xApp Routers;
* parse the contents of the message and enact the message's effects on the local chain
* @dev Called by an Nomad Replica contract while processing a message sent via Nomad
* @dev Called by a Nomad Replica contract while processing a message sent via Nomad
* @param _origin The domain the message is coming from
* @param _nonce The unique identifier for the message from origin to destination
* @param _sender The address the message is coming from
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ abstract contract XAppConnectionClient is OwnableUpgradeable {
// ============ Modifiers ============

/**
* @notice Only accept messages from an Nomad Replica contract
* @notice Only accept messages from a Nomad Replica contract
*/
modifier onlyReplica() {
require(_isReplica(msg.sender), "!replica");
Expand Down
2 changes: 1 addition & 1 deletion packages/multi-provider/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function canonizeId(data: BytesLike): Uint8Array {
}

/**
* Converts an Nomad ID of 20 or 32 bytes to the corresponding EVM Address.
* Converts a Nomad ID of 20 or 32 bytes to the corresponding EVM Address.
*
* For 32-byte IDs this enforces the EVM convention of using the LAST 20 bytes.
*
Expand Down