Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@rosen-bridge/address-extractor

Package Overview
Dependencies
Maintainers
0
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rosen-bridge/address-extractor

UTXO box extractor for any address or token.

  • 5.0.8
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
102
increased by126.67%
Maintainers
0
Weekly downloads
 
Created
Source

Address Extractor

Table of Contents

  • Description
  • Related Projects
  • How to Use the Address Extractor
  • Contributing
  • License

Description

Data extractors are modules that are integrated within a scanner. They drive the required information from the scanned blocks and store them in their own database. The address extractor is the simplest data extractor that tracks a specific address and stores all boxes belonging to that address. Furthermore, this extractor also can track a list of specific assets within the required address boxes. Currently, the address extractor can only be used to track the ergo addresses.

This module is used within the Scanner project. The address scanner is currently used in the Watcher service to drive the watcher fee boxes and WID box (The watcher box with a specific WID token that is used for watcher authentication).

How to Use the Address Extractor

Install

This project is written in node-js using Esnext module and typeorm database. Extractors are not standalone projects and should be used as scanner modules. You can easily install it using npm with the command:

npm install @rosen-bridge/address-extractor

Alternatively, you can build and use it manually by cloning the project and running:

npm install
npm run build

Usage

At the first step, you need to create a scanner instance; follow the steps here to create a running instance of scanner. Then you need to instantiate your address extractor and register it to your scanner:

const addressExtractor = new ErgoUTXOExtractor(
    dataSource,
    <extractor_name>,
    <network_type>,
    <address>,
    OPTIONAL<Array<asset_id>>
)
scanner.registerExtractor(addressExtractor)

Contributing

TBD

License

TBD

FAQs

Package last updated on 06 Nov 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc