@standard-crypto/farcaster-js-neynar
Version:
A tool for interacting with Farcaster via Neynar APIs.
43 lines (42 loc) • 1.18 kB
TypeScript
/**
* Farcaster API V2
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface RegisterSignerKeyReqBody
*/
export interface RegisterSignerKeyReqBody {
/**
* UUID of the signer
* @type {string}
* @memberof RegisterSignerKeyReqBody
*/
'signer_uuid': string;
/**
* Signature generated by the custody address of the app. Signed data includes app_fid, deadline, signer’s public key
* @type {string}
* @memberof RegisterSignerKeyReqBody
*/
'signature': string;
/**
* Application FID
* @type {number}
* @memberof RegisterSignerKeyReqBody
*/
'app_fid': number;
/**
* unix timestamp in seconds that controls how long the signed key request is valid for. (24 hours from now is recommended)
* @type {number}
* @memberof RegisterSignerKeyReqBody
*/
'deadline': number;
}