
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@wavesenterprise/waves-node-listener-service
Advanced tools
Waves Node blockchain events listener and parser
$ npm i @wavesenterprise/waves-node-listener-service
or
$ yarn add @wavesenterprise/waves-node-listener-service
// app.module.ts
import { WavesNodeListenerModule } from '@wavesenterprise/we-node-grpc-api-nest'
import { AppService } from './app.service'
@Module({
imports: [
WavesNodeListenerModule.forRoot({
blockchainStreamAddress: 'nodes-testnet.wavesnodes.com:6881',
reconnectDelay: 5000,
reconnectOnClose: true,
reconnectOnError: false,
// Dead connection checks time since last received message
deadConnectionCheckInterval: 5000,
deadConnectionTimeout: 60000,
reconnectOnDeadConnection: true,
})
],
providers: [AppService],
})
export class AppModule {
}
// app.service.ts
import { WavesNodeListenerService } from '@wavesenterprise/waves-node-listener-service'
import { Injectable, OnApplicationBootstrap } from '@nestjs/common'
@Injectable()
export class AppService implements OnApplicationBootstrap {
constructor(
private readonly nodeListenerService: WavesNodeListenerService,
) {
}
async onApplicationBootstrap() {
this.nodeListenerService.on('block', (data) => {
this.nodeListenerService.setLastProcessedBlock(data.height)
})
this.nodeListenerService.on('microblock', (data) => {
// process microblock (optional)
})
this.nodeListenerService.on('rollbackCompleted', (data) => {
// delete rollbacked data
})
await this.nodeListenerService.connect()
}
}
Also emits raw stream events:
close
error
pause
resume
data
If deadConnectionTimeout and deadConnectionCheckInterval props are set, emits dead event
FAQs
Waves Node blockchain events listener and parser
We found that @wavesenterprise/waves-node-listener-service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?

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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.