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

@nradko/metric-omm-sdk-v1

v0.4.5

Published

Metric AMM SDK — v1 contracts (SimpleRouter, SwapQuoter, LiquidityAdder, extensions, add/removeLiquidity)

Readme

@nradko/metric-omm-sdk-v1

TypeScript SDK for v1 Metric OMM contracts: SimpleRouter, SwapQuoter, LiquidityAdder, pool addLiquidity / removeLiquidity, extensions, and factory-backed reads.

Pinned metric-periphery d210a84daf694c52a591d371ceb9b82cece0f79f (core via periphery lib/metric-core).

Installation

npm install @nradko/metric-omm-sdk-v1 viem

Or via the combined package:

import { v1 } from "@nradko/metric-omm-sdk";

Ethereum, Base, Robinhood, and HyperEVM addresses

Protocol contracts use the same addresses on Ethereum, Base, Robinhood (4663), and HyperEVM (CREATE2). Wrapped native differs per chain.

| Contract | Address | | -------- | ------- | | MetricOmmPoolFactory | 0x622911384e7973439b8be305f5e3Fc3c5736EDe4 | | MetricOmmPoolDeployer | 0x47D5C9df5e3419217471A9D12D932Dbed7B0B7f1 | | MetricOmmPoolLiquidityAdder | 0x9aA238a8319D20F6D8C3bcca45CA2F5e27C1e00f | | MetricOmmPoolDataProvider | 0x19f85Eb0a450b429C9a700bE867CF284e7e685eC | | MetricOmmSimpleRouter | 0x292DecA668291262341f92B840830f78dB35b6E5 | | MetricOmmSwapQuoter | 0xaB6C48D981B943F62A23bb4EB2db125182E6753c | | DepositAllowlistExtension | 0x2229c48864d9aC877d23591fE99C3718Ef992F66 | | SwapAllowlistExtension | 0xAC6BA2d77279a7B26db57Be6f8bF234932547eEd | | OracleValueStopLossExtension | 0x7D5D12aa06A025Fa37410F522F166070bA998e11 | | PriceVelocityGuardExtension | 0x225c402B55c63d081821aA9260179C0d35e25091 | | WETH (Ethereum) | 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 | | WETH (Base) | 0x4200000000000000000000000000000000000006 | | WETH (Robinhood) | 0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73 | | WHYPE (HyperEVM) | 0x5555555555555555555555555555555555555555 |

MetricOmmPoolDataProvider is the deployed lens: pool reads (slot0, binStates, positionBinShares, …). Pass addresses.dataProvider to read helpers and liquidity builders (dataProviderAddress param). There is no separate StateView deployment — use dataProvider for all lens reads.

import { getAddressesOrThrow, ChainId, isChainSupported } from "@nradko/metric-omm-sdk-v1";

const a = getAddressesOrThrow(ChainId.ETHEREUM);
// getAddressesOrThrow(ChainId.BASE) — same protocol addresses as Ethereum
// getAddressesOrThrow(ChainId.ROBINHOOD) / ChainId.HYPEREVM — same protocol addresses
// isChainSupported(ChainId.ARBITRUM) === false — use DeployedChainId / getSupportedChainIds()

ChainId lists future chain IDs for typing; Ethereum, Base, Robinhood, and HyperEVM have entries in ADDRESSES for this release.

Swaps (SimpleRouter)

Single hop

import {
  buildExactInputSingleParams,
  getAddressesOrThrow,
  ChainId,
} from "@nradko/metric-omm-sdk-v1";
import { MetricOmmSimpleRouterAbi } from "@nradko/metric-omm-sdk-v1/abis";

const addresses = getAddressesOrThrow(ChainId.ETHEREUM);

const params = await buildExactInputSingleParams({
  publicClient,
  pool: poolAddress,
  tokenIn,
  tokenOut,
  recipient: account,
  amountIn: 1_000_000_000_000_000_000n,
  slippagePercent: 0.5,
  deadline: BigInt(Math.floor(Date.now() / 1000) + 1200),
  quoterAddress, // pass deployed MetricOmmSwapQuoter address
});

await walletClient.writeContract({
  address: addresses.simpleRouter,
  abi: MetricOmmSimpleRouterAbi,
  functionName: "exactInputSingle",
  args: [params],
  account,
});

Multihop

import { buildExactInputParams, encodeExactInputCalldata } from "@nradko/metric-omm-sdk-v1";

const pathParams = await buildExactInputParams({
  publicClient,
  tokenIn,
  tokenOut,
  pools: [poolA, poolB],
  recipient: account,
  amountIn,
  slippagePercent: 0.5,
  deadline,
  quoterAddress,
});

await walletClient.sendTransaction({
  to: addresses.simpleRouter,
  data: encodeExactInputCalldata(pathParams),
  account,
});

Approve the SimpleRouter for input tokens (ERC-20 path). Swap allowlist extensions gate the router contract address, not the end-user EOA.

Native ETH

Exact input + native payment: use prepareExactInputSingleSupportingNativePaymentCalldata / prepareExactInputSupportingNativePaymentCalldata (multicall + refundETH). Set msg.value on the transaction yourself.

Exact output + native payment: use prepareExactOutputSingleSupportingNativePaymentCalldata / prepareExactOutputSupportingNativePaymentCalldata (multicall + refundETH). Set msg.value on the transaction yourself.

ETH output (unwrap): use prepareExactInputSingleAndUnwrapCalldata / prepareExactInputAndUnwrapCalldata (or exact-output variants).

import {
  buildExactInputSingleParams,
  prepareExactInputSingleSupportingNativePaymentCalldata,
  prepareExactInputSingleAndUnwrapCalldata,
} from "@nradko/metric-omm-sdk-v1";

// ETH → ERC-20: build params with tokenIn = addresses.wrappedNative, then:
const params = await buildExactInputSingleParams({ /* … */, quoterAddress });
const swapData = prepareExactInputSingleSupportingNativePaymentCalldata(params);
await walletClient.sendTransaction({ to: addresses.simpleRouter, data: swapData, value: params.amountIn, account });

// ERC-20 → ETH: tokenOut = wrappedNative, then unwrap via multicall:
const unwrapData = prepareExactInputSingleAndUnwrapCalldata(params, addresses.simpleRouter);
await walletClient.sendTransaction({ to: addresses.simpleRouter, data: unwrapData, account });

Exact input + native payment: pass any msg.valueamountIn; the router uses native ETH first and pulls the rest from wrappedNative (approve the router). Unused native ETH is refunded.

Exact output + native payment: pass any msg.value; if it is less than the amountIn calculated during the swap, the remainder is charged from WETH (reverts if insufficient). Unused native ETH is refunded.

Route API → swap

When routing comes from POST /public/v1/evm/:chain_id/route, convert the JSON response into swap params without re-quoting. Request maxRoutes: 1 for single-path execution (split routes are rejected by the SDK mappers).

import {
  prepareExactInputFromRoute,
  prepareExactOutputFromRoute,
  encodeExactInputSingleCalldata,
  encodeExactInputCalldata,
  encodeExactOutputSingleCalldata,
  encodeExactOutputCalldata,
} from "@nradko/metric-omm-sdk-v1";

const route = await fetch(`${routeApiBase}/public/v1/evm/${chainId}/route`, {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    tokenIn,
    tokenOut,
    amountIn: amountIn.toString(),
    maxRoutes: 1,
  }),
}).then((r) => r.json());

const prepared =
  route.tradeType === "exact_out"
    ? await prepareExactOutputFromRoute({
        publicClient,
        route,
        recipient: account,
        deadline: BigInt(Math.floor(Date.now() / 1000) + 1200),
        slippagePercent: 0.5,
      })
    : await prepareExactInputFromRoute({
        publicClient,
        route,
        recipient: account,
        deadline: BigInt(Math.floor(Date.now() / 1000) + 1200),
        slippagePercent: 0.5,
      });

const data =
  prepared.kind === "single"
    ? route.tradeType === "exact_out"
      ? encodeExactOutputSingleCalldata(prepared.params)
      : encodeExactInputSingleCalldata(prepared.params)
    : route.tradeType === "exact_out"
      ? encodeExactOutputCalldata(prepared.params)
      : encodeExactInputCalldata(prepared.params);

await walletClient.sendTransaction({ to: addresses.simpleRouter, data, account });

Pair with prepareExactInputSingleSupportingNativePaymentCalldata and set msg.value when tokenIn is native ETH (route tokenIn should be wrapped native).

Quotes (SwapQuoter)

Live quotes simulate the quoter contract (eth_call). Pass quoterAddress with the deployed MetricOmmSwapQuoter address.

import { quoteLiveExactInSingle, quoteLiveExactIn } from "@nradko/metric-omm-sdk-v1";

const single = await quoteLiveExactInSingle({
  publicClient,
  pool: poolAddress,
  tokenIn,
  tokenOut,
  recipient: account,
  amountIn,
  quoterAddress,
});

const path = await quoteLiveExactIn({
  publicClient,
  tokenIn,
  tokenOut,
  pools: [poolA, poolB],
  recipient: account,
  amountIn,
  quoterAddress,
});

Hypothetical quotes: quoteHypotheticalExactInputSingle, quoteHypotheticalExactInput, and exact-output variants with per-pool bid/ask prices.

Liquidity (LiquidityAdder)

  • Add (EOA): approve LiquidityAdder (addresses.liquidityAdder), then addLiquidityExactShares / addLiquidityWeighted on the adder (see encodeAddLiquidity* helpers).
  • Remove: removeLiquidity on the pool — build deltas with buildModifyLiquidityArgsForRemoval / encodeRemoveLiquidityCalldata. There is no native-ETH remove path.

Native ETH (add only)

Same multicall pattern as SimpleRouter: prepareAddLiquidity*SupportingNativePaymentCalldata wraps [addLiquidity…, refundETH]. Set msg.value for the WETH pool leg; unused ETH is refunded.

import {
  prepareAddLiquidityExactSharesSelfSupportingNativePaymentCalldata,
  getAddressesOrThrow,
  ChainId,
} from "@nradko/metric-omm-sdk-v1";

const { liquidityAdder } = getAddressesOrThrow(ChainId.ETHEREUM);

const data = prepareAddLiquidityExactSharesSelfSupportingNativePaymentCalldata({
  pool,
  salt,
  deltas,
  maxAmountToken0,
  maxAmountToken1,
});

await walletClient.sendTransaction({
  to: liquidityAdder,
  data,
  value: ethAmount,
  account,
});

Weighted adds: prepareAddLiquidityWeightedSelfSupportingNativePaymentCalldata / prepareAddLiquidityWeightedWithOwnerSupportingNativePaymentCalldata.

Extensions

Pools support up to seven extensions (periphery contracts) configured at creation via extensions, extensionOrders, and extensionInitData. Swap and liquidity encoders forward optional extensionData (defaults to 0x).

See extension admin encoders (encodeSetAllowedToDepositCalldata, encodeSetAllowedToSwapCalldata, …) and HOW_TO.md for pool-creation examples.

Oracle registration

For providers-oracle price feeds, register pools before attributed reads:

import { getPoolOracleStatus, registerPool } from "@nradko/metric-omm-sdk-v1";

const status = await getPoolOracleStatus(publicClient, oracleAddress, feedId, poolAddress);
await registerPool({ publicClient, walletClient, oracleAddress, feedId, pool: poolAddress, factory, account });

Pool reads

import { getPoolImmutables, getPoolState, getSlot0, getAddressesOrThrow, ChainId } from "@nradko/metric-omm-sdk-v1";

const addresses = getAddressesOrThrow(ChainId.ETHEREUM);
const imm = await getPoolImmutables(publicClient, addresses.factory, poolAddress);
const state = await getPoolState(publicClient, addresses.dataProvider, poolAddress);
const slot0 = await getSlot0(publicClient, addresses.dataProvider, poolAddress);

ABIs

import {
  MetricOmmPoolAbi,
  MetricOmmPoolDataProviderAbi,
  MetricOmmSimpleRouterAbi,
  MetricOmmSwapQuoterAbi,
  MetricOmmPoolLiquidityAdderAbi,
  DepositAllowlistExtensionAbi,
  SwapAllowlistExtensionAbi,
  PriceVelocityGuardExtensionAbi,
  OracleValueStopLossExtensionAbi,
  OracleProviderAbi,
} from "@nradko/metric-omm-sdk-v1/abis";

Regenerate from pinned contracts:

npm run setup:contracts    # init submodules, hardhat build, sync ABIs

Development

npm run build              # tsc only (default prepare)
npm run setup:contracts    # refresh ABIs from pinned git deps (maintainers)
npm test                   # Hardhat tests (needs matching @metric/* in node_modules)
npm run verify             # lint, format, typecheck, test — publish gate
cd v1
npm ci
npm run setup:contracts
npm test