Skip to content
Merged
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 @@ -101,7 +101,7 @@ async function getClaimToBatchParams(
* For identical addresses that stays next to each other in the array,
* we can combine them into one transaction _without altering the claiming order_
*
* For exampple, this structure:
* For example, this structure:
* [
* {
* to: "0xabc",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export async function resolveName(
});

// Note: if the given wallet address does not have any UD name, `reverseNameOf` will return an empty string
// This can still happen if you have transfered a domain to a new address, and forgot to set up the Reverse Resolution on the new address
// This can still happen if you have transferred a domain to a new address, and forgot to set up the Reverse Resolution on the new address
const domain = await reverseNameOf({ contract, addr: address });
if (!domain) {
throw new Error(
Expand Down