@iyonger/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
32 lines • 1.08 kB
TypeScript
export declare const $Block: {
readonly description: "A Block with or without transactions\n\n This contains the information about a transactions along with\n associated transactions if requested";
readonly properties: {
readonly block_height: {
readonly type: "U64";
readonly isRequired: true;
};
readonly block_hash: {
readonly type: "HashValue";
readonly isRequired: true;
};
readonly block_timestamp: {
readonly type: "U64";
readonly isRequired: true;
};
readonly first_version: {
readonly type: "U64";
readonly isRequired: true;
};
readonly last_version: {
readonly type: "U64";
readonly isRequired: true;
};
readonly transactions: {
readonly type: "array";
readonly contains: {
readonly type: "Transaction";
};
};
};
};
//# sourceMappingURL=$Block.d.ts.map