@martiandao/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
25 lines • 723 B
TypeScript
import type { RoleType } from './RoleType';
import type { U64 } from './U64';
/**
* The struct holding all data returned to the client by the
* index endpoint (i.e., GET "/"). Only for responding in JSON
*/
export declare type IndexResponse = {
/**
* Chain ID of the current chain
*/
chain_id: number;
epoch: U64;
ledger_version: U64;
oldest_ledger_version: U64;
ledger_timestamp: U64;
node_role: RoleType;
oldest_block_height: U64;
block_height: U64;
/**
* Git hash of the build of the API endpoint. Can be used to determine the exact
* software version used by the API endpoint.
*/
git_hash?: string;
};
//# sourceMappingURL=IndexResponse.d.ts.map