# NetworkInfo **Type:** GraphQL objects **Description:** Detailed information about the current Kadena network and its state. The `NetworkInfo` type provides an overview of the network’s operational and consensus metrics, including circulation supply, hash rate, difficulty, transaction count, and chain topology details. It’s commonly used by explorers, monitoring tools, and analytics dashboards to understand the state, performance, and configuration of the Kadena blockchain network. ## Fields - apiVersion (String): The version of this GraphQL API. Useful to verify compatibility between the client and API. - coinsInCirculation (Float): The current total number of coins in circulation on the network. - networkHashRate (Float): The current aggregate hash rate of the Kadena network. Indicates the total mining power securing the network. - networkHost (String): The host address or domain of the network node serving this API. - networkId (String): The unique identifier of the network (e.g., `mainnet01`, `testnet04`). - totalDifficulty (Float): The cumulative difficulty of all blocks mined so far. A higher value reflects the total work securing the chain. - transactionCount (Int): The total number of transactions that have been processed across the network. - nodeBlockDelay (Int): The current delay (in blocks) between the latest mined block and the block processed by the node. Useful for monitoring node synchronization status. - nodeChains (String): The list of chain IDs that make up the Kadena network. Kadena operates multiple braided chains in parallel. - numberOfChains (Int): The total number of chains in the network. - genesisHeights (GenesisHeight, Not Null): The genesis block height for each chain in the network. Provides insight into the starting point of each chain’s history. - chainId (String) - height (Int) - nodePackageVersion (String): The version of the node software package running this endpoint. - nodeServiceDate (DateTime): The service start date and time of the current node. Useful for tracking uptime and deployment history. - nodeLatestBehaviorHeight (Int): The latest block height known by the node’s behavior monitor. Can be used to assess node synchronization and chain progress. - countersOfEachChain (CountersOfEachChain, Not Null): Transaction counters and statistics broken down by chain. Useful for analyzing per-chain activity levels and throughput. - chainId (String) - blocksCount (Int) - transactionCount (Int) - totalGasUsedInKda (String)