create account

天价费用的消息接收软件 / Test Bitshares Memo Monitor by oflyhigh

View this thread on: hive.blogpeakd.comecency.com
· @oflyhigh ·
$186.68
天价费用的消息接收软件 / Test Bitshares Memo Monitor
闲着无聊,合计做一个bitshares的Memo监视功能,应该挺好玩的。比如说,谁给我转了50W BTS,并附加了备注,我一下子就会收到消息。如果再加上声光报警,***语音提示,滴,你收到了一笔50W BTS的转账***,这该多美啊!😍

![](https://steemitimages.com/DQmNTkhtJgnNGK5WL2ncoXRsHWJfzTzFq2WG2ehUVYBHs2N/image.png)
(图源 :[pixabay](https://pixabay.com/))

# 规划

说干就干,初步设想是这样滴:
* 监控bitshares区块链上的转账操作
* 如果转账的接收方是我指定的ID
  * 解密Memo信息
  * ~~发布消息到MQTT代理~~
  * ~~MQTT客户端收到订阅消息后在液晶屏上显示~~
  * ~~MQTT客户端声光报警~~
  * 在屏幕上显示Memo

想来想去,我的MQTT服务器早就被我扔垃圾堆里了,MQTT的客户端的代码我也早忘干净了,那么还是简化一下任务吧,在屏幕一下凑合吧。

# 代码

有了上述思路,以及我们之前的学习,那么代码实现起来是很简单的
一个粗糙无比的代码示例如下:


```
from pprint import pprint

from bitshares import BitShares
from bitshares.blockchain import Blockchain
from bitshares.memo import Memo

account = 'test2018'

bts = BitShares()
chain = Blockchain()

id = bts.rpc.get_account_by_name(account)['id']
print(id)

def get_memo_text(op):
        m = Memo(op['from'], op['to'])
        enc = op['memo']
        plaintext = m.decrypt(enc)
        return plaintext

for operation in chain.stream(opNames=['transfer']):
        if operation['to'] == id:
                print("You got Message")
                msg = get_memo_text(operation)
                from_user =  bts.rpc.get_account(operation['from'])['name']
                print(f"Message from {from_user}: {msg}")
        #pprint(operations)
```
# 测试

下面我们来测试一下上边的代码是否工作。

![](https://steemitimages.com/DQmRTQ8zhaZEiPti5x7wBAdu4NscPBivfWaMjEM597kzkfH/image.png)

接收到的信息如下(后边两条文本):
![](https://steemitimages.com/DQmQ4j941C8MKGTvq4jFLCfXwNi2imWNmwu4DDxLBLaURsp/image.png)
看起来我的程序是正常工作地。


# 需要改进的地方

* 监控多个用户
* 指定节点以提升处理速度
* 在Blockchain以及Memo类实例中指定bitshares_instance
* 在Blockchain实例中使用head模式,提升响应速度
* 在消息输出中显示时间
* 在消息中输出接收到的资产类型以及数量

如果再加上转账(发消息)功能,这就是一个聊天软件嘛。

# 问题

![](https://steemitimages.com/DQmadFGRoYMVSbJESJnymcsUFdmz6CNmx5x4EupGM1DyFJb/image.png)
(图源 :[pixabay](https://pixabay.com/))

尽管这个听起来很好玩,但是我不打算再去玩了,也不打算去完善了。为啥?上边截图中显示的转账费用竟然高达0.01759 BTS,按现在BTS 3.51人民币的价格计算,***一条消息竟然需要至少6分钱***!这太奢侈了吧,像我这种话痨,每天聊个几十万条不费劲,姑且算10W条吧,那就是6000多块钱啊。

如果这软件普及了,估计能让大家更深刻地理解***沉默是金***的道理吧。


# 相关链接


* [继续探索python-bitshares的Memo类 / Pub(Alice) * Priv(Bob) = Pub(Bob) * Priv(Alice)](https://steemit.com/python-bitshares/@oflyhigh/python-bitshares-memo-pub-alice-priv-bob-pub-bob-priv-alice)
* [python-bitshares 边学边记 (九) / Memo类](https://steemit.com/python-bitshares/@oflyhigh/python-bitshares-memo)
* [python-bitshares 边学边记 (八) / Blockchain类](https://steemit.com/python-bitshares/@oflyhigh/python-bitshares-blockchain)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 107 others
properties (23)
authoroflyhigh
permlinktest-bitshares-memo-monitor
categorypython-bitshares
json_metadata{"tags":["python-bitshares","bitshares","python","cn","cn-programming"],"image":["https://steemitimages.com/DQmNTkhtJgnNGK5WL2ncoXRsHWJfzTzFq2WG2ehUVYBHs2N/image.png","https://steemitimages.com/DQmRTQ8zhaZEiPti5x7wBAdu4NscPBivfWaMjEM597kzkfH/image.png","https://steemitimages.com/DQmQ4j941C8MKGTvq4jFLCfXwNi2imWNmwu4DDxLBLaURsp/image.png","https://steemitimages.com/DQmadFGRoYMVSbJESJnymcsUFdmz6CNmx5x4EupGM1DyFJb/image.png"],"links":["https://pixabay.com/","https://steemit.com/python-bitshares/@oflyhigh/python-bitshares-memo-pub-alice-priv-bob-pub-bob-priv-alice","https://steemit.com/python-bitshares/@oflyhigh/python-bitshares-memo","https://steemit.com/python-bitshares/@oflyhigh/python-bitshares-blockchain"],"app":"steemit/0.1","format":"markdown"}
created2018-01-15 04:03:15
last_update2018-01-15 04:03:15
depth0
children23
last_payout2018-01-22 04:03:15
cashout_time1969-12-31 23:59:59
total_payout_value159.844 HBD
curator_payout_value26.835 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,443
author_reputation6,292,780,288,692,105
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,611,265
net_rshares19,800,871,595,993
author_curate_reward""
vote details (171)
@comrade ·
I commend you very highly for your indepth analysis on both Bitcoin  and  Bithare. Many have benefitted from your good works. I upvote you.
properties (22)
authorcomrade
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t043620989z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:36:36
last_update2018-01-15 04:36:36
depth1
children0
last_payout2018-01-22 04:36: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_length139
author_reputation228,517,759,777
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,616,499
net_rshares0
@deanliu ·
***语音提示,滴,你收到了一笔0.001 BTS的转账***

這也美嗎?
properties (22)
authordeanliu
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t041038226z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:10:51
last_update2018-01-15 04:10:51
depth1
children2
last_payout2018-01-22 04:10:51
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_length38
author_reputation3,088,576,810,035,728
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,612,490
net_rshares0
@oflyhigh ·
人艰不拆
properties (22)
authoroflyhigh
permlinkre-deanliu-re-oflyhigh-test-bitshares-memo-monitor-20180115t041639617z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:16:42
last_update2018-01-15 04:16:42
depth2
children1
last_payout2018-01-22 04:16:42
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_length4
author_reputation6,292,780,288,692,105
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,613,427
net_rshares0
@eeeagle ·
瞄了一眼钱包 流口水了
properties (22)
authoreeeagle
permlinkre-oflyhigh-re-deanliu-re-oflyhigh-test-bitshares-memo-monitor-20180115t082504572z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 08:25:06
last_update2018-01-15 08:25:06
depth3
children0
last_payout2018-01-22 08:25: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_length11
author_reputation701,771,791
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,651,043
net_rshares0
@fr3eze ·
Steem 不就是现成为聊天而设计的吗
properties (22)
authorfr3eze
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t061140840z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 06:11:42
last_update2018-01-15 06:11:42
depth1
children1
last_payout2018-01-22 06:11:42
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_length19
author_reputation62,201,653,753,684
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,630,766
net_rshares0
@oflyhigh ·
steem不要手续费
properties (22)
authoroflyhigh
permlinkre-fr3eze-re-oflyhigh-test-bitshares-memo-monitor-20180115t083458209z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 08:34:57
last_update2018-01-15 08:34:57
depth2
children0
last_payout2018-01-22 08:34: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_length10
author_reputation6,292,780,288,692,105
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,652,541
net_rshares0
@hushuilan ·
话痨怎么做到沉默是金,停一会儿不说话浑身难受呀,哈哈
properties (22)
authorhushuilan
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t094354245z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 09:44:12
last_update2018-01-15 09:44:12
depth1
children0
last_payout2018-01-22 09:44:12
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_length26
author_reputation1,772,313,869,676
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,663,559
net_rshares0
@jiangchen ·
噗啊哈哈哈哈哈,沉默是金真的绝了。😂

想不通为啥你们这些大佬总有想在区块链搞事情的想法。😂

呢个,你能给我聊半小时吗?我喜欢听你说话。😂
properties (22)
authorjiangchen
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t081351280z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 08:13:51
last_update2018-01-15 08:13:51
depth1
children2
last_payout2018-01-22 08:13:51
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_length70
author_reputation65,999,946,618,359
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,649,347
net_rshares0
@oflyhigh ·
我,秦始皇,打钱
properties (22)
authoroflyhigh
permlinkre-jiangchen-re-oflyhigh-test-bitshares-memo-monitor-20180115t083417095z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 08:34:18
last_update2018-01-15 08:34:18
depth2
children1
last_payout2018-01-22 08:34: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_length8
author_reputation6,292,780,288,692,105
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,652,445
net_rshares0
@jiangchen ·
😂你赢了。我给你打点狗狗币?
properties (22)
authorjiangchen
permlinkre-oflyhigh-re-jiangchen-re-oflyhigh-test-bitshares-memo-monitor-20180115t085106297z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 08:51:06
last_update2018-01-15 08:51:06
depth3
children0
last_payout2018-01-22 08: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_length14
author_reputation65,999,946,618,359
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,655,039
net_rshares0
@meixia ·
支付宝也有语音提示了哈哈哈钱哗哗入账!
properties (22)
authormeixia
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t042056646z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:21:00
last_update2018-01-15 04:21:00
depth1
children2
last_payout2018-01-22 04:21:00
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_length19
author_reputation2,558,960,945,597
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,614,167
net_rshares0
@nostalgic1212 ·
这个入账语音提示,在人多的地方听到,有点略尴尬的.....
properties (22)
authornostalgic1212
permlinkre-meixia-re-oflyhigh-test-bitshares-memo-monitor-20180115t043824299z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:38:24
last_update2018-01-15 04:38:24
depth2
children1
last_payout2018-01-22 04:38: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_length29
author_reputation1,480,595,133,417,438
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,616,783
net_rshares0
@meixia ·
确实尴尬……所以我没开启!
properties (22)
authormeixia
permlinkre-nostalgic1212-re-meixia-re-oflyhigh-test-bitshares-memo-monitor-20180115t045943860z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:59:48
last_update2018-01-15 04:59:48
depth3
children0
last_payout2018-01-22 04:59:48
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_length13
author_reputation2,558,960,945,597
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,619,840
net_rshares0
@mintu13 ·
Nice photography..good luck succes always..
properties (22)
authormintu13
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t041624633z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:16:27
last_update2018-01-15 04:16:27
depth1
children0
last_payout2018-01-22 04:16:27
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_length43
author_reputation1,065,516,668,611
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,613,383
net_rshares0
@mk8 ·
沉默是金
properties (22)
authormk8
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t040723514z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:07:24
last_update2018-01-15 04:07:24
depth1
children0
last_payout2018-01-22 04:07: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_length4
author_reputation20,191,542,995
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,611,949
net_rshares0
@shoukath ·
Hi, 
     Very good post about bitcoin and bithare and lot of people sure get benegits from this work,
I like it kwep it up.

With Thanx.
👍  
properties (23)
authorshoukath
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t050046303z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 05:00:51
last_update2018-01-15 05:00:51
depth1
children0
last_payout2018-01-22 05:00:51
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_length137
author_reputation5,396,801,333
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,619,988
net_rshares230,821,832
author_curate_reward""
vote details (1)
@skenan ·
这个能实时检测吗?
properties (22)
authorskenan
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t081109739z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 08:11:09
last_update2018-01-15 08:11:09
depth1
children2
last_payout2018-01-22 08:11:09
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_length9
author_reputation8,219,510,746,132
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,648,937
net_rshares0
@oflyhigh ·
$0.57
使用head模式,并选取延迟比较小的节点,可以做到6秒以内收到
👍  
properties (23)
authoroflyhigh
permlinkre-skenan-re-oflyhigh-test-bitshares-memo-monitor-20180115t083346021z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 08:33:45
last_update2018-01-15 08:33:45
depth2
children1
last_payout2018-01-22 08:33:45
cashout_time1969-12-31 23:59:59
total_payout_value0.433 HBD
curator_payout_value0.141 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation6,292,780,288,692,105
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,652,367
net_rshares61,119,602,966
author_curate_reward""
vote details (1)
@skenan ·
那还不错,改天试试,谢谢!
properties (22)
authorskenan
permlinkre-oflyhigh-re-skenan-re-oflyhigh-test-bitshares-memo-monitor-20180115t183844335z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 18:38:45
last_update2018-01-15 18:38:45
depth3
children0
last_payout2018-01-22 18:38: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_length13
author_reputation8,219,510,746,132
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,765,672
net_rshares0
@tvb ·
哥真是行动力强,说干就干
properties (22)
authortvb
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t072501070z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 07:25:03
last_update2018-01-15 07:25:03
depth1
children0
last_payout2018-01-22 07:25:03
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_length12
author_reputation35,150,603,192,008
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,641,788
net_rshares0
@wilhb81 ·
这BTS的转帐费价格不菲,的确是尝试一次就够了~
properties (22)
authorwilhb81
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t044103540z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:41:03
last_update2018-01-15 04:41:03
depth1
children1
last_payout2018-01-22 04:41:03
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_length24
author_reputation228,240,073,324,104
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,617,190
net_rshares0
@seanx ·
觉得bts转账费不菲的怕是不是币圈的人吧。。。
properties (22)
authorseanx
permlinkre-wilhb81-re-oflyhigh-test-bitshares-memo-monitor-20180116t145251341z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-16 14:52:48
last_update2018-01-16 14:52:48
depth2
children0
last_payout2018-01-23 14:52:48
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_length23
author_reputation3,735,041,514
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,957,356
net_rshares0
@yasirgawad ·
good work done dear
properties (22)
authoryasirgawad
permlinkre-oflyhigh-test-bitshares-memo-monitor-20180115t042453649z
categorypython-bitshares
json_metadata{"tags":["python-bitshares"],"app":"steemit/0.1"}
created2018-01-15 04:25:00
last_update2018-01-15 04:25:00
depth1
children0
last_payout2018-01-22 04:25:00
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_length19
author_reputation1,968,258,637,697
root_title"天价费用的消息接收软件 / Test Bitshares Memo Monitor"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,614,770
net_rshares0