From 3d644802dde0d435f1efa2fb78c14f89eabf69d1 Mon Sep 17 00:00:00 2001 From: Skylar Ray <137945430+sky-coderay@users.noreply.github.com> Date: Sat, 21 Dec 2024 21:53:56 +0200 Subject: [PATCH] Update EthersV5Eip712Signer.md --- packages/hub-nodejs/docs/signers/EthersV5Eip712Signer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hub-nodejs/docs/signers/EthersV5Eip712Signer.md b/packages/hub-nodejs/docs/signers/EthersV5Eip712Signer.md index a4290be152..d8b43bb424 100644 --- a/packages/hub-nodejs/docs/signers/EthersV5Eip712Signer.md +++ b/packages/hub-nodejs/docs/signers/EthersV5Eip712Signer.md @@ -94,7 +94,7 @@ Generates a 256-bit signature for a VerificationClaim and returns the bytes. import { FarcasterNetwork, hexStringToBytes, makeVerificationEthAddressClaim } from '@farcaster/hub-nodejs'; const blockHashHex = '0x1d3b0456c920eb503450c7efdcf9b5cf1f5184bf04e5d8ecbcead188a0d02018'; -const blockHashBytes = hexStringToBytes(blockHashHex)._unsafeUnwrap(); // Safety: blockHashHex is known and can't erro +const blockHashBytes = hexStringToBytes(blockHashHex)._unsafeUnwrap(); // Safety: blockHashHex is known and can't error const ethereumAddressResult = await eip712Signer.getSignerKey();