<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Dmitry</title>
    <description>The latest articles on DEV Community by Dmitry (@mrdotflat).</description>
    <link>https://dev.to/mrdotflat</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3924537%2Fe1a18f35-185d-4717-91c4-8326df8496c4.jpg</url>
      <title>DEV Community: Dmitry</title>
      <link>https://dev.to/mrdotflat</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mrdotflat"/>
    <language>en</language>
    <item>
      <title>I got tired of Claude Code forgetting everything. So I built Glutamate.</title>
      <dc:creator>Dmitry</dc:creator>
      <pubDate>Wed, 03 Jun 2026 15:34:42 +0000</pubDate>
      <link>https://dev.to/mrdotflat/i-got-tired-of-claude-code-forgetting-everything-so-i-built-glutamate-4h20</link>
      <guid>https://dev.to/mrdotflat/i-got-tired-of-claude-code-forgetting-everything-so-i-built-glutamate-4h20</guid>
      <description>&lt;p&gt;Every session with Claude Code starts the same way.&lt;/p&gt;

&lt;p&gt;You open a new terminal. You type your first message. And then you spend the next 10 minutes re-explaining what you were doing yesterday, why a certain function works the way it does, and which bugs you've already fixed.&lt;/p&gt;

&lt;p&gt;The agent isn't dumb. It just has amnesia. Every. Single. Session.&lt;/p&gt;

&lt;p&gt;I tried prompting my way out of it. CLAUDE.md files, detailed system prompts, elaborate context dumps at the start of each session. It helped, but it didn't scale. So I built &lt;strong&gt;Glutamate&lt;/strong&gt; - an MCP toolkit that hooks into Claude Code's lifecycle and gives the agent persistent, structured memory across sessions.&lt;/p&gt;




&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Failure Memory
&lt;/h3&gt;

&lt;p&gt;When the agent debugs a bug and finds the fix, Glutamate logs it. Next session, same bug - instant recall.&lt;/p&gt;

&lt;p&gt;"This took 3 hours last time. Now 30 seconds."&lt;/p&gt;

&lt;p&gt;Agents have a habit of re-introducing the same bugs and re-discovering the same fixes. Failure Memory breaks that loop.&lt;/p&gt;

&lt;h3&gt;
  
  
  Code Intelligence
&lt;/h3&gt;

&lt;p&gt;Glutamate runs a local stdio MCP server that uses &lt;strong&gt;tree-sitter&lt;/strong&gt; to give the agent structural code understanding across 8 languages.&lt;/p&gt;

&lt;p&gt;Instead of reading 2000 lines of a file to find one function, the agent reads 20 lines of exactly the right symbol.&lt;/p&gt;

&lt;p&gt;The compound effect matters: an agent reads code dozens of times per session. Each read is 20 lines instead of 2000. By the end of a long session, context isn't polluted and quality doesn't degrade.&lt;/p&gt;

&lt;h3&gt;
  
  
  Parallel Session Awareness
&lt;/h3&gt;

&lt;p&gt;Running multiple Claude Code windows on the same project? They see each other and coordinate. No other tool solves this - existing memory systems work with one agent's memory, Glutamate coordinates between agents.&lt;/p&gt;

&lt;h3&gt;
  
  
  Decision Archaeology
&lt;/h3&gt;

&lt;p&gt;Pass a commit hash, get every task doc written during that session. Full history of &lt;em&gt;why&lt;/em&gt; the code looks the way it does, tied directly to git. Three months later, you won't ask "why did we do this?" - you'll know.&lt;/p&gt;

&lt;h3&gt;
  
  
  Post-commit Stale Detection
&lt;/h3&gt;

&lt;p&gt;After every &lt;code&gt;git commit&lt;/code&gt;, Glutamate finds docs that reference the files you just changed and flags them as stale. The agent gets a nudge: regenerate these while the context is still fresh. Documentation doesn't silently rot.&lt;/p&gt;

&lt;h3&gt;
  
  
  LiveDocs Task Tracking
&lt;/h3&gt;

&lt;p&gt;Real-time visibility into what the agent is doing - what's open, what's done, what's next.&lt;/p&gt;




&lt;h2&gt;
  
  
  How it works under the hood
&lt;/h2&gt;

&lt;p&gt;Two MCP servers run side by side:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Remote HTTP server&lt;/strong&gt; (Docker) - owns the database. Handles livedocs, knowledge base, rules, failure memory, analytics, sessions, patterns. Passes &lt;code&gt;project_root&lt;/code&gt; on each tool call, so one server handles multiple projects. New projects auto-register on first call.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Local stdio server&lt;/strong&gt; - stateless tree-sitter tools. No database, just structural code analysis. Runs on the host machine, configured in &lt;code&gt;.mcp.json&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Three Claude Code hooks wire everything together:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;UserPromptSubmit&lt;/strong&gt; - before every prompt, runs hybrid FTS5 + vector search across KB and task history, injects relevant context automatically&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PostToolUse (git commit)&lt;/strong&gt; - finds docs that went stale and tells the agent to regenerate them while the knowledge is fresh&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SessionStart&lt;/strong&gt; - loads rules, past failures, and the project boundary map so the agent starts oriented&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The intent classifier (local Ollama model) tags each prompt as &lt;code&gt;feature&lt;/code&gt;, &lt;code&gt;debug&lt;/code&gt;, &lt;code&gt;refactor&lt;/code&gt;, or &lt;code&gt;question&lt;/code&gt; and loads different context profiles accordingly. A debug prompt loads failure memory. A feature prompt loads patterns and module docs.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why "Glutamate"
&lt;/h2&gt;

&lt;p&gt;Glutamate is an amino acid that acts as a neurotransmitter in your brain. Its job is to pass signals between neurons. Without it, memory doesn't form, connections don't build.&lt;/p&gt;

&lt;p&gt;Same idea here, except for your AI dev.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's not built yet
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;pip install glutamate-mcp&lt;/code&gt; onboarding (currently requires manual Docker setup)&lt;/li&gt;
&lt;li&gt;Multi-tenant hosted version (currently single-user, self-hosted)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Running a closed beta now. Landing page and demo video: &lt;strong&gt;&lt;a href="https://beta.glutamate.pro" rel="noopener noreferrer"&gt;beta.glutamate.pro&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Happy to answer questions about the architecture, the hook system, or anything else.&lt;/p&gt;

</description>
      <category>claudecode</category>
      <category>mcp</category>
      <category>ai</category>
      <category>devtools</category>
    </item>
    <item>
      <title>Stop using TTL for Ethereum contract cache — use event-driven invalidation instead</title>
      <dc:creator>Dmitry</dc:creator>
      <pubDate>Mon, 11 May 2026 08:55:37 +0000</pubDate>
      <link>https://dev.to/mrdotflat/stop-using-ttl-for-ethereum-contract-cache-use-event-driven-invalidation-instead-3pk5</link>
      <guid>https://dev.to/mrdotflat/stop-using-ttl-for-ethereum-contract-cache-use-event-driven-invalidation-instead-3pk5</guid>
      <description>&lt;p&gt;If you're building a dApp, you've probably written something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;cached&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;redis&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;`cdp:position:&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;user&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cached&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;JSON&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;parse&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cached&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;position&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;cdpContract&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;methods&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getPosition&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;user&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;call&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;redis&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;setEx&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;`cdp:position:&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;user&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;60&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;JSON&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;stringify&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;position&lt;/span&gt;&lt;span class="p"&gt;));&lt;/span&gt; &lt;span class="c1"&gt;// 60s TTL&lt;/span&gt;
&lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;position&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This works, but there's a hidden problem: your data is stale for up to 60 seconds by design. And you're making RPC calls every 60 seconds regardless of whether anything actually changed on-chain.&lt;/p&gt;

&lt;p&gt;For most protocol contracts — a CDP vault, a staking contract, a price oracle, a liquidity pool — transactions are relatively rare. Most users are just reading. The contract state sits unchanged for minutes, hours, sometimes days.&lt;/p&gt;

&lt;h2&gt;
  
  
  The insight
&lt;/h2&gt;

&lt;p&gt;Contract state only changes when a transaction is mined. A user's CDP position doesn't change on its own between blocks — it changes because that user sent a transaction.&lt;/p&gt;

&lt;p&gt;So instead of a TTL, you can do this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cache forever (TTL = 0)&lt;/li&gt;
&lt;li&gt;Watch the blockchain for transactions to your contracts&lt;/li&gt;
&lt;li&gt;Delete the affected Redis keys the moment a tx is detected
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;tx mined → watcher detects it → redis.del("cdp:position:*") → next request hits RPC
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Scenario&lt;/th&gt;
&lt;th&gt;60s TTL&lt;/th&gt;
&lt;th&gt;Event-driven (TTL=0)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;No activity, 1 hour&lt;/td&gt;
&lt;td&gt;60 RPC calls&lt;/td&gt;
&lt;td&gt;0 RPC calls&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1 tx per minute&lt;/td&gt;
&lt;td&gt;60 RPC calls&lt;/td&gt;
&lt;td&gt;1 RPC call&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;10 tx per minute&lt;/td&gt;
&lt;td&gt;60 RPC calls&lt;/td&gt;
&lt;td&gt;10 RPC calls&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The less active your contract, the bigger the win. For a lending protocol or an oracle, this can mean &lt;strong&gt;zero RPC calls&lt;/strong&gt; during quiet periods while data stays perfectly fresh.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; This pattern is designed for your own protocol contracts with moderate activity — not for watching global tokens like USDC or WETH, which receive thousands of transactions per block and would invalidate your cache constantly.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Introducing Blockpulse
&lt;/h2&gt;

&lt;p&gt;I extracted this pattern from a production DeFi app into a standalone service: &lt;strong&gt;Blockpulse&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You configure which contracts to watch and which Redis patterns to delete:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// config/config.js&lt;/span&gt;
&lt;span class="nx"&gt;module&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;exports&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;contracts&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="na"&gt;address&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;0xYourCDPContract&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;cdp&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="na"&gt;events&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;PositionOpened&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;PositionClosed&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Liquidated&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
      &lt;span class="na"&gt;cacheKeys&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
        &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;myapp:cdp:position:*&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;myapp:cdp:stats:*&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
      &lt;span class="p"&gt;]&lt;/span&gt;
    &lt;span class="p"&gt;},&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="na"&gt;address&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;0xYourOracle&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;oracle&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="na"&gt;events&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;PriceUpdated&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
      &lt;span class="na"&gt;cacheKeys&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;myapp:price:*&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. Start it alongside your app:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;docker compose up
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Every time a transaction touches your CDP contract, Blockpulse deletes &lt;code&gt;myapp:cdp:position:*&lt;/code&gt; from Redis. Your backend gets fresh data on the next request — and not a moment sooner.&lt;/p&gt;

&lt;h2&gt;
  
  
  What else it does
&lt;/h2&gt;

&lt;p&gt;Beyond cache invalidation, Blockpulse also:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Indexes events&lt;/strong&gt; — decoded logs stored in Redis, queryable via &lt;code&gt;/api/events/:address&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;REST API for contract calls&lt;/strong&gt; — &lt;code&gt;/api/call/:contract/:method&lt;/code&gt; with Redis caching&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Batch calls&lt;/strong&gt; — &lt;code&gt;/api/batch&lt;/code&gt; for multiple contract reads in one round-trip&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Historical sync&lt;/strong&gt; — backfills past events via Etherscan API on startup&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cache dependencies&lt;/strong&gt; — invalidate contract B's keys when contract A changes&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-chain&lt;/strong&gt; — set &lt;code&gt;CHAIN_ID&lt;/code&gt; for Polygon, Arbitrum, Base, etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Architecture
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  Ethereum Node (WebSocket / HTTP)
        │
        ▼
  ┌─────────────┐     tx detected
  │  Blockpulse │ ──────────────────► Redis DEL (your key patterns)
  └──────┬──────┘
         │
         ▼ REST API :3002
  /api/call · /api/events · /api/batch
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Getting started
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/nagor2/blockpulse
&lt;span class="nb"&gt;cd &lt;/span&gt;blockpulse
&lt;span class="nb"&gt;cp&lt;/span&gt; .env.example .env               &lt;span class="c"&gt;# add your RPC URL and REDIS_URL&lt;/span&gt;
&lt;span class="nb"&gt;cp &lt;/span&gt;config/config.example.js config/config.js   &lt;span class="c"&gt;# add your contracts&lt;/span&gt;
npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; npm start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The service has been running in production on Ethereum mainnet as part of a DeFi frontend. It's MIT licensed and ~1700 lines of Node.js.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub: &lt;a href="https://github.com/nagor2/blockpulse" rel="noopener noreferrer"&gt;github.com/nagor2/blockpulse&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Curious if anyone's solved this differently — happy to discuss tradeoffs in the comments.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>redis</category>
      <category>webdev</category>
      <category>blockchain</category>
      <category>ethereum</category>
    </item>
  </channel>
</rss>
