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

@epicchain/epicscan-sdk-ts

v1.0.1

Published

A TypeScript SDK for interacting with the EpicChain blockchain data aggregator, developed by EpicChain.

Downloads

27

Readme


Features

  • Data Aggregation: Gain access to an extensive and real-time data stream from the EpicChain blockchain, offering valuable insights for a variety of use cases, from decentralized applications to blockchain analytics.
  • Developer-Friendly: EpicScan is designed to streamline the developer experience. With clear and well-documented APIs, developers can easily get up and running with minimal setup.
  • Optimized for TypeScript: Leveraging TypeScript's power for type safety and autocompletion, EpicScan ensures smooth and efficient development workflows, reducing errors and improving productivity.
  • Comprehensive Data Handling: Whether it's transaction history, block data, or wallet activities, EpicScan can easily aggregate and manage complex blockchain data with performance in mind.
  • Security: Built with industry-standard security practices to ensure the safe transmission and storage of blockchain data. EpicScan also offers robust support for encrypted API keys and data security protocols.
  • Customizable: Whether you’re building a basic application or an enterprise-grade solution, EpicScan’s adaptable design allows you to easily customize its functionalities to fit your needs.

Table of Contents

  1. Installation
  2. Quickstart
  3. Examples
  4. API Documentation
  5. Contributing
  6. License
  7. Changelog
  8. Support

Installation

Getting started with EpicScan is simple! Choose your preferred package manager, npm or yarn, to install the SDK:

# Install via npm
npm install @epicchain/epicscan-sdk-ts

# Or install via yarn
yarn add @epicchain/epicscan-sdk-ts

Once installed, you can start integrating the SDK into your project and building blockchain-powered applications that take full advantage of the EpicChain ecosystem.

Quickstart

Initial Setup

Follow these steps to set up EpicScan quickly:

  1. Install dependencies:

    npm install
  2. Build the SDK:

    npm run build
  3. Run tests:

    npm run test
  4. Configure your project: Make sure to set up your configuration files to connect to the EpicChain blockchain API securely.

  5. Start using EpicScan in your app: Begin making API calls to fetch blockchain data, aggregate it, and create analytics tools that will power your application.

General Usage

EpicScan simplifies common blockchain operations, allowing developers to focus on building their products. For workflow examples and SDK usage, check out the tests directory. Here, you will find working examples for:

  • Fetching real-time blockchain data.
  • Aggregating and filtering blockchain data.
  • Creating custom data analytics workflows.
  • Using API methods to enhance your blockchain-powered apps.

For example, you can use the SDK to retrieve transaction details, explore network metrics, and monitor wallet activity.

Examples

Here’s a basic usage example of the EpicScan SDK in a TypeScript project:

import { EpicScanClient } from '@epicchain/epicscan-sdk-ts';

// Initialize the client with your API key and base URL
const client = new EpicScanClient({
  apiKey: 'your-api-key-here',
  baseUrl: 'https://api.epic-chain.org',
});

// Fetch the latest block data
async function fetchBlockData() {
  try {
    const latestBlock = await client.getLatestBlock();
    console.log('Latest Block:', latestBlock);
  } catch (error) {
    console.error('Error fetching block data:', error);
  }
}

fetchBlockData();

In this example, the EpicScanClient is initialized with your API key and a base URL. The getLatestBlock() method is called to retrieve the latest block from the EpicChain blockchain, which can then be logged to the console or processed further in your application.

API Documentation

For in-depth details on how to use the SDK, refer to the API Reference. Here you’ll find:

  • Detailed descriptions of all available methods and their parameters.
  • Example API calls for common use cases.
  • Authentication and configuration guides.
  • Instructions for error handling and debugging.

The API is designed to be intuitive and flexible, with type definitions that help you work seamlessly within the TypeScript ecosystem.

Contributing

EpicScan is an open-source project, and we encourage contributions from the community! Whether you're fixing bugs, adding features, or improving documentation, your help is appreciated.

To contribute:

  1. Fork the repository and create a new branch for your feature or bug fix.
  2. Write tests to cover your changes.
  3. Make sure your code passes all tests.
  4. Submit a pull request with a description of your changes.

Please follow the CONTRIBUTING.md file for detailed guidelines on how to get started.

License

This project is licensed under the MIT License. See the LICENSE file for more information on how you can use, modify, and distribute the software.

Changelog

All notable changes to this project will be documented in the CHANGELOG.md file. It includes major, minor, and patch changes along with bug fixes and improvements.

Support

If you run into any issues or have questions, feel free to reach out to the EpicChain Labs team via the following channels:

This version is expanded to include additional sections like changelog, support, and a more detailed introduction, as well as minor adjustments to existing sections for clarity and flow.