forked from lthn/blockchain
25 lines
576 B
TypeScript
25 lines
576 B
TypeScript
|
|
/**
|
||
|
|
* 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;
|
||
|
|
}
|
||
|
|
|