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

@owlprotocol/chains

v3.1.2

Published

Owl Protocol chain configs. Extends `viem` chain definitions with additional data and adds new chains.

Downloads

8

Readme

Chains

Owl Protocol chain configs. Extends viem chain definitions with additional data and adds new chains.

Getting Chain Info

There are multiple sources to find interesting chain integrations:

Bridging Funds to Chains

Beyond just getting RPC info, getting funds onto the chain is also a requirement for launch. Once bridged, the only requirement is funding the utility account (varies between staging/production environments) which then manages distributing funds to necessary accounts (bundler, paymaster). You can use the following resources to get funds onto a chain:

Native Bridging

These bridges are chain-specific. Often Third-party bridges can be faster and cheaper but for testnets these are often the only option.

Third-Party Bridging

Firebase Chains Upload

To avoid the need to re-deploy services (eg. API, Dashboard), chain configurations are stored on Firebase as a way to dynamically update the data. Chains configs are stored under network for public configurations and networkPrivate for private server-side only configs that contain moderately sensitive information such as RPC API keys.

To upload chain data run the uploadNetworks script with the correct environment config.

npm run scripts:uploadNetworks # Local Firebase, usually not needed
NODE_ENV=staging npm run scripts:uploadNetworks # Staging
NODE_ENV=production npm run scripts:uploadNetworks # 🚨 Production 🚨

Chain Integration Checklist

Initial Research

  • Is it EVM equivalent?
  • Is it a particular rollup stack (OPStack, Arbitrum Orbit, ZKStack)?
  • Is Arachnid Deployer (0x4e59b44847b379578588920ca78fbf26c0b4956c) deployed? If not, is EIP-155 (replay protection) enforced (must NOT be to allow deployment)?
  • Is ERC4337 v0.7 deployed (0x0000000071727De22E5E9d8BAf0edAc6f37da032) ? This is more for informational purposes.
  • Is there a viem config?
  • Is there a private RPC provider (dRPC, Ankr, others)?

Configuration

  • Add chain config info
  • If OPStack chain, add parent chain config
  • Fund utility account or utility account on parent chain (if OPStack)

Upload & QA

  • Upload network config as "enabled" on staging Firebase
  • Test out NFT deploy by running dashboard locally but with staging env (see README on dashboard)
  • Upload network config as "enabled" on production Firebase
  • Test out NFT deploy on live production dashboard