Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@soulsolidity/registry

Package Overview
Dependencies
Maintainers
3
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@soulsolidity/registry

Registry for zap entries

latest
npmnpm
Version
0.0.1-test.19
Version published
Maintainers
3
Created
Source

Zap Registry

A registry system for managing and generating metadata for DeFi zap entries.

Overview

This project provides a system to manage zap entries for various DeFi protocols across multiple blockchains. It includes:

  • Type definitions for zap entries
  • Manual entry system for defining zap entries
  • Data retrieval system for fetching on-chain data
  • Build pipeline for generating final JSON files

Project Structure

src/
├── zap/
│   ├── builders/            # Builder classes for generating metadata
│   ├── config/              # Configuration files for chains and projects
│   ├── data-retrievers/     # Data retriever classes for fetching on-chain data
│   ├── manual-entries/      # Manual entries for various chains and protocols
│   │   ├── arbitrum/
│   │   ├── avalanche/
│   │   ├── base/
│   │   ├── bnb/
│   │   ├── linea/
│   │   └── polygon/
│   ├── types/               # TypeScript type definitions
│   ├── utils/               # Utility functions
│   └── build.ts             # Main build script

Getting Started

Prerequisites

  • Node.js (v16 or later)
  • npm or yarn

Installation

# Clone the repository
git clone <repository-url>

# Install dependencies
npm install

Usage

# Build the TypeScript code
npm run build

# Generate JSON files
npm run generate

# Or run both in sequence
npm start

# For development (using ts-node)
npm run dev

Adding New Entries

To add new manual entries:

  • Navigate to the appropriate chain directory under src/zap/manual-entries/
  • Create or modify files for the specific protocol and entry type
  • Follow the existing patterns for defining entries

Building Custom Data Retrievers

To create a new data retriever:

  • Create a new file in src/zap/data-retrievers/
  • Implement the DataRetriever interface
  • Add your data retriever to the appropriate builder

License

MIT

Keywords

zap

FAQs

Package last updated on 24 Apr 2025

Did you know?

Socket

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.

Install

Related posts