# z.tempo.SignatureEnvelope.WebAuthnRpc

RPC WebAuthn signature envelope schema.

## Imports

```ts
import { z } from 'ox/zod'

z.tempo.SignatureEnvelope.WebAuthnRpc
```

## Definition

```ts
export const WebAuthnRpc = z.object({
  pubKeyX: z_Hex.Hex,
  pubKeyY: z_Hex.Hex,
  r: z_Hex.Hex,
  s: z_Hex.Hex,
  type: z.literal('webAuthn'),
  webauthnData: z_Hex.Hex,
})
```

**Source:** [src/zod/tempo/SignatureEnvelope.ts](https://github.com/wevm/ox/blob/main/src/zod/tempo/SignatureEnvelope.ts)
