type VerifySiweSignatureOptions = {
flowId: string;
signature: Hex;
idempotencyKey?: string;
};
Properties
| Property | Type | Description |
|---|---|---|
flowId | string | The flow ID from signInWithSiwe. |
signature | Hex | The 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? | string | Optional idempotency key for safe retries. |