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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@silo-finance/adapter-common

v0.0.1

Published

Abstract adapter interfaces for Silo Finance SDKs

Readme

@silo-finance/adapter-common

Abstract adapter interfaces for Silo Finance SDKs. This package defines the contract that blockchain adapter implementations must fulfill.

Purpose

This package provides TypeScript interfaces that enable:

  • Pluggable architecture: Swap between viem, ethers.js, or custom implementations
  • Type safety: Consistent types across all adapters
  • Future extensibility: Easy to add new blockchain libraries

Available Adapters

| Package | Status | Description | |---------|--------|-------------| | @silo-finance/adapter-viem | Available | Viem implementation | | @silo-finance/adapter-ethers | Coming soon | Ethers.js implementation |

Installation

pnpm add @silo-finance/adapter-common

Note: Most users should install @silo-finance/adapter-viem or @silo-finance/silo-sdk directly instead of this package.

Interfaces

Core Adapter Interfaces

import type {
  ReadAdapter,
  WriteAdapter,
} from "@silo-finance/adapter-common";

ReadAdapter - Read-only blockchain operations:

  • readContract() - Read from a contract
  • multicall() - Batch multiple contract reads
  • getChainId() - Get current chain ID
  • getBalance() - Get native token balance
  • getBlockNumber() - Get current block number

WriteAdapter - Write operations (extends ReadAdapter):

  • writeContract() - Send a transaction
  • getAddress() - Get connected wallet address
  • signMessage() - Sign a message
  • waitForTransaction() - Wait for tx confirmation

Silo-Specific Interfaces

import type {
  MarketReadOperations,
  PositionReadOperations,
  TokenReadOperations,
  SiloWriteOperations,
  SiloReadAdapter,
  SiloWriteAdapter,
} from "@silo-finance/adapter-common";

MarketReadOperations:

  • fetchMarket() - Fetch market data
  • fetchSilo() - Fetch silo data
  • fetchBorrowAPR() / fetchDepositAPR() - Fetch APRs
  • fetchUtilization() - Fetch utilization rate
  • fetchLiquidity() - Fetch available liquidity

PositionReadOperations:

  • fetchPosition() - Fetch user position
  • fetchUserLtv() - Fetch user LTV
  • fetchIsSolvent() - Check solvency

TokenReadOperations:

  • fetchTokenBalance() - Get token balance
  • fetchAllowance() - Get token allowance
  • fetchTokenMetadata() - Get token info

SiloWriteOperations:

  • deposit() / withdraw() - Deposit/withdraw collateral
  • borrow() / repay() - Borrow/repay debt
  • approve() - Approve token spending

Combined Interfaces

// Complete read adapter
interface SiloReadAdapter extends
  ReadAdapter,
  MarketReadOperations,
  PositionReadOperations,
  TokenReadOperations {
  readonly chainId: number;
}

// Full adapter with write capabilities
interface SiloWriteAdapter extends
  SiloReadAdapter,
  WriteAdapter,
  SiloWriteOperations {}

Parameter Types

import type {
  PositionData,
  TokenMetadata,
  DepositParams,
  WithdrawParams,
  BorrowParams,
  RepayParams,
  ApproveParams,
} from "@silo-finance/adapter-common";

Creating a Custom Adapter

To create a custom adapter (e.g., for ethers.js):

import type { SiloWriteAdapter, CreateWriteAdapterFn } from "@silo-finance/adapter-common";

const createEthersAdapter: CreateWriteAdapterFn<EthersConfig> = (config) => {
  return {
    chainId: config.chainId,

    async readContract(params) {
      // Implement using ethers.js
    },

    async writeContract(params) {
      // Implement using ethers.js
    },

    // ... implement all other methods
  };
};

License

MIT