RE: RE: Steemit API Question
You are viewing a single comment's thread from:

RE: Steemit API Question

Words
17
Reading
1 min
Listen
Play
7y

I created a repo for u to test this out https://github.com/superoo7/steem-stream-example

import { Client } from "dsteem";
const client = new Client("https://api.steemit.com");

const stream = client.blockchain.getBlockStream();

stream.on("data", operation => {
  console.log(operation);
});

It's streaming straight from the blockchain

source: https://developers.steem.io/tutorials-javascript/stream_blockchain_transactions

@superoo7: I created a repo | Ecency