前些天大神 @xeroc 发了个帖子 [python-bitshares: How to derive transaction ids](https://steemit.com/bitshares/@xeroc/python-bitshares-how-to-derive-transaction-ids),让我对bitshares的txid有了更深入的了解。于是我就想相同的问题放到STEEM上会是如何呢?  # [python-bitshares](https://github.com/xeroc/python-bitshares) 生成transaction_id @xeroc 大神修改了[python-graphenelib](https://github.com/xeroc/python-graphenelib)库,给`Signed_Transaction`类添加了一个新属性: `id`,而[python-bitshares](https://github.com/xeroc/python-bitshares)的`Signed_Transaction`类继承了[python-graphenelib](https://github.com/xeroc/python-graphenelib)的`Signed_Transaction`类。 也就是下边两句: `from graphenebase.signedtransactions import Signed_Transaction as GrapheneSigned_Transaction` `class Signed_Transaction(GrapheneSigned_Transaction)` 我们再来看看属性`id`如何实现:  也就是说,将Signed_Transaction的签名部分清空,序列化后生成摘要,取摘要的前20个字节,并转换成16进制字符串形式(40个字节)。 # STEEM 生成transaction_id STEEM和Bitshares是一奶同胞啦,python-steem的前身piston也是 @xeroc 大神开发的。所以在python-steem上实现类似功能非常简单。 ``` import hashlib from binascii import hexlify from steem import Steem from steembase.transactions import SignedTransaction steem = Steem() block = steem.get_block(10000000) tx = SignedTransaction(**block["transactions"][2]) tx.data.pop("signatures", None) h = hashlib.sha256(bytes(tx)).digest() print(hexlify(h[:20]).decode("ascii")) ``` 上述示例代码将计算出STEEM区块链上第10000000 中第3笔transaction的txid。 (transaction编号从零开始) 结果为: >9f48f63edfd40e72ac6c9635dcdcad9d742e5d1c  # STEEM 生成transaction_id 方法2 你是不是觉得上述方法很简单了?其实还有更简单的办法 ``` from steem import Steem steem = Steem() block = steem.get_block(10000000) txid = block['transaction_ids'][2] print(txid) ``` 结果为: >9f48f63edfd40e72ac6c9635dcdcad9d742e5d1c  完全一样,有木有,但是代码简单了好多有木有? # 为什么? 既然获取txid如此简单,为何大神还要费此周折?答案在于steem区块链的get_block返回了transaction_ids列表,比如区块:10000000  排列顺序和transaction列表顺序完全一致,所以直接拿出来即可。 而bitshares区块链的get_block不返回上述信息,如果需要,只好自己计算哦。 不过读读 @xeroc 大神的代码,了解了一下 txid的生成机制,还是受益匪浅的。 # 参考链接 * [python-bitshares: How to derive transaction ids by @xeroc](https://steemit.com/bitshares/@xeroc/python-bitshares-how-to-derive-transaction-ids) * [通过事务ID(transaction id) 获取事务(transaction) / Database API: get_transaction](https://steemit.com/cn-programming/@oflyhigh/id-transaction-id-transaction-database-api-gettransaction) * [获取共同操作账户某个操作的真实操作者,附简单脚本 / Get real operator of a transaction made by the ID which operated by multi accounts, script attached](https://steemit.com/cn/@oflyhigh/get-real-operator-of-a-transaction-made-by-the-id-which-operated-by-multi-accounts-script-attached) * https://github.com/xeroc/python-bitshares * https://github.com/xeroc/python-graphenelib * https://github.com/steemit/steem-python
author | oflyhigh |
---|---|
permlink | steem-transaction-txid |
category | steemdev |
json_metadata | {"tags":["steem","transaction","cn-programming","cn"],"users":["xeroc"],"image":["https://steemitimages.com/DQmdFCHtL8t3uN2xUef6HYnrTJbqZG6n9Sm8ciy6rw12dXP/image.png","https://steemitimages.com/DQmQCipLHana33mf6dNHpHNZzVimMUrZNJafTnrsXZNSL9W/image.png","https://steemitimages.com/DQmYEXNFDHwSdKP33Q1XRiGpuhGy1TLNa7ge8wg8dLwP5mT/image.png","https://steemitimages.com/DQmdKL9uGqcMcfDa1MgeNwtVvXFCqvGNLS5mqrsG6uxBrBG/image.png"],"links":["https://steemit.com/bitshares/@xeroc/python-bitshares-how-to-derive-transaction-ids"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2018-01-27 12:43:27 |
last_update | 2021-03-03 04:48:12 |
depth | 0 |
children | 8 |
last_payout | 2018-02-03 12:43:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 140.319 HBD |
curator_payout_value | 21.505 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,073 |
author_reputation | 6,395,038,437,449,292 |
root_title | "如何从steem transaction 获取txid?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,730,502 |
net_rshares | 18,674,512,261,933 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 82,774,132,252 | 0.17% | ||
abit | 0 | 5,361,555,266,175 | 100% | ||
mod-tamichh | 0 | 99,485,831,358 | 100% | ||
spiry-btc | 0 | 411,510,805 | 25% | ||
vi1son | 0 | 112,801,072,206 | 100% | ||
blockchainbilly | 0 | 18,632,550,307 | 50% | ||
deanliu | 0 | 1,264,611,368,366 | 100% | ||
ace108 | 0 | 264,790,798,990 | 25% | ||
tensaix2j | 0 | 2,910,360,080 | 100% | ||
laoyao | 0 | 32,590,972,512 | 100% | ||
somebody | 0 | 1,186,821,943,675 | 100% | ||
midnightoil | 0 | 25,253,995,611 | 100% | ||
btsabc | 0 | 4,495,095,883 | 100% | ||
xiaohui | 0 | 794,280,020,111 | 100% | ||
oflyhigh | 0 | 2,204,095,791,145 | 100% | ||
xiaokongcom | 0 | 9,626,759,291 | 100% | ||
archiles | 0 | 118,325,942 | 100% | ||
ericsim1991 | 0 | 116,671,318 | 100% | ||
yulan | 0 | 13,931,539,290 | 100% | ||
ericsim1989 | 0 | 115,878,596 | 100% | ||
chinadaily | 0 | 178,008,909,138 | 100% | ||
helene | 0 | 451,718,498,110 | 100% | ||
ffcrossculture | 0 | 24,008,025,913 | 100% | ||
ethansteem | 0 | 202,584,462,693 | 100% | ||
sweetsssj | 0 | 1,784,270,411,844 | 5% | ||
englishtchrivy | 0 | 58,593,687,100 | 22% | ||
profitgenerator | 0 | 1,154,013,434 | 100% | ||
damarth | 0 | 186,396,444,436 | 3% | ||
mrtv2 | 0 | 49,822,880,703 | 100% | ||
steemtruth | 0 | 29,354,442,339 | 10% | ||
redes | 0 | 1,159,841,407,763 | 24% | ||
lalala | 0 | 38,967,414,466 | 100% | ||
contentking | 0 | 4,287,970,805 | 100% | ||
dapeng | 0 | 51,076,816,237 | 25% | ||
devilwsy | 0 | 2,084,299,063 | 100% | ||
janiceting | 0 | 2,082,800,780 | 100% | ||
abraomarcos | 0 | 2,160,562,256 | 100% | ||
lydiachan | 0 | 33,980,918,795 | 100% | ||
dragon40 | 0 | 2,335,024,711 | 10% | ||
blackbunny | 0 | 58,564,999,744 | 100% | ||
ripperone | 0 | 1,163,973,595,901 | 25% | ||
bxt | 0 | 136,909,686,086 | 100% | ||
lingfei | 0 | 37,417,471,372 | 100% | ||
yyyy | 0 | 427,433,834 | 100% | ||
davidfnck | 0 | 8,634,517,578 | 100% | ||
ygern | 0 | 14,547,243,065 | 40% | ||
trafalgar | 0 | 773,108,886,000 | 3% | ||
austinsandersco | 0 | 780,364,216 | 70% | ||
kingofdew | 0 | 45,659,501,824 | 100% | ||
mandagoi | 0 | 8,684,865,724 | 21% | ||
ribalinux | 0 | 3,660,675,834 | 10% | ||
wylo | 0 | 617,878,004 | 100% | ||
susanlo | 0 | 49,711,330,427 | 100% | ||
jkkim | 0 | 118,796,125 | 10% | ||
ebejammin | 0 | 6,057,711,588 | 100% | ||
hellosteem | 0 | 539,381,995 | 50% | ||
nanosesame | 0 | 24,689,414,627 | 30% | ||
happychau123 | 0 | 40,845,045,988 | 100% | ||
revelim | 0 | 13,139,053,434 | 30% | ||
cryptohustler | 0 | 18,399,930,219 | 100% | ||
exec | 0 | 75,630,514,271 | 100% | ||
eval | 0 | 752,069,752 | 100% | ||
michaelwilshaw | 0 | 3,757,569,242 | 10% | ||
speeding | 0 | 3,653,157,668 | 100% | ||
walkinharmony | 0 | 18,499,835,469 | 50% | ||
asterix87 | 0 | 12,281,829,305 | 100% | ||
abetterworld | 0 | 3,152,995,416 | 100% | ||
raili | 0 | 8,407,610,643 | 100% | ||
that1consultant | 0 | 302,149,011 | 100% | ||
sanzo | 0 | 310,504,300 | 100% | ||
davaowhenyo | 0 | 614,503,785 | 100% | ||
allenshayzar | 0 | 614,503,785 | 100% | ||
raku | 0 | 617,220,000 | 100% | ||
resteeming | 0 | 614,860,000 | 100% | ||
ravenousappetite | 0 | 614,503,440 | 100% | ||
aabb | 0 | 8,581,557,674 | 100% | ||
auntigormint | 0 | 588,938,688 | 100% | ||
mrliga | 0 | 15,543,471,234 | 100% | ||
twinkledrop | 0 | 160,970,029,170 | 100% | ||
whydowork | 0 | 617,792,578 | 100% | ||
drunkevil | 0 | 720,175,742 | 20% | ||
sweethoney | 0 | 106,144,553 | 100% | ||
liangfengyouren | 0 | 1,517,816,084 | 50% | ||
idx | 0 | 21,637,241,795 | 100% | ||
jiangchen | 0 | 485,683,247 | 100% | ||
chaofanjun | 0 | 9,591,447,223 | 100% | ||
exprmnt | 0 | 614,860,000 | 100% | ||
bearpaw | 0 | 2,066,151,587 | 100% | ||
ericsim | 0 | 291,889,298 | 100% | ||
freedom-fighter | 0 | 614,503,785 | 100% | ||
chenhs | 0 | 957,674,096 | 100% | ||
technologynepal | 0 | 617,220,000 | 100% | ||
chenlocus | 0 | 4,160,459,892 | 40% | ||
tiffanyrej | 0 | 1,914,771,812 | 100% | ||
khalilad | 0 | 615,320,000 | 100% | ||
ms8988 | 0 | 613,102,616 | 100% | ||
antone | 0 | 624,598,454 | 100% | ||
xiaoshancun | 0 | 314,151,102 | 100% | ||
xoxois | 0 | 788,606,949 | 100% | ||
stakuza | 0 | 615,483,841 | 100% | ||
wangwenjing | 0 | 851,985,559 | 10% | ||
dennisphillips | 0 | 74,066,400 | 25% | ||
ikonik | 0 | 579,767,323 | 100% | ||
vfxness | 0 | 4,983,783,821 | 100% | ||
lemminon | 0 | 615,320,000 | 100% | ||
heyeshuang | 0 | 637,040,758 | 100% | ||
fastiduos | 0 | 615,320,000 | 100% | ||
ivysrono | 0 | 34,756,042,371 | 100% | ||
weavingwords | 0 | 47,907,049,804 | 100% | ||
nitro.live | 0 | 16,894,040,622 | 100% | ||
tenzel | 0 | 280,809,532 | 100% | ||
chaerin | 0 | 608,492,636 | 100% | ||
muzakirpb | 0 | 85,090,709 | 9% | ||
cnbuddy | 0 | 3,633,575,556 | 0.54% | ||
deanyeong | 0 | 1,833,471,124 | 80% | ||
chann | 0 | 3,531,461,495 | 10% | ||
hrishikesh | 0 | 250,222,296 | 100% | ||
lebin | 0 | 30,829,210,257 | 50% | ||
saury | 0 | 259,305,253 | 100% | ||
candiru | 0 | 339,997,350 | 100% | ||
asyrifalmirza | 0 | 292,784,189 | 100% | ||
neexal | 0 | 76,420,607 | 100% | ||
fun2learn | 0 | 2,102,170,590 | 30% | ||
corhevs | 0 | 614,412,619 | 100% | ||
meixia | 0 | 420,935,371 | 100% | ||
shahbazfayyaz | 0 | 52,161,089 | 10% | ||
madein | 0 | 58,331,178 | 25% | ||
atakan57 | 0 | 168,963,645 | 30% | ||
wickedgoose | 0 | 118,410,075 | 100% | ||
joy2018t | 0 | 3,567,249,438 | 100% | ||
popmusic | 0 | 614,622,160 | 100% | ||
oguz57 | 0 | 178,197,517 | 30% | ||
whallx | 0 | 89,110,481 | 100% | ||
ferrylee | 0 | 107,654,563 | 100% | ||
sannyputra | 0 | 531,517,601 | 100% | ||
phreq | 0 | 553,021,971 | 100% | ||
nwyrk | 0 | 101,387,358 | 30% | ||
neregon | 0 | 187,412,994 | 50% | ||
p4nd4 | 0 | 580,672,017 | 100% | ||
linyou | 0 | 90,054,967 | 100% | ||
steemit20181 | 0 | 233,497,400 | 100% | ||
jackychen | 0 | 488,500,339 | 100% | ||
supergirls | 0 | 89,145,307 | 100% | ||
python-think | 0 | 0 | 100% |
噢,原來如此,獲益匪淺。
author | deanliu |
---|---|
permlink | re-oflyhigh-steem-transaction-txid-20180127t151316469z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-27 15:13:15 |
last_update | 2018-01-27 15:13:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-03 15:13:15 |
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 | 12 |
author_reputation | 3,100,979,937,647,200 |
root_title | "如何从steem transaction 获取txid?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,762,448 |
net_rshares | 0 |
super great!
author | dropthebeat |
---|---|
permlink | re-oflyhigh-steem-transaction-txid-20180127t145245380z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-27 14:53:18 |
last_update | 2018-01-27 14:53:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-03 14:53: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 | 12 |
author_reputation | 4,668,255,551,618 |
root_title | "如何从steem transaction 获取txid?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,758,295 |
net_rshares | 0 |
Thanks for sharing this valuable post with us . Thanks
author | hrishikesh |
---|---|
permlink | re-oflyhigh-steem-transaction-txid-20180127t125442378z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-27 12:54:45 |
last_update | 2018-01-27 12:54:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-03 12:54: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 | 54 |
author_reputation | 936,726,318,626 |
root_title | "如何从steem transaction 获取txid?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,732,898 |
net_rshares | 0 |
5000 followers Congratulation
author | jahangirwifii |
---|---|
permlink | re-oflyhigh-steem-transaction-txid-20180127t171238616z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-27 17:12:39 |
last_update | 2018-01-27 17:12:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-03 17:12:39 |
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 | 29 |
author_reputation | 37,205,590,144,986 |
root_title | "如何从steem transaction 获取txid?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,787,960 |
net_rshares | 0 |
获取了有什么用?
author | maiyude |
---|---|
permlink | re-oflyhigh-steem-transaction-txid-20180127t140549298z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-27 14:05:57 |
last_update | 2018-01-27 14:05:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-03 14:05:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.152 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 8,970,701,360,387 |
root_title | "如何从steem transaction 获取txid?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,748,168 |
net_rshares | 20,455,538,654 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
maiyude | 0 | 20,455,538,654 | 100% |
good post
author | momin109 |
---|---|
permlink | re-oflyhigh-steem-transaction-txid-20180127t131511867z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-27 13:15:15 |
last_update | 2018-01-27 13:15:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-03 13:15:15 |
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 | -50,585,271,679 |
root_title | "如何从steem transaction 获取txid?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,737,148 |
net_rshares | 0 |
先生,这真是个好主意 先生,我认为你是一个思考这样的事情的天才 精彩的创新 好的工作先生
author | newssource |
---|---|
permlink | re-oflyhigh-steem-transaction-txid-20180127t151753601z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-27 15:18:18 |
last_update | 2018-01-27 15:18:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-03 15:18: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 | 44 |
author_reputation | 97,443,418,432 |
root_title | "如何从steem transaction 获取txid?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,763,501 |
net_rshares | 0 |
great post, thanks for sharing
author | ritue |
---|---|
permlink | re-oflyhigh-steem-transaction-txid-20180127t125558997z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-27 12:49:45 |
last_update | 2018-01-27 12:49:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-03 12:49: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 | 30 |
author_reputation | 404,864,529,395 |
root_title | "如何从steem transaction 获取txid?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,731,854 |
net_rshares | 0 |