Skip to main content
type VerifySiweSignatureOptions = {
  flowId: string;
  signature: Hex;
  idempotencyKey?: string;
};
Request parameters for verifySiweSignature.

Properties

PropertyTypeDescription
flowIdstringThe flow ID from signInWithSiwe.
signatureHexThe ERC-191 signature of the SIWE message produced by the end user’s Ethereum wallet. Must be a hex-encoded string with a 0x prefix.
idempotencyKey?stringOptional idempotency key for safe retries.