Skip to content
This repository was archived by the owner on Mar 24, 2026. It is now read-only.

3dkrender/SteemCatcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SteemCatcher

SteemCatcher connects to the SteemCatcher server to catch the actions that occur on the Steem blockchain.

Installation

To test this toy clone repository and then:

npm install
node index.js

Actions to listening

 - post
 - comment
 - comment_options
 - delete_comment
 - vote

 - transfer
 - transfer_to_vesting

 
 - custom_json

 - claim_account
 - created_claimed_account
 - account_update
 - claim_reward_balance
 - delegate_vesting_shares

 - feed_publish

 - limit_order_create
 - limit_order_cancel

Examples

To catch votes:

ioSteem.on("vote", data => {
    console.log(data);
});

result:

voter: data.voter
author: data.author
permlink: data.permlink
weight: data.weight

To catch post (no comments):

ioSteem.on("post", data => {
    console.log(data);
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors