The Producer package exemplifies the producer layer of Chain Indexer Framework. It fetches blockchain data from Ethereum and produces it to a Kafka topic.
Note: Make sure you are inside the example/matic_transfer/producer folder.
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.
Install the required packages by running the following command:
npm i
Build the package by executing the following command:
npm run build
Run the producer service using the following command:
npm run start
This section guides you on running the example code using the current source code, typically for debugging purposes.
Run the following command at the root of this project:
npm run build:link
If you encounter permission issues, run the command using sudo
.
-
Navigate to the examples/matic_transfer/producer folder:
cd examples/matic_transfer/producer
-
Execute the link command:
npm run link:lib
This documentation clarifies the setup and usage of the Producer 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.