UNPKG

rosetta-sdk-typescript

Version:

Typescript SDK to create and interact with Rosetta API implementations.

35 lines (34 loc) 1.18 kB
/** * Rosetta * Build Once. Integrate Your Blockchain Everywhere. * * The version of the OpenAPI document: 1.4.10 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { NetworkIdentifier, TransactionIdentifier } from './'; /** * A MempoolTransactionRequest is utilized to retrieve a transaction from the mempool. * @export * @interface MempoolTransactionRequest */ export interface MempoolTransactionRequest { /** * * @type {NetworkIdentifier} * @memberof MempoolTransactionRequest */ network_identifier: NetworkIdentifier; /** * * @type {TransactionIdentifier} * @memberof MempoolTransactionRequest */ transaction_identifier: TransactionIdentifier; } export declare function MempoolTransactionRequestFromJSON(json: any): MempoolTransactionRequest; export declare function MempoolTransactionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MempoolTransactionRequest; export declare function MempoolTransactionRequestToJSON(value?: MempoolTransactionRequest | null): any;