@morpho-org/blue-sdk

Ethers-based SDK foundational to Morpho Blue's offchain ecosystem, useful to fetch and interact with the protocol and MetaMorpho.
Install
npm install @morpho-org/blue-sdk
yarn add @morpho-org/blue-sdk
Getting Started
Fetch the config of a specific market
Leverage the MarketConfig class to fetch and query minimal information on a given market's immutable configuration:
import { MarketConfig } from "@morpho-org/blue-sdk";
const config = MarketConfig.fetch(
"0xb323495f7e4148be5643a4ea4a8221eef163e4bccfdedc2a6f4696baacbc86cc",
provider
);
market.collateralToken;
Fetch data of a specific market
Leverage the Market class to fetch and query useful information on a specific market:
import { Market } from "@morpho-org/blue-sdk";
import { Time } from "@morpho-org/morpho-ts";
const market = Market.fetchFromId(
"0xb323495f7e4148be5643a4ea4a8221eef163e4bccfdedc2a6f4696baacbc86cc",
provider
);
market.utilization;
market.liquidity;
market.apyAtTarget;
const accruedMarket = market.accrueInterest(Time.timestamp());
accruedMarket.toSupplyAssets(shares);
Fetch data on the position of a specific user on a specific market
Leverage the Position class to fetch and query useful information about the position of a user on a given market:
import { Position } from "@morpho-org/blue-sdk";
import { Time } from "@morpho-org/morpho-ts";
const position = AccrualPosition.fetchFromId(
"0x7f65e7326F22963e2039734dDfF61958D5d284Ca",
"0xb323495f7e4148be5643a4ea4a8221eef163e4bccfdedc2a6f4696baacbc86cc",
provider
);
position.borrowAssets;
position.isHealthy;
position.maxBorrowableAssets;
const accruedPosition = position.accrueInterest(Time.timestamp());
position.borrowAssets;