@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
40 lines (39 loc) • 1.33 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.175.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 { DeployErc721RequestMintConfig } from './deploy-erc721-request-mint-config';
export interface DeployErc721Request {
'description'?: string;
'external_link'?: string;
'image'?: string;
/**
* Max supply (0 = unlimited)
*/
'max_supply'?: number;
'mint_config'?: DeployErc721RequestMintConfig;
'name': string;
'network': DeployErc721RequestNetworkEnum;
/**
* Royalty in basis points (500 = 5%, max 2500 = 25%)
*/
'royalty_bps'?: number;
/**
* Defaults to creator wallet
*/
'royalty_recipient'?: string;
'symbol': string;
}
export declare const DeployErc721RequestNetworkEnum: {
readonly Base: "base";
readonly Optimism: "optimism";
readonly BaseSepolia: "base-sepolia";
};
export type DeployErc721RequestNetworkEnum = typeof DeployErc721RequestNetworkEnum[keyof typeof DeployErc721RequestNetworkEnum];