rosetta-sdk-typescript
Version:
Typescript SDK to create and interact with Rosetta API implementations.
35 lines (34 loc) • 1.09 kB
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 { NetworkIdentifier } from './';
/**
* ConstructionHashRequest is the input to the `/construction/hash` endpoint.
* @export
* @interface ConstructionHashRequest
*/
export interface ConstructionHashRequest {
/**
*
* @type {NetworkIdentifier}
* @memberof ConstructionHashRequest
*/
network_identifier: NetworkIdentifier;
/**
*
* @type {string}
* @memberof ConstructionHashRequest
*/
signed_transaction: string;
}
export declare function ConstructionHashRequestFromJSON(json: any): ConstructionHashRequest;
export declare function ConstructionHashRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConstructionHashRequest;
export declare function ConstructionHashRequestToJSON(value?: ConstructionHashRequest | null): any;