create account

Hive Engine NFT/Token Explorer - Soft Launch! by blervin

View this thread on: hive.blogpeakd.comecency.com
· @blervin ·
$7.16
Hive Engine NFT/Token Explorer - Soft Launch!
## Hive Engine NFT/Token Explorer - Soft Launch!

### A seed is planted...
Last week a message from @aggroed floated through the #witness channel on the Hive Engine Discord:

![seed.png](https://files.peakd.com/file/peakd-hive/blervin/SPPx9wcf-seed.png)

Well, I couldn't agree more so I got to work!!

### Where is the data?
Today, we have a sidechain on top of the main blockchain and data just pouring out everywhere. As I looked at this my consideration was both which data to get and where to get it from. As I was exploring the answer hit me square in the face.

You see, I am a [Hive Engine Witness](https://tribaldex.com/witnesses) so I've got a server running, a server with literally all the data I need and an API hanging off the back that I can call!

### Which data?
I started playing around with that API and found the `getBlockInfo` method to be the best endpoint to hit and then parse through everything in there. Drilling down into the data, I see the `contract` and `action` sort of defining the underlying data so I started building out tables in MySQL to match these records.

All the tables I've deployed are in the schema below.

### Explore the Blocks!

First and foremost, I am far more of a backend developer. I love data, I can pull in data, parse it, transform it, and do anything really. While I *can* do front end work, I suck, it's slow, and I always put it last. This is to say, I have no front end yet, lol.

I want to both validate my data and get your thoughts on what sort of a front end I should put together. What features you wanna see, and more specifically, what features do you want but can't find anywhere else?

So to start, just jump right in and look at all my data. Also, since this is all just a proof of concept MVP, I only have roughly the last week of data. Once we validate everything I'll pull in everything.

### Get the Data - Basic API Calls

I threw up a basic GET API in front of my database so you can jump in and get at the data right now. Please note, this is on a basic server so you should expect to run into issues, this is far from production ready.

There's just a few pieces to this puzzle:

`General URL: http://144.126.250.230:3000/api/{TableName}/{TOKEN}?page={page_number}`

Key point: the URLs are case sensitive, follow the case from the table schema below. Also, tokens are ALLCAPS, again case sensitive.

Here's a complete URL: [http://144.126.250.230:3000/api/MarketBuy/WORKERBEE?page=3](http://144.126.250.230:3000/api/MarketBuy/WORKERBEE?page=3).

You can walk through all the data in all these tables. At last count, I have 509,759 total records across all these tables, from just the last week. You probably want to install a [JSON extension](https://chrome.google.com/webstore/search/json?hl=en) to format everything nicely in your browser.

My biggest concerns are missing data. Did I forget any tables? Are any fields missing from my tables? Can you find a transaction from the last week that's not in my database?

### Conclusion

I'm really excited to fully launch this and find more projects that I can contribute. I'm even more excited to see that I have been able to climb up the ranks on the witness list!

Even so, I'd like to firm up my position and earn even more of your trust. If you think I am a good Hive Engine witness I would [appreciate your vote](https://tribaldex.com/witnesses).

As always, hit me up on Discord: blervin#9759

### Database Schema
```
TABLE: MarketBuy
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| Id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| CreatedAt     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Price         | double(18,8) | YES  |     | NULL              |                |
| Quantity      | double(18,8) | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: MarketCancel
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| Id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| CancelId      | varchar(255) | YES  | UNI | NULL              |                |
| CreatedAt     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: MarketSell
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| Id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| CreatedAt     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Price         | double(18,8) | YES  |     | NULL              |                |
| Quantity      | double(18,8) | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: NftBurn
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| created_at    | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Nfts          | text         | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: NftIssue
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| created_at    | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| FeeSymbol     | varchar(255) | YES  |     | NULL              |                |
| LockTokens    | varchar(255) | YES  |     | NULL              |                |
| Properties    | varchar(255) | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| To            | varchar(255) | YES  |     | NULL              |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: NftIssueMultiple
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| created_at    | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Instances     | text         | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: NftMarketBuy
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| CreatedAt     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| MarketAccount | varchar(255) | YES  |     | NULL              |                |
| Nfts          | text         | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: NftMarketCancel
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| CreatedAt     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Nfts          | text         | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: NftMarketChangePrice
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| CreatedAt     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Nfts          | text         | YES  |     | NULL              |                |
| Price         | double(18,8) | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: NftMarketSell
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| CreatedAt     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Fee           | int(11)      | YES  |     | NULL              |                |
| Nfts          | text         | YES  |     | NULL              |                |
| Price         | double(18,8) | YES  |     | NULL              |                |
| PriceSymbol   | varchar(255) | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: NftSetProperties
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| created_at    | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Nfts          | text         | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: NftTransfer
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| created_at    | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Nfts          | text         | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| To            | varchar(255) | YES  |     | NULL              |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: TokensIssue
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| created_at    | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Quantity      | double(18,8) | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| To            | varchar(255) | YES  |     | NULL              |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: TokensStake
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| created_at    | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Quantity      | double(18,8) | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| To            | varchar(255) | YES  |     | NULL              |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: TokensTransfer
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| created_at    | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Memo          | text         | YES  |     | NULL              |                |
| Quantity      | double(18,8) | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| To            | varchar(255) | YES  |     | NULL              |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
TABLE: TokensUnstake
+---------------+--------------+------+-----+-------------------+----------------+
| Field         | Type         | Null | Key | Default           | Extra          |
+---------------+--------------+------+-----+-------------------+----------------+
| id            | int(11)      | NO   | PRI | NULL              | auto_increment |
| ActiveKey     | bit(1)       | YES  |     | NULL              |                |
| AppId         | int(11)      | YES  | MUL | NULL              |                |
| BlockNumber   | int(11)      | YES  |     | NULL              |                |
| created_at    | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| Quantity      | double(18,8) | YES  |     | NULL              |                |
| Sender        | varchar(255) | YES  |     | NULL              |                |
| Symbol        | varchar(255) | YES  |     | NULL              |                |
| Timestamp     | timestamp    | YES  |     | CURRENT_TIMESTAMP |                |
| TransactionId | varchar(255) | YES  | UNI | NULL              |                |
+---------------+--------------+------+-----+-------------------+----------------+
```
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 37 others
properties (23)
authorblervin
permlinkhive-engine-nft-token-explorer-soft-launch
categoryhiveengine
json_metadata"{"app":"peakd/2021.01.3","format":"markdown","description":"Hive Engine NFT/Token Explorer - Soft Launch!","tags":["hiveengine","witness","hivedev","dev","api","nft","nfts","token","tokens","blockchain"],"users":["aggroed"],"links":["/@aggroed","/trending/witness","https://tribaldex.com/witnesses","http://144.126.250.230:3000/api/MarketBuy/WORKERBEE?page=3","https://chrome.google.com/webstore/search/json?hl=en","https://tribaldex.com/witnesses"],"image":["https://files.peakd.com/file/peakd-hive/blervin/SPPx9wcf-seed.png"]}"
created2021-02-18 16:02:48
last_update2021-02-18 16:02:48
depth0
children7
last_payout2021-02-25 16:02:48
cashout_time1969-12-31 23:59:59
total_payout_value3.586 HBD
curator_payout_value3.571 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23,286
author_reputation3,496,734,580,041
root_title"Hive Engine NFT/Token Explorer - Soft Launch!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,941,168
net_rshares20,326,380,035,894
author_curate_reward""
vote details (101)
@dannychain ·
Amazing work! I have the same question as @primersion: will you open-source it? 😄 If so I would love to contribute with code. 

P.S. I guess I unintendedly did something similar (in a small scope) by using my node to expose some endpoints with my "hive-engine witness voter tool" however I limited it to endpoints relating to witnesses. (https://github.com/DannyChain/votify#features)

!HYPNO
👍  
properties (23)
authordannychain
permlinkre-blervin-qoqn10
categoryhiveengine
json_metadata{"tags":["hiveengine"],"app":"peakd/2021.01.3"}
created2021-02-18 18:51:06
last_update2021-02-18 18:51:06
depth1
children0
last_payout2021-02-25 18:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length392
author_reputation1,202,482,584,359
root_title"Hive Engine NFT/Token Explorer - Soft Launch!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,943,459
net_rshares0
author_curate_reward""
vote details (1)
@hivebuzz ·
Congratulations @blervin! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) :

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@blervin/upvoted.png?202102181916"></td><td>You received more than 1000 upvotes.<br>Your next target is to reach 1250 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@blervin) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hivebuzz/@hivebuzz/tour-update1"><img src="https://images.hive.blog/64x128/https://i.imgur.com/xecznXF.png"></a></td><td><a href="/hivebuzz/@hivebuzz/tour-update1">Hive Tour Update - Advanced posting</a></td></tr><tr><td><a href="/hivebuzz/@hivebuzz/valentine-2021"><img src="https://images.hive.blog/64x128/https://i.imgur.com/ye2hK66.png"></a></td><td><a href="/hivebuzz/@hivebuzz/valentine-2021">Valentine's day challenge - Give a badge to your beloved!</a></td></tr></table>
properties (22)
authorhivebuzz
permlinkhivebuzz-notify-blervin-20210218t192517000z
categoryhiveengine
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2021-02-18 19:25:15
last_update2021-02-18 19:25:15
depth1
children0
last_payout2021-02-25 19:25:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,175
author_reputation370,744,435,187,150
root_title"Hive Engine NFT/Token Explorer - Soft Launch!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,943,914
net_rshares0
@hypnochain ·
Hey @blervin, here is your HYPNO ;)
properties (22)
authorhypnochain
permlinkre-hive-engine-nft-token-explorer-soft-launch-20210218t185124z
categoryhiveengine
json_metadata"{"app": "beem/0.24.20"}"
created2021-02-18 18:51:36
last_update2021-02-18 18:51:36
depth1
children0
last_payout2021-02-25 18:51:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation31,821,900,938
root_title"Hive Engine NFT/Token Explorer - Soft Launch!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,943,466
net_rshares0
@khan.dayyanz ·
Awesome. It indeed will be helpful as hive engine transactions seems like a mess. Keep it up.
properties (22)
authorkhan.dayyanz
permlinkre-blervin-qori1o
categoryhiveengine
json_metadata{"tags":["hiveengine"],"app":"peakd/2021.01.3"}
created2021-02-19 06:00:45
last_update2021-02-19 06:00:45
depth1
children0
last_payout2021-02-26 06:00:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation19,544,746,066,263
root_title"Hive Engine NFT/Token Explorer - Soft Launch!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,950,946
net_rshares0
@primersion ·
Nice work you did there. I would love the see more details about how you actually did stuff. Are you planning on putting the project on github?
Also I would love to see a frontend for exploring of the data!

!BEER !WINE
properties (22)
authorprimersion
permlinkre-blervin-qoqk6z
categoryhiveengine
json_metadata{"tags":["hiveengine"],"app":"peakd/2021.01.3"}
created2021-02-18 17:49:54
last_update2021-02-18 17:49:54
depth1
children1
last_payout2021-02-25 17:49:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation91,109,041,081,432
root_title"Hive Engine NFT/Token Explorer - Soft Launch!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,942,634
net_rshares0
@blervin ·
$0.05
Thanks, this is sloppy so not ready for github yet. And I've already got some front-end pages in the works, so that'll be coming soon.
👍  ,
properties (23)
authorblervin
permlinkre-primersion-qoqmyq
categoryhiveengine
json_metadata{"tags":["hiveengine"],"app":"peakd/2021.01.3"}
created2021-02-18 18:49:39
last_update2021-02-18 18:49:39
depth2
children0
last_payout2021-02-25 18:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation3,496,734,580,041
root_title"Hive Engine NFT/Token Explorer - Soft Launch!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,943,428
net_rshares225,339,504,685
author_curate_reward""
vote details (2)
@rollie1212 ·
$0.13
Great job! 
👍  
properties (23)
authorrollie1212
permlinkre-blervin-qosmyf
categoryhiveengine
json_metadata{"tags":["hiveengine"],"app":"peakd/2021.01.3"}
created2021-02-19 20:44:42
last_update2021-02-19 20:44:42
depth1
children0
last_payout2021-02-26 20:44:42
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.065 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation186,261,763,398,836
root_title"Hive Engine NFT/Token Explorer - Soft Launch!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,962,630
net_rshares612,013,194,447
author_curate_reward""
vote details (1)