UNPKG

@neynar/nodejs-sdk

Version:

SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)

27 lines (26 loc) 813 B
/** * Farcaster Hub API * Perform basic queries of Farcaster state via the REST API of a Farcaster hub. See the [Neynar docs](https://docs.neynar.com/reference) for more details. * * The version of the OpenAPI document: 2.35.0 * Contact: team@neynar.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { UserNameType } from './user-name-type'; export interface UserNameProof { /** * Seconds since Unix Epoch which began on Jan 1, 1970 00:00:00 UTC */ 'timestamp': number; 'name': string; 'owner': string; 'signature': string; /** * The FID of the user who owns this username proof */ 'fid': number; 'type': UserNameType; }