UNPKG

aptos

Version:
27 lines (23 loc) 618 B
/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { HashValue } from './HashValue'; import type { Transaction } from './Transaction'; import type { U64 } from './U64'; /** * A Block with or without transactions * * This contains the information about a transactions along with * associated transactions if requested */ export type Block = { block_height: U64; block_hash: HashValue; block_timestamp: U64; first_version: U64; last_version: U64; /** * The transactions in the block in sequential order */ transactions?: Array<Transaction>; };