@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
43 lines (42 loc) • 1.51 kB
TypeScript
/**
* 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.115.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
*/
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.
* @type {boolean}
* @memberof RegisterUserOnChainReqBodyPreRegistrationCallsInner
*/
'allow_failure'?: boolean;
/**
* Call data payload (hex-encoded)
* @type {string}
* @memberof RegisterUserOnChainReqBodyPreRegistrationCallsInner
*/
'data': string;
/**
* Must be on the allowed contract allowlist. Contact support for more details.
* @type {string}
* @memberof RegisterUserOnChainReqBodyPreRegistrationCallsInner
*/
'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.
* @type {number}
* @memberof RegisterUserOnChainReqBodyPreRegistrationCallsInner
*/
'value'?: number;
}