@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
65 lines (64 loc) • 1.99 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.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.
*/
/**
*
* @export
* @interface DeployErc721201ResponseCollection
*/
export interface DeployErc721201ResponseCollection {
/**
*
* @type {string}
* @memberof DeployErc721201ResponseCollection
*/
'type': DeployErc721201ResponseCollectionTypeEnum;
/**
* Network to mint on.
* @type {string}
* @memberof DeployErc721201ResponseCollection
*/
'network': DeployErc721201ResponseCollectionNetworkEnum;
/**
* Ethereum address
* @type {string}
* @memberof DeployErc721201ResponseCollection
*/
'address': string;
/**
*
* @type {string}
* @memberof DeployErc721201ResponseCollection
*/
'name': string;
/**
*
* @type {string}
* @memberof DeployErc721201ResponseCollection
*/
'symbol': string;
/**
*
* @type {string}
* @memberof DeployErc721201ResponseCollection
*/
'transaction_hash': string;
}
export declare const DeployErc721201ResponseCollectionTypeEnum: {
readonly Erc721: "ERC721";
};
export type DeployErc721201ResponseCollectionTypeEnum = typeof DeployErc721201ResponseCollectionTypeEnum[keyof typeof DeployErc721201ResponseCollectionTypeEnum];
export declare const DeployErc721201ResponseCollectionNetworkEnum: {
readonly Base: "base";
readonly Optimism: "optimism";
readonly BaseSepolia: "base-sepolia";
};
export type DeployErc721201ResponseCollectionNetworkEnum = typeof DeployErc721201ResponseCollectionNetworkEnum[keyof typeof DeployErc721201ResponseCollectionNetworkEnum];