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

@astrolabs/swapper

v1.1.0

Published

Generic Bridge+Swap aggregator for compatible EVMs

Downloads

122

Readme

Swapper is Astrolab's liquidity meta-aggregator, powering all of its monochain and cross-chain swaps. It blends liquidity and bridge aggregators. The DEX meta-aggregation was inspired by LlamaSwap's work available here, supercharged with cross-chain capacity.

⚠️ Disclaimer

Astrolab DAO and its core team members will not be held accountable for losses related to the deployment and use of this repository's codebase. As per the licence states, the code is provided as-is and is under active development. The codebase, documentation, and other aspects of the project may be subject to changes and improvements over time.

Supported Aggregators

Don't hesitate to reach out or submit pull requests with missing aggregators adapters.

Bridges+Liquidity

Liquidity

To be implemented

Features

Swapper SDK

The Swapper SDK facilitates TransactionRequests and raw CallData construction for every aggregator, in a unified way. The querying uses a generic ISwapperParams object as seen here.

The SDK can be used off-chain via ethers or viem, the generated callData can be used with any provider implementation or directly on-chain by passing the callData to the Swapper.sol contract on the desired chain.

ethers examples

import { AggregatorId, ISwapperParams } from "@astrolab/swapper/types";
import { getCallData, getTransactionRequest, swapperParamsToString } from "@astrolab/swapper";
import { TransactionRequest } from "ethers";

const _1inchSwap: ISwapperParams = {
  aggregatorId: AggregatorId.ONE_INCH,
  inputChainId: 250, // fantom->fantom
  input: addresses[250].tokens.LZUSDC,
  output: addresses[250].tokens.AXLUSDC,
  amountWei: 100 * 1e6, // $100
  payer: `0xPaYeR`
};

const lifiSwap: ISwapperParams = {
  aggregatorId: AggregatorId.LIFI,
  inputChainId: 250, // from fantom
  input: addresses[250].tokens.LZUSDC, // USDC-e
  outputChainId: 10 // to optimism
  output: addresses[42161].tokens.LZUSDC, // USDC-e
  amountWei: 100 * 1e6, // $100
  payer: `0xPaYeR`
};

// fetch the transaction request object from both aggregators
// NB: this transaction request object can then be used with ethers.sendTransaction
// eg. ethers.sendTransaction(tr)
async function getTransactionRequests(): TransactionRequest[] {
  return await Promise.all([_1inchSwap, lifiSwap]
    .map(s => getTransactionRequest(s)));
}

// fetch only the callData from both aggregators
// NB: this callData should be passed to the smart contract .call() directly
// this assumes that the caller already knows the aggregator contract (available in tr.to)
async function getTransactionRequests(): TransactionRequest[] {
  return await Promise.all([_1inchSwap, lifiSwap]
    .map(s => getCallData(s)));
}

Aggregator Clients

Swapper Contract

The Swapper contract is a proxy that allows generic callData to be executed on the requested aggregator's contract, available from transactionRequest.to. It adds a layer of security between the client who swap and the target aggregation router. A Swapper instance can:

  • whitelist callers
  • whitelist input tokens
  • whitelist output tokens
  • whitelist router

It also enforces slippage/price impact protection, making the use of external callData inherently safer.

Usage

To start using Swapper, you can clone the repository and install the necessary dependencies.

git clone https://github.com/AstrolabFinance/swapper
cd swapper

Installation

yarn install

Unit Testing (client only)

This only tests the client functions (typescript SDK).

yarn test-unit

Integration Testing

This tests the client functions (typescript SDK) + the contract execution by forking with hardhat and deploying Swapper.sol locally, then passing callData to it.

yarn test-integration

Pruning

Cleans hardhat and typescript compilation caches, artifacts and dist folders.

yarn clean

Contributing

Contributions are welcome! Feel free to open an issue or create a pull request if you have any improvements or suggestions.