Skip to content

Latest commit

 

History

History
62 lines (39 loc) · 1.72 KB

File metadata and controls

62 lines (39 loc) · 1.72 KB

Transformer

This package provides an example implementation of the transformer layer for Chain Indexer Framework. This layer consumes events from the Kafka topic produced by the Producer and performs filtering based on NFT token transfers. It then re-produces the filtered events to specific Kafka topics corresponding to each event.

How to Use

Note: Make sure you are inside the example/nft_balancer/transformer folder.

1. Set Configuration

Begin by configuring your environment variables. Copy the .env.example file and rename it to .env. Then, provide appropriate values for the keys mentioned in the .env file.

2. Install Packages

Install the required packages by running the following command:

npm i

3. Build the Package

Build the package by executing the following command:

npm run build

4. Run the Package

Run the producer service using the following command:

npm run start

Running the Example Using Source Code

This section guides you on running the example code using the current source code, typically for debugging purposes.

1. Build & Link the Source Code

Run the following command at the root of this project:

npm run build:link

If you encounter permission issues, run the command using sudo.

2. Link the Library

  • Navigate to the examples/nft_balancer/transformer folder:

    cd examples/nft_balancer/transformer
    
  • Execute the link command:

    npm run link:lib
    

This documentation clarifies the setup and usage of the Transformer package in the Chain Indexer Framework project, making it easier for developers to integrate the package into their applications or utilize it for debugging and testing purposes.