npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@daimo/bulk

v0.3.1

Published

Make compressed 4337 bundles swole again. Save calldata, save cost, ship cheap 4337 on L2.

Downloads

1,187

Readme

Bulk

Make compressed 4337 bundles swole again.

Bulk makes 4337 on L2 cheaper. Bundlers can pass compressed bundles to BundleBulker, which decompresses them before calling the 4337 EntryPoint contract. This reduces L1 data usage, the dominant cost of rollup transactions.

For example, here's a single USDC transfer executed as as a one-op bundle.

Before: 1.6kb

After: 353b

Details

Decompression happens via arbitrary contracts that implement IInflator. This lets bundlers or individual applications can define their own templates or decompression algorithms. Inflators can be stateful for greater savings.

A bundler supports compression as follows:

  • client submits compressed op
  • bundler inflates, validates as usual
  • bundler submits compressed

Compression is independent from the security of the contract account being called. The same userops go to the EntryPoint either way, validation and execution identical--this is just an optimization to use less calldata.

Bulk is intended for use directly by bundlers, eg with API keys--so griefing can be mitigated offchain. The userop mempool remains important for censorship resistance, and apps can continue to submit uncompressed ops to mempool as a fallback if a direct bundler API is unavailable.

Deployment Details

The deployment address of BundleBulker is 0x000000000091A1F34f51CE866bEd8983dB51a97E. (deployed using create2 with salt 7cf7a0f0060e1519d0ee3e12e0ee57890f69d7aa693404299a3a779e90cd7921)

Mainnets

|Chain Name|Deployment| |----------|----------| |Ethereum|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Base|0x000000000091A1F34f51CE866bEd8983dB51a97E| |OP Mainnet|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Polygon|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Gnosis|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Arbitrum One|0x000000000091A1F34f51CE866bEd8983dB51a97E| |BSC |0x000000000091A1F34f51CE866bEd8983dB51a97E| |opBNB|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Avalanche|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Linea Mainnet|0x000000000091A1F34f51CE866bEd8983dB51a97E| |lyra|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Scroll|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Klaytn|0x000000000091A1F34f51CE866bEd8983dB51a97E| |DFK Chain|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Celo|0x000000000091A1F34f51CE866bEd8983dB51a97E|

Testnets

|Chain Name|Deployment| |----------|----------| |Sepolia|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Goerli|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Base Sepolia|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Base Goerli|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Optimism Goerli|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Polygon Mumbai|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Arbitrum Sepolia|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Arbitrum Goerli|0x000000000091A1F34f51CE866bEd8983dB51a97E| |BSC Testnet|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Avalanche Fuji|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Scroll Sepolia|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Gnosis Chiado|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Linea Goerli Testnet|0x000000000091A1F34f51CE866bEd8983dB51a97E| |Celo Alfajores|0x000000000091A1F34f51CE866bEd8983dB51a97E|

Quick start

Proof of concept. In active development.

git clone [email protected]:daimo-eth/bulk --recurse-submodules
foundryup
forge test