import type { InactiveShardLogInfo } from "./InactiveShardLogInfo"; export type LogInfo = { /** * The current hash value stored at the root of the merkle tree */ rootHash: string; /** * The current number of nodes in the merkle tree */ treeSize: number; /** * The current signed tree head */ signedTreeHead: string; /** * The current treeID */ treeID: string; inactiveShards?: Array; };