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

@openscan/adapters-langchain

v0.0.3

Published

LangChain tool wrappers for on-chain blockchain analysis. Exposes [OpenScan](https://github.com/aspect-build/openscan) algorithms and utilities as structured LangChain tools that any LLM agent can call.

Downloads

445

Readme

@openscan/adapters-langchain

LangChain tool wrappers for on-chain blockchain analysis. Exposes OpenScan algorithms and utilities as structured LangChain tools that any LLM agent can call.

Each tool wraps @openscan/algorithms or @openscan/utils directly — no CLI layer in between. Tools accept typed inputs (validated with Zod), call on-chain RPC endpoints, and return JSON strings ready for LLM consumption.

Installation

pnpm add @openscan/adapters-langchain @openscan/network-connectors

Peer dependencies (install if not already present):

pnpm add @langchain/core zod

Quick Start

Bind all tools to a LangChain agent:

import { ChatOpenAI } from "@langchain/openai";
import { AgentExecutor, createToolCallingAgent } from "langchain/agents";
import { ChatPromptTemplate } from "@langchain/core/prompts";
import {
  getTransactionHistory,
  getGasPriceHistory,
  getAddressType,
  getTokenBalanceHistory,
  getTransactionAnalysis,
} from "@openscan/adapters-langchain";

const tools = [
  getTransactionHistory,
  getGasPriceHistory,
  getAddressType,
  getTokenBalanceHistory,
  getTransactionAnalysis,
];

const llm = new ChatOpenAI({ model: "gpt-4o" });

const prompt = ChatPromptTemplate.fromMessages([
  ["system", "You are a blockchain analyst. Use the provided tools to answer questions about on-chain data."],
  ["human", "{input}"],
  ["placeholder", "{agent_scratchpad}"],
]);

const agent = createToolCallingAgent({ llm, tools, prompt });
const executor = new AgentExecutor({ agent, tools });

const result = await executor.invoke({
  input: "What type of address is 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum?",
});

console.log(result.output);

Available Tools

| Export | LangChain Tool Name | Description | |--------|-------------------|-------------| | getTransactionHistory | get_transaction_history | Get on-chain transaction history by scanning Transfer event logs | | getGasPriceHistory | get_gas_price_history | Get gas price history by sampling blocks exponentially | | getAddressType | detect_address_type | Detect whether an address is an EOA, contract, or proxy | | getTokenBalanceHistory | get_token_balance_history | Track ERC-20 token balance changes via Transfer event logs | | getTransactionAnalysis | get_transaction_analysis | Analyze a single confirmed tx: call tree, contracts, optional state diff / raw trace |

RPC Resolution

All tools accept optional rpcUrls and alchemyKey inputs. When neither is provided, RPC endpoints are auto-resolved from @openscan/metadata:

Priority:
1. Alchemy premium endpoint (if alchemyKey provided)
2. Public endpoints from @openscan/metadata
3. Error if no endpoints found

To use Alchemy premium RPCs, pass alchemyKey or set the ALCHEMY_API_KEY environment variable at the application level.

Supported Alchemy Chains

| Chain ID | Network | |----------|---------| | 1 | Ethereum Mainnet | | 10 | Optimism | | 56 | BNB Chain | | 97 | BNB Testnet | | 137 | Polygon | | 8453 | Base | | 42161 | Arbitrum | | 43114 | Avalanche | | 11155111 | Sepolia Testnet |

Public RPC auto-resolution (without Alchemy) works for any chain present in @openscan/metadata.

Tool Usage Examples

Transaction History

import { getTransactionHistory } from "@openscan/adapters-langchain";

const result = await getTransactionHistory.invoke({
  address: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  chainId: 1,
  pageSize: 25,
});

console.log(result); // JSON string of transaction history

Gas Price History

import { getGasPriceHistory } from "@openscan/adapters-langchain";

const result = await getGasPriceHistory.invoke({
  chainId: 137,
  targetBlock: 50000000,
});

console.log(result); // JSON string of gas price samples

Address Type Detection

import { getAddressType } from "@openscan/adapters-langchain";

const result = await getAddressType.invoke({
  address: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
  chainId: 1,
});

console.log(result); // e.g. { "type": "contract", "isProxy": true, ... }

Token Balance History

import { getTokenBalanceHistory } from "@openscan/adapters-langchain";

const result = await getTokenBalanceHistory.invoke({
  address: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  tokenAddress: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", // USDC
  chainId: 1,
});

console.log(result); // JSON string of balance changes over time

Transaction Analysis

import { getTransactionAnalysis } from "@openscan/adapters-langchain";

const result = await getTransactionAnalysis.invoke({
  txHash: "0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060",
  chainId: 1,
  alchemyKey: process.env.ALCHEMY_API_KEY, // recommended — trace RPC needed
});

console.log(result); // JSON string: call tree + addresses + contracts (+ optional prestate/raw trace)

Note: analyzeTx requires a trace-enabled RPC (debug_traceTransaction). Public RPCs frequently lack this; passing alchemyKey or explicit trace-enabled rpcUrls is strongly recommended.

Using with Alchemy

Pass alchemyKey to any tool for premium RPC access:

const result = await getTransactionHistory.invoke({
  address: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  chainId: 1,
  alchemyKey: "your-alchemy-api-key",
});

Using with Custom RPC URLs

const result = await getGasPriceHistory.invoke({
  chainId: 1,
  rpcUrls: ["https://my-private-rpc.example.com"],
});

Input Schemas

Common Fields (all tools)

| Field | Type | Required | Description | |-------|------|----------|-------------| | chainId | number | Yes | EVM chain ID (1 = Ethereum, 137 = Polygon, etc.) | | rpcUrls | string[] | No | RPC endpoint URLs; auto-resolved from metadata if omitted | | alchemyKey | string | No | Alchemy API key for premium RPC access |

Tool-Specific Fields

| Tool | Field | Type | Required | Description | |------|-------|------|----------|-------------| | getTransactionHistory | address | string | Yes | Blockchain address to look up | | getTransactionHistory | pageSize | number | No | Max results per page (default: 50) | | getGasPriceHistory | targetBlock | number | No | Block to sample back to (~1000 blocks default) | | getAddressType | address | string | Yes | Address to classify | | getTokenBalanceHistory | address | string | Yes | Holder address to track | | getTokenBalanceHistory | tokenAddress | string | Yes | ERC-20 token contract address | | getTransactionAnalysis | txHash | string | Yes | 0x-prefixed transaction hash | | getTransactionAnalysis | includePrestate | boolean | No | Include pre/post state storage diff (default: false) | | getTransactionAnalysis | includeRawTrace | boolean | No | Include raw opcode-level trace (default: false) | | getTransactionAnalysis | skipCallTree | boolean | No | Skip call tree fetch (default: false) | | getTransactionAnalysis | skipContracts | boolean | No | Skip contract metadata enrichment (default: false) | | getTransactionAnalysis | etherscanKey | string | No | Etherscan API key (defaults to ETHERSCAN_API_KEY env var) |

Architecture

Your LangChain Agent
  └─ @openscan/adapters-langchain (this package)
       ├─ @openscan/algorithms    ← direct algorithm execution
       ├─ @openscan/utils         ← address validation, type detection
       ├─ @openscan/metadata      ← auto-resolve public RPC endpoints
       └─ @openscan/network-connectors  ← RPC client creation (peer dep)

All data is fetched from on-chain RPC calls. No indexing APIs or centralized services are used.

License

MIT