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

@peeramid-labs/eds

v2.1.0

Published

Generalized factory implementation for reproducible ethereum smart contract instantiation

Downloads

16

Readme

Ethereum Distribution System

The Ethereum Distribution System (EDS) is an open and decentralized, fully on-chain distribution (factory) system for Ethereum smart contracts. Using EDS enables developers to publish and reuse each other's code in a trustless manner. Built-in system for semantic versioning, managing versions and combining into higher level distributions allows developers to avoid using upgradability patterns, instead relying on version control.
System provisions for generic interfaces for distributors, developers and installers, each with their own responsibilities and constraints.

Use cases

  • Factory Framework: Instead of writing own factory, just write a distribution and register it
  • Ship faster: Reduce the number of needed deployment artifacts to ship your project. Re-using other packages instead!
  • Security oracles: Disconnect vulnerable code from your users in O(1)
  • Semantic versioning with EIP712: Instead of having to figure out "what to write in EIP712 constructor" just use the built in version control system!
  • User owned upgradability: Get more user trust by allowing them to decide when to upgrade
  • Improve user UX: Configure trust within instance or distribution, so that your users do not need to set allowances and issue permits anymore!
  • On-chain github: Refer bytecode instead of location using (ERC7744)
  • Better Monetize your apps and services: As your application becomes distributed, and wrapped, you may directly build in payment systems and subscription models on-chain!

Overview

This system acts as a generalized and efficient factory which is designed in one-fits-all principle. It achieves this by splitting EDS users in following groups:

  • Developers: Create a distributable (stateless) software that can be instantiated. It can use already deployed contracts and functionality!
  • Distributors: Security firms and traditional distributor agencies. Ensure that distributions they list are secure (think of this as a runtime checked audit attestation), trusted and act in their user interest!
  • Smart accounts: Use Distributor software to plug it into your smart account!

IN the background, there is extensive use of proxies to map instances, that are proxies, to a right functionality. Instances are also treated as middlewares that are hooked to the distributor with use of ERC7746, in such a way that the caller cannot reach the functionality without first checking with the distributor. The distributor in turn, by default, checks if the instance is a valid distribution.
If the developer wants to manage multiple versions of the same resource, they can create a Repository contract to add their own index on top of global.

Project status: Alpha

We are open for discussion, whether this should be managed trough a governing body as a DAO.

If you want to be up to date, express your opinion or not miss a thing, please

  • subscribe to our twitter: https://x.com/peeramid_labs
  • join our discord: https://discord.gg/EddGgGUuWC

Key Features

  • Verifiable: Stateless distribution components are easily verifiable by anyone through their bytecode.
  • Permission-less: Anyone can deploy distribution components without requiring permissions.
  • Inclusive: Can accommodate already deployed on-chain functionality.
  • Versionable: Semver based versioning can be applied to manage resources.
  • Plug-n-Play: Installation procedures,easily customizable for any target platform are provisioned.
  • Secure: Isolated contract sets and baked-in runtime checks enable trust chain between developers, distributors and users.
  • Efficient: Extensive reuse of the same bytecode reduces gas costs, increasing efficiency across the industry.

image

Key Components

System components are broken down into four domains: Permission-less, Developer, Distributor and User. Each domain has its own set of contracts and interfaces, which are designed to work together to provide a seamless experience for developers and users.

Permission-less Domain

CodeIndex (ERC-7744)

A stateful, permissionless contract allowing anyone to register associations between bytecode and its on-chain location. Any smart contract may be indexed by CodeIndex based on its bytecode. Proposed CREATE2 implementation with deterministic address : 0xc0D31d398c5ee86C5f8a23FA253ee8a586dA03Ce

Distribution

Interface for contracts that allow specific mechanics of instantiation of referred bytecode identifiers in the CodeIndex. It may be using different methods for instantiation, yet it is ultimately referred by it's bytecode hash and instantiation methods kept non-parametric, to promote hardcoding of instantiation logic by the distribution creator, ultimately making any distribution a unique part of code ecosystem. It also allows distribution creators to associate own metadata with the distribution, such as URIs defined in ERC-190 or ERC-2678

Developer Domain

Repositories

Repositories are interfaces provided for stateful, permissioned contracts allowing developers to manage resources and versions. Such repositories may return any kind of source code reference, including system-internal used ones, like IDistribution. It allows developers to increment versions according to Semver as well as implement version requirements lookup for the clients.

Non-Stateless Distributions

Any implementation of Distribution interface mentioned in the Permission-less Domain, that is stateful is considered as a Developer Domain component. It is possible in principle, yet will be used only for specific use-cases, where stateful distribution is required and will require distribution users to use direct location addressing, effectively excluding it from the global index system.

Distributor Domain

Distributor

Stateful, permissioned contract interface for managing distributions. It allows distributors, who may act as trusted source for many, to have their own index of trusted distributions coupled to any, parametric, initialization logic that they might need. This is a first point on instantiation chain that allows to configure distribution after it's been instantiated.

Version Distributor

Same as Distributor, but with additional functionality to manage versions of distributions. It allows to manage multiple versions of the same distribution and to provide version requirements lookup for the clients. Distributor may change the version of the repository, effectively disabling, in one go, every outdated version instances from operating in the system.

User Domain

Installer

Stateful, permissioned contracts for managing permissions and accessing targets from multiple distributors. Allows end-users to manage trusted sources for their installations.

Getting Started

Installation

pnpm install
pnpm test # Run tests

Examples

Examples of distributions usage can be found in src/distributions directory. Examples of repositories usage can be found in src/repositories directory. Examples of distributors usage can be found in src/distributors directory.

Larger example of usage can be found in Rankify project repo

Support || Contribute

If you want to support this project, please click "sponsor" button, or see our gitcoin page: https://explorer.gitcoin.co/#/projects/0xd4427d0ffc2b8f58c4ef28410deed1158a7d5e405d6cd5bedb0487441d2ba452

You can reach out us on Discord: https://discord.gg/EddGgGUuWC