@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
44 lines (43 loc) • 1.57 kB
TypeScript
/**
* Farcaster API V2
* The Farcaster API allows you to interact with the Farcaster protocol. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
*
* The version of the OpenAPI document: 2.46.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 { TransactionSendFungiblesRecipient } from './transaction-send-fungibles-recipient';
/**
*
* @export
* @interface TransactionSendFungiblesRequest
*/
export interface TransactionSendFungiblesRequest {
/**
*
* @type {string}
* @memberof TransactionSendFungiblesRequest
*/
'network': TransactionSendFungiblesRequestNetworkEnum;
/**
* Contract address of the fungible token to send. If not provided, the default is the native token of the network.
* @type {string}
* @memberof TransactionSendFungiblesRequest
*/
'fungible_contract_address'?: string;
/**
*
* @type {Array<TransactionSendFungiblesRecipient>}
* @memberof TransactionSendFungiblesRequest
*/
'recipients': Array<TransactionSendFungiblesRecipient>;
}
export declare const TransactionSendFungiblesRequestNetworkEnum: {
readonly Base: "base";
readonly Optimism: "optimism";
readonly BaseSepolia: "base-sepolia";
};
export type TransactionSendFungiblesRequestNetworkEnum = typeof TransactionSendFungiblesRequestNetworkEnum[keyof typeof TransactionSendFungiblesRequestNetworkEnum];