@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
74 lines (73 loc) • 1.86 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 { MintNft200ResponseTransactionsInnerRecipient } from './mint-nft200-response-transactions-inner-recipient';
/**
*
* @export
* @interface SimulateNftMintResponseInner
*/
export interface SimulateNftMintResponseInner {
/**
*
* @type {MintNft200ResponseTransactionsInnerRecipient}
* @memberof SimulateNftMintResponseInner
*/
'recipient': MintNft200ResponseTransactionsInnerRecipient;
/**
*
* @type {string}
* @memberof SimulateNftMintResponseInner
*/
'function_name': string;
/**
*
* @type {Array<any | null>}
* @memberof SimulateNftMintResponseInner
*/
'args': Array<any | null>;
/**
* Ethereum address
* @type {string}
* @memberof SimulateNftMintResponseInner
*/
'to': string;
/**
*
* @type {string}
* @memberof SimulateNftMintResponseInner
*/
'data': string;
/**
*
* @type {string}
* @memberof SimulateNftMintResponseInner
*/
'value': string;
/**
*
* @type {string}
* @memberof SimulateNftMintResponseInner
*/
'network': string;
/**
* Calldata for the mint transaction.
* @type {string}
* @memberof SimulateNftMintResponseInner
*/
'calldata': string;
/**
* ABI for the mint function.
* @type {any}
* @memberof SimulateNftMintResponseInner
*/
'abi'?: any | null;
}