From c0270a4ed27a3e95396d34e144ae420d30b08173 Mon Sep 17 00:00:00 2001 From: Emmanuel Awosika Date: Fri, 22 Nov 2024 19:24:49 -0500 Subject: [PATCH 1/2] Update further reading section of data/analytics page Added an article that discusses retrieval, decoding, and transformation, and utilization of raw on-chain data to build blockchain applications. --- public/content/developers/docs/data-and-analytics/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/content/developers/docs/data-and-analytics/index.md b/public/content/developers/docs/data-and-analytics/index.md index c2de60c04df..b9fb3821825 100644 --- a/public/content/developers/docs/data-and-analytics/index.md +++ b/public/content/developers/docs/data-and-analytics/index.md @@ -46,10 +46,9 @@ To start, visit the [Ethereum quick start guide](https://academy.subquery.networ [Blocknative](https://www.blocknative.com/) provides open access to its Ethereum historical [mempool data archive](https://www.ethernow.xyz/mempool-data-archive). This enables researchers and community good projects to explore the pre-chain layer of Ethereum Mainnet. The data set is actively maintained and represents the most comprehensive historical record of mempool transaction events within the Ethereum ecosystem. Learn more at [Ethernow](https://www.ethernow.xyz/). ## Further Reading {#further-reading} - +- [Exploring Crypto Data I: Data Flow Architectures](https://research.2077.xyz/exploring-crypto-data-1-data-flow-architectures) - [Graph Network Overview](https://thegraph.com/docs/en/about/network/) - [Graph Query Playground](https://thegraph.com/explorer/subgraph/graphprotocol/graph-network-mainnet?version=current) - [API code examples on EtherScan](https://etherscan.io/apis#contracts) - [Beaconcha.in Beacon Chain explorer](https://beaconcha.in) - [Dune Basics](https://docs.dune.com/#dune-basics) -- [SubQuery Ethereum Quick Start Guide](https://academy.subquery.network/indexer/quickstart/quickstart_chains/ethereum-gravatar.html) From ec20e60281ddce14fdd1f8ecb8ecab8fc6b9ebe1 Mon Sep 17 00:00:00 2001 From: Emmanuel Awosika Date: Fri, 22 Nov 2024 21:09:52 -0500 Subject: [PATCH 2/2] Update index.md --- public/content/developers/docs/data-and-analytics/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/content/developers/docs/data-and-analytics/index.md b/public/content/developers/docs/data-and-analytics/index.md index b9fb3821825..38b29a1d9f6 100644 --- a/public/content/developers/docs/data-and-analytics/index.md +++ b/public/content/developers/docs/data-and-analytics/index.md @@ -45,6 +45,10 @@ To start, visit the [Ethereum quick start guide](https://academy.subquery.networ ## Ethernow - Mempool Data Program {#ethernow} [Blocknative](https://www.blocknative.com/) provides open access to its Ethereum historical [mempool data archive](https://www.ethernow.xyz/mempool-data-archive). This enables researchers and community good projects to explore the pre-chain layer of Ethereum Mainnet. The data set is actively maintained and represents the most comprehensive historical record of mempool transaction events within the Ethereum ecosystem. Learn more at [Ethernow](https://www.ethernow.xyz/). +## EVM Query Language + +EVM Query Language (EQL) is an SQL-like language designed to query EVM (Ethereum Virtual Machine) chains. EQL's ultimate goal is to support complex relational queries on EVM chain first-class citizens (blocks, accounts, and transactions) while providing developers and researchers with an ergonomic syntax for everyday use. With EQL, developers can fetch blockchain data using familiar SQL-like syntax and eliminate the need for complex boilerplate code. EQL supports standard blockchain data requests (e.g., retrieving an account's nonce and balance on Ethereum or fetching the current block size and timestamp) and is continually adding support for more complex requests and featuresets. + ## Further Reading {#further-reading} - [Exploring Crypto Data I: Data Flow Architectures](https://research.2077.xyz/exploring-crypto-data-1-data-flow-architectures) - [Graph Network Overview](https://thegraph.com/docs/en/about/network/) @@ -52,3 +56,4 @@ To start, visit the [Ethereum quick start guide](https://academy.subquery.networ - [API code examples on EtherScan](https://etherscan.io/apis#contracts) - [Beaconcha.in Beacon Chain explorer](https://beaconcha.in) - [Dune Basics](https://docs.dune.com/#dune-basics) +- [EVM Query Language](https://eql.sh/blog/alpha-release-notes)