UNPKG

@neynar/nodejs-sdk

Version:

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

26 lines (25 loc) 879 B
/** * 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. */ import type { MintNft200ResponseTransactionsInner } from './mint-nft200-response-transactions-inner'; /** * Response for NFT minting operation. * @export * @interface MintNft200Response */ export interface MintNft200Response { /** * Array of mint transaction results. * @type {Array<MintNft200ResponseTransactionsInner>} * @memberof MintNft200Response */ 'transactions': Array<MintNft200ResponseTransactionsInner>; }