rosetta-sdk-typescript
Version:
Typescript SDK to create and interact with Rosetta API implementations.
29 lines (28 loc) • 962 B
TypeScript
/**
* 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 { TransactionIdentifier } from './';
/**
* A MempoolResponse contains all transaction identifiers in the mempool for a particular network_identifier.
* @export
* @interface MempoolResponse
*/
export interface MempoolResponse {
/**
*
* @type {Array<TransactionIdentifier>}
* @memberof MempoolResponse
*/
transaction_identifiers: Array<TransactionIdentifier>;
}
export declare function MempoolResponseFromJSON(json: any): MempoolResponse;
export declare function MempoolResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MempoolResponse;
export declare function MempoolResponseToJSON(value?: MempoolResponse | null): any;