diff --git a/docs/pages/guides/signature-verification.mdx b/docs/pages/guides/signature-verification.mdx index 8869ba5..32d0650 100644 --- a/docs/pages/guides/signature-verification.mdx +++ b/docs/pages/guides/signature-verification.mdx @@ -35,8 +35,9 @@ and [verifyTypedData](https://viem.sh/docs/actions/public/verifyTypedData) ([exa ## Onchain For signatures that will be used onchain, such as with [Permit2](https://github.com/Uniswap/permit2) or [Seaport](https://github.com/ProjectOpenSea/seaport) developers will need to inspect the signature offchain -and remove unneeded ERC-6492 data, if it is present. We recommend using the [parseErc6492Signature](https://viem.sh/experimental/erc6492/parseErc6492Signature#parseerc6492signature) util from Viem. - +and remove unneeded ERC-6492 data, if it is present. +We recommend using the [parseErc6492Signature](https://viem.sh/experimental/erc6492/parseErc6492Signature#parseerc6492signature) +util from Viem. Abbreviated example below. See full example [here](https://github.com/wilsoncusack/wagmi-scw/blob/main/src/components/Permit2.tsx). ```ts [example.tsx] import { useMemo, useState } from "react";