
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@morpho-dev/router
Advanced tools
A TypeScript client to interact with the Morpho Router.
pnpm add @morpho-dev/router
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
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 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 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
Router package for Morpho protocol
The npm package @morpho-dev/router receives a total of 768 weekly downloads. As such, @morpho-dev/router popularity was classified as not popular.
We found that @morpho-dev/router demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.