UNPKG

@neynar/nodejs-sdk

Version:

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

49 lines (48 loc) 1.36 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.137.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 DeployErc721RequestMintConfig */ export interface DeployErc721RequestMintConfig { /** * Price per token in wei (0 = free mint) * @type {string} * @memberof DeployErc721RequestMintConfig */ 'price_per_token'?: string; /** * Max tokens per wallet (0 = unlimited) * @type {number} * @memberof DeployErc721RequestMintConfig */ 'max_per_wallet'?: number; /** * Max tokens per transaction (0 = unlimited) * @type {number} * @memberof DeployErc721RequestMintConfig */ 'max_per_tx'?: number; /** * Unix timestamp (defaults to current time) * @type {number} * @memberof DeployErc721RequestMintConfig */ 'start_timestamp'?: number; /** * Unix timestamp (defaults to no end date) * @type {number} * @memberof DeployErc721RequestMintConfig */ 'end_timestamp'?: number; }