#### Repository https://github.com/Vheissu/meseeker-node-tutorial #### What Will I Learn? - How to install Redis (Step 1) - How to install Node.js and Node Package Manager (Step 2) - How to install Ruby via RVM (Step 3) - How to install the Meeseeker package (Step 4) - How to run the Meeseeker package (Step 5) - How to subscribe and listen to Redis channels and messages in Node.js (Step 6) #### Requirements - A machine running Linux. If you're using Windows, you will need to install and configure the Windows Subsystem for Linux (WSL). An official guide for configuring and installing WSL can be found [here](https://docs.microsoft.com/en-us/windows/wsl/install-win10) on the Microsoft Docs website. I recommend installing the user-friendly Debian based Ubuntu distribution - A machine with at least 8gb of ram, if you're installing on a server for dApp usage, you will want 8gb, preferrably 16gb if you want to increase the Redis keys size - A decent understanding of Javascript and concepts - (preferably) experience working with Node.js previously - A code editor. I recommend [Visual Studio Code](https://code.visualstudio.com/) by Microsoft. A free and fully-featured extensible coding environment #### Difficulty Intermediate #### Tutorial Contents While we will aim to cover quite a few topics as detailed in the, "What Will I Learn" section above, this tutorial will help you get comfortable with the Meeseeker package by @inertia and subscribe to Redis events and messages. Please keep in mind this tutorial will be done from within Ubuntu Linux. Commands may differ for other operating systems, especially if you're a macOS user, you will most likely be using the Homebrew package manager to install packages. Please refer to the website for the packages and tools installed in this tutorial for macOS. ## Step 1: Installing Redis Before installing new packages, we need to call the Apt update command to update the Apt package cache: ```shell sudo apt update ```  **Then to install Redis all we need to do is run:** ```shell sudo apt install redis-server ```  Because I am using Windows Subsystem for Linux (WSL) I had to run the following command to ensure Redis server started: ```shell sudo service redis-server start ```  ------ ## Step 2: Install Node.js We are going to be installing the LTS release, which is the most stable and recommended version of Node.js to install. It has the best compatibility with packages within the Node ecosystem. At the time of writing, the latest LTS is 10.15.3. Please check the Node.js [official website](https://nodejs.org/en/) to check the latest Node.js LTS version before installing. As per the officially provided instructions [here](https://github.com/nodesource/distributions/blob/master/README.md) we are going to be installing Node.js for version 10.x. ```shell curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - ```  Once this command completes, we can then install Node.js using the Apt package manager: ```shell sudo apt-get install -y nodejs ```  This command will install both Node.js as well as the Node Package Manager (npm). In my instance, I already had an older version of Node.js and Npm installed, so it updated Node and removed the older version of Npm before installing the newer version. If you have not installed Node before, nothing changes. Once this command has finished, you can confirm that Node.js has properly installed by running the following command: ```shell node -v ```  Similarly, you can also confirm Node Package Manager (npm) also installed by running: ```shell npm -v ```  ------ ## Step 3: Install Ruby via Ruby Version Manager (RVM) ### Install RVM We are going to be following the officially provided installation instructions from the [rvm.io website](https://rvm.io/). Please refer to the official website to confirm the following instructions are still up-to-date and relevant, specifically, the GPG keys.  For brevity, we are going to be following along with the official installation instructions here in this tutorial, but please confirm they're up-to-date from the above link before continuing. The first installation instruction is to add the GPG key to your machine. When I first ran this command, I ran encountered an error because the `gnupg2` package was not installed by default in Ubuntu (as can be seen below).  As you can see, Ubuntu told me the package was missing and how to install it. So, if you get the same missing package message, run the provided command like below.  **I then run the GPG command again from the rvm.io website:**  It is worth noting in my particular instance, I had to run this command twice for some reason because of an RPC error (as the screenshot above highlights). So, if you encounter any issues, try running it a second time.  And now finally, we install Ruby using RVM: ```shell \curl -sSL https://get.rvm.io | bash -s stable ```  Pay close attention to the line towards the bottom of the completed installation command about needing to start RVM. Run the following command so you can use RVM within the current terminal window. Pay close attention to the `/home/username` part below, you will want to run the command provided to you, which coincides with your currently logged in user. Replace `dwayne` below with your own username, don't just copy and paste the command or you will get an error (unless your username is also dwayne, ha). ```shell source /home/dwayne/.rvm/scripts/rvm ``` If you have any issues with the installation, the solution posted [here on SuperUser](https://superuser.com/a/954536) will help you fix any problematic permissions on your folders. ### Install Ruby We now need to download and install the latest stable version of Ruby. At the time of writing this, the latest stable version is `2.6.2` please refer to the [official Ruby website](https://www.ruby-lang.org) before installing to ensure you have the latest. ```shell rvm install "ruby-2.6.2" ```  Depending on your machine and internet connection speed, this step might take a while as Ruby is downloaded and installed from source code (it's compiled). So, this step could take upwards of 10 or so minutes. ------ ## Step 4: Installing the Meeseeker Gem This is by far the easiest step of them all, installing the Meeseeker package which is a Ruby Gem. Provided the previous Ruby installation went to plan, you should be able to run the following command to install Meeseeker. ```shell gem install meeseeker ```  This step can take a few minutes depending on your machine and internet connection speed as packages are downloaded and built from source (similar to the Ruby installation process). Fortunately, this should be much faster than the previous step. Once the installation of the Gem has completed, let's make sure Meeseeker installed correctly by running the `help` command: ```shell meeseeker help ```  ------ ## Step 5: Run Meeseeker Now that we have `meeseeker` installed, we can run the `sync` command which will start streaming the Steem blockchain and add the results into Redis, which we can subscribe to using channels. ```shell meeseeker sync ```  By default, the `sync` command does a lot and stores a lot of needless information (like virtual operations), which in many cases is not what you want to happen. A full list of supported configuration values via the command line can be found in the README for the official Meeseeker package [here](https://github.com/inertia186/meeseeker#installation). For the purposes of this tutorial, we only want to listen to transfers because we're making a transaction bot, so let's make Meeseeker run a little lighter. We don't care about virtual operations, so let's set the `MEESEEKER_INCLUDE_VIRTUAL` environment variable to false. We also don't want the block header information (because it requires additional calls), so we set the `MEESEEKER_INCLUDE_BLOCK_HEADER` environment variable to false as well. Finally, by default, keys are stored in Redis for 24 hours, which in some cases can use a lot of RAM, we want to reduce that to 10 minutes. By setting the `MEESEEKER_EXPIRE_KEYS` environment value (in seconds) we can reduce the memory usage of Redis. **The final command we arrive at is the following:** ```bash MEESEEKER_INCLUDE_VIRTUAL=false MEESEEKER_INCLUDE_BLOCK_HEADER=false MEESEEKER_EXPIRE_KEYS=600 meeseeker sync ```  Running the command will yield a constantly streaming wall of blockchain operations happening on Steem. In the next step, we'll create a simple Node.js application that subscribes to a Redis channel and gets transfers. Depending on your use case, you might want to explore different values to the above ones. Keep this running and open up a new separate terminal window. We will be interfacing with Redis in the next step. ## Step 6: Creating a Node.js application and subscribing to Redis channels The Meeseeker package is publishing numerous Redis channels which we can subscribe to, depending on the events we are interested in. The official package repo provides a list of valid channels you can subscribe to [here](https://github.com/inertia186/meeseeker#usage). In Visual Studio Code (or editor of choice) we want to create a new file called `api.js` and save this somewhere (maybe a new folder specifically for the project). The contents of our Node application will be the following: ```javascript const Redis = require('ioredis'); const subscriber = new Redis(); const redis = new Redis(); subscriber.subscribe('steem:op:transfer', () => { subscriber.on('message', async (channel, message) => { const payload = JSON.parse(message); const transfer = JSON.parse((await redis.get(payload['key']))); console.log(transfer); }); }); ``` In your terminal window, navigate to the location of this file and run `npm init`: ```shell npm init ```  We now need to install the `ioredis` package which allows us to communicate with our Redis server that we installed and started in Step 1. ```shell npm install ioredis ```  If you copied and pasted the code snippet from above into `api.js`, and you still have meeseeker running, you can run our Node application by running the following: ```bash node api.js ```  Every time I have ever run this code, I notice that @magicdice by far dominates the `transfer` operations here on Steem. When you run the code, you'll see the same thing most likely. ### The code line-by-line There would be no use to providing you with a snippet of code that might look pretty foreign to some and not explain what is going on. The code above when run produces a wall of text like the first time we ran meeseeker, but you might notice it's a stream of transfers. ```javascript const Redis = require('ioredis'); ``` This imports the `ioredis` package which allows us to interface with the Redis service. It's a standard Node style CommonJS require import. ```javascript const subscriber = new Redis(); const redis = new Redis(); ``` These two lines are probably self-explanatory, but worth pointing out why there are two of them. The first one sets up a Redis instance for subscribing to channels. When you subscribe to channels in Redis, it makes the instance become subscriber only, so querying commands like `get` will not work. We set up a second identical instance which will only be used for querying. ```javascript subscriber.subscribe('steem:op:transfer', () => { ``` Using our subscriber instance, we call the `subscribe` method and pass in the channel name. In this instance, we want to listen to transfers, so we use the `steem:op:transfer` channel. ```javascript subscriber.on('message', async (channel, message) => { ``` Once you are listening to the channel, you want to listen to all of the messages being emitted from within. Every transfer will fire off an event. You'll notice on the callback function we use the `async` keyword, this is because we want to call the `get` method later on and it returns a Javascript promise with the data. ```javascript const payload = JSON.parse(message); ``` The message in this instance is a JSON string which we parse back into an object using `JSON.parse`. The payload has a key which we can then use to pull the data out of Redis. ```javascript const transfer = JSON.parse((await redis.get(payload['key']))); ``` This line gets the actual Steem transfer information. The payload itself has a `key` property which we use to query Redis itself using `redis.get('thekeyname')` this is because Redis is a key/data store, where each item is stored by a unique key. You might notice the `await` keyword, this accompanies the `async` keyword on the callback and allows us to await the promise that `redis.get` returns with the data. Also worth noting is we use the `redis` instance, not the `subscriber` instance, so we can call `get` to query Redis for the data. ```javascript console.log(transfer); ``` Self-explanatory if you know Javascript, this is what prints out the data from the Redis query as we saw in the above screenshot with transfer object data. **Try subscribing to different channels...** The code above will work for all channel types. Try changing `steem:op:transfer` to `steem:op:comment` or `steem:op:vote` and run the code to see different data. The code inside remains the same. **If you wanted to create a bot that watched for transfers to a specific account you would write something like this:** ```javascript if (transfer.value.from === 'beggars') { // Someone sent something to my @beggars account // we could send back a thank you or in exchange, send them some Steem Engine tokens } ``` **And if you wanted to get the amount being sent and other details:** ```javascript // Destructure the amount from the object const { amount } = transfer.value.amount; // Who sent the transfer const from = transfer.value.from; // Get the memo for the transfer const memo = transfer.value.memo; ``` ## Conclusion What we have here is the workings of a bot capable of listening to transactions and then using a client like the `Steem-js` SDK, react to those transfers accordingly. One common use-case would be to watch transfers to a specific account, get the amount and then react accordingly (upvote, send a custom Steem Engine token). In a future tutorial we might expand upon this code and build a bot, but that is outside of the scope of this tutorial.
author | beggars | ||||||
---|---|---|---|---|---|---|---|
permlink | how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js | ||||||
category | utopian-io | ||||||
json_metadata | {"app":"steempeak/1.9.2","format":"markdown","tags":["utopian-io","tutorials","steemdev","meeseeker","blockchain"],"users":["inertia","magicdice","beggars"],"links":["https://github.com/Vheissu/meseeker-node-tutorial","https://docs.microsoft.com/en-us/windows/wsl/install-win10","https://code.visualstudio.com/","/@inertia","https://nodejs.org/en/","https://github.com/nodesource/distributions/blob/master/README.md","https://rvm.io/","https://superuser.com/a/954536","https://www.ruby-lang.org","https://github.com/inertia186/meeseeker#installation"],"image":["https://files.steempeak.com/file/steempeak/beggars/TfxKv4iK-image.png","https://files.steempeak.com/file/steempeak/beggars/6OldTbh1-image.png","https://files.steempeak.com/file/steempeak/beggars/OiueopEv-image.png","https://files.steempeak.com/file/steempeak/beggars/i4MHrZD1-image.png","https://files.steempeak.com/file/steempeak/beggars/QbqIoaQs-image.png","https://files.steempeak.com/file/steempeak/beggars/Bk1G6it5-image.png","https://files.steempeak.com/file/steempeak/beggars/K5pk5h1h-image.png","https://files.steempeak.com/file/steempeak/beggars/SnQ96aGW-image.png","https://files.steempeak.com/file/steempeak/beggars/ru0aEjku-image.png","https://files.steempeak.com/file/steempeak/beggars/cnqDZ0OA-image.png","https://files.steempeak.com/file/steempeak/beggars/Bfyercww-image.png","https://files.steempeak.com/file/steempeak/beggars/Msc49Jy0-image.png","https://files.steempeak.com/file/steempeak/beggars/aemG0Tkd-image.png","https://files.steempeak.com/file/steempeak/beggars/Nd0ghiNe-image.png","https://files.steempeak.com/file/steempeak/beggars/FVVsxqpF-image.png","https://files.steempeak.com/file/steempeak/beggars/hYOasx5q-image.png","https://files.steempeak.com/file/steempeak/beggars/XCx8zpVA-image.png","https://files.steempeak.com/file/steempeak/beggars/4XQiGQKL-image.png","https://files.steempeak.com/file/steempeak/beggars/OmM9PyGg-image.png","https://files.steempeak.com/file/steempeak/beggars/COPCOVhm-image.png","https://files.steempeak.com/file/steempeak/beggars/gQsPCzFh-image.png"]} | ||||||
created | 2019-03-24 04:11:54 | ||||||
last_update | 2019-03-24 11:42:33 | ||||||
depth | 0 | ||||||
children | 17 | ||||||
last_payout | 2019-03-31 04:11:54 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 27.376 HBD | ||||||
curator_payout_value | 8.350 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 16,253 | ||||||
author_reputation | 75,322,612,974,570 | ||||||
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 81,832,931 | ||||||
net_rshares | 58,754,532,104,232 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 3,224,483,744,238 | 13.86% | ||
ausbitbank | 0 | 219,930,679,429 | 15% | ||
transisto | 0 | 876,995,698,967 | 100% | ||
inertia | 0 | 2,315,020,587,619 | 100% | ||
arrowj | 0 | 25,212,978,318 | 100% | ||
rufans | 0 | 22,253,361,282 | 100% | ||
virtualgrowth | 0 | 3,756,980,644 | 10% | ||
krnel | 0 | 1,476,048,297,726 | 100% | ||
holoz0r | 0 | 236,164,057,130 | 100% | ||
abh12345 | 0 | 14,783,401,762 | 2.42% | ||
whatsup | 0 | 61,286,811,000 | 18% | ||
techslut | 0 | 83,854,139,723 | 20% | ||
minersean | 0 | 8,174,756,581 | 75% | ||
erikaflynn | 0 | 14,970,972,960 | 35% | ||
justinashby | 0 | 30,722,711,832 | 100% | ||
borislavzlatanov | 0 | 111,828,827,274 | 100% | ||
gamersclassified | 0 | 1,907,846,418 | 3.45% | ||
mikepedro | 0 | 787,339,273 | 11.5% | ||
elowin | 0 | 163,147,612 | 80% | ||
gohba.handcrafts | 0 | 110,904,893 | 5% | ||
jakipatryk | 0 | 30,196,042,599 | 100% | ||
urs | 0 | 6,991,011,153 | 11.5% | ||
jga | 0 | 12,546,732,824 | 100% | ||
helo | 0 | 81,648,442,464 | 34.71% | ||
walnut1 | 0 | 28,972,995,270 | 17.33% | ||
kjaeger | 0 | 61,710,920 | 50% | ||
lorenzor | 0 | 985,727,401 | 8.66% | ||
pennsif | 0 | 25,877,271,311 | 8% | ||
teamaustralia | 0 | 1,141,268,646 | 10% | ||
centerlink | 0 | 156,270,646,661 | 23% | ||
suesa | 0 | 110,799,321,532 | 25% | ||
erickpinos | 0 | 23,327,896,647 | 100% | ||
mcoinz79 | 0 | 3,494,360,478 | 1% | ||
codingdefined | 0 | 50,701,194,132 | 34.71% | ||
tsoldovieri | 0 | 1,251,469,211 | 8.66% | ||
themarkymark | 0 | 880,832,522,186 | 17% | ||
tykee | 0 | 10,061,283,770 | 17.33% | ||
onethousandwords | 0 | 339,242,358 | 11.5% | ||
iamphysical | 0 | 16,927,835,536 | 90% | ||
felixrodriguez | 0 | 580,428,427 | 6.06% | ||
chrisdavidphoto | 0 | 773,073,336 | 1.72% | ||
revo | 0 | 9,363,984,019 | 11.5% | ||
azulear | 0 | 521,634,508 | 100% | ||
rehan12 | 0 | 10,581,854,441 | 3.46% | ||
silviu93 | 0 | 4,528,823,835 | 17.33% | ||
webcoop | 0 | 627,814,252 | 11.5% | ||
dakeshi | 0 | 909,993,287 | 17.33% | ||
crokkon | 0 | 133,819,276,992 | 100% | ||
masterwu | 0 | 770,581,994 | 6.9% | ||
espoem | 0 | 94,066,723,441 | 46.34% | ||
yabapmatt | 0 | 2,703,881,346,430 | 100% | ||
mcfarhat | 0 | 26,762,134,458 | 13.88% | ||
gotem | 0 | 562,419,173 | 100% | ||
vishalsingh4997 | 0 | 139,574,708 | 17.33% | ||
loshcat | 0 | 2,563,153,524 | 100% | ||
elear | 0 | 5,558,824,856 | 34.67% | ||
zoneboy | 0 | 22,948,308,641 | 100% | ||
carloserp-2000 | 0 | 33,957,947,242 | 100% | ||
carlos84 | 0 | 1,048,366,904 | 17.33% | ||
che-shyr | 0 | 1,013,901,331 | 50% | ||
utopian-io | 0 | 43,440,412,415,019 | 34.67% | ||
jaff8 | 0 | 83,008,798,246 | 34.71% | ||
thevillan | 0 | 509,947,295 | 0.46% | ||
newsrx | 0 | 84,847,903 | 6.83% | ||
amestyj | 0 | 792,606,418 | 17.33% | ||
greenorange | 0 | 548,046,396 | 100% | ||
cryptwo | 0 | 2,556,908,297 | 20.7% | ||
nathen007 | 0 | 3,295,573,080 | 100% | ||
mcyusuf | 0 | 2,050,983,844 | 17.33% | ||
alexs1320 | 0 | 38,546,399,603 | 25% | ||
gentleshaid | 0 | 29,733,005,093 | 34.67% | ||
ivymalifred | 0 | 276,732,154 | 8.66% | ||
freemon | 0 | 0 | 8% | ||
aussieninja | 0 | 6,762,510,100 | 17.33% | ||
holozaps | 0 | 150,334,607 | 50% | ||
ennyta | 0 | 124,633,594 | 8.66% | ||
jordan.white306 | 0 | 258,837,958 | 11.5% | ||
vjap55 | 0 | 822,783,489 | 100% | ||
amosbastian | 0 | 122,881,938,168 | 34.71% | ||
eliaschess333 | 0 | 1,653,512,580 | 8.66% | ||
grzesiekb | 0 | 267,157,472,299 | 100% | ||
asaj | 0 | 18,213,796,549 | 100% | ||
bengy | 0 | 107,368,608 | 0.69% | ||
scienceangel | 0 | 68,645,085,867 | 50% | ||
bec-on-the-block | 0 | 641,431,881 | 11.5% | ||
portugalcoin | 0 | 15,360,540,080 | 15% | ||
terrylovejoy | 0 | 4,193,373,965 | 9.2% | ||
vanarchist | 0 | 2,877,525,647 | 100% | ||
sargoon | 0 | 1,106,311,504 | 17.33% | ||
tobias-g | 0 | 135,422,606,034 | 38% | ||
miguelangel2801 | 0 | 96,676,906 | 8.66% | ||
didic | 0 | 30,753,498,182 | 25% | ||
emiliomoron | 0 | 636,317,141 | 8.66% | ||
gio6 | 0 | 162,099,099 | 11.5% | ||
benleemusic | 0 | 3,662,273,497 | 5% | ||
ulisesfl17 | 0 | 1,905,529,108 | 100% | ||
arac | 0 | 1,043,828,400 | 100% | ||
endopediatria | 0 | 79,024,464 | 3.46% | ||
harpagon | 0 | 16,992,905,179 | 100% | ||
evlachsblog | 0 | 2,193,008,159 | 11.5% | ||
tomastonyperez | 0 | 1,845,783,736 | 8.66% | ||
elvigia | 0 | 1,755,654,135 | 8.66% | ||
sapphic | 0 | 2,371,801,791 | 11.5% | ||
tibfox | 0 | 122,216,468,955 | 100% | ||
yu-stem | 0 | 10,869,247,787 | 25% | ||
luiscd8a | 0 | 1,766,521,423 | 80% | ||
bobaphet | 0 | 705,402,011 | 1.15% | ||
melbourneswest | 0 | 1,080,805,709 | 11.5% | ||
philippekiene | 0 | 268,956,071 | 6.9% | ||
mumma-monza | 0 | 450,845,001 | 11.5% | ||
z3ll | 0 | 1,868,709,485 | 100% | ||
eniolw | 0 | 8,731,850,072 | 100% | ||
cryptoslicex | 0 | 295,437,799 | 11.5% | ||
geadriana | 0 | 78,897,808 | 2.59% | ||
josedelacruz | 0 | 830,709,844 | 8.66% | ||
joseangelvs | 0 | 307,950,219 | 17.33% | ||
viannis | 0 | 237,572,851 | 8.66% | ||
rollthedice | 0 | 3,829,921,080 | 34.67% | ||
feronio | 0 | 893,209,455 | 100% | ||
flores39 | 0 | 422,553,518 | 100% | ||
kendallron | 0 | 221,733,187 | 15% | ||
petertag | 0 | 37,039,980,293 | 100% | ||
erickyoussif | 0 | 498,424,222 | 17.33% | ||
lifeofryan | 0 | 1,118,072,717 | 11.5% | ||
oluwashinaayomi | 0 | 1,238,182,303 | 100% | ||
indayclara | 0 | 256,376,215 | 7.5% | ||
vincy | 0 | 7,215,725,172 | 4.6% | ||
sue-stevenson | 0 | 481,557,859 | 7% | ||
niouton | 0 | 2,380,140,811 | 9.2% | ||
lifeobserver | 0 | 166,165,028 | 13% | ||
anaestrada12 | 0 | 3,014,090,974 | 17.33% | ||
joelsegovia | 0 | 603,036,050 | 8.66% | ||
makonsapad | 0 | 531,914,939 | 100% | ||
polsikio | 0 | 531,851,301 | 100% | ||
hranushdavdyan | 0 | 531,968,720 | 100% | ||
viktorpetro | 0 | 531,837,993 | 100% | ||
loone | 0 | 531,940,272 | 100% | ||
nevisajar | 0 | 531,903,672 | 100% | ||
cleavageobjects | 0 | 531,978,491 | 100% | ||
fightjumping | 0 | 531,909,765 | 100% | ||
jesusfl17 | 0 | 423,431,654 | 100% | ||
ira.timirova91 | 0 | 531,922,044 | 100% | ||
jmartinz | 0 | 531,951,487 | 100% | ||
bflanagin | 0 | 2,963,565,398 | 17.33% | ||
luffnoisy | 0 | 531,842,855 | 100% | ||
grindanalogue | 0 | 531,847,343 | 100% | ||
resultgame | 0 | 531,879,802 | 100% | ||
fadedclassic | 0 | 531,891,521 | 100% | ||
blindjab | 0 | 531,937,105 | 100% | ||
jason.che | 0 | 105,074,773 | 11.5% | ||
bestofph | 0 | 6,488,009,933 | 15% | ||
dalz | 0 | 3,863,424,996 | 13.86% | ||
ulockblock | 0 | 40,745,384,885 | 12.32% | ||
amart29 | 0 | 290,239,416 | 3.46% | ||
jk6276 | 0 | 718,268,107 | 2.3% | ||
reinaseq | 0 | 1,003,781,493 | 17.33% | ||
dssdsds | 0 | 1,962,947,192 | 17.33% | ||
jayplayco | 0 | 68,345,892,518 | 17.33% | ||
cryptouno | 0 | 497,449,029 | 5% | ||
steeming-hot | 0 | 0 | 0.02% | ||
lupafilotaxia | 0 | 15,049,985,593 | 100% | ||
fran.frey | 0 | 276,157,388 | 8.66% | ||
alaiza | 0 | 467,076,632 | 100% | ||
mops2e | 0 | 548,103,976 | 37.07% | ||
jrevilla | 0 | 82,452,317 | 17.33% | ||
metametheus | 0 | 638,869,898 | 4.6% | ||
maelstrohmblack | 0 | 1,175,887,307 | 100% | ||
swapsteem | 0 | 11,232,205,029 | 100% | ||
stem-espanol | 0 | 11,133,193,118 | 17.33% | ||
lapp | 0 | 465,235,882 | 100% | ||
steemtpistia | 0 | 468,868,355 | 100% | ||
crassipes | 0 | 469,109,885 | 100% | ||
bernardwest | 0 | 3,198,973,067 | 11.5% | ||
agrovision | 0 | 472,702,962 | 100% | ||
steem-ua | 0 | 716,426,574,002 | 6.83% | ||
giulyfarci52 | 0 | 142,547,822 | 8.66% | ||
kolesnikovev74 | 0 | 531,934,577 | 100% | ||
jensopinion | 0 | 713,567,620 | 100% | ||
kaczynski | 0 | 118,152,238 | 100% | ||
positiveninja2 | 0 | 171,691,360 | 5.75% | ||
alex-hm | 0 | 1,169,193,424 | 50% | ||
bluerobo | 0 | 11,441,524,961 | 100% | ||
bluesniper | 0 | 17,641,209,747 | 5.55% | ||
mrsbozz | 0 | 662,032,901 | 25% | ||
ascorphat | 0 | 1,980,002,220 | 2.5% | ||
crowdwitness | 0 | 20,357,426,720 | 12% | ||
rewarding | 0 | 5,476,581,600 | 67.33% | ||
bejust | 0 | 1,488,108,581 | 100% | ||
jk6276.mons | 0 | 1,136,341,518 | 34.67% | ||
progressing | 0 | 1,342,286,288 | 100% | ||
jaxson2011 | 0 | 1,324,064,382 | 34.67% | ||
supu | 0 | 29,449,547,810 | 3.5% | ||
eternalinferno | 0 | 158,707,831 | 34.67% | ||
utopian.trail | 0 | 13,853,805,907 | 34.67% | ||
welcomes | 0 | 786,277,868 | 0.34% | ||
lowgyt | 0 | 448,001,169 | 100% |
!steem2email
author | contrabourdon |
---|---|
permlink | re-beggars-pzhywg |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steempeak/1.18.0"} |
created | 2019-10-17 02:29:54 |
last_update | 2019-10-17 02:29:54 |
depth | 1 |
children | 1 |
last_payout | 2019-10-24 02:29:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 224,243,959,152,036 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,628,122 |
net_rshares | 0 |
Emailed 👌 <hr>Powered by witness <a href="https://untersatz.steem.design">untersatz</a>!
author | steem2email |
---|---|
permlink | 6zmas00kpb3 |
category | utopian-io |
json_metadata | "" |
created | 2019-10-17 02:30:06 |
last_update | 2019-10-17 02:30:06 |
depth | 2 |
children | 0 |
last_payout | 2019-10-24 02:30:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 112,313,680 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,628,132 |
net_rshares | 0 |
author | holoz0r |
---|---|
permlink | re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t042455486z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["lordnigel"],"app":"steemit/0.1"} |
created | 2019-03-24 04:24:51 |
last_update | 2019-03-24 04:24:51 |
depth | 1 |
children | 0 |
last_payout | 2019-03-31 04:24:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.414 HBD |
curator_payout_value | 0.137 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 531,411,957,587,417 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,833,238 |
net_rshares | 844,998,965,506 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holoz0r | 0 | 14,996,514,275 | 6% | ||
beggars | 0 | 10,615,036,149 | 100% | ||
frogcake | 0 | 819,387,415,082 | 100% |
Absolutely brilliant post and work mate but with all due respect, I think I'll wait for the 'Dummies' guide to be published ;-) Thanks for all the hard work you do here and best wishes to you and yours. Posted using [Partiko Android](https://partiko.app/referral/nathen007)
author | nathen007 |
---|---|
permlink | nathen007-re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t081435517z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-24 08:14:36 |
last_update | 2019-03-24 08:14:36 |
depth | 1 |
children | 0 |
last_payout | 2019-03-31 08:14:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 274 |
author_reputation | 260,633,537,160,474 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,840,278 |
net_rshares | 48,159,731,339 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beggars | 0 | 10,460,631,490 | 100% | ||
dustsweeper | 0 | 37,699,099,849 | 4.17% |
This post has been included in the latest edition of [**SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewssteemnews23march2019-wjvmty1237) - a digest of all the latest news on the Steem blockchain.
author | pennsif |
---|---|
permlink | re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190325t034055575z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/sosdailynewssteemnews23march2019-wjvmty1237"],"app":"steemit/0.1"} |
created | 2019-03-25 03:40:57 |
last_update | 2019-03-25 03:40:57 |
depth | 1 |
children | 0 |
last_payout | 2019-04-01 03:40:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 213 |
author_reputation | 636,410,097,572,565 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,888,944 |
net_rshares | 10,996,360,345 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beggars | 0 | 10,996,360,345 | 100% |
Thank you for your contribution @beggars. After reviewing your tutorial we suggest the following points listed below: - Avoid installation steps which are already well documented. - Code sections are better displayed using the code markup, instead of placing them as screenshots. Placing the code screenshot and then the code below the screenshot is unnecessary as it's repeating information. - The structure of your tutorial is fine and also well explained. Good work! - Why is the repository and proof of work the same link? Thank you for your work in developing this tutorial. Looking forward to your upcoming tutorials. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/3-1-1-2-1-3-2-3-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t110315365z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["beggars"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/3-1-1-2-1-3-2-3-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-24 11:03:15 |
last_update | 2019-03-24 11:03:15 |
depth | 1 |
children | 5 |
last_payout | 2019-03-31 11:03:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 8.946 HBD |
curator_payout_value | 2.832 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,080 |
author_reputation | 599,460,462,895,094 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,845,829 |
net_rshares | 18,043,271,621,992 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
inertia | 0 | 2,315,020,587,619 | 100% | ||
yuxi | 0 | 23,619,963,844 | 100% | ||
lordneroo | 0 | 52,017,482,584 | 50% | ||
codingdefined | 0 | 25,843,426,195 | 17.28% | ||
espoem | 0 | 30,974,680,178 | 15% | ||
utopian-io | 0 | 15,408,000,996,666 | 10.7% | ||
jaff8 | 0 | 43,071,728,599 | 17.28% | ||
emrebeyler | 0 | 0 | 0.01% | ||
amosbastian | 0 | 63,813,282,196 | 17.28% | ||
sudefteri | 0 | 6,877,166,426 | 100% | ||
beggars | 0 | 10,435,654,786 | 100% | ||
reazuliqbal | 0 | 14,088,832,785 | 8% | ||
amico | 0 | 1,024,318,382 | 0.55% | ||
ulockblock | 0 | 23,070,773,575 | 6.94% | ||
curbot | 0 | 2,591,597,557 | 100% | ||
ascorphat | 0 | 1,995,546,813 | 2.5% | ||
yff | 0 | 20,212,142,637 | 100% | ||
curatortrail | 0 | 333,269,649 | 95% | ||
cleanit | 0 | 280,171,501 | 55% |
Thanks for the thorough review, @portugalcoin >Avoid installation steps which are already well documented. I am just a very verbose person, but this is good to know for future submissions, as it will mean less typing for me anyway, ha. I generally like being as descriptive as possible and from my own experiences learning from tutorials, it's a personal preference for me that the tutorial includes everything so I don't have to context switch. But, definitely, the kind of feedback I'll take on board. >Code sections are better displayed using the code markup, instead of placing them as screenshots. Placing the code screenshot and then the code below the screenshot is unnecessary as it's repeating information. Are you referring to step 6? The code snippet from Visual Studio Code and then the code beneath? That was actually a mistake, I was in screenshot mode from the other steps and didn't realise. My apologies. Was this the only screenshot you were referring to? If this was also in reference to the screenshots of the terminal window, those were provided for comparative purposes so that the tutorial follower would be able to reference the output of the commands with what I saw. I removed the unnecessary code screenshot and just left the code example. I noticed in the review under, "How would you describe the formatting, language and overall presentation of the post?" that it said average. What advice do you have to get that score up for future tutorials? Because I made sure that I made each step visually clear using proper headings, spacing out sections using horizontal lines, Markdown code blocks for code (both code and shell commands). >Why is the repository and proof of work the same link? I think maybe this might be a good improvement to make in the official tutorial template provided by Utopian because I interpret a repository with the code in it as proof of the work done. For future reference, what is the distinction between the two of these? Should only one of them be provided in this instance? Thanks for the thorough review, I greatly appreciate it.
author | beggars |
---|---|
permlink | re-portugalcoin-re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t112528968z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steempeak/1.9.2"} |
created | 2019-03-24 11:25:30 |
last_update | 2019-03-24 11:43:42 |
depth | 2 |
children | 3 |
last_payout | 2019-03-31 11:25:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,099 |
author_reputation | 75,322,612,974,570 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,846,786 |
net_rshares | 0 |
Hi @beggars, >Are you referring to step 6? The code snippet from Visual Studio Code and then the code beneath? That was actually a mistake, I was in screenshot mode from the other steps and didn't realise. Was this the only screenshot you were referring to? - Yes, it was the only printscreen I mentioned ( Step 6 ). >For future reference, what is the distinction between the two of these? - The repository would be ideal to put for example the github link of Nodejs and the proof of work the link of your code as proof that is your code. - For more information see this <a href="https://join.utopian.io/guidelines/">link</a> I hope to see more of your tutorials and thank you for your interest in knowing what points to improve. ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-beggars-re-portugalcoin-re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t114726560z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["beggars"],"links":["https://join.utopian.io/guidelines/","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-24 11:47:27 |
last_update | 2019-03-24 11:47:27 |
depth | 3 |
children | 2 |
last_payout | 2019-03-31 11:47:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 906 |
author_reputation | 599,460,462,895,094 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,847,874 |
net_rshares | 9,748,249,106 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beggars | 0 | 9,748,249,106 | 100% | ||
pedronel | 0 | 0 | 11.11% |
Thank you for your review, @portugalcoin! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t110315365z-20190327t014018z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-27 01:40:21 |
last_update | 2019-03-27 01:40:21 |
depth | 2 |
children | 0 |
last_payout | 2019-04-03 01:40:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 152,955,367,999,756 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,014,811 |
net_rshares | 0 |
#### Hi @beggars! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t123333z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.19"}" |
created | 2019-03-24 12:33:33 |
last_update | 2019-03-24 12:33:33 |
depth | 1 |
children | 0 |
last_payout | 2019-03-31 12:33:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 286 |
author_reputation | 23,214,230,978,060 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,850,300 |
net_rshares | 0 |
Super cool step-by-step guide and awesome repository! I can see me using this in my next project somehow! Thanks for sharing!! ## Peace! Posted using [Partiko Android](https://partiko.app/referral/tibfox)
author | tibfox |
---|---|
permlink | tibfox-re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t045604201z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-24 04:56:03 |
last_update | 2019-03-24 04:56:03 |
depth | 1 |
children | 0 |
last_payout | 2019-03-31 04:56:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 194,022,374,255,120 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,834,172 |
net_rshares | 11,109,682,925 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beggars | 0 | 11,109,682,925 | 100% |
Hey, @beggars! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190325t060508z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-25 06:05:09 |
last_update | 2019-03-25 06:05:09 |
depth | 1 |
children | 0 |
last_payout | 2019-04-01 06:05:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 589 |
author_reputation | 152,955,367,999,756 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,895,876 |
net_rshares | 11,103,766,139 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beggars | 0 | 11,103,766,139 | 100% |
Wow I had no idea you are such a nerd! This looks cool.
author | whatsup |
---|---|
permlink | re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t042335756z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-24 04:23:39 |
last_update | 2019-03-24 04:23:39 |
depth | 1 |
children | 2 |
last_payout | 2019-03-31 04:23:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 519,839,651,581,670 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,833,209 |
net_rshares | 10,887,703,809 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beggars | 0 | 10,887,703,809 | 100% |
author | rishi556 |
---|---|
permlink | re-whatsup-re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t042501792z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-24 04:25:03 |
last_update | 2019-03-24 04:25:03 |
depth | 2 |
children | 1 |
last_payout | 2019-03-31 04:25:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 132,754,869,222,673 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,833,240 |
net_rshares | 13,959,224,785 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nathen007 | 0 | 3,236,835,164 | 100% | ||
beggars | 0 | 10,722,389,621 | 100% |
Im a thickie in plain sight! lol Posted using [Partiko Android](https://partiko.app/referral/nathen007)
author | nathen007 |
---|---|
permlink | nathen007-re-rishi556-re-whatsup-re-beggars-how-to-listen-to-steem-blockchain-events-using-meeseker-in-node-js-20190324t081514879z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-24 08:15:15 |
last_update | 2019-03-24 08:15:15 |
depth | 3 |
children | 0 |
last_payout | 2019-03-31 08:15:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 260,633,537,160,474 |
root_title | "How To Listen To Steem Blockchain Events Using Meeseker In Node.js" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,840,298 |
net_rshares | 0 |