@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
50 lines (49 loc) • 1.56 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.
*/
import type { MintNftRequestRecipientsInner } from './mint-nft-request-recipients-inner';
/**
* Request body for NFT minting operation.
* @export
* @interface MintNftRequest
*/
export interface MintNftRequest {
/**
* Network to mint on.
* @type {string}
* @memberof MintNftRequest
*/
'network': MintNftRequestNetworkEnum;
/**
* Ethereum address
* @type {string}
* @memberof MintNftRequest
*/
'contract_address': string;
/**
* List of recipients to mint to (1-200 recipients allowed).
* @type {Array<MintNftRequestRecipientsInner>}
* @memberof MintNftRequest
*/
'recipients': Array<MintNftRequestRecipientsInner>;
/**
* If true, returns immediately after sending the transaction.
* @type {boolean}
* @memberof MintNftRequest
*/
'async'?: boolean;
}
export declare const MintNftRequestNetworkEnum: {
readonly Base: "base";
readonly Optimism: "optimism";
readonly BaseSepolia: "base-sepolia";
};
export type MintNftRequestNetworkEnum = typeof MintNftRequestNetworkEnum[keyof typeof MintNftRequestNetworkEnum];