create account

将多个操作(operation)放入一个事务中(transaction) by oflyhigh

View this thread on: hive.blogpeakd.comecency.com
· @oflyhigh ·
$211.92
将多个操作(operation)放入一个事务中(transaction)
# 操作、事务、区块 以及区块链

先来简单介绍一下操作、事务以及区块
* ***操作(operation)***: 你在steemit上的每一项活动,发帖、回复、点赞、转账等都是操作
* ***事务(transaction)***: 事务中包含一个或者几个操作(可能是不同人不同种类操作)
* ***区块(block)***: 每个区块中可能包含一组(0组)或者N组事务
* ***区块链(blockchain)***: 一系列不断增加(3秒每个)的区块,就构成了STEEM区块链。

亦即: 
区块链由区块组成、区块中包含事务,事务中包含操作,操作是我们在STEEM上活动的基本单位。


# STEEMIT 一个事务中两个操作的例子

![](https://steemitimages.com/DQmXwkJ451C9t7oxds1Wj4xXvjpc74t8mE1YcikVd1ceD5A/image.png)
[Image source](http://www.itworks-inc.com/wp-content/uploads/2015/12/transaction-breakdown-report.jpg)

以发帖为例,我们发表帖子,可以选择发帖的同时投票,也可以选择不投票。
![](https://steemitimages.com/DQmfBVvqCxhdQRnj7Towvm2nmujYdTPZzd6xokJdjTSsLBR/image.png)
如果勾选了箭头所示的单选框,就会在发帖的同时给帖子投票。

发帖、投票是两个独立的操作,
***发帖的同时给帖子投票就是把两个操作放到一个事务中***

![](https://steemitimages.com/DQmPK6Koznda5t6MPkWfY9eufbz6ZquZ5QpyEG8gxUn2zzG/image.png)
以我的帖子为例,发帖和投票在一个事务中***有相同的transaction_id***

如果我们在steemd上打开这个transaction就会看到里边有两项操作,发帖和投票。

# Python 库处理发帖并投票的实现

Steemit Python 库也支持发帖的同时投票。
如果设置了对应参数,则在***发帖操作***以外
```
        post_op = operations.Comment(
            **{"parent_author": parent_author,
               "parent_permlink": parent_permlink,
               "author": author,
               "permlink": permlink,
               "title": title,
               "body": body,
               "json_metadata": json_metadata}
        )
        ops = [post_op]
```

额外增加了***投票操作***
```
        if self_vote:
            vote_op = operations.Vote(
                **{'voter': author,
                   'author': author,
                   'permlink': permlink,
                   'weight': 10000,
                   }
            )
        ops.append(vote_op)
```

通过这个例子可知,Python库是支持把多个操作放到一个事务中的

# 将多个操作放到一个事务中的例子

Steem 官方Python 库同时提供了一个将多个操作放到一个事务中的例子
详情可以参考这里:

https://github.com/steemit/steem-python/blob/master/docs/examples.rst

>Batching Operations

>Most of the time each transaction contains only one operation (for example, an upvote, a transfer or a new post). We can however cram multiple operations in a single transaction, to achieve better efficiency and size reduction.

>This script will also teach us how to create and sign transactions ourselves.

代码太长,感兴趣的朋友自己去看吧。

# 我的测试

我修改了这个例子,并针对我的一个回复进行测试:

![](https://steemitimages.com/DQmXLrkPf5oLz9V4LqjN46v2vGJUh2YuJggZM4q4RXmE11e/image.png)
(两个操作在一个事务中,相同的transaction_id)

![](https://steemitimages.com/DQmSkpmhyHzVhK6NaKkYfwE2krG9wwBWQmhtrLmZuPQs86R/image.png)
(两个操作在一个事务中,详情)

# 结论

使用使用官方Python库,***将多个操作(operation)放入一个事务中(transaction)是切实可行的***。
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 140 others
properties (23)
authoroflyhigh
permlinkoperation-transaction
categorycn
json_metadata{"tags":["cn","cn-programming","python"],"image":["https://steemitimages.com/DQmXwkJ451C9t7oxds1Wj4xXvjpc74t8mE1YcikVd1ceD5A/image.png","https://steemitimages.com/DQmfBVvqCxhdQRnj7Towvm2nmujYdTPZzd6xokJdjTSsLBR/image.png","https://steemitimages.com/DQmPK6Koznda5t6MPkWfY9eufbz6ZquZ5QpyEG8gxUn2zzG/image.png","https://steemitimages.com/DQmXLrkPf5oLz9V4LqjN46v2vGJUh2YuJggZM4q4RXmE11e/image.png","https://steemitimages.com/DQmSkpmhyHzVhK6NaKkYfwE2krG9wwBWQmhtrLmZuPQs86R/image.png"],"links":["http://www.itworks-inc.com/wp-content/uploads/2015/12/transaction-breakdown-report.jpg","https://github.com/steemit/steem-python/blob/master/docs/examples.rst"],"app":"steemit/0.1","format":"markdown"}
created2017-07-21 11:21:18
last_update2017-07-21 11:21:18
depth0
children27
last_payout2017-07-28 11:21:18
cashout_time1969-12-31 23:59:59
total_payout_value174.637 HBD
curator_payout_value37.282 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,480
author_reputation6,311,298,732,202,260
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,184,365
net_rshares52,410,052,212,105
author_curate_reward""
vote details (204)
@beautifulbella ·
$1.67
其实嘛这样会暴露机器人的掌控者。
👍  , , , ,
properties (23)
authorbeautifulbella
permlinkre-oflyhigh-operation-transaction-20170721t120200660z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 12:02:06
last_update2017-07-21 12:02:06
depth1
children2
last_payout2017-07-28 12:02:06
cashout_time1969-12-31 23:59:59
total_payout_value1.258 HBD
curator_payout_value0.415 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation1,876,932,920,921
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,187,624
net_rshares414,764,390,139
author_curate_reward""
vote details (5)
@oflyhigh ·
哈哈哈哈
properties (22)
authoroflyhigh
permlinkre-beautifulbella-re-oflyhigh-operation-transaction-20170721t130243902z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 13:02:45
last_update2017-07-21 13:02:45
depth2
children0
last_payout2017-07-28 13:02: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_length4
author_reputation6,311,298,732,202,260
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,192,540
net_rshares0
@randowhale ·
This post received a 4.1% upvote from @randowhale thanks to @beautifulbella!  For more information, [click here](https://steemit.com/steemit/@randowhale/introducing-randowhale-will-you-get-the-100-vote-give-it-a-shot)!
properties (22)
authorrandowhale
permlinkre-re-oflyhigh-operation-transaction-20170721t120200660z-20170727t085023
categorycn
json_metadata"{"format": "markdown", "app": "randowhale/0.1"}"
created2017-07-27 08:50:24
last_update2017-07-27 08:50:24
depth2
children0
last_payout2017-08-03 08:50: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_length218
author_reputation47,657,457,485,459
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,888,667
net_rshares0
@dimidrolshina ·
Hi, all friend please upvote my post and follow me.

please comment me.@oflyhigh
properties (22)
authordimidrolshina
permlinkre-oflyhigh-operation-transaction-20170721t122128962z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 12:21:24
last_update2017-07-21 12:21:24
depth1
children0
last_payout2017-07-28 12:21: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_length80
author_reputation2,653,574,160,120
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,189,116
net_rshares0
@guyverckw ·
小弟不才,敢問將多個操作多進一個事務中我意義在哪呢?這樣做的好處是什麼呢?
properties (22)
authorguyverckw
permlinkre-oflyhigh-operation-transaction-20170721t124151819z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 12:41:51
last_update2017-07-21 12:41:51
depth1
children4
last_payout2017-07-28 12:41: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_length37
author_reputation121,609,723,418,181
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,190,762
net_rshares0
@oflyhigh ·
好处大大的啊
😄

每次操作,其实都是一次网络通信
那么有一堆操作,是通信一次效率高,还是通信N次效率高?

还有一些和时间有关的操作,N次操作可能无法保证时效性,一次操作则无此问题
properties (22)
authoroflyhigh
permlinkre-guyverckw-re-oflyhigh-operation-transaction-20170721t130705573z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 13:07:09
last_update2017-07-21 13:07:09
depth2
children3
last_payout2017-07-28 13:07: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_length91
author_reputation6,311,298,732,202,260
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,192,898
net_rshares0
@guyverckw ·
即是說用多個操作做同一個playload來減少overhead,增加系統效率,是嗎?
會有上限嗎?例如同時放8個操作就可以提高效率,多過8個就反而會降低效率?會有這種限制嗎?
properties (22)
authorguyverckw
permlinkre-oflyhigh-re-guyverckw-re-oflyhigh-operation-transaction-20170721t131817662z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 13:18:18
last_update2017-07-21 13:18:18
depth3
children2
last_payout2017-07-28 13:18: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_length87
author_reputation121,609,723,418,181
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,193,796
net_rshares0
@jubi ·
这样是不是就可以降低带宽了。
properties (22)
authorjubi
permlinkre-oflyhigh-operation-transaction-20170721t114725273z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 11:47:48
last_update2017-07-21 11:47:48
depth1
children1
last_payout2017-07-28 11:47: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_length14
author_reputation82,406,494,254,467
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,186,433
net_rshares0
@oflyhigh ·
没有多少:)
properties (22)
authoroflyhigh
permlinkre-jubi-re-oflyhigh-operation-transaction-20170721t130218211z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 13:02:21
last_update2017-07-21 13:02:21
depth2
children0
last_payout2017-07-28 13:02:21
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_length6
author_reputation6,311,298,732,202,260
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,192,500
net_rshares0
@mamamyanmar ·
like and upvote
properties (22)
authormamamyanmar
permlinkre-oflyhigh-2017721t184035625z
categorycn
json_metadata{"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-21 12:10:39
last_update2017-07-21 12:10:39
depth1
children0
last_payout2017-07-28 12:10: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_length15
author_reputation14,121,891,848,891
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,188,262
net_rshares0
@oflyhigh ·
$1.10
test1
👍  ,
properties (23)
authoroflyhigh
permlinkre-oflyhigh-operation-transaction-20170721t112242083z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 11:22:48
last_update2017-07-21 11:22:48
depth1
children2
last_payout2017-07-28 11:22:48
cashout_time1969-12-31 23:59:59
total_payout_value0.829 HBD
curator_payout_value0.273 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation6,311,298,732,202,260
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,184,473
net_rshares273,131,812,090
author_curate_reward""
vote details (2)
@oflyhigh ·
Hello World!
properties (22)
authoroflyhigh
permlinkre-re-oflyhigh-operation-transaction-20170721t112242083z-20170721t140646
categorycn
json_metadata""
created2017-07-21 14:07:06
last_update2017-07-21 14:07:06
depth2
children1
last_payout2017-07-28 14:07: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_length12
author_reputation6,311,298,732,202,260
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,198,436
net_rshares0
@deanliu ·
hello
properties (22)
authordeanliu
permlinkre-oflyhigh-re-re-oflyhigh-operation-transaction-20170721t140646-20170722t235648966z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-22 23:56:54
last_update2017-07-22 23:56:54
depth3
children0
last_payout2017-07-29 23:56: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_length5
author_reputation3,090,651,334,998,114
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,360,267
net_rshares0
@oflyhigh ·
$1.20
test2
👍  , ,
properties (23)
authoroflyhigh
permlinkre-oflyhigh-operation-transaction-20170721t112309162z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 11:23:15
last_update2017-07-21 11:23:15
depth1
children0
last_payout2017-07-28 11:23:15
cashout_time1969-12-31 23:59:59
total_payout_value0.904 HBD
curator_payout_value0.299 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation6,311,298,732,202,260
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,184,505
net_rshares298,164,500,885
author_curate_reward""
vote details (3)
@oflyhigh ·
$1.17
test a
👍  ,
properties (23)
authoroflyhigh
permlinkre-oflyhigh-operation-transaction-20170723t081303505z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-23 08:13:09
last_update2017-07-23 08:13:09
depth1
children0
last_payout2017-07-30 08:13:09
cashout_time1969-12-31 23:59:59
total_payout_value1.088 HBD
curator_payout_value0.083 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation6,311,298,732,202,260
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,392,355
net_rshares297,021,250,779
author_curate_reward""
vote details (2)
@rea ·
长见识了,谢谢O哥 :)
properties (22)
authorrea
permlinkre-oflyhigh-operation-transaction-20170721t184656616z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 18:46:54
last_update2017-07-21 18:46:54
depth1
children0
last_payout2017-07-28 18:46: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_length12
author_reputation388,195,597,445,775
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,226,385
net_rshares0
@rezachaisar ·
I am very happy to join in steemit, your help is very I need it for the cost of my life
properties (22)
authorrezachaisar
permlinkre-oflyhigh-operation-transaction-20170721t112316436z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 11:23:24
last_update2017-07-21 11:23:24
depth1
children0
last_payout2017-07-28 11:23: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_length87
author_reputation387,134,879,116
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,184,518
net_rshares0
@shasol ·
I am so greatful to join steemit I am learning a lot from good articles.
Upvoted
properties (22)
authorshasol
permlinkre-oflyhigh-operation-transaction-20170722t194740969z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-22 19:47:45
last_update2017-07-22 19:47:45
depth1
children0
last_payout2017-07-29 19:47: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_length80
author_reputation26,682,877,461
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,341,535
net_rshares0
@shenchensucc ·
hello world 是不是每一个程序都必用的。哈哈
properties (22)
authorshenchensucc
permlinkre-oflyhigh-operation-transaction-20170722t022026791z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-22 02:20:30
last_update2017-07-22 02:20:30
depth1
children0
last_payout2017-07-29 02:20:30
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_length27
author_reputation100,205,759,373,709
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,259,081
net_rshares0
@steamitbeta ·
将多个操作放到一个事务中的例子
Thank you for this awesome post, 
I have no idea what this all means but it looks awesome.  :D
我的测试
properties (22)
authorsteamitbeta
permlinkre-oflyhigh-operation-transaction-20170722t034756973z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-22 11:12:39
last_update2017-07-22 11:12:39
depth1
children0
last_payout2017-07-29 11:12: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_length115
author_reputation220,521,242,980
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,294,168
net_rshares0
@susanlo ·
雖然看不明白,但也來湊湊熱鬧;)))
properties (22)
authorsusanlo
permlinkre-oflyhigh-operation-transaction-20170721t144636075z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 14:46:36
last_update2017-07-21 14:46:36
depth1
children2
last_payout2017-07-28 14:46: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_length18
author_reputation34,574,287,376,964
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,202,549
net_rshares0
@oflyhigh ·
我刚来也是一窍不通
properties (22)
authoroflyhigh
permlinkre-susanlo-re-oflyhigh-operation-transaction-20170721t153228488z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 15:32:30
last_update2017-07-21 15:32:30
depth2
children1
last_payout2017-07-28 15:32:30
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_reputation6,311,298,732,202,260
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,207,374
net_rshares0
@susanlo ·
嗯嗯,我要多學習學習!:):)
properties (22)
authorsusanlo
permlinkre-oflyhigh-re-susanlo-re-oflyhigh-operation-transaction-20170722t022331842z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-22 02:23:33
last_update2017-07-22 02:23:33
depth3
children0
last_payout2017-07-29 02:23: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_length15
author_reputation34,574,287,376,964
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,259,288
net_rshares0
@tyaga777 ·
С ума сойти))
properties (22)
authortyaga777
permlinkre-oflyhigh-operation-transaction-20170721t175723361z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-21 17:57:24
last_update2017-07-21 17:57:24
depth1
children0
last_payout2017-07-28 17:57: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_length13
author_reputation-98,056,610,523
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,221,975
net_rshares0
@vonnaputra ·
Wouuwww is very nice. This post gives many interesting and important information i like your post this terimakasi you have given and want to share information that is very important for us in steemit.semoga you always successful and can share interesting information again for its fore
properties (22)
authorvonnaputra
permlinkre-oflyhigh-2017721t185516437z
categorycn
json_metadata{"tags":"cn","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-21 11:55:21
last_update2017-07-21 11:55:21
depth1
children0
last_payout2017-07-28 11:55:21
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_length285
author_reputation1,960,901,919,466
root_title将多个操作(operation)放入一个事务中(transaction)
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,187,088
net_rshares0