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

@web3-set-theory/schema

v0.1.0-beta.1

Published

Web3 Set Theory schema, types and interfaces.

Downloads

3

Readme

Sets Schema

The @metameta/metasets-schema package includes a JSON schema for V1 sets, and TypeScript utilities for working with sets.

💾 Installation

npm install @web3-set-theory/schema
yarn add @web3-set-theory/schema
git clone https://github.com/web3-set-theory/schema

💻 Developer Experience

The module is built using TSDX zero-config CLI which includes:

  • Typescript
  • Rollup
  • Jest
  • Prettier
  • ESLint

Validating Sets

JSON Schema $id

The JSON schema ID is https://metametaprotocol.com/set.smartcontract.schema.json

Validating Sets

This package does not include code for token list validation. You can easily do this by including a library such as ajv to perform the validation against the JSON schema. The schema is exported from the package for ease of use.

import Ajv from 'ajv';
import { smartcontract } from '@metameta-protocol/metasets-schema'

const ajv = new Ajv({ allErrors: true });
const validate = ajv.compile(smartcontract);

const response = await fetch('https://metameta.com/guide/defi-kickstart.json')
const listData = await response.json()

const valid = validate(listData)

if (!valid) {
  // oh no!
}

Creating Sets

Manual

The best way to manually author token lists is to use an editor that supports JSON schema validation. Most popular code editors do, such as IntelliJ or VSCode. Other editors can be found here.

In order for your set to be able to be used, it must pass all JSON schema validation specific to that type.

Semantic versioning

Sets include a version field, which follows semantic versioning.

Each set will have specific rules defining versioning but generally a good rule of thumb is...

  • Increment major version when an Entity is removed
  • Increment minor version when an Entity is added
  • Increment patch version when an Entity already on the list have minor details changed that don't effect the set outcome.