Average daily transactions count drop since announcement of Goerli deprecation
This query looks at the drop in average daily transactions on Goerli once it was
announced on April 1, 2023 that the Goerli testnet would be deprecated in favor
of the Sepolia and Holesky testnets.
In the Google Cloud console, go to theBigQuerypage.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 UTC."],[[["\u003cp\u003eThis page provides example queries for analyzing transaction data on the Ethereum Goerli testnet using BigQuery.\u003c/p\u003e\n"],["\u003cp\u003eGoerli is no longer maintained, having reached its end-of-life status, so it should no longer be considered a primary testnet.\u003c/p\u003e\n"],["\u003cp\u003eOne query examines the average daily transaction count drop after the April 1, 2023 announcement that Goerli would be deprecated.\u003c/p\u003e\n"],["\u003cp\u003eAnother query retrieves the daily transaction count for the past ten days, providing recent activity data for the Goerli testnet.\u003c/p\u003e\n"]]],[],null,["# Ethereum Goerli example queries\n\n| **Preview**\n|\n|\n| This product or feature is subject to the \"Pre-GA Offerings Terms\" in the General Service Terms section\n| of the [Service Specific Terms](/terms/service-terms#1).\n|\n| Pre-GA products and features are available \"as is\" and might have limited support.\n|\n| For more information, see the\n| [launch stage descriptions](/products#product-launch-stages).\n\nThis page provides Blockchain Analytics query examples for Ethereum Goerli.\n\nSee the [BigQuery documentation](/bigquery/docs/introduction) for\ninstructions on using BigQuery.\n| **Warning:** Goerli has reached [end-of-life](https://blog.ethereum.org/2023/11/30/goerli-lts-update) status and is no longer maintained by the Ethereum Foundation.\n\nAverage daily transactions count drop since announcement of Goerli deprecation\n------------------------------------------------------------------------------\n\nThis query looks at the drop in average daily transactions on Goerli once it was\nannounced on April 1, 2023 that the Goerli testnet would be deprecated in favor\nof the Sepolia and Holesky testnets.\n\nIn the Google Cloud console, go to the **BigQuery** page.\n\n[Go to BigQuery](https://console.cloud.google.com/bigquery?sq=650023896125:4eb0dbcc17194464b963a8cc2d8d4d2f)\n\nThe following query is loaded into the **Editor** field: \n\n # Average daily transactions count drop since announcement of Goerli\n # deprecation (two weeks around Apr 1st, 2023) In favor of new Sepolia chain\n SELECT\n DATE(block_timestamp) AS date,\n COUNT(*) AS num_transactions\n FROM\n `bigquery-public-data.goog_blockchain_ethereum_goerli_us.transactions`\n WHERE\n block_timestamp \u003e= TIMESTAMP('2023-03-24')\n AND block_timestamp \u003c= TIMESTAMP('2023-04-08')\n GROUP BY\n 1\n ORDER BY\n 1 DESC;\n\nThe following shows an example result:\n\nDaily transaction count for the last 7 days\n-------------------------------------------\n\nIn the Google Cloud console, go to the **BigQuery** page.\n\n[Go to BigQuery](https://console.cloud.google.com/bigquery?sq=650023896125:77288257cada4c52868e3ddd48b61d22)\n\nThe following query is loaded into the **Editor** field: \n\n SELECT\n DATE(block_timestamp) AS date,\n COUNT(*) AS num_transactions\n FROM\n `bigquery-public-data.goog_blockchain_ethereum_goerli_us.transactions`\n WHERE\n block_timestamp \u003e= TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 10 DAY)\n GROUP BY\n 1\n ORDER BY\n 1 DESC;\n\nThe following shows an example result:"]]