Socket
Book a DemoInstallSign in
Socket

@morpho-dev/router

Package Overview
Dependencies
Maintainers
4
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@morpho-dev/router

Router package for Morpho protocol

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
768
1.72%
Maintainers
4
Weekly downloads
 
Created
Source

Router Client

A TypeScript client to interact with the Morpho Router.

Installation

pnpm add @morpho-dev/router

Usage

Running the Local Server

import { Router } from "@morpho-dev/router";

// Start a local router server on port 8081
await Router.serve({ port: 8081 });
// Server will be available at http://localhost:8081

Basic Setup

import { Router } from "@morpho-dev/router";

// Create a router client
const router = Router.connect();

// With custom URL
const router = Router.connect({ url: "https://router.morpho.dev" });

// Connect to local server
const router = Router.connect({ url: "http://localhost:8081" });

Get Offers

// Get all offers
const result = await router.get({});

// Get buy offers on Ethereum mainnet
const result = await router.get({ side: "buy", chains: [1], limit: 10 });

// Get offers with specific filters
const result = await router.get({
  side: "sell",
  chains: [1, 137],
  loanTokens: ["0x1234567890123456789012345678901234567890"],
  minAmount: 1000n,
  maxAmount: 10000n,
  minRate: 500000000000000000n,
  maxRate: 1500000000000000000n,
  sortBy: "rate",
  sortOrder: "asc"
});

Match Offers

// Match offers for buy on Ethereum mainnet
const result = await router.match({ side: "buy", chainId: 1 });

// Match with specific requirements
const result = await router.match({
  side: "sell",
  chainId: 1,
  rate: 1000000000000000000n,
  loanToken: "0x1234567890123456789012345678901234567890",
  collaterals: [
    {
      asset: "0x1234567890123456789012345678901234567890",
      oracle: "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
      lltv: 800000000000000000n
    }
  ],
  minMaturity: 1700000000,
  maxMaturity: 1800000000
});

FAQs

Package last updated on 09 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.