{"id":15716,"date":"2023-11-02T01:00:00","date_gmt":"2023-11-02T01:00:00","guid":{"rendered":"https:\/\/hederav2stg.wpenginepowered.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/"},"modified":"2025-12-08T18:16:52","modified_gmt":"2025-12-08T18:16:52","slug":"hedera-processes-thousands-of-tps-see-how-that-number-is-calculated","status":"publish","type":"post","link":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/","title":{"rendered":"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated"},"content":{"rendered":"<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">At the time of this writing (November 2nd, 2023), the <a href=\"https:\/\/metrics.arkhia.io\/\" target=\"_blank\">Arkhia Metrics<\/a> site shows that the Hedera mainnet is processing 2,443 transactions per second (TPS), with more than 26 billion total transactions to date. The article <a href=\"https:\/\/hedera.com\/blog\/does-hederas-tps-include-transactions-generated-by-its-consensus-algorithm\" target=\"_blank\"><em>Does Hedera\u2019s TPS Include Transactions Generated by its Consensus Algorithm? Spoiler alert: NO<\/em><\/a> states that the publicly reported transaction count on Hedera does not include the intra-node gossip communication needed to reach consensus. Only transactions submitted and paid for by external parties are included in the TPS count. But, <strong>how is that number calculated?<\/strong> <\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/IMG1-TPS-scaled.png\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">For the curious minds out there, this article shows how anyone can calculate TPS on Hedera. It provides Python and JavaScript code that you can use to find the latest TPS number. The goal is to highlight how everyone can benefit from the transparency on-chain data provides.<a href=\"https:\/\/chainspect.app\/dashboard\/tps\" target=\"_blank\"><br \/><\/a><\/p>\n<p dir=\"ltr\">If you are interested in seeing how Hedera&#8217;s latest TPS compares to that of other Layer 1 and Layer 2 networks, see the <a href=\"https:\/\/chainspect.app\/dashboard\/tps\" target=\"_blank\">Chainspect TPS Dashboard<\/a>. <\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/TPS-Chainspect.png\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">As you read the article, keep in mind the equation below.\u00a0Now,\u00a0let\u2019s do some fun math!<\/p>\n<pre>TPS = Transactions in X Blocks (#) \/ Duration of X Blocks (seconds)<\/pre>\n<\/p>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>1. Fetching the Block Data<\/strong><\/h4>\n<p dir=\"ltr\">As explained in the <a href=\"https:\/\/docs.hedera.com\/hedera\/support-and-community\/glossary#block\" target=\"_blank\">glossary of the Hedera Documentation<\/a>, a block is simply a batch of transactions. Hedera\u2019s <a href=\"https:\/\/hedera.com\/learning\/hedera-hashgraph\/what-is-hashgraph-consensus\" target=\"_blank\">hashgraph consensus algorithm<\/a> inherently doesn&#8217;t utilize blocks. However, to enhance compatibility with Ethereum Virtual Machine (EVM) tools and systems, the notion of &#8220;virtual blocks&#8221; was integrated on Hedera with <a href=\"https:\/\/hips.hedera.com\/hip\/hip-415\" target=\"_blank\">HIP-415<\/a>. Each block on Hedera represents transactions processed in a time window of approximately 2 seconds.\u00a0<\/p>\n<p dir=\"ltr\">The script uses the\u00a0<a href=\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\" target=\"_blank\">mirror node REST API<\/a> to obtain the data for the last five blocks, providing a snapshot of roughly 10 seconds. You can modify the script to take as many blocks as you like. Here&#8217;s how to fetch the data:<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">Here\u2019s a sample of the data that a query returns for a block:<\/p>\n<\/div>\n<div class=\"hedera-code-window\" style=\"background-image:url('https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg');padding:24px;border-radius:8px;margin:24px 0;\">\n<p>  <!-- Hidden image so WP All Import downloads this background image into Media Library --><br \/>\n  <img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg\" alt=\"code window background\" style=\"display:none;\" \/><\/p>\n<div class=\"code-window-header\">\n<div class=\"code-window-title\"><\/div>\n<div class=\"code-window-body\"><\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\">{\n  \"blocks\": [\n    {\n      \"count\": 3628,\n      \"hapi_version\": \"0.40.0\",\n      \"hash\": \"0x307f22d2fcdfa56925ac2288a639efceb4aae005ff8c9e961ff3ce6141ed1f18c780116b98bdf7ddcdbaa0087cb2449e\",\n      \"name\": \"2023-10-20T15_37_40.009866397Z.rcd.gz\",\n      \"number\": 54899144,\n      \"previous_hash\": \"0x72412103ff7a3823bebbe913a1cd0b2de0c835a936ccd26ed2a1db2a75f0119503fe0517d0bbe322e3264c340e3ac799\",\n      \"size\": 887005,\n      \"timestamp\": {\n        \"from\": \"1697816260.009866397\",\n        \"to\": \"1697816261.999298266\"\n      },\n      \"gas_used\": 0,\n      \"logs_bloom\": \"0x\"\n    }\n  ],\n  \"links\": {\n    \"next\": \"\/api\/v1\/blocks?limit=1&block.number=lt:54899144\"\n  }\n}\n<\/code><\/pre>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">You can also see detailed information about blocks from a Hedera network explorer, like <a href=\"https:\/\/hashscan.io\/mainnet\/blocks\" target=\"_blank\">HashScan<\/a>.<\/p>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>2. Adding Up the Transactions<\/strong><\/h4>\n<p dir=\"ltr\">Next, we need to find the total number of transactions processed over these five blocks. This is a straightforward process: loop through each block and keep a running tally of the transaction counts. Here\u2019s the code that achieves this:<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>3. Calculating the Duration of the Time Window<\/strong><\/h4>\n<p dir=\"ltr\">We also need to determine the exact duration these five blocks took. Remember, while each block takes approximately 2 seconds, the actual duration might vary slightly. Keep in mind that each block also has a starting and ending timestamp.<\/p>\n<p dir=\"ltr\">We calculate the total duration of the time window by subtracting the starting timestamp of the oldest block from the ending timestamp of the newest block:<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>4. Calculating TPS<\/strong>  <\/h4>\n<p dir=\"ltr\">With the total number of transactions and the exact duration, it\u2019s time for the grand reveal.<\/p>\n<p dir=\"ltr\">The final step is the easiest. We simply divide the total number of transactions by the duration (in seconds) to get the TPS number:<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">To see the fruits of your labor, just run the scripts!<\/p>\n<ul>\n<li>Python\n<ul>\n<li><a href=\"https:\/\/github.com\/ed-marquez\/hedera-tps-calculator-python\" target=\"_blank\">hedera-tps-calculator-python<\/a><\/li>\n<li>  <a href=\"https:\/\/gitpod.io\/#https:\/\/github.com\/ed-marquez\/hedera-tps-calculator-python\" target=\"_blank\">Quickly run the Python example in your browser<\/a><\/li>\n<\/ul>\n<\/li>\n<li>JavaScript\n<ul>\n<li><a href=\"https:\/\/github.com\/ed-marquez\/hedera-tps-calculator-js\" target=\"_blank\">hedera-tps-calculator-js<\/a><\/li>\n<li>  <a href=\"https:\/\/gitpod.io\/#https:\/\/github.com\/ed-marquez\/hedera-tps-calculator-js\" target=\"_blank\">Quickly run the JS example in your browser<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>5. Wrapping Up<\/strong><\/h4>\n<p dir=\"ltr\">You learned how to\u00a0easily calculate TPS on Hedera with just a few lines of code. Whether you&#8217;re tracking performance, doing research, or satisfying your curiosity, this process shows how everyone can benefit from the transparency that on-chain data provides.<\/p>\n<ul><\/ul>\n<p>Happy coding!<\/p>\n<\/p>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>Continue Learning<\/strong><\/h4>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><a href=\"https:\/\/portal.hedera.com\/register\" target=\"_blank\">Open a Testnet Account<\/a><\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><a href=\"https:\/\/docs.hedera.com\/hedera\/tutorials\" target=\"_blank\">Try Examples<\/a> and <a href=\"https:\/\/docs.hedera.com\/hedera\/tutorials\/more-tutorials\" target=\"_blank\">Tutorials<\/a><\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><a href=\"https:\/\/hedera.com\/discord\" target=\"_blank\">Join the Developer Discord<\/a><\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><a href=\"https:\/\/hedera.com\/learning\" target=\"_blank\">Explore the Learning Center<\/a><\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><a href=\"https:\/\/hedera.com\/blog\" target=\"_blank\">Read the Hedera Blog<\/a><\/p>\n<\/li>\n<\/ul>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The publicly reported transaction count on Hedera does not include the intra-node gossip communication needed to reach consensus. Only transactions submitted and paid for by external parties are included in the TPS count. Read this article to learn how to calculate TPS count from on-chain data anyone can access.<\/p>\n","protected":false},"author":10,"featured_media":16816,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[1],"tags":[45],"ppma_author":[43],"class_list":["post-15716","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-technical"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated | Hedera<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated | Hedera\" \/>\n<meta property=\"og:description\" content=\"The publicly reported transaction count on Hedera does not include the intra-node gossip communication needed to reach consensus. Only transactions submitted and paid for by external parties are included in the TPS count. Read this article to learn how to calculate TPS count from on-chain data anyone can access.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/\" \/>\n<meta property=\"og:site_name\" content=\"Hedera\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-02T01:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-08T18:16:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"670\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Hedera Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/\"},\"author\":{\"name\":\"Hedera Team\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4\"},\"headline\":\"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated\",\"datePublished\":\"2023-11-02T01:00:00+00:00\",\"dateModified\":\"2025-12-08T18:16:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/\"},\"wordCount\":587,\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png\",\"keywords\":[\"technical\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/\",\"url\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/\",\"name\":\"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated | Hedera\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png\",\"datePublished\":\"2023-11-02T01:00:00+00:00\",\"dateModified\":\"2025-12-08T18:16:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#primaryimage\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png\",\"width\":1200,\"height\":670},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hedera.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hedera.com\/#website\",\"url\":\"https:\/\/hedera.com\/\",\"name\":\"Hedera\",\"description\":\"Hello future\",\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hedera.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hedera.com\/#organization\",\"name\":\"Hedera\",\"url\":\"https:\/\/hedera.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png\",\"width\":500,\"height\":375,\"caption\":\"Hedera\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated | Hedera","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/","og_locale":"en_US","og_type":"article","og_title":"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated | Hedera","og_description":"The publicly reported transaction count on Hedera does not include the intra-node gossip communication needed to reach consensus. Only transactions submitted and paid for by external parties are included in the TPS count. Read this article to learn how to calculate TPS count from on-chain data anyone can access.","og_url":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/","og_site_name":"Hedera","article_published_time":"2023-11-02T01:00:00+00:00","article_modified_time":"2025-12-08T18:16:52+00:00","og_image":[{"width":1200,"height":670,"url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png","type":"image\/png"}],"author":"Hedera Team","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#article","isPartOf":{"@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/"},"author":{"name":"Hedera Team","@id":"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4"},"headline":"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated","datePublished":"2023-11-02T01:00:00+00:00","dateModified":"2025-12-08T18:16:52+00:00","mainEntityOfPage":{"@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/"},"wordCount":587,"publisher":{"@id":"https:\/\/hedera.com\/#organization"},"image":{"@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png","keywords":["technical"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/","url":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/","name":"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated | Hedera","isPartOf":{"@id":"https:\/\/hedera.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#primaryimage"},"image":{"@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png","datePublished":"2023-11-02T01:00:00+00:00","dateModified":"2025-12-08T18:16:52+00:00","breadcrumb":{"@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#primaryimage","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner.png","width":1200,"height":670},{"@type":"BreadcrumbList","@id":"https:\/\/hedera.com\/blog\/hedera-processes-thousands-of-tps-see-how-that-number-is-calculated\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hedera.com\/"},{"@type":"ListItem","position":2,"name":"Hedera Processes Thousands of Transactions Per Second\u2026 See How that Number is Calculated"}]},{"@type":"WebSite","@id":"https:\/\/hedera.com\/#website","url":"https:\/\/hedera.com\/","name":"Hedera","description":"Hello future","publisher":{"@id":"https:\/\/hedera.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hedera.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hedera.com\/#organization","name":"Hedera","url":"https:\/\/hedera.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/#\/schema\/logo\/image\/","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png","width":500,"height":375,"caption":"Hedera"},"image":{"@id":"https:\/\/hedera.com\/#\/schema\/logo\/image\/"}}]}},"featured_image_src":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner-600x400.png","featured_image_src_square":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Hedera-Processes-Thousands-Of-Transactions-Per-Second-Banner-600x600.png","author_info":{"display_name":"Hedera Team","author_link":"https:\/\/hedera.com\/blog\/author\/hedera-team\/"},"authors":[{"term_id":43,"user_id":10,"is_guest":0,"slug":"hedera-team","display_name":"Hedera Team","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/7ed01931dc9498365746508c4ca49ed0507ef65e04e0b82ffe88c50ef9242b1d?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":""}],"_links":{"self":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/15716","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/comments?post=15716"}],"version-history":[{"count":0,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/15716\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media\/16816"}],"wp:attachment":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media?parent=15716"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/categories?post=15716"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/tags?post=15716"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/ppma_author?post=15716"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}