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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@kumbaya_xyz/v3-periphery

v1.0.5

Published

Peripheral smart contracts for interacting with Kumbaya V3

Downloads

1,146

Readme

Kumbaya Logo

Kumbaya V3 Periphery

Fork of Uniswap V3 Periphery v1.0.0 - the audited version.

For the lower level core contracts, see the v3-core repository.

Changes from Uniswap V3 Periphery

Pool Init Code Hash

The POOL_INIT_CODE_HASH in contracts/libraries/PoolAddress.sol has been updated to match the Kumbaya v3-core bytecode:

0x851d77a45b8b9a205fb9f44cb829cceba85282714d2603d601840640628a3da7

This hash differs from the original Uniswap V3 hash due to the modified feeProtocol validation range in v3-core. See the v3-core README for details.

Added Contracts

  • Multicall2 (contracts/lens/Multicall2.sol) - MakerDAO's Multicall2 contract for batching read calls. Compiled with solc 0.7.6, optimizer enabled with 200 runs.

Compiler Settings

All contracts compiled with Solidity 0.7.6 and bytecodeHash: none metadata setting, matching Uniswap's original deployment configuration.

Local deployment

In order to deploy this code to a local testnet, you should install the npm package @kumbaya_xyz/v3-periphery and import bytecode imported from artifacts located at @kumbaya_xyz/v3-periphery/artifacts/contracts/*/*.json. For example:

import {
  abi as SWAP_ROUTER_ABI,
  bytecode as SWAP_ROUTER_BYTECODE,
} from '@kumbaya_xyz/v3-periphery/artifacts/contracts/SwapRouter.sol/SwapRouter.json'

// deploy the bytecode

This will ensure that you are testing against the same bytecode that is deployed to mainnet and public testnets, and all Uniswap code will correctly interoperate with your local deployment.

Using solidity interfaces

The Uniswap v3 periphery interfaces are available for import into solidity smart contracts via the npm artifact @kumbaya_xyz/v3-periphery, e.g.:

import '@kumbaya_xyz/v3-periphery/contracts/interfaces/ISwapRouter.sol';

contract MyContract {
  ISwapRouter router;

  function doSomethingWithSwapRouter() {
    // router.exactInput(...);
  }
}