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

cosmes

v0.0.68

Published

<!-- omit in toc --> # CosmES

Downloads

1,161

Readme

CosmES

npm version

A tree-shakeable, framework agnostic, pure ESM alternative of CosmJS and Cosmos Kit (generate bundles up to 10x smaller than Cosmos Kit).

Features

[!WARNING]
This is still a work in progress. Before v1 is reached, the API is not guaranteed to be semver compatible - patch releases may break everything. See the changelog for notable changes.

  • Fully tree-shakeable: import and bundle only the modules you need
  • Framework agnostic: integrate with any web framework (React, Vue, Svelte, Solid, etc.)
  • Lightweight and minimal: 146 KB gzipped to connect a React app to Keplr via browser extension or WalletConnect, 10x smaller than Cosmos Kit (see benchmarks)
  • Uses modern web APIs: no dependencies on Node.js and minimal dependencies on third-party libraries where possible
  • Supports modern bundlers: works with Vite, SWC, Rollup, etc.
  • Fully typed: written in TypeScript and ships with type definitions

Installing

npm install cosmes

pnpm add cosmes

yarn add cosmes

Using with TypeScript

This library only exports ES modules. To ensure imports from this library work correctly, the following configuration is required in tsconfig.json:

{
  "compilerOptions": {
    "moduleResolution": "bundler", // recommended if using modern bundlers
    // or "node16" 
    // or "nodenext"
    // but NOT "node"
  }
}

Using with Vite

If you are using Vite, the following configuration is required in vite.config.ts:

export default defineConfig({
  define: {
    global: "window",
  },
});

This can be removed once support for WalletConnect v1 is no longer required.

Using Station wallet

The Station wallet currently relies on WalletConnect v1. If you want to import and use StationController, a polyfill for Buffer is required:

// First, install the buffer package
npm install buffer

// Then, create a new file 'polyfill.ts'
import { Buffer } from "buffer";
(window as any).Buffer = Buffer;

// Finally, import the above file in your entry file
import "./polyfill";

See examples/solid-vite for a working example.

This can be removed once support for WalletConnect v1 is no longer required.

Examples

Docs do not exist yet - see the examples folder for various working examples:

  1. How do I connect to third party wallets via browser extension or WalletConnect? How do I create, sign, and broadcast transactions?
  2. How do I programmatically sign and broadcast transactions without relying on a third party wallet?
  3. How do I verify signatures signed using the signArbitrary function?
  4. How do I batch queries to the blockchain?

Modules

This package is split into multiple subdirectories, with each subdirectory having their own set of functionalities. The root directory does not contain any exports, and all exports are exported from the subdirectories. Thus, imports must be done by referencing the subdirectories (ie. import { ... } from "cosmes/client").

cosmes/client

This directory contains models and helper functions to interact with Cosmos SDK via the CometBFT RPC.

cosmes/codec

This directory contains various encoding and decoding functions that relies solely on Web APIs and has no dependencies on Node.js. For modern browsers and Node v16+, this should work out of the box.

cosmes/protobufs

This directory contains the auto-generated code for various Cosmos SDK based protobufs. See scripts/gen-protobufs.mjs for the script that generates the code.

cosmes/registry

This directory contains various APIs, data, and types needed for wallet interactions (ie. Keplr). Some types are auto-generated, see scripts/gen-registry.mjs for the script that generates the types.

cosmes/wallet

This directory is a Cosmos Kit alternative to interact with wallets across all Cosmos SDK based blockchains. See examples/solid-vite for a working example.

Wallets supported:

Features:

  • Supports both browser extension (desktop) and WalletConnect (mobile)
  • Unified interface for connecting, signing, broadcasting, and event handling
  • Signing of arbitrary messages (for wallets that support it)
  • Simultaneous connections to multiple WalletConnect wallets

Benchmarks

See the benchmarks folder, where the JS bundle size of CosmES is compared against Cosmos Kit. The following are adhered to:

  • Apps should only contain the minimal functionality of connecting to Osmosis via Keplr using both the browser extension and WalletConnect wallets
  • Apps should be built using React 18 (as Cosmos Kit has a hard dependency) and Vite
  • Use the bundle size as reported by Vite after running the vite build command (including the size of all other dependencies like React)

Results

| Package | Minified | Gzipped | |---------------|----------|---------| | CosmES | 537 KB | 147 KB | | Cosmos Kit v1 | 6004 KB | 1392 KB | | Cosmos Kit v2 | 6273 KB | 1453 KB |

See More