forked from lthn/blockchain
41 lines
1 KiB
TypeScript
41 lines
1 KiB
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 { TransactionDetailsModel } from './transactionDetailsModel';
|
||
|
|
|
||
|
|
|
||
|
|
export interface BlockDetailsModel {
|
||
|
|
actual_timestamp?: number;
|
||
|
|
already_generated_coins?: string;
|
||
|
|
base_reward?: number;
|
||
|
|
blob?: string;
|
||
|
|
block_cumulative_size?: number;
|
||
|
|
block_tself_size?: number;
|
||
|
|
cumulative_diff_adjusted?: string;
|
||
|
|
cumulative_diff_precise?: string;
|
||
|
|
difficulty?: string;
|
||
|
|
effective_fee_median?: number;
|
||
|
|
height?: number;
|
||
|
|
id?: string;
|
||
|
|
is_orphan?: boolean;
|
||
|
|
miner_text_info?: string;
|
||
|
|
object_in_json?: string;
|
||
|
|
penalty?: number;
|
||
|
|
pow_seed?: string;
|
||
|
|
prev_id?: string;
|
||
|
|
summary_reward?: number;
|
||
|
|
this_block_fee_median?: number;
|
||
|
|
timestamp?: number;
|
||
|
|
total_fee?: number;
|
||
|
|
total_txs_size?: number;
|
||
|
|
transactions_details?: Array<TransactionDetailsModel>;
|
||
|
|
type?: number;
|
||
|
|
}
|
||
|
|
|