create account

获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached by oflyhigh

View this thread on: hive.blogpeakd.comecency.com
· @oflyhigh ·
$459.28
获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached
![](https://steemitimages.com/DQmd41ttqyVU8yUVY6NGg4RT887uiJRzkVF18oiBMenMpyJ/image.png)

我在之前一系列文章中讲过多人如何共同操作一个(公共)账户,以及如何获取共同操作账户所做操作的真实操作者等。
* [STEEMIT高级操作之:如何多人共同维护一个公共STEEMIT账户(ID)](https://steemit.com/cn/@oflyhigh/steemit-steemit-id)
* [通过事务ID(transaction id) 获取事务(transaction) / Database API: get_transaction](https://steemit.com/cn-programming/@oflyhigh/id-transaction-id-transaction-database-api-gettransaction)
* [珍惜羽毛 / STEEM区块链忠实的记录你的操作 / 获得共同操作账户的真实操作者](https://steemit.com/cn/@oflyhigh/steem)

但是很多朋友可能依旧是一头雾水,这里我来总结一下,并附上简单的脚本:

# 获取共同操作账户的操作者列表 / Obtain the operator list

首先,所谓共同操作账户,亦即一个账户有多个操作者:
以 @laodr 为例:

https://steemitimages.com/0x0/https://steemitimages.com/DQmPaGAdfFcFLgNgmFKZdzPuP7ovhMvomfkhWUUomSD57NA/image.png

茶馆的几位茶东,分别是 @lemoojiang  @ace108 @oflyhigh @deanliu @rivalhw (排名不分先后)
所以可以知道这六组公钥分别是五位茶东加laodr 本身。
分别对比六组公钥以及五位茶东的公钥,即可得知操作这列表

如果一个公共账户有多个操作者,但是操作者并未公开,这时候想知道操作者列表略有难度,基本思路是对比,但是几万个账户如何逐一对比?这时候可以考虑把账户数据整个拉下来,本地比较,或者使用数据库服务,比如steemdata, 这些属于另外的话题,暂不做深入探讨了。

# 获取共同操作账户的某项操作信息 /  Obtain information of a transaction 

或者共同操作账户的某项操作信息很简单,使用steem查看对应账户即可,当然也可以用API: `get_account_history`取出一定数量的操作,然后找到需要的内容。

简单来讲,为了获取真实操作者,我们需要两项信息:
* block_num
* transaction_id
比如以下操作:
![20170704100617.png](https://steemitimages.com/DQmRAX9URbnY2tH4MasStzZKsvQwwAr7scd1bC2ZGAVruqp/20170704100617.png)

block_num 为:13362801
transaction_id 为: fca06cc1cb09a93c2edf57d30bbf1583a59b1f26

# 脚本 / The script

以下为获取共同操作账户某个操作的真实操作者的简单脚本
使用官网的python库

其中通过Signed Transaction 计算出对应公钥部分应该有简洁的方式,但是我试了一下不工作,可能我调用方式有误,感兴趣的读者可以自己试试。

公钥列表部分请按上述描述方法,以及你要查询的共同操作账户自行补充。


```
#!/usr/bin/env python

import sys
from pprint import pprint
from steem import Steem
from steembase import transactions
from steembase.account import PublicKey
steem_node='https://steemd.steemit.com'

pk_dict = {
'STM8Jee8GQJTNyeonvrd5xcKhNNDbCWbgWB5JuBs4wpxZEfXXXXXX':'user1',
'STM5tT6fKtodfdMGxtcgsQuEYypmMwuLCVaZdsQ7HcbSKCXXXXXXX':'user2',
'STM4wU99xY8zty7LsJFABsPw54iMMxtkndXvr4AAmJufpkLXXXXXX':'user3',
'STM84UFE7DCn8fjMgLw5t2aKBRvQW1qxcwBVWYbek6knJSbCXXXXX':'user4',
'STM8Jee8GQJTNyeonvrd5xcCWbgWB5JuBs4wpxZEfB3KDzXXXXXXX':'user5'
}

help_msg = '''Usage: {} block_num txid 
    Example: {} '''

def get_real_operator(steem, block_num, tx_id):

	block = steem.get_block(block_num)
	index = block['transaction_ids'].index(tx_id)
	tx =  block['transactions'][index]
	
	real_operator = 'Unknown'
	tx_obj = transactions.SignedTransaction(**tx)
	
	for pk_str in pk_dict.keys():
		pk = PublicKey(pk_str)
		pks = [pk]
		try:
			tx_obj.verify(pks, "STEEM")
		except:
			continue
		
		real_operator = pk_dict[pk_str]
		break

	return real_operator, tx

def main(argv=None):

	if len(sys.argv) != 3:
		print(help_msg.format(sys.argv[0], sys.argv[0]))
		print(sys.argv)
		exit()

	block_num = int(sys.argv[1])
	tx_id = sys.argv[2]

	print('-------------------------------------------------------')
	steem = Steem(node=steem_node)

	real_operator, tx = get_real_operator(steem, block_num, tx_id)
	pprint(tx)
	print(f"The real operator of above tx: {real_operator}")
	print('Done!')
	
# ****************************
# main function
# ****************************

if __name__ == "__main__":
        sys.exit(main())
```

# 结论 / Conclusion

* STEEMIT 可以多人操作同一个账户
The steemit ID can be operated by multi accounts
* 通过对比公钥的方式可以获得操作者列表(名单及对应公钥)
We can obtain the operator list by compare the public keys
* 通过steemd或者`get_account_history`可以获取block number 以及 transaction id
We can get block number & transaction id from a transaction by steemd or API
* 通过block number 以及 transaction id 可以获取Signed Transaction
Get Signed Transaction from block
* 通过Signed Transaction 与公钥列表可以判断出哪个公钥对应的私钥对Transaction进行的签名
Calculated public key which correspond to this transaction
* 通过公钥获取操作者亦即我们说的`真实操作者`
Get the real operator 

欢迎讨论,欢迎指正。

----
感谢阅读 / Thank you for reading.
欢迎upvote、resteem以及 following me @oflyhigh 😎
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 180 others
properties (23)
authoroflyhigh
permlinkget-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached
categorycn
json_metadata{"tags":["cn","cn-programming","steem","steemit","python"],"users":["laodr","lemoojiang","ace108","oflyhigh","deanliu","rivalhw"],"image":["https://steemitimages.com/DQmd41ttqyVU8yUVY6NGg4RT887uiJRzkVF18oiBMenMpyJ/image.png","https://steemitimages.com/0x0/https://steemitimages.com/DQmPaGAdfFcFLgNgmFKZdzPuP7ovhMvomfkhWUUomSD57NA/image.png","https://steemitimages.com/DQmRAX9URbnY2tH4MasStzZKsvQwwAr7scd1bC2ZGAVruqp/20170704100617.png"],"links":["https://steemit.com/cn/@oflyhigh/steemit-steemit-id","https://steemit.com/cn-programming/@oflyhigh/id-transaction-id-transaction-database-api-gettransaction","https://steemit.com/cn/@oflyhigh/steem"],"app":"steemit/0.1","format":"markdown"}
created2017-07-04 02:36:39
last_update2017-07-04 02:36:39
depth0
children24
last_payout2017-07-11 02:36:39
cashout_time1969-12-31 23:59:59
total_payout_value373.354 HBD
curator_payout_value85.927 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,873
author_reputation6,315,849,587,633,206
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,221,265
net_rshares69,868,599,093,561
author_curate_reward""
vote details (244)
@alamjroh ·
What's that look like?
properties (22)
authoralamjroh
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170705t134852462z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-05 13:47:09
last_update2017-07-05 13:47:09
depth1
children0
last_payout2017-07-12 13:47: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_length22
author_reputation-99,893,020,082
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,398,985
net_rshares0
@altcointrends ·
Wow.. thanks for putting this together :)
properties (22)
authoraltcointrends
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t062128497z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 06:21:27
last_update2017-07-04 06:21:27
depth1
children0
last_payout2017-07-11 06:21: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_length41
author_reputation267,244,538,554
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,237,778
net_rshares0
@autothrills ·
Informative post
properties (22)
authorautothrills
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t074310249z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 07:43:12
last_update2017-07-04 07:43:12
depth1
children0
last_payout2017-07-11 07:43: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_length16
author_reputation3,081,820,185
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,244,441
net_rshares0
@beautifulbella ·
对不会PROGRAMMING的我很复杂啊。有没有可能做一个网页,我们输入URL: https://steemit.com/cn/@oflyhigh/get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached 然后就看到是@oflyhigh发表此帖。
properties (22)
authorbeautifulbella
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t034313514z
categorycn
json_metadata{"tags":["cn"],"links":["https://steemit.com/cn/@oflyhigh/get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached"],"app":"steemit/0.1"}
created2017-07-04 03:43:27
last_update2017-07-04 03:43:27
depth1
children1
last_payout2017-07-11 03:43: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_length193
author_reputation1,876,932,920,921
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,226,174
net_rshares0
@oflyhigh ·
网页是可以有的
不过还要主机啥的,挺麻烦的就是啦,😄
properties (22)
authoroflyhigh
permlinkre-beautifulbella-re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t045428201z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 04:54:30
last_update2017-07-04 04:54:30
depth2
children0
last_payout2017-07-11 04:54: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_length26
author_reputation6,315,849,587,633,206
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,231,356
net_rshares0
@coldhair ·
这次真的看不懂了,不明觉厉。更喜欢写的故事,有大片儿的既视感。
properties (22)
authorcoldhair
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t030331146z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 03:03:36
last_update2017-07-04 03:03:36
depth1
children1
last_payout2017-07-11 03:03: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_length31
author_reputation34,617,352,014,488
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,223,278
net_rshares0
@oflyhigh ·
过奖了
写故事的感觉就像宋丹丹写《月子》,十天憋出来半个字......
properties (22)
authoroflyhigh
permlinkre-coldhair-re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t032223848z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 03:22:27
last_update2017-07-04 03:22:27
depth2
children0
last_payout2017-07-11 03:22: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_length35
author_reputation6,315,849,587,633,206
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,224,652
net_rshares0
@enjoywithtroy ·
$0.95
I can tell you put some serious work into that post. Thank you my friend.
👍  
properties (23)
authorenjoywithtroy
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t050933951z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 05:10:27
last_update2017-07-04 05:10:27
depth1
children0
last_payout2017-07-11 05:10:27
cashout_time1969-12-31 23:59:59
total_payout_value0.712 HBD
curator_payout_value0.237 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation142,851,883,439,160
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,232,547
net_rshares145,505,962,938
author_curate_reward""
vote details (1)
@hammadakhtar ·
大!!感谢您与我们分享此信息。
properties (22)
authorhammadakhtar
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t060025739z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 06:00:27
last_update2017-07-04 06:00:27
depth1
children0
last_payout2017-07-11 06:00: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_length15
author_reputation2,815,092,829,230
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,236,252
net_rshares0
@heidy0221 ·
woww buen post
properties (22)
authorheidy0221
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t190557685z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 19:05:57
last_update2017-07-04 19:05:57
depth1
children0
last_payout2017-07-11 19:05: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_length14
author_reputation5,552,675,743
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,311,787
net_rshares0
@kelly92 ·
You have a very thoughtful mind
properties (22)
authorkelly92
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t040041236z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 04:00:42
last_update2017-07-04 04:00:42
depth1
children0
last_payout2017-07-11 04:00: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_length31
author_reputation57,455,520,781
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,227,556
net_rshares0
@luxman ·
Nice
properties (22)
authorluxman
permlinkre-oflyhigh-201774t104016914z
categorycn
json_metadata{"tags":"cn","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-04 03:40:18
last_update2017-07-04 03:40:18
depth1
children0
last_payout2017-07-11 03:40: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_length4
author_reputation684,988,462,931
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,225,973
net_rshares0
@midgeteg ·
Great post man :)
properties (22)
authormidgeteg
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t023729151z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 02:37:27
last_update2017-07-04 02:37:27
depth1
children0
last_payout2017-07-11 02:37: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_length17
author_reputation12,200,224,632,808
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,221,336
net_rshares0
@mihawk ·
that is a good informations. thank for the post.
properties (22)
authormihawk
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t140202662z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 14:01:36
last_update2017-07-04 14:01:36
depth1
children0
last_payout2017-07-11 14:01: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_length48
author_reputation208,117,137,064
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,279,976
net_rshares0
@mohammedfelahi ·
nice
properties (22)
authormohammedfelahi
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170709t042417153z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-09 04:24:21
last_update2017-07-09 04:24:21
depth1
children0
last_payout2017-07-16 04:24: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_length4
author_reputation4,562,190,164,246
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,825,934
net_rshares0
@nineteensixteen ·
$0.04
两年后追到此处,真奇幻,严重感谢
👍  
properties (23)
authornineteensixteen
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20190317t160423591z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2019-03-17 16:04:24
last_update2019-03-17 16:04:24
depth1
children1
last_payout2019-03-24 16:04:24
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation71,722,004,410,188
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,469,714
net_rshares55,430,602,224
author_curate_reward""
vote details (1)
@oflyhigh ·
哈哈,客气了
properties (22)
authoroflyhigh
permlinkre-nineteensixteen-re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20190318t003108566z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2019-03-18 00:31:12
last_update2019-03-18 00:31:12
depth2
children0
last_payout2019-03-25 00:31: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_length6
author_reputation6,315,849,587,633,206
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,490,072
net_rshares0
@patricksanlin ·
thank you for sharing.
properties (22)
authorpatricksanlin
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t045414014z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 04:54:24
last_update2017-07-04 04:54:24
depth1
children0
last_payout2017-07-11 04:54: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_length22
author_reputation18,452,495,002,412
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,231,346
net_rshares0
@rawpride ·
I wish I understood this post!
properties (22)
authorrawpride
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t050015439z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 05:00:03
last_update2017-07-04 05:00:03
depth1
children0
last_payout2017-07-11 05:00: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_length30
author_reputation18,693,214,393,238
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,231,751
net_rshares0
@ricardot ·
good post
properties (22)
authorricardot
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t033604680z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 03:36:09
last_update2017-07-04 03:36:09
depth1
children0
last_payout2017-07-11 03:36: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_reputation24,387,146,684
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,225,635
net_rshares0
@sukhvir ·
Hello Friend Nice Post by You

Please see my post under the title 
"Please Check the POST"
& Respond...

Thank you very much
properties (22)
authorsukhvir
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170705t102605246z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-05 10:26:12
last_update2017-07-05 10:26:12
depth1
children0
last_payout2017-07-12 10:26: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_length124
author_reputation19,206,567,288
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,380,957
net_rshares0
@technium ·
show me in english please
properties (22)
authortechnium
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t211949499z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 21:19:48
last_update2017-07-04 21:19:48
depth1
children0
last_payout2017-07-11 21:19: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_length25
author_reputation5,402,319,412,741
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,324,380
net_rshares0
@tumutanzi ·
不错,这简直是一篇论文,你们这些老手们技术真高。感谢分享技巧。
properties (22)
authortumutanzi
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t132249145z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 13:22:45
last_update2017-07-04 13:22:45
depth1
children0
last_payout2017-07-11 13:22: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_length31
author_reputation193,777,509,634,731
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,275,363
net_rshares0
@vikbuddy ·
Nice Post , Thanks for Sharing. Upvoted and Followed. Have a Good Day. Cheers:)
properties (22)
authorvikbuddy
permlinkre-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t035835878z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-07-04 03:59:12
last_update2017-07-04 03:59:12
depth1
children0
last_payout2017-07-11 03:59: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_length79
author_reputation118,167,621,777,662
root_title"获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,227,428
net_rshares0