 我在之前一系列文章中讲过多人如何共同操作一个(公共)账户,以及如何获取共同操作账户所做操作的真实操作者等。 * [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 比如以下操作:  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 😎
author | oflyhigh |
---|---|
permlink | get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached |
category | cn |
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"} |
created | 2017-07-04 02:36:39 |
last_update | 2017-07-04 02:36:39 |
depth | 0 |
children | 24 |
last_payout | 2017-07-11 02:36:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 373.354 HBD |
curator_payout_value | 85.927 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,873 |
author_reputation | 6,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,221,265 |
net_rshares | 69,868,599,093,561 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 213,277,010,089 | 5% | ||
fmooo | 0 | 8,775,666,259 | 5% | ||
steempty | 0 | 151,638,698,163 | 5% | ||
abit | 0 | 49,574,590,061,195 | 65% | ||
rossco99 | 0 | 9,803,982,450 | 1% | ||
boy | 0 | 1,936,352,092 | 100% | ||
bue-witness | 0 | 2,361,054,373 | 100% | ||
bunny | 0 | 317,788,190 | 100% | ||
bue | 0 | 40,061,938,108 | 100% | ||
mini | 0 | 1,034,948,054 | 100% | ||
moon | 0 | 131,586,640 | 100% | ||
boatymcboatface | 0 | 24,175,864,881 | 1% | ||
healthcare | 0 | 385,693,638 | 100% | ||
daniel.pan | 0 | 610,176,378 | 100% | ||
helen.tan | 0 | 135,907,475 | 100% | ||
kingscrown | 0 | 127,900,094,409 | 1% | ||
marc-fa-schiwo | 0 | 1,387,390,705 | 100% | ||
theshell | 0 | 1,819,745,679 | 1% | ||
coinbitgold | 0 | 121,645,464,806 | 50% | ||
rok-sivante | 0 | 1,153,740,619,582 | 100% | ||
wongshiying | 0 | 18,894,472,370 | 100% | ||
mark-waser | 0 | 59,707,816,281 | 33% | ||
geoffrey | 0 | 994,613,747,953 | 65% | ||
crok | 0 | 160,879,884 | 0.05% | ||
angusleung100 | 0 | 1,473,273,353 | 100% | ||
grey580 | 0 | 41,256,950,467 | 100% | ||
robrigo | 0 | 167,268,816,780 | 100% | ||
chekimon | 0 | 75,098,191 | 100% | ||
jackkang | 0 | 758,899,643,788 | 25% | ||
freeyourmind | 0 | 2,152,485,316,248 | 100% | ||
biophil | 0 | 42,535,035,021 | 100% | ||
deanliu | 0 | 963,320,263,889 | 100% | ||
rea | 0 | 204,975,229,199 | 25% | ||
lemooljiang | 0 | 133,441,802,291 | 100% | ||
ace108 | 0 | 24,099,659,088 | 1% | ||
lsc9999 | 0 | 111,758,759,900 | 100% | ||
craigslist | 0 | 260,978,669 | 100% | ||
magicmonk | 0 | 40,221,264,829 | 100% | ||
laoyao | 0 | 63,140,787,705 | 100% | ||
myfirst | 0 | 19,462,074,141 | 100% | ||
somebody | 0 | 1,104,303,663,119 | 100% | ||
feelapi | 0 | 2,789,279,432 | 60% | ||
midnightoil | 0 | 170,558,176,721 | 100% | ||
snowflake | 0 | 2,138,630,304,350 | 100% | ||
xiaohui | 0 | 724,290,921,117 | 100% | ||
elfkitchen | 0 | 32,025,949,936 | 100% | ||
fishingvideos | 0 | 554,995,446 | 100% | ||
oflyhigh | 0 | 1,329,989,354,154 | 100% | ||
xiaokongcom | 0 | 12,281,641,581 | 100% | ||
inv | 0 | 126,996,482,831 | 5% | ||
bitminter | 0 | 2,958,147,117 | 24% | ||
nextgen622 | 0 | 585,945,791,006 | 100% | ||
chinadaily | 0 | 138,258,710,129 | 100% | ||
helene | 0 | 159,676,414,042 | 100% | ||
ethansteem | 0 | 382,472,133,016 | 100% | ||
tumutanzi | 0 | 39,673,021,630 | 100% | ||
davidmwy | 0 | 263,723,896 | 100% | ||
runridefly | 0 | 10,851,935,047 | 3% | ||
stephenkendal | 0 | 337,984,113,996 | 100% | ||
mikehere | 0 | 991,271,806 | 1% | ||
davidjkelley | 0 | 2,948,111,291 | 33% | ||
digital-wisdom | 0 | 25,531,602,323 | 33% | ||
jwaser | 0 | 15,503,156,449 | 33% | ||
shieha | 0 | 24,447,578,914 | 25% | ||
bwaser | 0 | 3,637,948,222 | 33% | ||
allyouneedtoknow | 0 | 706,193,214 | 0.6% | ||
cnfund | 0 | 7,911,743,478 | 10% | ||
bitcoinparadise | 0 | 123,411,277 | 0.05% | ||
noborders | 0 | 124,772,534 | 100% | ||
ellepdub | 0 | 8,063,954,325 | 33% | ||
herpetologyguy | 0 | 93,107,747,954 | 33% | ||
drac59 | 0 | 1,033,751,427 | 1% | ||
morgan.waser | 0 | 6,536,070,479 | 33% | ||
justusagenstum | 0 | 69,412,491,711 | 100% | ||
technium | 0 | 6,305,630,292 | 100% | ||
strong-ai | 0 | 7,216,961,289 | 33% | ||
bosjaya | 0 | 139,121,943 | 60% | ||
birds90 | 0 | 25,394,110,071 | 100% | ||
steemtruth | 0 | 42,278,894,410 | 20% | ||
steemjobs | 0 | 69,632,472 | 20% | ||
forestwest | 0 | 4,555,439,584 | 100% | ||
lalala | 0 | 16,530,836,625 | 100% | ||
black-eye | 0 | 153,588,374 | 55% | ||
amat | 0 | 541,258,871 | 50% | ||
lafilip | 0 | 127,612,446 | 100% | ||
sircarlo | 0 | 2,693,099,150 | 100% | ||
jmehta | 0 | 1,401,218,872 | 100% | ||
muhtadiaremi | 0 | 53,312,734 | 100% | ||
breezin | 0 | 3,130,828,640 | 10% | ||
devilwsy | 0 | 2,163,980,624 | 100% | ||
janiceting | 0 | 2,176,034,964 | 100% | ||
ozymandias | 0 | 3,325,093,046 | 100% | ||
lydiachan | 0 | 37,093,048,418 | 100% | ||
technoprogressiv | 0 | 7,064,322,365 | 33% | ||
writingamigo | 0 | 167,343,384 | 1% | ||
azazqwe | 0 | 21,848,267,061 | 100% | ||
someonewhoisme | 0 | 2,012,729,834,409 | 100% | ||
dumping | 0 | 9,504,912,830 | 100% | ||
blackbunny | 0 | 15,044,220,142 | 100% | ||
luxman | 0 | 372,754,254 | 100% | ||
cljg918 | 0 | 347,682,023,363 | 11% | ||
esterinapeka | 0 | 2,122,482,233 | 100% | ||
lingfei | 0 | 16,476,851,476 | 100% | ||
mostshirleyalysa | 0 | 927,761,078 | 100% | ||
cwatch | 0 | 26,431,490,636 | 100% | ||
yyyy | 0 | 3,160,736,462 | 100% | ||
pertiqoues | 0 | 1,457,629,761 | 100% | ||
rcecelja2503 | 0 | 530,262,006 | 100% | ||
coldhair | 0 | 12,262,396,941 | 100% | ||
taz77 | 0 | 519,507,446 | 100% | ||
lawrenceho84 | 0 | 2,545,890,491 | 1% | ||
trafalgar | 0 | 1,767,396,173,217 | 8% | ||
laodr | 0 | 25,857,927,834 | 100% | ||
bigdaddy | 0 | 75,676,804,391 | 100% | ||
taspingo | 0 | 1,938,070,500 | 100% | ||
dr-boo | 0 | 1,885,972,329 | 100% | ||
daio | 0 | 1,274,253,865 | 100% | ||
aarellanes | 0 | 36,089,110,547 | 100% | ||
kingofdew | 0 | 19,250,167,524 | 50% | ||
synapse | 0 | 905,396,880 | 100% | ||
passion-fruit | 0 | 4,804,770,108 | 25% | ||
coocoocachoo | 0 | 2,377,666,962 | 10% | ||
froghollow | 0 | 441,633,981 | 100% | ||
fortune-master | 0 | 5,163,291,531 | 25% | ||
gordonovich | 0 | 1,536,307,550 | 10% | ||
aarkay | 0 | 348,677,448 | 100% | ||
holic7 | 0 | 149,344,105,439 | 37% | ||
mandagoi | 0 | 1,971,751,553 | 2% | ||
circuitshark | 0 | 0 | 0% | ||
etcbits | 0 | 1,234,784,847 | 100% | ||
headliner | 0 | 8,222,207,717 | 100% | ||
ojaber | 0 | 15,291,808,672 | 100% | ||
wylo | 0 | 3,230,212,799 | 100% | ||
leomichael | 0 | 20,638,442,620 | 15% | ||
trafficbit | 0 | 333,380,407 | 100% | ||
frida-home | 0 | 5,176,024,170 | 100% | ||
royalko | 0 | 585,164,268 | 11% | ||
pakyeechan | 0 | 7,141,183,669 | 100% | ||
arkoko | 0 | 1,093,456,755 | 100% | ||
dududagrav | 0 | 873,519,608 | 100% | ||
sinnanda2627 | 0 | 107,207,858,692 | 11% | ||
bloomview | 0 | 759,665,142 | 15.74% | ||
cryptohustler | 0 | 8,876,438,008 | 100% | ||
sammy7777777 | 0 | 4,035,886,331 | 100% | ||
arsar | 0 | 2,424,957,870 | 100% | ||
toscos | 0 | 2,794,037,657 | 100% | ||
exec | 0 | 67,118,262,919 | 100% | ||
eval | 0 | 679,296,357 | 100% | ||
kadri | 0 | 615,837,665 | 100% | ||
robertvogt | 0 | 1,344,298,876 | 100% | ||
hadimemories | 0 | 862,740,976 | 100% | ||
solehmustakim | 0 | 809,626,103 | 100% | ||
chris77d | 0 | 1,937,265,141 | 100% | ||
ekan | 0 | 226,806,180 | 100% | ||
bewe | 0 | 1,453,361,961 | 100% | ||
marylaw | 0 | 2,388,481,504 | 100% | ||
siddm96 | 0 | 638,707,876 | 100% | ||
weetamoo | 0 | 1,080,184,238 | 100% | ||
mihawk | 0 | 1,233,547,985 | 100% | ||
bitrus2yk | 0 | 76,514,153 | 100% | ||
artofjph | 0 | 1,143,296,743 | 100% | ||
shenchensucc | 0 | 3,118,094,723 | 100% | ||
krischy | 0 | 3,035,697,024 | 100% | ||
bellmind | 0 | 1,155,792,379 | 100% | ||
storcogato | 0 | 2,217,826,277 | 1% | ||
earningsmugglers | 0 | 294,956,916 | 100% | ||
eskilxan | 0 | 197,615,223 | 100% | ||
jfernandez | 0 | 1,043,268,559 | 100% | ||
asterix87 | 0 | 12,633,760,966 | 100% | ||
vikbuddy | 0 | 1,120,077,586 | 100% | ||
pavelsara | 0 | 980,791,450 | 100% | ||
bilal7 | 0 | 130,198,688 | 100% | ||
ajohn | 0 | 429,617,775 | 100% | ||
nita77 | 0 | 1,234,380,815 | 100% | ||
nana.ama | 0 | 848,054,299 | 100% | ||
saadi | 0 | 673,493,412 | 100% | ||
mahmoudh | 0 | 1,216,469,643 | 100% | ||
slinky | 0 | 1,103,351,875 | 100% | ||
mohammedfelahi | 0 | 92,203,699 | 100% | ||
callistus | 0 | 924,677,277 | 100% | ||
jackthar1ppir | 0 | 69,133,407 | 100% | ||
andrew.tischler | 0 | 1,005,171,719 | 100% | ||
mcoinz79 | 0 | 243,772,512 | 100% | ||
johndoe6688 | 0 | 954,214,778 | 100% | ||
webdeep | 0 | 3,389,904,657 | 100% | ||
roba | 0 | 194,457,390 | 100% | ||
crypto.don | 0 | 504,956,049 | 100% | ||
stevepaul | 0 | 239,095,932 | 100% | ||
oddi18 | 0 | 58,045,062 | 100% | ||
lumberjax | 0 | 261,565,733 | 100% | ||
fahrullah | 0 | 104,469,827 | 100% | ||
joseburgos | 0 | 365,618,326 | 100% | ||
gaga83 | 0 | 436,066,613 | 100% | ||
exe8422 | 0 | 255,616,417 | 100% | ||
midgeteg | 0 | 124,074,501 | 100% | ||
steemitblogger | 0 | 247,333,584 | 100% | ||
witus777 | 0 | 145,112,480 | 100% | ||
hendh | 0 | 818,405,193 | 100% | ||
steemlover | 0 | 152,847,725 | 100% | ||
kaykobad-reza | 0 | 841,592,337 | 100% | ||
nandikafuture | 0 | 974,705,395 | 100% | ||
welcomesteemians | 0 | 174,246,600 | 100% | ||
livebuzz | 0 | 719,629,089 | 100% | ||
hendhlast | 0 | 620,969,965 | 100% | ||
stenyin | 0 | 795,668,490 | 100% | ||
krayzie29 | 0 | 133,479,444 | 100% | ||
vladimgor | 0 | 377,278,303 | 100% | ||
mountrock | 0 | 191,748,190 | 100% | ||
othmanesl | 0 | 1,073,638,985 | 100% | ||
timesaving | 0 | 150,889,776 | 100% | ||
naqeebnajub | 0 | 824,089,891 | 100% | ||
colmanlamkh | 0 | 389,727,512 | 100% | ||
rmb | 0 | 1,073,637,974 | 100% | ||
yunkzilla | 0 | 436,093,453 | 100% | ||
acecardx | 0 | 220,530,944 | 100% | ||
momar | 0 | 783,464,786 | 100% | ||
sary.nee | 0 | 742,840,661 | 100% | ||
yuwineryyuvia | 0 | 127,675,738 | 11% | ||
gunawanramli | 0 | 342,403,072 | 100% | ||
patricksanlin | 0 | 168,299,810 | 100% | ||
kelly92 | 0 | 667,395,799 | 100% | ||
ismuhar300693 | 0 | 533,916,470 | 100% | ||
lku | 0 | 63,846,917 | 9.61% | ||
biterec | 0 | 1,160,687,376 | 100% | ||
akash03 | 0 | 969,173,807 | 100% | ||
kellysam | 0 | 841,497,582 | 100% | ||
truvali | 0 | 1,120,061,519 | 100% | ||
andreykunets | 0 | 406,239,918 | 100% | ||
aungminhtut | 0 | 226,333,668 | 100% | ||
mydivathings | 0 | 1,056,223,785 | 100% | ||
affandy | 0 | 737,035,211 | 100% | ||
selimuddin | 0 | 1,137,471,632 | 100% | ||
ansom2327 | 0 | 887,924,282 | 100% | ||
alansteemword | 0 | 620,966,512 | 100% | ||
helenhelen | 0 | 876,317,201 | 100% | ||
ibrahimalginaan | 0 | 951,761,663 | 100% | ||
shwelupyo | 0 | 690,607,467 | 100% | ||
crazymind | 0 | 986,581,948 | 100% | ||
haa | 0 | 899,530,525 | 100% | ||
mayorayenco | 0 | 992,385,061 | 100% | ||
benou | 0 | 203,119,730 | 100% | ||
evangelina | 0 | 1,033,008,668 | 100% | ||
xiaoshancun | 0 | 0 | 100% | ||
xiaoling | 0 | 0 | 100% |
What's that look like?
author | alamjroh |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170705t134852462z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-05 13:47:09 |
last_update | 2017-07-05 13:47:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 13:47:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,398,985 |
net_rshares | 0 |
Wow.. thanks for putting this together :)
author | altcointrends |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t062128497z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 06:21:27 |
last_update | 2017-07-04 06:21:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 06:21:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 267,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,237,778 |
net_rshares | 0 |
Informative post
author | autothrills |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t074310249z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 07:43:12 |
last_update | 2017-07-04 07:43:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 07:43:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 3,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,244,441 |
net_rshares | 0 |
对不会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发表此帖。
author | beautifulbella |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t034313514z |
category | cn |
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"} |
created | 2017-07-04 03:43:27 |
last_update | 2017-07-04 03:43:27 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 03:43:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 193 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,226,174 |
net_rshares | 0 |
网页是可以有的 不过还要主机啥的,挺麻烦的就是啦,😄
author | oflyhigh |
---|---|
permlink | re-beautifulbella-re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t045428201z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 04:54:30 |
last_update | 2017-07-04 04:54:30 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 04:54:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 6,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,231,356 |
net_rshares | 0 |
这次真的看不懂了,不明觉厉。更喜欢写的故事,有大片儿的既视感。
author | coldhair |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t030331146z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 03:03:36 |
last_update | 2017-07-04 03:03:36 |
depth | 1 |
children | 1 |
last_payout | 2017-07-11 03:03:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 34,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,223,278 |
net_rshares | 0 |
过奖了 写故事的感觉就像宋丹丹写《月子》,十天憋出来半个字......
author | oflyhigh |
---|---|
permlink | re-coldhair-re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t032223848z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 03:22:27 |
last_update | 2017-07-04 03:22:27 |
depth | 2 |
children | 0 |
last_payout | 2017-07-11 03:22:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 6,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,224,652 |
net_rshares | 0 |
I can tell you put some serious work into that post. Thank you my friend.
author | enjoywithtroy |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t050933951z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 05:10:27 |
last_update | 2017-07-04 05:10:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 05:10:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.712 HBD |
curator_payout_value | 0.237 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | 142,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,232,547 |
net_rshares | 145,505,962,938 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 145,505,962,938 | 100% |
大!!感谢您与我们分享此信息。
author | hammadakhtar |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t060025739z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 06:00:27 |
last_update | 2017-07-04 06:00:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 06:00:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,236,252 |
net_rshares | 0 |
woww buen post
author | heidy0221 |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t190557685z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 19:05:57 |
last_update | 2017-07-04 19:05:57 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 19:05:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 5,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,311,787 |
net_rshares | 0 |
You have a very thoughtful mind
author | kelly92 |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t040041236z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 04:00:42 |
last_update | 2017-07-04 04:00:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 04:00:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 57,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,227,556 |
net_rshares | 0 |
Nice
author | luxman | ||||||
---|---|---|---|---|---|---|---|
permlink | re-oflyhigh-201774t104016914z | ||||||
category | cn | ||||||
json_metadata | {"tags":"cn","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-04 03:40:18 | ||||||
last_update | 2017-07-04 03:40:18 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-07-11 03:40:18 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4 | ||||||
author_reputation | 684,988,462,931 | ||||||
root_title | "获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 7,225,973 | ||||||
net_rshares | 0 |
Great post man :)
author | midgeteg |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t023729151z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 02:37:27 |
last_update | 2017-07-04 02:37:27 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 02:37:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 12,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,221,336 |
net_rshares | 0 |
that is a good informations. thank for the post.
author | mihawk |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t140202662z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 14:01:36 |
last_update | 2017-07-04 14:01:36 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 14:01:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 208,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,279,976 |
net_rshares | 0 |
nice
author | mohammedfelahi |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170709t042417153z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-09 04:24:21 |
last_update | 2017-07-09 04:24:21 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 04:24:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 4,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,825,934 |
net_rshares | 0 |
两年后追到此处,真奇幻,严重感谢
author | nineteensixteen |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20190317t160423591z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2019-03-17 16:04:24 |
last_update | 2019-03-17 16:04:24 |
depth | 1 |
children | 1 |
last_payout | 2019-03-24 16:04:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 71,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,469,714 |
net_rshares | 55,430,602,224 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 55,430,602,224 | 2% |
哈哈,客气了
author | oflyhigh |
---|---|
permlink | re-nineteensixteen-re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20190318t003108566z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2019-03-18 00:31:12 |
last_update | 2019-03-18 00:31:12 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 00:31:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 6,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,490,072 |
net_rshares | 0 |
thank you for sharing.
author | patricksanlin |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t045414014z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 04:54:24 |
last_update | 2017-07-04 04:54:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 04:54:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 18,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,231,346 |
net_rshares | 0 |
I wish I understood this post!
author | rawpride |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t050015439z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 05:00:03 |
last_update | 2017-07-04 05:00:03 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 05:00:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 18,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,231,751 |
net_rshares | 0 |
good post
author | ricardot |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t033604680z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 03:36:09 |
last_update | 2017-07-04 03:36:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 03:36:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 24,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,225,635 |
net_rshares | 0 |
Hello Friend Nice Post by You Please see my post under the title "Please Check the POST" & Respond... Thank you very much
author | sukhvir |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170705t102605246z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-05 10:26:12 |
last_update | 2017-07-05 10:26:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 10:26:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 19,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,380,957 |
net_rshares | 0 |
show me in english please
author | technium |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t211949499z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 21:19:48 |
last_update | 2017-07-04 21:19:48 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 21:19:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 5,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,324,380 |
net_rshares | 0 |
不错,这简直是一篇论文,你们这些老手们技术真高。感谢分享技巧。
author | tumutanzi |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t132249145z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 13:22:45 |
last_update | 2017-07-04 13:22:45 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 13:22:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 193,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,275,363 |
net_rshares | 0 |
Nice Post , Thanks for Sharing. Upvoted and Followed. Have a Good Day. Cheers:)
author | vikbuddy |
---|---|
permlink | re-oflyhigh-get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached-20170704t035835878z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-07-04 03:59:12 |
last_update | 2017-07-04 03:59:12 |
depth | 1 |
children | 0 |
last_payout | 2017-07-11 03:59:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 118,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,227,428 |
net_rshares | 0 |