<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>Gas Killer</title>
        <link>https://paragraph.com/@gaskiller</link>
        <description>undefined</description>
        <lastBuildDate>Sat, 19 Sep 2026 10:26:41 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Gas Killer</title>
            <url>https://storage.googleapis.com/papyrus_images/f939ba37a04b1a0ec4e0d7469ca586169d2cfe35bfd20c37a48112a1bc54c9c6.jpg</url>
            <link>https://paragraph.com/@gaskiller</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[We Put a Fly Brain On-Chain]]></title>
            <link>https://paragraph.com/@gaskiller/we-put-a-fly-brain-on-chain</link>
            <guid>iVLgXf3iM3qpDzKDllLu</guid>
            <pubDate>Tue, 15 Sep 2026 14:36:37 GMT</pubDate>
            <description><![CDATA[We simulated all 166,700 neurons of a fruit fly connectome to price AMM swaps on Sepolia, executing 14 billion gas of computation for under 410,000 gas via Gas Killer.]]></description>
            <content:encoded><![CDATA[<p>Last year the FlyEM team at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://male-cns.janelia.org/"><u>Janelia Research Campus</u></a>, working with Google Research, finished mapping the entire central nervous system of a male fruit fly. They sliced it, imaged it under an electron microscope, and traced every neuron and every connection between them. The result, MaleCNS v1.0, is the first complete wiring diagram of a nervous system that can walk, fly, see, and court a mate.</p><p>We loaded it onto Ethereum and wired the output into an AMM. Now the fly brain decides what your swap costs. Live on Sepolia. </p><div data-type="customButton" class="paragraph-compat-button-wrap"><a href="https://gas-killer.github.io/fly-amm/" class="paragraph-compat-button" target="_blank" rel="noopener noreferrer nofollow ugc">Check it out</a></div><p>When we <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://paragraph.com/@gaskiller/introducing-gas-killer"><u>introduced Gas Killer</u></a>, we described the Turetzky Upper Gas Limit: any deterministic computation can settle on-chain for the cost of verifying an aggregate signature plus the storage you actually need to write. We pushed this to its limits by putting an <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://llm.gaskiller.xyz/"><u>LLM fully on-chain</u></a>.&nbsp;</p><p>So why put the fly brain on-chain? Well, because we can!</p><p>We took the Janelia reconstruction as published and modeled every neuron in it as a leaky integrate-and-fire unit. Every one of those 25.6 million synapses carries a weight taken from the reconstruction. The graph lives on-chain across 4,196 data contracts. The model is not a pointer to a server we run somewhere, it runs fully on Sepolia.</p><h2 level="2" id="h-how-the-brain-sees-a-trade">How the brain sees a trade</h2><p>A brain needs sensory input, so we gave it eyes.</p><p>For each swap intent we rasterize the market state onto a fresh 160x120 canvas. Rows encode how far the price has drifted from the pool reference, how large the order is against the reserves, and how much slippage it would cause. Those pixels land as input current on the photoreceptor neurons, exactly as an image of the world would.</p><p>Then it runs. All 166,700 neurons integrate for 1,000 steps. Four population firing rates come out the other side, and fixed published tables map them onto a fee and a skew. Fee gets clamped between 5 and 100 basis points, skew to within plus or minus 30. Buyers pay the fee plus skew. Sellers pay the fee minus skew.</p><p>Underneath it all the pool is an ordinary constant product x·y=k AMM. The difference is that every swap becomes an escrowed intent rather than an immediate fill, and the number that prices it comes out of its nervous system.</p><h2 level="2" id="h-unbounded-computation">Unbounded Computation</h2><p>One swap decision would normally be over 14,000,000,000 gas of computation.</p><p>Sepolia caps a single transaction at 16.78 million gas under EIP-7825. The fly is roughly 850 times past what one transaction is permitted to spend. As a normal on-chain call it cannot happen at all. But with Gas Killer we are able to do unbounded computation, ie, make on-chain transactions that go beyond the block gas limit.</p><p>The two settlements cost 406,341 gas and 355,521 gas. <strong>A reduction of over 99.9%</strong>. These are the kinds of results you’re able to get with Gas Killer.</p><h2 level="2" id="h-how-does-it-work">How does it work?</h2><p>A trader submits an intent and the FlySwapPool escrows the tokens without pricing them. A keeper posts a settlement task to the Gas Killer router, which validates it and distributes it to operators. Each operator independently runs the complete brain simulation off-chain.</p><p>Because the computation is deterministic, every honest operator lands on an identical result. The quorum signs that result once as an aggregate signature and posts it. The contract verifies the signature and writes a single 32-byte fill word.</p><p>That word carries the whole decision: 16 bits of fee, 16 bits of skew, 8 bits of flags, 24 bits of epoch, and a 160-bit spike root committing to all 28,000-plus spikes the episode produced. The pool reads the word and executes the swap at the brain's price.</p><h2 level="2" id="h-try-it">Try it</h2><p>The visualizer at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://gas-killer.github.io/fly-amm"><u>gas-killer.github.io/fly-amm</u></a> shows the connectome firing during a real settled swap, and you can open it full screen to watch the populations light up as the retina image hits them. The contracts are all on Sepolia if you want to go read them directly:</p><ul><li><p>FlySwapPool: 0xD9adC740c61c2362AA9649cDe79D1A20B537fa69</p></li><li><p>FlySwapPolicy: 0x474c62c9931e5a501986f6E27AC4Cc084dFf9908</p></li><li><p>FlyEngine: 0xB61fd991A4A6afAEf54404bA54DC6123d2B9E4fC</p></li><li><p>Connectome directory: 0xe7c83910719ea03d80f7dd71caee4489a0a05641</p></li></ul><h2 level="2" id="h-whats-next">What's next</h2><p>We are opening API access for builders shortly, so if you want to point Gas Killer at something in your own stack, come find us in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/gaskillerfriends"><u>Telegram group</u></a> and tell us what you would run with a trillion gas. Check out the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://gaskiller.xyz/docs"><u>docs</u></a> and the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/gas-killer"><u>code</u></a>.</p><p>We are also raising our pre-seed and would like to talk to people who find this as strange and promising as we do. Reach Josh at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="mailto:josh@gaskiller.xyz"><u>josh@gaskiller.xyz</u></a> or tbsoc on Telegram.</p><p>Follow <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/gaskiller_"><u>@gaskiller_</u></a> for what comes next.</p>]]></content:encoded>
            <author>gaskiller@newsletter.paragraph.com (Gas Killer Team)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/eaa1fd8ad1811576f5be6d5d48bf280564ded6006ac41838c7f9dde8352d8aaa.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Gas Killer for Developers: Write the Contract You’ve Always Wanted]]></title>
            <link>https://paragraph.com/@gaskiller/gas-killer-for-developers-write-the-contract-you-ve-always-wanted</link>
            <guid>TLJNP8HSuiY0PvjnWozW</guid>
            <pubDate>Mon, 24 Aug 2026 07:00:05 GMT</pubDate>
            <description><![CDATA[Bypass EVM block gas limits by offloading heavy Solidity computation to an optimistic coprocessor network, reducing on-chain settlement costs to tens of thousands of gas.]]></description>
            <content:encoded><![CDATA[<p>Every EVM developer has written clean, elegant Solidity only to throw it away. You can't write the direct implementation because you'd hit a wall on block gas limits, and end up with a bloated architecture: snapshotting state off-chain, pushing execution to off-chain indexers, and maintaining custom index mappings just to make a basic loop viable. Gas costs stop you from writing good software.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://gaskiller.xyz/"><u>Gas Killer</u></a> removes that constraint. Write the contract you actually want to ship, and let an optimistic off-chain coprocessor handle the execution.</p><div data-type="customButton" class="paragraph-compat-button-wrap"><a href="https://gaskiller.xyz/docs" class="paragraph-compat-button" target="_blank" rel="noopener noreferrer nofollow ugc">Check the docs</a></div><h2 level="2" id="h-how-it-works">How it works</h2><p>Gas Killer is a network of shared security operators that runs your contract's computation off-chain and settles the result on-chain. Each operator simulates the call independently, so no single party is trusted, and the chain verifies one signature instead of executing anything, no matter how much computation it took. </p><p>The cost of a transaction drops to essentially the cost of its real effects: the internal state changes it makes, plus any external calls, plus a small fixed overhead for signature verification. The cost of the signature verification, we call the Turetzky Upper Gas Limit (TUGL). In practice, the signature verification runs on the order of tens of thousands of gas, so iterating an array of ten thousand accounts that used to cost around twenty million gas can settle for a tiny fraction of that.</p><figure float="none" class="paragraph-figure paragraph-figure-none"><img src="https://storage.googleapis.com/papyrus_images/98ce2afc868511d7fcff468e1969d49a79fa5dd6e6963c907af0053520f74248.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAIAAAD4YuoOAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAEW0lEQVR4nIWSbUxbZRTHb3vb+/K09/a2l5amt+1qC3152gtZRwreUUPDBIRSVtjKW3kZiytvjQ4CgkqFiSPOkRhfULcR0G1pjGFDlrg4XDGMbMbFhEQ+mPjB8EE0GBMTP5ks0fRe6Qhq/OWfk3PPPc9zcs55EAAAJULgOMuyBI6rAFCJQRUAtFqdtTQtBf8piqJotVpKk47sFwAAwTAs32icvnCh49SpM319qXPnxlOp8ooKBEEwlUqOE3IcF5VzHktJkPvjSuJgDkGSCE6SnE47VlnxUm11X/Do1Mno0LHQRH3d6NOhNqerx+vr8fqe5bM6U1x0mudP83y3z9fh87Z7YbsXtng8LR5Pqxe2in67F3b6fJJavVDPaBAlQfiMxu8nR396980vh5NbM1NfTYx+++rED29M34yFV2Lh1Xh0NR7NdDatxhtX440rscjNWP2NWP316DNXj9csNtRcqqu6EqmWtNhQkz4R/qS5Yam54fqJMMeyCEGSeVqtNU+vJwgDRRkoysgw+TSdT9Mcw5h1OrNWxzFai07HMUwhxwVcbk6j4Vgtx7ImnZbTs2Z9nkmnNel0kjiW5VjWajBUPVlG0zQCAFBiGCIhk/3tINnRAbUaqNu4SeIkqSSInKQITpLk3l9SrcJJkIvnjmSXjKKox+NODvadfT7Z1BhpjjX19yaaGiMadkGVmJRKkCSB4wSOYwqFJAWKSsr5+4PSJ4Hj0itSOgpc4Wi8NtIWqmo8frK7tXOgLtrhMJstWsbK6ixaLafXW56wmQ8dstrtVdvdVuBwuJye4mJPcbHT65VUCGEhhA6Xy+Fy2goKrHa7yWzOFpDLkRIh/Nm9n99b3Hj/2tcrmR9X1n4ZO3/7Ykvnn9cu/X5l7o/01bebm4ZfSS0sLX26tnZ7Y+ODj9O37q1v//brd7u7u48e3bot/v2Z+/uJHH87MX558562h6en+l1/sOTtUWV+vkjo45HCXhxpcsKwQlnmKyv2BKs/hyhKrvfvI4e6SIxEIj7k90eZYW1dnfzI5eX76hVRqeHy8Nzn43MhILB4XQqFAMCiq3F9aVhQIuIv40qeCldXVGIZllwwAKZdnW1GgMgWa3bMClSkJHEEVCKZEUFRJkCyrAwCUBgKjIyOJROKoIKgA0NAaAsfFfPSACBynaTo7IrEAUFMUACrJYjnEvUlWJpejKJp7YwiSfR0SGIZJjkwuwzBMTVHiPYAgyccFclAU5XA4IIQ2m80p4na5eJ6HEPpFIIQ8z/v9/kAg4Pf7BUEIiAiCEAwGeZ5nGGb/hf9SIBKJZDKZubm5L+7evbG0tHrnzoONBxKZTOZzkYcPv1lfX9/c3Nza2pLs9vb2zs5OV1cXy7IYhv1nAYZheJ7vEkkOJgcGBvp6exOJxNxY2GWRdDq9sLCwvLz8msjU1NTre8zOztbW1hoMhv8pYLFYjHuYTCYrixO5zmKxOJ0Ofg8IoTRAKCINjed5QRAOdPAX/8ozHfkrUMkAAAAASUVORK5CYII=" nextheight="472" nextwidth="931" class="paragraph-editor-image"><figcaption></figcaption></figure><p>Gas Killer is optimistic. In the normal case there is no proof, just the operators' signature on the correct state transition. Zero-knowledge proofs are used to be able to verify the compute and slash operators in the case of a dispute.</p><p>If the operators ever signed an incorrect transition, any honest observer, even one outside the operator set, can reconstruct what the execution should have been and open a slashing process. The security is crypto-economic: as long as there is more at stake than value that could be extracted, the system is secure.</p><h2 level="2" id="h-what-this-unlocks">What this unlocks</h2><p>The point is not only cheaper gas, it is that you can write straightforward contracts without thinking about gas optimization tricks that lead to potential mistakes. For example:</p><ul><li><p><strong>Just iterate over the array</strong>. You do not have to build a mapping plus a custom data object to make a query cheap, or set up complex index fetching. Write the loop in Solidity.</p></li><li><p><strong>Real-time instead of snapshots</strong>. Snapshot-based governance exists mainly because you cannot iterate the voter set at execution time. Gas Killer lets you do live, always-available voting and tallies.</p></li><li><p><strong>Affordable security checks</strong>. Take your entire test suite and every invariant check and run them before or after each call. With Gas Killer, it does not meaningfully add to their cost. Many exploits happen precisely because contracts get stripped down for gas; this lets you keep the guards in.</p></li><li><p><strong>Break the block gas limit entirely</strong>. Some things are not merely expensive, they are impossible on-chain today because one call exceeds a block. The team demonstrated this by rewriting Qwen (a small language model) in Solidity and running <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://paragraph.com/@gaskiller/we-put-a-language-model-on-chain"><u>full model inference on-chain</u></a> through Gas Killer, at a cost that would otherwise be trillions of gas.</p></li></ul><p>The philosophy of Gas Killer is to help make Solidity more expressive without increased complexity. You keep writing Solidity, which is battle-tested and widely understood, and you do not have to learn a new language or become a zero-knowledge specialist. The goal is to meet developers where they are and not overcomplicate.</p><h2 level="2" id="h-getting-started">Getting started</h2><p>Gas Killer is live on the Sepolia testnet, and anyone can request an API key <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.google.com/forms/d/1mBnAG-IfTYOkHsDUu_KuDlq65j69qy0ad9HGuHxU854/edit#response=ACYDBNh_5FkVA1idMcckS-t6BjHoK5EH1tuEXykfTGmr6wHL0O6h0ZbF9q1d5vyTi9lIMMQ"><u>here</u></a>. There are example contracts <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/gas-killer/example-contracts"><u>in our repo</u></a> you can start with or try building that contract you wanted to make but couldn’t get the gas costs right..</p><p>We believe this only scratches the surface of what becomes possible with Gas Killer: on-chain games, order books, computation-heavy logic, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://llm.gaskiller.xyz/"><u>model inference</u></a>, cheaper on-chain infrastructure, and primitives that have not been built yet. If you have a contract that does real computation and you have been fighting its gas cost, or you have shelved an idea because it could not fit on-chain, this is worth a look.</p><p><strong>Join our </strong><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/gaskillerfriends"><strong><u>Telegram group</u></strong></a><strong> and share the most computationally expensive idea you have while staying close to what’s coming next.</strong></p><p><br></p>]]></content:encoded>
            <author>gaskiller@newsletter.paragraph.com (Gas Killer Team)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/0028765c27fce8d6da620db803f02c9c17ee51926d1412ad047869c89154917e.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[We Put a Language Model On-Chain]]></title>
            <link>https://paragraph.com/@gaskiller/we-put-a-language-model-on-chain</link>
            <guid>Icz7IlzpGL4tqfeA12ii</guid>
            <pubDate>Thu, 30 Jul 2026 17:10:56 GMT</pubDate>
            <description><![CDATA[By converting LLMs to integer math in EVM bytecode, we ran Qwen on-chain with fully deterministic outputs, slashing execution costs by 9.4 million times.]]></description>
            <content:encoded><![CDATA[<p>We've run a large language model directly on-chain on Ethereum with fully deterministic, verifiable outputs—settling standard LLM inference for a tiny fraction of traditional costs. Try the live demo right now at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://llm.gaskiller.xyz/">llm.gaskiller.xyz</a>.</p><div data-type="youtube" class="paragraph-youtube"><iframe src="https://www.youtube-nocookie.com/embed/rS7nMlbRFHo" title="YouTube video" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="true"></iframe></div><p><em>Check out the demo here and subscribe on YouTube!</em></p><p>When we <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://paragraph.com/@gaskiller/introducing-gas-killer"><u>introduced Gas Killer</u></a>, we described the Turetzky Upper Gas Limit: the idea that any computation, no matter how complex, can be reduced to the cost of aggregate signature verification plus necessary storage writes. That includes computations that go <strong>beyond the block gas limit</strong> entirely.</p><p>An LLM is about the most extreme test of that claim we could think of. A single answer from a large model represents trillions of gas worth of computation, orders of magnitude past what a block can hold. If Gas Killer can run that, it can run almost anything. So we built it.</p><h1 level="1" id="h-what-we-built"><strong>What We Built</strong></h1><p>We took a local LLM, Qwen, and put the entire thing on-chain, not a pointer to a server. The weights are stored on-chain as raw bytes and the architecture (the actual sequence of math that turns a prompt into an answer) was reimplemented as a smart contract in EVM bytecode.</p><p>Because the whole model is on-chain code operating over on-chain data, the computation is fully specified by the chain itself. The most important consequence of this is <strong>determinism</strong>. The EVM executes the same bytecode the same way on every machine, so the same prompt with the same information always produces the <em>exact same output</em>.&nbsp;</p><div data-type="customButton" class="paragraph-compat-button-wrap"><a href="https://t.me/gaskillerberlin" class="paragraph-compat-button" target="_blank" rel="noopener noreferrer nofollow ugc">Join the Telegram Group</a></div><h1 level="1" id="h-why-determinism-is-the-whole-point"><strong>Why Determinism Is the Whole Point</strong></h1><p>Standard GPUs running LLMs use floating-point math in order to produce outputs from prompts. Floating-point math rounds differently across hardware, libraries, and execution order, and those tiny differences compound across billions of operations.</p><p>Our on-chain version removes that. It runs as integer math on a single deterministic virtual machine with a fixed execution order. There's no rounding to drift and no hardware variance. It's something anyone can independently reproduce and verify.&nbsp;</p><p>Running LLM inference on-chain the naive way is impossible. A single answer from a 35-billion-parameter model represents roughly 3.6 trillion gas of computation, far beyond any block limit. As a normal transaction, it simply cannot happen.</p><p>We settle it for around ~350,000 gas, and we expect to push that lower with optimization. That's about a <strong>9.4 million times compression </strong>in on-chain execution cost.</p><p>When you submit a prompt, operators run the on-chain model's computation off-chain. Because the bytecode is deterministic, every honest operator arrives at an identical result. Those results are aggregated into a single aggregate BLS signature and posted on-chain, where the contract verifies the signature and settles the result.&nbsp;</p><h1 level="1" id="h-try-it-yourself"><strong>Try It Yourself</strong></h1><p>Two models are live on Sepolia right now: a 35-billion-parameter Qwen3.5 model, which takes a bit over an hour to produce an answer, and a smaller half-billion-parameter Qwen3 model, which returns in about four to five minutes.</p><div data-type="customButton" class="paragraph-compat-button-wrap"><a href="https://llm.gaskiller.xyz/" class="paragraph-compat-button" target="_blank" rel="noopener noreferrer nofollow ugc">Try it here!</a></div><p>There's also a section on the page explaining the security model behind all of this, worth a look if you want a deeper picture of how operators commit to results.</p><h1 level="1" id="h-where-this-goes"><strong>Where This Goes</strong></h1><p>We believe that the opportunities for this kind of onchain AI can be summed up as: <strong>verifiable, tamper-proof judgment over on-chain data.</strong> A few directions we find compelling:</p><ul><li><p>Agent arbitration and dispute resolution, where two parties or agents disagree and need a neutral call nobody can claim was rigged</p></li><li><p>Credit reporting and similar judgment calls, where the reasoning behind a decision needs to be auditable rather than opaque</p></li><li><p>Any reasoning over data that already lives on-chain</p></li><li><p>Fair, verifiable automation that a contract can act on without trusting whoever ran the model</p></li></ul><h1 level="1" id="h-whats-next"><strong>What's Next</strong></h1><p>There is plenty of room for improvements to be made. These models were built for floating-point math and then made to run as integers. Architectures designed from the ground up for integer arithmetic, like BitNet-style models, are a natural fit for on-chain execution and should cut runtimes, making larger models practical on-chain. It's a direction we're excited to explore.</p><p>We are going to be opening up API access for builders to start using Gas Killer very soon so be sure to join the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/gaskillerberlin"><u>telegram group</u></a> for the latest information.</p><p>We're also opening our pre-seed round, and we'd love to talk with people who find this as interesting as we do. Reach out to Josh at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="mailto:josh@gaskiller.xyz">josh@gaskiller.xyz</a>, or tbsoc on Telegram.</p><p>Try the demo at<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://llm.gaskiller.xyz/"> </a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://llm.gaskiller.xyz"><u>llm.gaskiller.xyz</u></a>, and follow us on<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/gaskiller_"> <u>X</u></a> for what comes next.</p>]]></content:encoded>
            <author>gaskiller@newsletter.paragraph.com (Gas Killer Team)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/8eecd37d63353c450366044325352c9f72efd713f3e02da3bbd3a3f2a21737fa.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Gas Killer proven in first in-production transaction (~60% reduction)]]></title>
            <link>https://paragraph.com/@gaskiller/gas-killer-proven</link>
            <guid>NdTzKMX8GWCMuLzvrYFk</guid>
            <pubDate>Tue, 31 Mar 2026 09:29:01 GMT</pubDate>
            <description><![CDATA[After the success of our first testnet transaction with Gas Killer on Sepolia, we also successfully ran our first real in-production transaction of Gas Killer on a contract with ~$500,000 of TVL proving a ~60% reduction in gas costs. ICYMI Gas Killer is a shared security protocol that transforms how we think about on-chain computation. Instead of executing expensive calculations directly on Ethereum, Gas Killer uses a network of operators to simulate transactions off-chain and write back only...]]></description>
            <content:encoded><![CDATA[<p>After the success of our first testnet transaction with Gas Killer on Sepolia, we also successfully ran our first real in-production transaction of Gas Killer on a contract with ~$500,000 of TVL proving a ~60% reduction in gas costs.</p><p><strong>ICYMI</strong></p><p>Gas Killer is a shared security protocol that transforms how we think about on-chain computation. Instead of executing expensive calculations directly on Ethereum, Gas Killer uses a network of operators to simulate transactions off-chain and write back only the essential storage updates and external calls. You can think of it like an <em>optimistic coprocessor </em>as it’s similar to existing ZK coprocessors but with optimistic execution, only needing a proof for slashing.</p><p>To test that Gas Killer works in production, not just in theory, we needed a real contract. So we partnered with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bread.coop/"><u>Bread Cooperative</u></a> to help with reducing gas costs for their <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://fund.bread.coop/"><u>Solidarity Fund</u></a>. Specifically we helped with distributing yield that was based on the input of users who hold their BREAD token (~$500k TVL).</p><p>Yield distribution is what happens when a pool of funds generates returns and those returns need to be split between numerous recipients based on votes of the users supplying the principle. In practice, this means the contract needs to read every participant's vote, calculate their share, and execute the transfers — all on-chain. The more participants, the more expensive this gets.</p><p>For this transaction to work with Gas Killer while in-production, we combined <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.eigencloud.xyz/"><strong><u>EigenCloud</u></strong></a> for economic security, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://commonware.xyz/"><strong><u>Commonware</u></strong></a> for p2p signature aggregation, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://a16zcrypto.com/posts/article/building-helios-ethereum-light-client/"><strong><u>Helios</u></strong></a> for bridging securely.</p><p><strong>The Results</strong></p><p>We calculated that running the yield distribution method fully on-chain would have cost 1,937,259 gas. <strong>Running the transaction with Gas Killer cost 779,715 gas, saving 1,157,544 gas.</strong></p><p>That's a <strong>59.7% reduction</strong>. This is also a function that is called repeatedly throughout the year, so ~60% recurring savings can be major for many teams. On Gnosis (where gas costs are cheap) the dollar amount is small right now, but the same function running on Ethereum mainnet (or any high fee environment) would produce proportionally larger savings. This also excludes savings on gas for the transactions users need to make for casting a vote which is 350k for a system like this.</p><p>The live transaction is publicly verifiable on Gnosisscan<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://gnosisscan.io/tx/0xdcee5e421248e3db3f6c62418e2b4bca407b525e679bc39806bfff75f0068449"> <u>here</u></a>.</p><p><strong>The bigger picture</strong></p><p>Because yield distribution computes over an array of voters, gas cost grows linearly with every participant added. More voters, more computation, more gas. Gas Killer's approach keeps the on-chain footprint flat regardless of how much computation happens off-chain.</p><p>That has an interesting implication: there's a class of transactions that are simply too cumbersome or impossible today because they would exceed Ethereum's block gas limit. With Gas Killer offloading the computation, those transactions become executable by adding one line of code. We think that's worth exploring in depth and it's something we're planning to demonstrate as a proof of concept in the future.</p><p><strong>What's next?</strong></p><p>Our next objective is to begin the first steps for scaling: setting up the infrastructure for a persistent Gas Killer service on the Ethereum mainnet. Once it’s live, Gas Killer goes from a proven concept to something developers can integrate into a production application on Ethereum.</p><p>Expect more from the team in the coming months. In the meantime, if you’re building something brushing up against gas limits, reach out to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="mailto:contact@gaskiller.xyz">contact@gaskiller.xyz</a> for inquiries and early access.<br></p>]]></content:encoded>
            <author>gaskiller@newsletter.paragraph.com (Gas Killer Team)</author>
        </item>
        <item>
            <title><![CDATA[Halving RAILGUN Gas Costs: How Gas Killer Scales Privacy on Ethereum]]></title>
            <link>https://paragraph.com/@gaskiller/halving-railgun-gas-costs-how-gas-killer-scales-privacy-on-ethereum</link>
            <guid>UY8qIpzEnG4ivsxxB1Uv</guid>
            <pubDate>Mon, 17 Nov 2025 13:20:54 GMT</pubDate>
            <description><![CDATA[In this post we detail how Gas Killer would be able to cut gas costs in half for Railgun, one of the most popular privacy preserving solutions for Ethereum on-chain transactions using shielded pools.]]></description>
            <content:encoded><![CDATA[<p>Gas Killer is a new approach to scaling computation on Ethereum. Instead of executing expensive calculations and storage reads on-chain, Gas Killer simulates transactions off-chain and write back only the essential storage updates. The key innovation is replacing complex on-chain operations with simple aggregate signature verification. Gas Killer is able to save gas specifically on all internal reads, some external reads and computation. So any storage writes needed will still need to be paid for through gas fees and the aggregate signature verification will also incur a cost every time Gas Killer is used. The aggregate signature verification cost is the Turetzky Upper Gas Limit (TUGL) which we have estimated currently to be at around 250k gas.</p><p>Learn more about how Gas Killer works<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://paragraph.com/@gaskiller/introducing-gas-killer"> <u>here</u></a>.</p><p>This means that no matter how computationally intensive a smart contract function is, Gas Killer can theoretically reduce its gas consumption to just the cost of verifying a signature (250k gas) and updating state. For privacy protocols, which rely on heavy cryptographic operations, this represents a fundamental shift in economics where privacy can be more affordable for everyone.</p><p>In this case study, we'll break down how we calculated Gas Killer to be able to cut gas costs in half for<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://railgun.org/"> <u>RAILGUN</u></a>, one of the most popular privacy protocols on Ethereum. We specifically analyzed their<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://etherscan.io/address/0xfa7093cdd9ee6932b4eb2c9e1cde7ce00b1fa4b9"> <u>Relay contract</u></a> and its two main methods,<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.railgun.org/wiki/learn/shielding-tokens"> <u>shield and transact</u></a>.</p><div data-type="customButton" href="https://form.typeform.com/to/neupisek" class="center-contents"><a class="email-subscribe-button" href="https://form.typeform.com/to/neupisek">Fill this form to test Gas Killer</a></div><h1 id="h-what-is-railgun" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What is RAILGUN?</h1><p>RAILGUN is a privacy protocol that allows users to conduct shielded transactions on Ethereum while maintaining compatibility with some DeFi protocols. RAILGUN enables you to hide transaction details (sender, recipient, amount) by converting public funds into "shielded" funds, which are then kept private until withdrawal. To do this they use zero-knowledge cryptography, specifically zero-knowledge Succinct Non-Interactive Arguments of Knowledge (zk-SNARKs), to prove transaction validity without revealing the underlying data.</p><p>However, privacy on Ethereum comes at a steep cost. RAILGUN enables users to shield their transactions and protect their financial privacy, but the complex zero-knowledge proofs and cryptographic operations required mean users can pay a hefty fee for a single private transfer. While RAILGUN has recently experienced an increase in usage and interest with the<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cointelegraph.com/news/ethereum-devs-unveil-kohaku-wallet-privacy-roadmap"> <u>Kohaku wallet announcement</u></a> from the Ethereum Foundation, this cost barrier has prevented privacy from becoming accessible to everyday users, limiting adoption to only those who can afford the premium, making decreasing the costs paramount to adoption of privacy preserving protocols.</p><p>One of RAILGUN’s main smart contracts is its Relay contract which has two main methods:</p><p><strong>Shield</strong>: Converts public tokens into private shielded tokens by depositing them into the privacy pool using zero-knowledge proofs. This creates a commitment that hides the depositor's identity while proving they own the funds.</p><p><em>Shield method calls tend to hover around 720k to 750k gas.</em></p><p><strong>Transact</strong>: Performs private transfers, withdrawals, or interactions with DeFi protocols. This function processes the zero-knowledge proofs that verify the transaction is valid without exposing the sender, receiver, or amount.</p><p><em>Transact method calls can range from 450k to 1.15M gas.</em></p><p>Both operations involve computationally expensive cryptographic verification that consume substantial amounts of gas. There are more complexities to the system but we focused on these two methods for this analysis.</p><div data-type="subscribeButton" class="center-contents"><a class="email-subscribe-button" href="https://paragraph.com/@gaskiller/subscribe">Subscribe</a></div><h1 id="h-railgun-relay-analysis" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">RAILGUN Relay Analysis</h1><p><em>To </em>help us with understanding the savings that Gas Killer can potentially yield, we created the <em>Gas Analyzer,</em> a tool that simulates historical transactions as if they were routed through Gas Killer to identify the savings possible. By feeding actual RAILGUN transactions through the tool, we can pinpoint approximately how much gas savings Gas Killer could achieve for RAILGUN and its users in its current state.</p><p>The analyzer examines the execution trace of historical transactions, categorizing gas consumption by operation type and calculating potential savings. Gas Killer is able to abstract away all operations that are internal reads and computation as well as some external reads.</p><p>For this analysis we took 100 shield and 300 transaction method calls that were performed successfully during the month of October 2025 and calculated the potential Gas Killer gas savings using the Gas Analyzer tool. We created a dataset for each method that included the gas used for the original method call as well as savings output when run through the Gas Analyzer.</p><p>For shield method calls our results showed that Gas Killer could save 40.9% in gas savings on average and for transact method calls we found a 53.9% gas savings on average. Our analysis showed that <strong><em>an integration with Gas Killer could cut total gas costs nearly in half for users of RAILGUN!</em></strong></p><p>These savings are expected in large part because zero-knowledge proofs are still computationally expensive on Ethereum. If you’re interested in seeing whether Gas Killer can get your app or protocol some gas savings then reach out at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="mailto:contact@bread.coop"><u>contact@bread.coop</u></a> or press the button below.</p><div data-type="customButton" href="https://form.typeform.com/to/neupisek" class="center-contents"><a class="email-subscribe-button" href="https://form.typeform.com/to/neupisek">Fill this form to test Gas Killer</a></div><h1 id="h-whats-next" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What's Next?</h1><p>At the moment we’re still hard at work on getting to mainnet but it shouldn’t be too much longer. But let’s say Gas Killer was already deployed on mainnet, what would be the next steps for RAILGUN to integrate Gas Killer and pass on savings in gas to users?</p><p>First it would require potentially one of the easiest contract upgrades possible. RAILGUN developers would need to add one line of code per method which would point them to the Gas Killer network to be computed. Once that is done, then all shield and transact method calls would be sent to the network which would return the output onchain with BLS signature aggregation. And that’s really about it.</p><p>But what happens if there’s something wrong with the network?</p><p>Gas Killer is designed so that no operator of the network is able to return an incorrect or fallacious output. If they do, it is rejected via the protocol and the operator risks getting slashed. If there is a situation where the network is down or something similar where a transaction cannot be pushed through Gas Killer, the transaction defaults to run onchain, the old school way. Therefore, integrating Gas Killer introduces very few new risks for protocols and applications. Gas Killer avoids being a bottleneck while providing gas savings for users.</p><p>Privacy should not be a luxury reserved for those who can afford expensive gas fees. Cutting RAILGUN gas costs in half would make privacy within reach for more users and in turn make its privacy pool stronger. This democratization of privacy is essential for adoption.</p><p>With the Ethereum Foundation’s renewed focus on cypherpunk values and the proliferation of zero-knowledge proof implementations, Gas Killer is important infrastructure for scaling privacy.</p><div data-type="subscribeButton" class="center-contents"><a class="email-subscribe-button" href="https://paragraph.com/@gaskiller/subscribe">Subscribe</a></div><br>]]></content:encoded>
            <author>gaskiller@newsletter.paragraph.com (Gas Killer Team)</author>
            <category>railgun</category>
            <category>privacy</category>
            <category>zeroknowledge</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/5ba9d4be90b7db96c0bf301bdba018cbfa887892554ea95ec3f44aa91f6fb518.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Introducing Gas Killer]]></title>
            <link>https://paragraph.com/@gaskiller/introducing-gas-killer</link>
            <guid>t6yM8tia94nT5XneMw3b</guid>
            <pubDate>Tue, 14 Oct 2025 13:19:43 GMT</pubDate>
            <description><![CDATA[Today, we're excited to announce Gas Killer, a breakthrough approach to scaling computation on Ethereum that makes gas expensive smart contract operations dramatically cheaper with only one line of code. Gas Killer was originally developed by Ron Turetzky and the Bread Cooperative team at the ETH Denver hackathon in February 2025.]]></description>
            <content:encoded><![CDATA[<p>Today, we're excited to announce Gas Killer, a breakthrough approach to scaling computation on Ethereum that makes gas expensive smart contract operations dramatically cheaper with only one line of code. Gas Killer was originally developed by Ron Turetzky and the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://bread.coop/">Bread Cooperative</a> team at the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=LQMCS8eV3GI&amp;t=879s">ETH Denver hackathon in February 2025</a>.</p><div data-type="customButton" href="https://form.typeform.com/to/neupisek" class="center-contents"><a class="email-subscribe-button" href="https://form.typeform.com/to/neupisek">Fill this form to apply to test Gas Killer</a></div><h1 id="h-the-problem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">The Problem</h1><p>Ethereum's gas costs have created a fundamental barrier: complex computations that involve multiple storage reads, calculations, and state updates are prohibitively expensive for mass adoption.</p><p>Simple operations that are negligibly cheap on a single computer like computations on a dynamic array are too expensive to do on the Ethereum mainnet. Layer 2 EVM blockchains have helped with scaling however they have also produced a fragmented ecosystem and capital, making it difficult to onboard new users. It has also pushed value away from the Ethereum L1, the original blockchain that brought many of us together in the first place.&nbsp;&nbsp;</p><p>For many use cases, the cost of computation has made otherwise valuable applications economically unviable. This limitation in computation affects everyone. From privacy protocols requiring heavy cryptographic operations to applications needing complex on-chain logic, on-chain computation must scale in Ethereum.</p><p>This is where Gas Killer comes in.</p><h1 id="h-how-gas-killer-works" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>How Gas Killer Works</strong></h1><figure float="none" data-type="figure" class="img-center"><img src="https://storage.googleapis.com/papyrus_images/d777c360f20f866883509ad258ef47d01bacae4d0df9365b543c1465e6153eb2.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAIAAAD4YuoOAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFF0lEQVR4nH3Me0wTBxwH8Eu2v8yyLdniss1t6uI2p8a9ZPExeajl0YIFFIqjLbRSetAajkdpAaGAkyIWLWUoDylWXCuldGJpLXClPe64445rSy0UeYlubJPMEP70v0Uvq8Ys++WTX7755ff7AcjI5f/kHdYynUSvVBSx4g9tri7lVBTFnzq+c882IGbfW9WlnLT4rRajEhtr9Q5rmf3IYQSAjf0c4ScNftIwTfX4ScOMv9dP9kyiHY+WB3dtBf6n1v5yU1gnc/sy5ieAutsYBNrZWMNTylhy0cFaBRcU7FfKWLUKblnhEW19tlpxvKE6U6/JbazhtWkl+kaRtj77LMRWFLIUhSxQsL8SSqqC2EoZqxJKUspYNWUpzFuAQLsYU8T17rYinUak04jatFLtOaFOI27T5us04u62onrVyfT47XHfv8M6sJl7dFt6/PaUI1sbqnkdLYXaen5THV/flNfZIu9skes0Yp1G3NFSyLwF8PFukjDSk72TaE/AdysUtIaC1oDv1itw1KBvkmjP57ZelGrPi7TnRa0XpfRk74sd2hSgTS8mtAkf78bHuwEcNdgHmwcHLrjsOvtgM5MRdyeO9qBId6TjaM9M0DYTtIWC1kh4Pje8giSMJGF8np9dARbzTx+/DWwCgN07XtvyBvDBJuDT94HmRpCi+lDEiCIGAr9J4De9nmtezzUUMaCIAfE+688ZVx9MLofRsG90Pji2ukIxOewbfbRIEJgJn7gB9JsbIDBRnsfKy/6hIDc2O/07CEyEQHZBbqw8j5WRsjcz5SsJ/3CpPLmhVjQ11U/gJgY6fmNqqn/E0h393pZ2tbq5pCxEwdxdX5akn2xX18HWXp/PhiBGYPB2i0QYc0aSWFslgMDEUnkKBLIhkKMsPgHmHFEWn5AIY6Q5cX3mRpKy4riZpCwROG5euIfoKqBLVSX9Xfr708OWqw1N5XKDtj7s99C0jSBvAe1XKr7Y9vrBfR+yYnfs/vzN6AOfHIr6yOPpXV2jllfQZx5iyw+x8AIcXoCDMw6CskZ4vTc21hcN7fVff/ZuR6v66dM/faQj4fDOfEHSxvriBNpHkBbA7ugslqemsb/J4EbxMw5xE/YKs6IrFD+qK4XlxRmgOOEMmFxenFEs40pzWFdbKwPTTnJqkEEQ1tUV+tEiMUM7lsLI6oPJ1RVqlr67NOt5vBogJ20EdRtwe0zn1PmQLO208BgkSxOeiimWp0vFSWmcbxVQJihOvKCRT5C3hxydDlcXgln8IReDCjoIYuD+PGYZ+4VcwPBZz++/BeyoxR0cJhew+/O4zzdEBR0A7DGdVeWAYnYZxAPFHKk4qaZSXAbxyiCeLD+lDOKpFHxIfnIcGwgv46F5b2BmhEEFXYGAEyZ+jS7PHLg3aqKH5pfw5PJMtVVvC8HkHBIIOKmgCxgZMykVArEgvrYGrFAIS4p4Ij5LqRBUqUQlRVmgJLlAkpIvYlepRNUVYqutPTSP0iGYgeG2jfWFtkuV8Yd3XdHX/v142jN8k38iFirIXPvjHu1zUMFRwOEyso/uTYjbk8qJ4rKj+FlxGakH+VlHhaeO5YmS+FlxEhEnlROlUohc7j6UHJqeG4/AKfuTtVnYYVSAGfCd6xvrS4uzaJ1C3KWvebIWpmiHL4wALndfXd0ZlfK09rKKDqOBuYmZZTIwh/1r4qWM+efQl6HkkMNpdHv7YdjsvNvrcBqdd3th2AzD5jt2gxu1BeawfwCAhoujxgV/0QAAAABJRU5ErkJggg==" nextheight="506" nextwidth="1007" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Gas Killer is a shared security protocol that transforms how we think about on-chain computation. Instead of executing expensive calculations directly on Ethereum, Gas Killer uses a network of operators to simulate transactions off-chain and write back only the essential storage updates and external calls. You can think of it like an <em>optimistic coprocessor</em>.</p><p>The core innovation is simple but powerful: replace complex on-chain operations with aggregate signature verification. When a transaction comes in, Gas Killer's operators execute the logic off-chain, compute the final state changes, and return an aggregate signature proving the computation was performed correctly. The smart contract then verifies this signature and applies the storage updates and external calls—consuming a fraction of the original gas cost.</p><p>The important caveat is that Gas Killer is able to save gas specifically on all internal reads (reading from within a contract’s own storage or memory during execution), some external reads (calling another contract to fetch data) and computation (arithmetic, logic, or cryptographic operations inside the EVM). So any storage writes needed will still need to be paid for through gas fees. Additionally the aggregate signature verification will also incur a cost every time Gas Killer is used.</p><p>Taking the implications of Gas Killer adoption to its conclusion, it implies the existence of what we call the Turetzky Upper Gas Limit (TUGL), or that on any deterministic blockchain, any function with internal reads and calculations above the cost of aggregate signature verification can be reduced to just that verification cost plus necessary storage writes. In other words, no matter how complex your computation, Gas Killer can bring it down to a theoretical minimum.</p><p>If you’d like a more detailed and technical explanation of how Gas Killer works, be sure to subscribe here.</p><div data-type="subscribeButton" class="center-contents"><a class="email-subscribe-button" href="https://paragraph.com/@gaskiller/subscribe">Subscribe</a></div><p>The best part about all this is that in order to use Gas Killer for their method, developers will only need to add a single line of code. No reworking of any smart contract logic, no need to learn a new programming language, no other changes need to be made and you and your users can save on gas fees.</p><figure float="none" data-type="figure" class="img-center"><img src="https://storage.googleapis.com/papyrus_images/cfc53baa413fafee588efc84fecf563350fffdaa72cf2482c724d53d1342cd9f.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAANCAIAAABHKvtLAAAACXBIWXMAAAsTAAALEwEAmpwYAAADm0lEQVR4nI3U/0sbZxgA8FfjbE3Mt+brGeM1WXKXy/fExJgYS5RaKPtpDFoGbZWslXXC9g9sbmuN6x8wKEVqfnAdlK4MShla6Zqg+6VNvDjajmLWTZOYU2qgiUv1Lpd33LnZ2MIYfHh57nife5574XkBpHOQXj+AacBSkN3gVwrW9mIeF/OPNerA/jfQBQDpAmQ2ODQFGQrSVJ0u1nfXOTuFfGZ2jZzNL98rPL5ffJooLN8rLM8XnyaoZ4u5zNxa6i71bBEyVH238E9KA0gXIZPnC9QorvHaXl8bsF6CsAJhmVPb5N4zfG12k93JMy9X6pWV2l/P2e3fIVPk2trbCV/yyq+xJUjnAKxTv5EP5m7HEz/dvH9n5ue73z/8ZY5MJ8lHCTKVINPJDLmwJ/0oUXqRzT5ZnL/zXWL25sL8D+TSQia9QKaSZCqRSSdfW0qmHj6g8k8gWwQQbo2OfSbX2QnvsXdtIZMtjLvDJkefAe+RIVY5YhOrcaHC3K6xgGbt9evXvrlyRajCzY5wFx7AHGEjEUItASMeQPGAgQiKVLhIiUk0FtCiuxyLQVjmC1z8VI26Xf6I2R7qNPtQrKfL7Os0+/QmjkxLCBVmLkeATE9fi01OSrVWh2+AcIe7g0OYM2zx9KN4QKol2lVmkRJ7u0Bp5PxFeYe9b+A9T2AQc/bbvMcQo1epd7bKTIcVpjYl1r6XI0Di8amvL10+LDd3B0/4gkMWT78MsR7psEs0FqGC+3o7T6rBQYtuYv8PohfGBGKDyRY0EEEU86NYj0rvRIxeIxFUoy416pJqcO6IBMh0fGoiNgFadFbfgMsfwZ1hdZdTpMIlGotYQ+yTd9jAoa7Y5OS/BUbHmoSoyx/p7T/pCRzvDg6ZbCFFp/2IzibTWmWITaKxSLUEeEcXj0+Nf3UJAIlAdBQc0oM2FLTqgUAHBMgBrZ0AiD7/YhzCClfg3EefgGatWEOIlJhQhbfx5ygQG0Ab2ixCm4Rok+hoq8QIgOLq1W9v/Thz8v1THw6fP3U2evpslFvPRc+MXDgzMrpvOPrxB6eHb9+6AeEWgPDF+PiXmLXXGxh0+wc9vojTF3H3DHh6j3sb+EInzI6+GzPTEP5R2s2W2dVtNl9hcmVmtcys1hpH5805YNbp/K/bK+nq80x1bblaeFzNLlW3sjvbazuV1Uavyn+yr/KQ2eSG66C3x7hxknOwVuCvmiIfFP8Ld73kuOH/3/4GXzjXFTnX3K0AAAAASUVORK5CYII=" nextheight="437" nextwidth="1051" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>This means at least two very big things.</p><ol><li><p>Smart contract developers <strong>do not need to do nearly as much gas optimizations</strong> as what is the norm today. Instead of optimizing for gas costs, developers can now optimize for other things like security or expressiveness. This also means we can do calculations on dynamic arrays!&nbsp;</p></li><li><p>We can now run methods that go <strong>beyond the block gas limit</strong>. No matter how complex the computation, even if it’s more gas than is technically allowed in a block, Gas Killer can run it. Of course the exact extent of how far this can go needs to be tested but it should be ok if it can be run on a single computer.</p></li></ol><p>We believe Gas Killer is just the start of a Cambrian explosion of new use cases and applications that it can enable. Some of the areas where we’ve already found Gas Killer to be a potential scaler includes:</p><ul><li><p>Voting mechanisms</p></li><li><p>Privacy</p></li><li><p>ZK Proof verification&nbsp;</p></li><li><p>Deep Infrastructure&nbsp;</p></li><li><p>On-chain Art</p></li><li><p>Token Rebasing</p></li><li><p>On-chain AI</p></li><li><p>Airdrops</p></li><li><p>Slow DeFi</p></li><li><p>Gaming</p></li></ul><p>And we’re excited to see everything else that others will be able to build now with Gas Killer that we can’t even imagine at this point in time.</p><h2 id="h-ready-to-test-gas-killer" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ready to Test Gas Killer?</strong></h2><p>We're proud to share that Gas Killer v1.0 is now released and soon will be operational on testnet, Ethereum mainnet and Gnosis Chain. If your organization is dealing with high gas costs and wants to explore whether Gas Killer can optimize your smart contracts, we want to hear from you. We're actively working with early partners to test integrations and demonstrate real-world gas savings.</p><div data-type="customButton" href="https://form.typeform.com/to/neupisek" class="center-contents"><a class="email-subscribe-button" href="https://form.typeform.com/to/neupisek">Fill this form to apply to test Gas Killer</a></div><p>Whether you're building privacy infrastructure, complex financial protocols, or any application where gas costs are a barrier, Gas Killer could fundamentally change your economics. Fill out our form and our team will reach out to discuss how we can help optimize your contracts.</p><h1 id="h-whats-next" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>What's Next</strong></h1><p>Over the next three months, we'll be conducting comprehensive research on Gas Killer's impact across different use cases, measuring exact gas savings, and working with partners to prove the real-world benefits. Our goal is simple: to super scale Ethereum computation.</p><p>The future of Ethereum isn't just about scaling transactions—it's about scaling computation. Gas Killer is here to make that happen.</p><hr><p><em>Want to learn more? </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/gaskiller_"><em>Follow us on X</em></a><em> and subscribe for technical deep-dives, case studies, and updates as we continue building. Have questions? Reach out to our team through the form above.</em></p><div data-type="subscribeButton" class="center-contents"><a class="email-subscribe-button" href="https://paragraph.com/@gaskiller/subscribe">Subscribe</a></div><figure float="none" data-type="figure" class="img-center"><img src="https://storage.googleapis.com/papyrus_images/27f6ab404fbc72e81e021f840265d2b737f53dce0a268bc2266483a887fad9cd.png" blurdataurl="data:image/png;base64,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" nextheight="1200" nextwidth="960" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><br>]]></content:encoded>
            <author>gaskiller@newsletter.paragraph.com (Gas Killer Team)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/4e9d39948720077648fdbb602edf97982bcf6a2aa6897733cf612fe282cea3ae.jpg" length="0" type="image/jpg"/>
        </item>
    </channel>
</rss>