create account

hiveengine - NFT support has been added by holger80

View this thread on: hive.blogpeakd.comecency.com
· @holger80 ·
$110.94
hiveengine - NFT support has been added

## Repository

https://github.com/holgern/hiveengine

![](https://images.hive.blog/DQmcbvjRsW6fY2xQRfE9YN6v6XbkP9GLgjg7G4JWUVhW2xu/image)

## hiveengine

[hiveengine](https://github.com/holgern/hiveengine) is a python library for working with [hive-engine.com](https://hive-engine.com/) tokens and NFTs.

I released version 0.2.1 which can be installed by

```
pip install hiveengine
```

hiveengine is using [beem](https://github.com/holgern/beem) for broadcasting transfers and custom_json to the HIVE blockchain. hiveengine is only working when using HIVE nodes. You can check the currently set nodes with

```
beem config
```

Hive nodes can be set with

```
beem updatenodes --hive
```
## Changelog
### 0.2.1
* Fix nft_id list in nftbuy, nftcancel, nftchangeprice and nftsell

### 0.2.0
* add NFT support has been added (collection, nft, nftmarket, nfts)
* add NFT related commands to cli (collection, nftbuy, nftcancel, nftchangeprice, nftlist, nftopen, nftparams, nftsell, nftsellbook, nfttrades)


## NFT support has been added to the command line tool
NFT support has been added to hiveengine in version 0.2.0. The following NFT related commands have been added.

### collection
```
Usage: hiveengine collection [OPTIONS] ACCOUNT [SYMBOL]...

  Return NFT collection for an account
```
For example:
```
hiveengine collection holger80 CITY
```
which returns
```
NFT: CITY
+-------+---------------+---------------------------------------------------------------------+
| _id   | lockedTokens  | properties                                                          |
+-------+---------------+---------------------------------------------------------------------+
| 12659 | {'SIM': '20'} | {'name': 'Basic Home', 'population': 4, 'income': 1, 'type': '1st'} |
+-------+---------------+---------------------------------------------------------------------+
```

### nftbuy
```
Usage: hiveengine nftbuy [OPTIONS] SYMBOL [NFT_IDS]...

  Buy nfts from the market

Options:
  -a, --account TEXT         Buy with this account (defaults to
                             "default_account")

  -m, --market_account TEXT  Market account which will receive the fee
                             (defaults to "nftmarket")

  -y, --yes                  Answer yes to all questions
```
The market account can be set to any account except the seller. The market account will receive the fees, when the token was successfully bought.

hiveengine default value for the market account is @nftmarket, which was created by me. I will decide later what to do with received token. When I figure it out to which buyer to received tokens are connected, @nftmarket would share 50% of the received fees with the buyer (the received fees are excluded from token transfer history).

Setting the market account can be used to send the fee to an alt account:
```
hiveengine nftbuy -a holger80 -m my_alt STAR 100
```
In this case, holger80 will receive the NFT 100 and my_alt will receive the fee share in tokens. 

### nftcancel
```
Usage: hiveengine nftcancel [OPTIONS] SYMBOL [NFT_IDS]...

  Cancel a nft sell order

Options:
  -a, --account TEXT  Buy with this account (defaults to "default_account")
  -y, --yes           Answer yes to all questions
```
This command can be used to cancel an open order:
```
hiveengine nftcancel -a holger80 STAR 7147
```
which asks me to proceed:
```
Canceling selling of following nfts:
+-------+-----------------+----------------------------------------------------------------+
| nftId | previousAccount | properties                                                     |
+-------+-----------------+----------------------------------------------------------------+
| 7147  | holger80        | {'type': 'FanBoost1', 'class': 'fanboost', 'stats': '1,0,0,0'} |
+-------+-----------------+----------------------------------------------------------------+
continue [y/n]?
```

### nftchangeprice
```
Usage: hiveengine nftchangeprice [OPTIONS] SYMBOL [NFT_IDS]... NEWPRICE

  Changes a price of an open sell order

Options:
  -a, --account TEXT  Buy with this account (defaults to "default_account")
  -y, --yes           Answer yes to all questions
```
The following command changes the price of my order to 1160 STARBITS:
```
hiveengine nftchangeprice -a holger80 STAR 7147 1160
```

### nftlist
```
hiveengine nftlist
```

returns all existing NFTs:
```
+----+---------+-----------------------------+
| id | Symbol  | Name                        |
+----+---------+-----------------------------+
| 1  | CITY    | dCITY NFT TOKEN             |
| 2  | CRITTER | Mischievous Crypto Critters |
| 3  | STAR    | Rising Star Game            |
| 4  | MUSIC   | Music                       |
| 5  | API     | dCITY API                   |
| 6  | NFTSR   | NFT Showroom                |
+----+---------+-----------------------------+
```

### nftopen
```
Usage: hiveengine nftopen [OPTIONS] SYMBOL

  Returns the open interest book for the given symbol

Options:
  -g, --grouping TEXT      Can be set to a grouping parameter, or to
                           parameter.value

  -v, --value TEXT         Set property value, can be used when grouping is
                           set to a property parameter

  -s, --price-symbol TEXT  Limit to this price symbol
```
This command returns the currently open orders for each NFT type.
```
hiveengine nftopen -g name -v "Basic Home" CITY
```
would return the open orders for one specific NFT type:
```
+-------------+---------------------------------------+-------+
| priceSymbol | grouping                              | count |
+-------------+---------------------------------------+-------+
| SIM         | {'name': 'Basic Home', 'type': ''}    | 0     |
| BEER        | {'name': 'Basic Home', 'type': ''}    | 0     |
| SWAP.HIVE   | {'name': 'Basic Home', 'type': ''}    | 0     |
| SWAP.STEEM  | {'name': 'Basic Home', 'type': ''}    | 0     |
| STARBITS    | {'name': 'Basic Home', 'type': ''}    | 0     |
| LEO         | {'name': 'Basic Home', 'type': ''}    | 0     |
| SWAP.HIVE   | {'name': 'Basic Home', 'type': '1st'} | 344   |
| SIM         | {'name': 'Basic Home', 'type': '1st'} | 1194  |
| BEER        | {'name': 'Basic Home', 'type': '1st'} | 1     |
| WEED        | {'name': 'Basic Home', 'type': '1st'} | 1     |
| STEM        | {'name': 'Basic Home', 'type': '1st'} | 0     |
| SWAP.STEEM  | {'name': 'Basic Home', 'type': '1st'} | 0     |
+-------------+---------------------------------------+-------+
```
### nftparams
```
hiveengine nftparams
```
returns the fees for creating NFTs:
```
+-------------------------+----------------------------------+
| key                     | value                            |
+-------------------------+----------------------------------+
| _id                     | 1                                |
| nftCreationFee          | 100                              |
| nftIssuanceFee          | {'BEE': '0.001', 'PAL': '0.001'} |
| dataPropertyCreationFee | 100                              |
| enableDelegationFee     | 1000                             |
+-------------------------+----------------------------------+
```

### nftsell
```
Usage: hiveengine nftsell [OPTIONS] SYMBOL [NFT_IDS]... PRICE PRICE_SYMBOL

  Create a sell order on the market

Options:
  -a, --account TEXT  Buy with this account (uses the beem default account
                      when not set)

  -f, --fee INTEGER   Market fee 500 -> 5% (defaults is 500)
  -y, --yes           Answer yes to all questions
```

This command creates a new sell order:
```
hiveengine nftsell -a holger80 STAR 7147 1150 STARBITS
```
and I can then check if it has worked by:
```
hiveengine nftsellbook -g type -v FanBoost1 -l 5 STAR
```

### nftsellbook
```
Usage: hiveengine nftsellbook [OPTIONS] SYMBOL

  Returns the sell book for the given symbol

Options:
  -a, --account TEXT       Buy with this account (defaults to
                           "default_account")

  -g, --grouping TEXT      Can be set to a grouping parameter, or to
                           parameter.value

  -v, --value TEXT         Set property value, can be used when grouping is
                           set to a property parameter

  -s, --price-symbol TEXT  Limit to this price symbol
  -n, --nft-id TEXT        Limit to this nft id
  -l, --limit TEXT         Limit to shown entries
```
It is possible to limit the returned open sell orders by a specific property:
```
hiveengine nftsellbook -g name -v "Basic Home" -s SIM -l 10 CITY
```
will return the 10 cheapest offers for Basic Home NFTs which are sold by SIM tokens:
```
+--------+------------+------------+---------+-------------+--------+-----------+
| nftId  | account    | name       | price   | priceSymbol | fee    | est. HIVE |
+--------+------------+------------+---------+-------------+--------+-----------+
| 191946 | lestrange  | Basic Home | 329.000 | SIM         | 2.50 % | 1.704     |
| 191944 | lestrange  | Basic Home | 329.000 | SIM         | 2.50 % | 1.704     |
| 191941 | lestrange  | Basic Home | 329.000 | SIM         | 2.50 % | 1.704     |
| 191936 | lestrange  | Basic Home | 329.000 | SIM         | 2.50 % | 1.704     |
| 191902 | lestrange  | Basic Home | 329.000 | SIM         | 2.50 % | 1.704     |
| 194596 | bobawondua | Basic Home | 330.000 | SIM         | 2.50 % | 1.709     |
| 194587 | bobawondua | Basic Home | 330.000 | SIM         | 2.50 % | 1.709     |
| 194584 | bobawondua | Basic Home | 330.000 | SIM         | 2.50 % | 1.709     |
| 194582 | bobawondua | Basic Home | 330.000 | SIM         | 2.50 % | 1.709     |
| 194581 | bobawondua | Basic Home | 330.000 | SIM         | 2.50 % | 1.709     |
+--------+------------+------------+---------+-------------+--------+-----------+
```

I added the estimated HIVE token price to each order. The result table is  sorted by the estimated HIVE price. This allows to check which offer has currently the best price. The HIVE price is calculated by using the last token price which is returned by the API.

### nfttrades
```
Usage: hiveengine nfttrades [OPTIONS] [SYMBOL]

  Returns the trades history

Options:
  -a, --account TEXT  Buy with this account (defaults to "default_account")
```
This shows the last trades for a NFT symbol.
___

*If you like what I do, consider casting a vote for me as witness on [Hivesigner](https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1) or on [PeakD](https://peakd.com/witnesses)*
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 634 others
👎  
properties (23)
authorholger80
permlinkhiveengine---nft-support-has-been-added
categoryhive-139531
json_metadata"{"canonical_url": "https://hive.blog/hive-139531/@holger80/hiveengine---nft-support-has-been-added", "community": "hive-139531", "app": "beempy/0.24.5", "users": ["nftmarket"], "links": ["https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1", "https://peakd.com/witnesses", "https://images.hive.blog/DQmcbvjRsW6fY2xQRfE9YN6v6XbkP9GLgjg7G4JWUVhW2xu/image", "https://hive-engine.com/", "https://github.com/holgern/beem", "https://github.com/holgern/hiveengine"], "tags": ["development", "hiveengine", "python", "nft"]}"
created2020-07-04 22:35:12
last_update2020-07-04 22:35:12
depth0
children14
last_payout2020-07-11 22:35:12
cashout_time1969-12-31 23:59:59
total_payout_value62.445 HBD
curator_payout_value48.495 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,432
author_reputation358,857,509,568,825
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,343,858
net_rshares285,830,050,641,729
author_curate_reward""
vote details (699)
@actnearn ·
$0.05
Excellent development. Hive could be hub for NFTs. But hive-engine need to work on establishing decentralized nodes to increase trust.
👍  ,
👎  
properties (23)
authoractnearn
permlinkqczeaw
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-05 05:37:45
last_update2020-07-05 05:37:45
depth1
children0
last_payout2020-07-12 05:37:45
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation96,044,719,844,697
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,348,609
net_rshares230,730,205,058
author_curate_reward""
vote details (3)
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p> Hey @holger80, here is a little bit of <code>BEER</code> from @risingstargame for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
properties (22)
authorbeerlover
permlinkre-hiveengine---nft-support-has-been-added-20200705t061531z
categoryhive-139531
json_metadata"{"app": "beem/0.23.11"}"
created2020-07-05 06:15:33
last_update2020-07-05 06:15:33
depth1
children0
last_payout2020-07-12 06:15:33
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_length527
author_reputation25,851,316,436,857
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,349,027
net_rshares0
@cryptoknight12 ·
$0.05
wow, I've been waiting for someone to write code so I can tool around with dcity's nft market in python! This is awesome thank you for the update!
👍  , , ,
👎  
properties (23)
authorcryptoknight12
permlinkqcywqn
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-04 23:18:24
last_update2020-07-04 23:18:24
depth1
children0
last_payout2020-07-11 23:18:24
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length146
author_reputation77,839,196,919,506
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,344,462
net_rshares235,787,201,537
author_curate_reward""
vote details (5)
@eveyese1312 ·
$0.05
I am new to the platform and I consider myself a novice in this world, I would love to begin to obtain knowledge and know how to take full advantage of all this, any contribution or help would be welcome to develop in hive
👍  ,
👎  
properties (23)
authoreveyese1312
permlinkqcz6yg
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-05 02:59:12
last_update2020-07-05 02:59:12
depth1
children0
last_payout2020-07-12 02:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length222
author_reputation673,033,061,119,973
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,346,967
net_rshares233,028,173,006
author_curate_reward""
vote details (3)
@hivebuzz ·
Congratulations @holger80! 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/@holger80/upvotes.png?202007042010"></td><td>You distributed more than 18000 upvotes. Your next target is to reach 19000 upvotes.</td></tr>
</table>

<sub>_You can view [your badges on your board](https://hivebuzz.me/@holger80) And compare to others on 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>



###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22109%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/109)!
properties (22)
authorhivebuzz
permlinkhivebuzz-notify-holger80-20200704t225158000z
categoryhive-139531
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2020-07-04 22:51:57
last_update2020-07-04 22:51:57
depth1
children0
last_payout2020-07-11 22:51:57
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_length816
author_reputation369,483,390,319,365
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,344,103
net_rshares0
@hivepeople ·
$0.05
awesome news!
👍  ,
👎  
properties (23)
authorhivepeople
permlinkre-holger80-qcz0xo
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.07.1"}
created2020-07-05 00:49:00
last_update2020-07-05 00:49:00
depth1
children0
last_payout2020-07-12 00:49:00
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation28,230,061,427,644
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,345,682
net_rshares233,886,401,561
author_curate_reward""
vote details (3)
@maxuvv ·
Hi @holger80, you have received a small bonus upvote from MAXUV.
This is to inform you that you now have [new MPATH tokens](https://hive-engine.com/?p=market&t=MPATH) in your Hive-Engine wallet.
Please [read this post](https://peakd.com/hive-167922/@mpath/mpath-weekly-report-and-token-distribution-26-april-2020) for more information.
Thanks for being a member of both MAXUV *and* MPATH!
properties (22)
authormaxuvv
permlinkre-hiveengine---nft-support-has-been-added-20200704t223719z
categoryhive-139531
json_metadata"{"app": "rewarding/0.1.0"}"
created2020-07-04 22:37:18
last_update2020-07-04 22:37:18
depth1
children0
last_payout2020-07-11 22:37:18
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_length393
author_reputation32,074,948,443
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,343,885
net_rshares0
@risingstargame ·
$0.05
Very extensive set of features. Excellent stuff. Having the equivalent HIVE price for market orders is something that I need to add to [Rising Star](https://www.risingstargame.com/) at some point but who knows when that will be!

[![](https://files.peakd.com/file/peakd-hive/risingstargame/BYISENaH-rising20star20banner.jpg)](https://www.risingstargame.com?referrer=atomcollector)

[Rising Star](https://www.risingstargame.com?referrer=atomcollector) The brand new Hive NFT game. Play for FREE now! That deserves a !BEER
👍  ,
👎  
properties (23)
authorrisingstargame
permlinkre-holger80-qczg1j
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.07.1"}
created2020-07-05 06:15:18
last_update2020-07-05 06:15:18
depth1
children0
last_payout2020-07-12 06:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length520
author_reputation286,326,584,026,601
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,349,022
net_rshares231,154,315,167
author_curate_reward""
vote details (3)
@simplegame ·
$0.05
This is awesome. I have my nft's but have not used them since Steem split.
I will check this out and rebuild some of my functionality.

This is actually super exciting for me.
👍  ,
👎  
properties (23)
authorsimplegame
permlinkre-holger80-qcyvp8
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.07.1"}
created2020-07-04 22:55:57
last_update2020-07-04 22:55:57
depth1
children0
last_payout2020-07-11 22:55:57
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation138,587,390,684,623
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,344,162
net_rshares238,984,552,030
author_curate_reward""
vote details (3)
@simplegame ·
$0.03
what about as an NFT owner. issuing NFT's?
I use normal beem commands for that.
👍  ,
👎  
properties (23)
authorsimplegame
permlinkre-holger80-qcyvrp
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.07.1"}
created2020-07-04 22:57:27
last_update2020-07-04 22:57:27
depth1
children3
last_payout2020-07-11 22:57:27
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation138,587,390,684,623
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,344,193
net_rshares241,299,455,645
author_curate_reward""
vote details (3)
@christopher45wr ·
By following these simple steps on this website, you can bring from $5000-$8000 of extra income every month... All you need is a computer and a internet connection and you are ready to start. Learn how to make a steady income for yourself on following web address ►►►►►►►► http://JobneWs3.com
👎  , , , ,
properties (23)
authorchristopher45wr
permlinkqd0g2c
categoryhive-139531
json_metadata{"links":["http://JobneWs3.com"],"app":"hiveblog/0.1"}
created2020-07-05 19:13:24
last_update2020-07-05 19:13:24
depth2
children0
last_payout2020-07-12 19:13:24
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_length292
author_reputation-37,655,483,502
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,359,033
net_rshares-2,409,950,943,977
author_curate_reward""
vote details (5)
@holger80 ·
$0.03
Nft owner related commands are still missing, I will add them in next (problem is that I cannot test them). 
👍  , , , , , , ,
properties (23)
authorholger80
permlinkre-simplegame-qcyvvj
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.07.1"}
created2020-07-04 22:59:42
last_update2020-07-04 22:59:42
depth2
children1
last_payout2020-07-11 22:59:42
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation358,857,509,568,825
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,344,229
net_rshares120,931,096,249
author_curate_reward""
vote details (8)
@simplegame ·
ahhh...
I have 3 different NFT's
I could make your account an issuer account to test.

Let me get in to them and I will post in the BEEM discord
properties (22)
authorsimplegame
permlinkre-holger80-qcyw3o
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.07.1"}
created2020-07-04 23:04:39
last_update2020-07-04 23:04:39
depth3
children0
last_payout2020-07-11 23:04:39
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_length144
author_reputation138,587,390,684,623
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,344,311
net_rshares0
@the100 ·
$0.05
Wow, that's pretty cool. I'm still learning to code myself and have yet to touch python. Can we also do something like this using JS for displaying on web?
👍  ,
👎  
properties (23)
authorthe100
permlinkre-holger80-qczcxo
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.07.1"}
created2020-07-05 05:08:18
last_update2020-07-05 05:08:18
depth1
children0
last_payout2020-07-12 05:08:18
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation22,833,805,503,520
root_title"hiveengine - NFT support has been added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,348,369
net_rshares232,183,348,147
author_curate_reward""
vote details (3)