UNPKG

@neynar/nodejs-sdk

Version:

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

30 lines (29 loc) 1.06 kB
/** * Neynar API * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details. * * The version of the OpenAPI document: 3.175.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. */ export interface RegisterUserOnChainReqBodyPreRegistrationCallsInner { /** * Set it to true if you want to ignore the failure of this call. If set to false, the registration will fail if this call fails. */ 'allow_failure'?: boolean; /** * Call data payload (hex-encoded) */ 'data': string; /** * Must be on the allowed contract allowlist. Contact support for more details. */ 'target': string; /** * Value in wei to send with the transaction. This is not the amount of ETH that will be sent, but rather the value of the transaction. */ 'value'?: number; }