Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
howydev committed Dec 27, 2024
1 parent ba78014 commit 018e0b2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,9 @@ export async function createSMAV2Account(
});

const fullNonceKey: bigint =
nonceKey <<
(40n + BigInt(entityId << 8) + (isGlobalValidation ? 1n : 0n));
(nonceKey << 40n) +
BigInt(entityId << 8) +
(isGlobalValidation ? 1n : 0n);

return entryPointContract.read.getNonce([
_accountAddress,
Expand Down

0 comments on commit 018e0b2

Please sign in to comment.