@iyonger/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
21 lines • 609 B
TypeScript
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 declare 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>;
};
//# sourceMappingURL=Block.d.ts.map