UNPKG

@neynar/nodejs-sdk

Version:

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

63 lines (62 loc) 1.83 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. */ import type { DeployErc721RequestCollectionConfig } from './deploy-erc721-request-collection-config'; import type { DeployErc721RequestMintConfig } from './deploy-erc721-request-mint-config'; /** * * @export * @interface DeployErc721Request */ export interface DeployErc721Request { /** * Network to mint on. * @type {string} * @memberof DeployErc721Request */ 'network': DeployErc721RequestNetworkEnum; /** * * @type {string} * @memberof DeployErc721Request */ 'name': string; /** * * @type {string} * @memberof DeployErc721Request */ 'symbol': string; /** * Base URI for token metadata * @type {string} * @memberof DeployErc721Request */ 'base_uri': string; /** * * @type {DeployErc721RequestMintConfig} * @memberof DeployErc721Request */ 'mint_config'?: DeployErc721RequestMintConfig; /** * * @type {DeployErc721RequestCollectionConfig} * @memberof DeployErc721Request */ 'collection_config'?: DeployErc721RequestCollectionConfig; } export declare const DeployErc721RequestNetworkEnum: { readonly Base: "base"; readonly Optimism: "optimism"; readonly BaseSepolia: "base-sepolia"; }; export type DeployErc721RequestNetworkEnum = typeof DeployErc721RequestNetworkEnum[keyof typeof DeployErc721RequestNetworkEnum];