1
0
Fork 0
forked from lthn/blockchain
blockchain/utils/sdk/client/angular/model/blockTemplateModel.ts

25 lines
576 B
TypeScript
Raw Normal View History

/**
* Lethean Blockchain API
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { TxGenerationContextModel } from './txGenerationContextModel';
export interface BlockTemplateModel {
blocktemplate_blob?: string;
difficulty?: string;
height?: number;
miner_tx_tgc?: TxGenerationContextModel;
block_reward_without_fee?: number;
block_reward?: number;
txs_fee?: number;
prev_hash?: string;
seed?: string;
}