Skip to content

Commit

Permalink
fix: identity calls
Browse files Browse the repository at this point in the history
  • Loading branch information
irisdv committed Dec 12, 2024
1 parent 3d7f44a commit 4d5f541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/callData/identityChangeCalls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function setAsMainId(
output.push({
contractAddress: process.env.NEXT_PUBLIC_NAMING_CONTRACT as string,
entrypoint: "migrate_domain",
calldata: [encodedDomain.length, ...encodedDomain],
calldata: [encodedDomain.length.toString(), ...encodedDomain],
});
}

Expand Down

0 comments on commit 4d5f541

Please sign in to comment.