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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@slicekit/wallet-primitives

v0.1.1

Published

Protocol primitives supporting @slicekit/wallet and Slice servers: policies, chain manifests, hashes, Kernel v4 encoding, and execution admission

Readme

@slicekit/wallet-primitives

The protocol layer of Slice Wallet: the bytes both sides of the protocol must agree on, packaged runtime-neutral so browsers, workers, and servers verify exactly what the wallet signs.

This package is not primarily designed for public consumption. It is published as a separate package because @slicekit/wallet and Slice's server-side verifiers (the API and the credential registry) need a single source of truth for policy encoding and execution admission. Applications integrating Slice Wallet should depend on @slicekit/wallet, which builds on these primitives.

Installation

npm install @slicekit/wallet-primitives viem

What it owns

  • Chain manifests and execution-safety policy, generated from canonical deployment facts.
  • Wallet policy descriptors: rule templates, serialization, canonical hashes, and permission ids.
  • App-permission records, root and permission authorization verification, and factory-args validation.
  • Execution admission: user-operation policy, bundler and ERC-7677 paymaster request parsing, call classification, and allowance math.
  • The complete Kernel v4 encoding: ABIs and constants, deployment profiles, factory and ERC-1967 proxy address derivation, install-package, nonce and permission encoding, install state, and the InstallPackages typed data — with no ZeroDev SDKs.

Entry Points

  • @slicekit/wallet-primitives: chain manifests, policy builders, account prediction, permission encoding, and recovery init config.
  • @slicekit/wallet-primitives/execution: execution admission — user-operation policy, bundler and paymaster request parsing, and checkout call classification.
  • @slicekit/wallet-primitives/kernel: the Kernel v4 encoding and deployment profiles.
  • @slicekit/wallet-primitives/policy: wallet policy descriptor parsing, serialization, and hashes.
  • @slicekit/wallet-primitives/server: server-side verification — app permissions, root and permission authorization, and factory validation.

Usage

import { getSliceWalletChainPolicy } from "@slicekit/wallet-primitives"

// The generated per-chain manifest: contract deployments, default transports,
// execution-safety envelope, and funding policy.
const manifest = getSliceWalletChainPolicy(8453)
manifest.contracts.kernelFactory.address

Server-side verification uses the same modules the wallet signs with — for example verifySliceWalletPermissionAuthorization and assertSliceWalletFactoryArgs from @slicekit/wallet-primitives/server recompute the exact Kernel v4 enable bytes and factory args a client submitted.

Constraints

Runtime-neutral by construction: no React, DOM, wagmi, or vendor SDK imports, enforced by the package's import-boundary check.