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

@finstable/smart-order-router

v2.10.6

Published

Findex Smart Order Router

Downloads

5

Readme

Uniswap Smart Order Router Fork

This repository contains routing logic for the Uniswap V2 protocol.

It searches for the most efficient way to swap token A for token B, considering splitting swaps across multiple routes and gas costs.

WIP

  • [ ] Refactor code

Usage

Install and Build package

npm install
npm run build

Adding a new Chain

The main components to complete are:

  • Deploy contracts on chain, add the pools to subgraph
  • Populate chainId and addresses in src/util/chains.ts and src/util/addresses.ts
    • factory address
    • multicall address
    • tokens address (Native Token)
  • Populate pair in src/util/pair.ts
    • INIT_CODE_HASH
    • Fee
    • LP Token
  • Populate v2 providers in src/providers/v2/subgraph-provider and src/providers/v2/static-subgraph-provider
  • Populate token providers in src/providers/caching-token-provider and src/providers/token-provider.ts
  • Populate gas constants in src/routers/alpha-router/gas-models/*
  • Populate src/routers/alpha-router/*

Contracts

  • Deploy UniswapInterfaceMulticall to get multicall address at swap-router-contracts
    • also check INIT_CODE_HASH from contracts/libraries/UniswapV2Library.sol
  • Deploy SwapRouter02 to get swap router at swap-router-contracts
    • don't forget to approve token to SwapRouter02 before send a transaction

CLI

The package can be run as a CLI for testing purposes.

First create a .env file in the root of the project and configure:

# JSON_RPC_PROVIDER_[CHAIN]=
JSON_RPC_PROVIDER_BITKUBT=https://rpc.bitkubchain.io
JSON_RPC_PROVIDER_BITKUB_TESTNET=https://rpc-testnet.bitkubchain.io

SUBGRAPH_URL_BITKUB=
SUBGRAPH_URL_BITKUB_TESTNET=

Examples

Some examples to use for manual CLI testing.

Mainnet

./bin/cli quote --tokenIn 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 --tokenOut 0x1f9840a85d5af5bf1d1762f925bdaddc4201f984 --amount 1000 --exactIn --recipient 0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B --protocols v2

Bitkub Testnet

./bin/cli quote --tokenIn 0xbfadd0f9c1617d4b17ba1516017b19ad2c162f1d --tokenOut 0x33ddd91c7a7fa078b4fcdfd3cd0c9aca95496b0a --amount 1 --exactIn --minSplits 1 --protocols v2 --router alpha --chainId 25925

Testing

Unit Tests

First make sure you have run npm install and npm run build.

npm run test

Integration Tests

Make sure the .env file is configured to connect to mainnet and other chains. See the CLI section below for more details.


npm run integ-test

Tenderly Simulations

Quotes can be simulated on Tenderly

Ensure you set the following environment variables:


process.env.TENDERLY_BASE_URL!,
process.env.TENDERLY_USER!,
process.env.TENDERLY_PROJECT!,
process.env.TENDERLY_ACCESS_KEY!,

Troubleshooting

ProviderGasLimit errors

The package sends many large multicall requests to nodes. You must ensure that your node provider's eth_call gas limit is high enough to succesfully process the RPC calls.

By default each eth_call will consume up to:

  • 132,000,000 gas on Optimism
  • 120,000,000 gas on Arbitrum
  • 50,000,000 gas on Celo
  • 150,000,000 gas on every other network (Mainnet, Goerli, etc.)

These parameters should work on Infura and Alchemy by default.

This total amount of gas each eth_call can consume is equal to the multicallChunk config value multiplied by the gasLimitPerCall config value. If you are using a node provider with a lower gas limit per eth_call you will need to override the default V3QuoteProvider with an instance that lowers the multicallChunk and gasLimitPerCall parameters such that the multiplication is below your node providers limit. Lowering these values will cause each multicall to consume less gas. See here for examples of how to set these values. Note some providers have different limits per chain.

If you are running your own node, we recommend you configure start your node with a higher gas limit per call. For example, on Geth you can use the command line argument --rpc.gascap 150000000 to raise the limit to 150m, which is enough to run the default configuration of this package.

If you are using Hardhat mainnet forking, you should add blockGasLimit: 150_000_000 to your Hardhat config to use the default package configuration.