Skip to content

Releases: iankressin/eql

0.1.4-alpha - Tx filters, multi-chain, user-configurable RPC

01 Nov 21:05
Compare
Choose a tag to compare

0.1.4-alpha - Tx filters, multi-chain, user-configurable RPC

Transaction Filters 🔍

You can now easily filter transactions in your SQL queries using the WHERE clause. Narrow down results by block number, sender/recipient address, value, and more.
Example:

GET * FROM tx 
WHERE block = latest AND value > 0 ether
ON eth

Chain Wildcard & Multi-Chain Support 🌐

EQL now supports a * wildcard for the chain parameter, allowing you to write queries that can run on any EVM chain without modification.
You can also specify a list of chains to run your query against multiple chains simultaneously!

Instead of:

GET * FROM account vitalik.eth ON eth

Use:

GET * FROM account vitalik.eth ON *

Or:

GET * FROM tx ON eth, arb, op

User Configurable RPCs ⚙️

The EQL installation now creates a default ~/eql-config.json file with pre-configured RPC endpoints for various networks. You can customize this by adding new chains or modifying the existing ones.

{
  "chains": {
    "eth": {
      "default": "https://ethereum.drpc.org",
      "rpcs": [
        "https://ethereum.drpc.org",
        "https://eth.llamarpc.com"
      ]
    },
    "polygon": {
      "default": "https://polygon.llamarpc.com", 
      "rpcs": [
        "https://polygon.llamarpc.com"
      ]
    }
  }
}

🚀 Try out the new version at https://eql.sh
⭐ Drop a star on our GitHub repo: https://github.com/iankressin/eql
💬 Join the discussion on the EQL squad channel in the 2077Collective Discord: https://discord.com/channels/1247647880634695730/1267420527765622878

What's Changed

Full Changelog: 0.1.1-alpha...0.1.4-alpha

0.1.3-alpha

23 Sep 19:55
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.1.1-alpha...0.1.2-alpha

0.1.1-alpha

19 Aug 01:42
0b74b38
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.1.0-alpha...0.1.1-alpha

0.1.0-alpha

26 Jul 01:35
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: https://github.com/iankressin/eql/commits/0.1.0-alpha