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

Latest commit

 

History

History
60 lines (47 loc) · 845 Bytes

File metadata and controls

60 lines (47 loc) · 845 Bytes

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);
});