在 @steemitdev 3天前的文章[《AppBase: The next step forward for the Steem blockchain (let the testing begin)》](https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin) 主要提到了两个东东,**AppBase** 以及 **condenser_api**。 AppBase 我一直以为是App 仓库呢,还以为steemit也要搞个类似应用商店一样的东西呢,结果后来我看到下边这个图,才知道他说的是系统架构,捂脸😳。  (图片来源:[Steem Blockchain Update August 2017](https://steemit.com/steemitdev/@steemitdev/steem-blockchain-update-august-2017)) 从这个图中我们可以看到无论**AppBase** 还是 **condenser_api**都是半年以前就计划的东西啦,还好我们终于看到影子啦,那么**AppBase** 就没啥说的了,来试试**condenser_api**吧。 # 新condenser_api 在 [Steem Equality 0.19.4 (Appbase) Release Notes](https://github.com/steemit/steem/releases/tag/v0.19.4rc1)着重提到了这个condenser_api,说的是它包含当前在用的所有API中的所有方法。**让你的程序跑到AppBase上最便捷的方法就是把api 都换成 condenser_api**。 我们之前讲过通过RPC调用STEEM API,比如我们前几篇文章中举过的例子: >`curl --data '{"jsonrpc": "2.0", "method": "call", "params": ["account_by_key_api", "get_key_references", [["STM6MGdForcZ8HskcguP84QSCb8udgz7W9yUPU5jtsAKQAxth3U16"]]], "id": 1}' https://api.steemit.com` 其中**`account_by_key_api`** 需要我们显式的指定,类似情况还有**`follow_api, tag_api`**等等,参考上图。到了Steem 0.19.4以后呢,原来这些API都可以用**`condenser_api`**代替啦。 上边的命令,就可以改成如下模式 >`curl --data '{"jsonrpc": "2.0", "method": "call", "params": ["condenser_api", "get_key_references", [["STM6MGdForcZ8HskcguP84QSCb8udgz7W9yUPU5jtsAKQAxth3U16"]]], "id": 1}' https://api.steemitdev.com` 注意节点的变更,开发节点当前是0.19.4版本。 返回结果如下:  # API methods 列表 可以通过调用jsonrpc.get_methods返回支持的API以及方法列表,有以下三种调用方法: >`curl --data '{"jsonrpc": "2.0", "method": "jsonrpc.get_methods", "id": 1}' https://api.steemitdev.com` >`curl --data '{"jsonrpc": "2.0", "method": "jsonrpc.get_methods", "params": {}, "id": 1}' https://api.steemitdev.com` >`curl --data '{"jsonrpc": "2.0", "method": "call", "params": ["jsonrpc", "get_methods", {}], "id": 1}' https://api.steemitdev.com` 返回列表的部分内容:  需要注意的一点是,列表中列出的一些API,并非都已经实现的😳 也可以看[这个列表](https://github.com/steemit/jussi/blob/master/tests/appbase_methods.json),感觉就是把这个打印了出来。 # 流水线语法 就是说调用,可以用这个形式: `{"jsonrpc":"2.0", "id":0, "method":"call", "params":["api","function",[ARGS]]}` 也可以用这个形式: `{"jsonrpc":"2.0", "id":0, "method":"api.function", "params":[ARGS]}` 在 **API methods 列表** 小节中,我演示了这两种以及第三种不含参数的调用方式,所以无需赘述了。 # 其它 `{"jsonrpc":"2.0", "method":"jsonrpc.get_signature", "params":{"method":"database_api.get_active_witnessess"}, "id":1}` 发布说明中的这个我没运行起来,提示消息: > `"message":"Assert Exception:method_itr != api_itr->second.end(): Method database_api.get_active_witnessess does not exist"` 检查了一下,官网的文档中多写了个s,`get_active_witnessess` 应为 `get_active_witnesses`,修正后执行 >`{'id': 1, 'jsonrpc': '2.0', 'result': {'args': {}, 'ret': {'witnesses': []}}}` 然而我并没有搞懂它表达的是啥意思呢?迷糊了,不研究了。 # 结论 感觉 Steem 0.19.4 发布的有些仓促,除了加了个 **`condenser_api`**,并没有多少新内容,而**`jsonrpc.get_methods`** 中列出的东西好多都没有实现。 另外 **`condenser_api`**与其说是Steem 0.19.4的新功能,不如说是jussi的功能,至少我在steem源代码中找不到一行代码含 **`condenser_api`**的字样呢。 不过不管咋说,STEEM在不断进步,这是我们大家所喜闻乐见的,祝STEEM越来越好吧! # 参考链接 * [AppBase: The next step forward for the Steem blockchain (let the testing begin)](https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin) * [Steem Blockchain Update August 2017](https://steemit.com/steemitdev/@steemitdev/steem-blockchain-update-august-2017) * [Steem Equality 0.19.4 (Appbase) Release Notes](https://github.com/steemit/steem/releases/tag/v0.19.4rc1)
author | oflyhigh |
---|---|
permlink | steem-0-19-4-and-condenserapi |
category | steemdev |
json_metadata | {"tags":["steemdev","appbase","jsonrpc","cn-programming","cn"],"users":["steemitdev"],"image":["https://steemitimages.com/DQmXXrdNbPZ1bPshipMAKxuGdjA5xHsZ5FL1hLUy6nNcHk9/image.png","https://steemitimages.com/DQmbxk5fWoqZGaRXtKZ3ewaywH2E4Emg9r84J9S5wbu74Et/image.png","https://steemitimages.com/DQmUJy5jrW3rZQzuddeUnZN2zwyTfMThyMnpskweVdbaKMN/image.png"],"links":["https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin","https://steemit.com/steemitdev/@steemitdev/steem-blockchain-update-august-2017","https://github.com/steemit/steem/releases/tag/v0.19.4rc1","https://github.com/steemit/jussi/blob/master/tests/appbase_methods.json"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-02-17 14:24:39 |
last_update | 2018-02-17 14:24:39 |
depth | 0 |
children | 6 |
last_payout | 2018-02-24 14:24:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 89.348 HBD |
curator_payout_value | 13.943 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,676 |
author_reputation | 6,465,610,688,851,830 |
root_title | "体验一下 Steem 0.19.4 & condenser_api" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,269,921 |
net_rshares | 17,618,045,828,722 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 3,289,476,571,107 | 100% | ||
mark-waser | 0 | 101,292,258,916 | 100% | ||
slowwalker | 0 | 1,099,312,374,302 | 8% | ||
vi1son | 0 | 136,105,015,363 | 100% | ||
blockchainbilly | 0 | 21,666,495,933 | 50% | ||
arcange | 0 | 15,066,195,630 | 3% | ||
deanliu | 0 | 1,139,596,519,064 | 100% | ||
raphaelle | 0 | 1,907,179,015 | 3% | ||
ace108 | 0 | 170,557,318,155 | 25% | ||
tensaix2j | 0 | 2,899,115,880 | 100% | ||
laoyao | 0 | 34,990,307,911 | 100% | ||
somebody | 0 | 1,258,750,546,322 | 100% | ||
midnightoil | 0 | 1,551,051,841 | 100% | ||
btsabc | 0 | 5,483,379,374 | 100% | ||
xiaohui | 0 | 842,418,203,148 | 100% | ||
oflyhigh | 0 | 2,290,601,100,354 | 100% | ||
xiaokongcom | 0 | 10,219,761,657 | 100% | ||
archiles | 0 | 104,625,043 | 100% | ||
ericsim1991 | 0 | 103,162,007 | 100% | ||
yulan | 0 | 14,854,713,580 | 100% | ||
ericsim1989 | 0 | 102,461,074 | 100% | ||
rivalhw | 0 | 332,609,367,091 | 20% | ||
chinadaily | 0 | 157,501,556,391 | 100% | ||
helene | 0 | 515,765,624,209 | 100% | ||
ethansteem | 0 | 184,449,364,675 | 100% | ||
davidjkelley | 0 | 5,129,886,549 | 100% | ||
digital-wisdom | 0 | 55,665,901,555 | 100% | ||
ethical-ai | 0 | 18,401,968,569 | 100% | ||
jwaser | 0 | 21,386,369,986 | 100% | ||
profitgenerator | 0 | 1,242,783,698 | 100% | ||
damarth | 0 | 259,444,298,555 | 3% | ||
bwaser | 0 | 4,294,944,404 | 100% | ||
ellepdub | 0 | 1,610,026,014 | 100% | ||
herpetologyguy | 0 | 253,838,803,626 | 100% | ||
morgan.waser | 0 | 8,751,383,993 | 100% | ||
handyman | 0 | 2,898,476,835 | 100% | ||
amylee | 0 | 81,821,443,804 | 100% | ||
mrtv2 | 0 | 62,067,729,955 | 100% | ||
strong-ai | 0 | 15,639,326,941 | 100% | ||
dylanhobalart | 0 | 9,085,805,518 | 44% | ||
steemtruth | 0 | 29,330,462,485 | 10% | ||
lalala | 0 | 46,006,026,329 | 100% | ||
dapeng | 0 | 26,396,371,306 | 25% | ||
devilwsy | 0 | 2,237,082,975 | 100% | ||
janiceting | 0 | 2,235,039,450 | 100% | ||
abraomarcos | 0 | 2,225,002,732 | 100% | ||
lydiachan | 0 | 33,707,396,768 | 100% | ||
technoprogressiv | 0 | 11,908,305,816 | 100% | ||
newhope | 0 | 1,854,724,403,986 | 24% | ||
dragon40 | 0 | 2,355,282,187 | 10% | ||
blackbunny | 0 | 59,033,977,471 | 100% | ||
ripperone | 0 | 1,163,973,595,901 | 25% | ||
bxt | 0 | 164,973,971,472 | 100% | ||
lingfei | 0 | 48,515,963,019 | 100% | ||
yyyy | 0 | 450,469,190 | 100% | ||
trafalgar | 0 | 799,511,009,732 | 3% | ||
laodr | 0 | 168,967,068,294 | 100% | ||
austinsandersco | 0 | 774,790,186 | 70% | ||
kingofdew | 0 | 44,974,609,297 | 100% | ||
htliao | 0 | 117,632,059,044 | 29% | ||
devi1714 | 0 | 144,911,851 | 1.6% | ||
emcvay | 0 | 176,704,053 | 10% | ||
mandagoi | 0 | 10,291,100,557 | 21% | ||
ribalinux | 0 | 4,357,975,508 | 10% | ||
wylo | 0 | 613,923,349 | 100% | ||
jkkim | 0 | 52,844,322 | 10% | ||
ebejammin | 0 | 6,063,646,982 | 100% | ||
nanosesame | 0 | 24,043,471,104 | 30% | ||
nuagnorab | 0 | 19,384,204,915 | 100% | ||
linuslee0216 | 0 | 1,715,403,034 | 2.9% | ||
parimple | 0 | 586,321,953 | 100% | ||
cryptohustler | 0 | 8,363,604,645 | 100% | ||
exec | 0 | 80,699,310,529 | 100% | ||
eval | 0 | 797,519,158 | 100% | ||
michaelwilshaw | 0 | 4,240,297,039 | 10% | ||
speeding | 0 | 3,654,344,405 | 100% | ||
walkinharmony | 0 | 18,970,575,495 | 50% | ||
asterix87 | 0 | 11,133,928,483 | 100% | ||
marram | 0 | 104,755,177 | 5% | ||
abetterworld | 0 | 3,154,877,973 | 100% | ||
that1consultant | 0 | 302,271,763 | 100% | ||
sanzo | 0 | 322,801,500 | 100% | ||
planet-power | 0 | 2,409,443,460 | 100% | ||
send-sbd-here | 0 | 1,405,528,468 | 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 | 10,520,659,516 | 100% | ||
auntigormint | 0 | 550,473,876 | 100% | ||
mrliga | 0 | 13,087,100,608 | 100% | ||
twinkledrop | 0 | 158,105,255,498 | 100% | ||
tymba | 0 | 1,871,541,023 | 71% | ||
sweethoney | 0 | 248,322,463 | 100% | ||
liangfengyouren | 0 | 1,096,417,201 | 50% | ||
idx | 0 | 21,678,436,082 | 100% | ||
chaofanjun | 0 | 1,353,456,899 | 20% | ||
exprmnt | 0 | 556,448,300 | 100% | ||
lancy | 0 | 5,155,504,109 | 92% | ||
bearpaw | 0 | 2,490,812,000 | 100% | ||
ericsim | 0 | 258,091,590 | 100% | ||
freedom-fighter | 0 | 614,503,785 | 100% | ||
bobbyboe | 0 | 24,570,694,963 | 100% | ||
starlost | 0 | 348,190,087 | 100% | ||
technologynepal | 0 | 617,220,000 | 100% | ||
rosatravels | 0 | 21,691,883,801 | 20% | ||
andynguyen | 0 | 4,145,118,367 | 100% | ||
dgorbunov | 0 | 521,531,058 | 100% | ||
ytienchu | 0 | 537,277,764 | 29% | ||
tiffanyrej | 0 | 3,087,330,879 | 100% | ||
khalilad | 0 | 615,320,000 | 100% | ||
ms8988 | 0 | 610,323,449 | 100% | ||
rayken04 | 0 | 73,220,771 | 10% | ||
bigbigfish | 0 | 26,961,787,393 | 100% | ||
sarcastic.man | 0 | 5,466,424,247 | 100% | ||
stakuza | 0 | 615,483,841 | 100% | ||
wangwenjing | 0 | 1,379,363,299 | 10% | ||
ikonik | 0 | 454,153,165 | 100% | ||
vfxness | 0 | 1,297,633,244 | 100% | ||
lemminon | 0 | 615,320,000 | 100% | ||
heyeshuang | 0 | 640,969,078 | 100% | ||
razor80 | 0 | 614,900,979 | 100% | ||
fastiduos | 0 | 615,320,000 | 100% | ||
ivysrono | 0 | 877,315,737 | 100% | ||
rebecca80 | 0 | 708,927,767 | 100% | ||
nitro.live | 0 | 14,031,186,154 | 100% | ||
sagorkhan | 0 | 529,031,144 | 100% | ||
chaerin | 0 | 613,321,095 | 100% | ||
cnbuddy | 0 | 4,215,406,652 | 0.1% | ||
deanyeong | 0 | 1,778,775,579 | 80% | ||
chann | 0 | 18,281,317,770 | 50% | ||
lebin | 0 | 31,272,917,879 | 50% | ||
saury | 0 | 259,305,253 | 100% | ||
candiru | 0 | 339,997,350 | 100% | ||
ewq | 0 | 99,472,308 | 3% | ||
neexal | 0 | 79,546,636 | 100% | ||
wyp | 0 | 601,338,084 | 100% | ||
fun2learn | 0 | 1,231,063,509 | 15% | ||
shalinaysha | 0 | 603,283,040 | 100% | ||
missrdx | 0 | 66,046,272 | 100% | ||
emmali | 0 | 1,461,335,639 | 100% | ||
madein | 0 | 61,330,352 | 25% | ||
afanta | 0 | 614,991,571 | 100% | ||
dandymee | 0 | 613,355,981 | 100% | ||
breezieblack | 0 | 76,711,077 | 100% | ||
charisma1 | 0 | 123,593,783 | 100% | ||
historylover | 0 | 355,925,985 | 100% | ||
btccurrency1 | 0 | 52,386,790 | 100% | ||
ethanlee | 0 | 3,621,152,283 | 100% | ||
lordrazor | 0 | 601,417,099 | 100% | ||
amponchiek | 0 | 73,594,290 | 100% | ||
sannyputra | 0 | 144,400,735 | 100% | ||
inmylife | 0 | 1,993,469,508 | 100% | ||
cryptoknight27 | 0 | 615,076,421 | 100% | ||
hhjjkk | 0 | 276,441,173 | 100% | ||
jimimi | 0 | 602,172,460 | 100% | ||
baskice | 0 | 562,227,172 | 100% | ||
martijnephraim | 0 | 1,606,785,275 | 70% | ||
sharoncole | 0 | 440,386,325 | 100% | ||
iowabuckd | 0 | 380,960,095 | 100% | ||
tarachan99 | 0 | 451,710,727 | 100% |
first time i visited your post. This is great article. happy to see your content. I followed you. Good luck for further.
author | ahmadhassan |
---|---|
permlink | re-oflyhigh-steem-0-19-4-and-condenserapi-20180217t204328923z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-02-17 20:43:27 |
last_update | 2018-02-17 20:43:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 20: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 | 120 |
author_reputation | 871,251,759,940 |
root_title | "体验一下 Steem 0.19.4 & condenser_api" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,346,517 |
net_rshares | 0 |
我相信steem一定会越来越好的
author | hhjjkk |
---|---|
permlink | re-oflyhigh-steem-0-19-4-and-condenserapi-20180217t142647675z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-02-17 14:26:57 |
last_update | 2018-02-17 14:26:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 14:26: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 | 16 |
author_reputation | 684,424,592,252 |
root_title | "体验一下 Steem 0.19.4 & condenser_api" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,270,418 |
net_rshares | 270,298,036 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hhjjkk | 0 | 270,298,036 | 100% |
Your Posts are golden. Yeah. I think writing down might have its advantages as well as disadvantages too. When writing, you might not really get to pit down everything in the head. But then in a video or an audio, u can get to say everything that comes to the mind. But currently, I do more of writing cuz I'm not all that pretty to appear on a video. Lol. Thanks for sharing
author | jhonsnow2 |
---|---|
permlink | re-oflyhigh-steem-0-19-4-and-condenserapi-20180217t142730082z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-02-17 14:27:36 |
last_update | 2018-02-17 14:27:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 14:27: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 | 378 |
author_reputation | -242,502,823,313 |
root_title | "体验一下 Steem 0.19.4 & condenser_api" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,270,560 |
net_rshares | 279,070,495 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jhonsnow2 | 0 | 279,070,495 | 100% |
越做越好,2018年我们不一样
author | jimimi |
---|---|
permlink | re-oflyhigh-steem-0-19-4-and-condenserapi-20180217t144943379z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-02-17 14:50:09 |
last_update | 2018-02-17 14:50:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 14:50: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 | 15 |
author_reputation | 10,866,455,242 |
root_title | "体验一下 Steem 0.19.4 & condenser_api" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,275,351 |
net_rshares | 0 |
Good work ,good post.
author | missrdx |
---|---|
permlink | re-oflyhigh-steem-0-19-4-and-condenserapi-20180217t142838412z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-02-17 14:28:54 |
last_update | 2018-02-17 14:28:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 14:28:54 |
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 | 21 |
author_reputation | 424,720,365,798 |
root_title | "体验一下 Steem 0.19.4 & condenser_api" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,270,877 |
net_rshares | 66,046,272 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
missrdx | 0 | 66,046,272 | 100% |
Good work,good post.
author | missrdx |
---|---|
permlink | re-oflyhigh-steem-0-19-4-and-condenserapi-20180217t143057491z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-02-17 14:31:12 |
last_update | 2018-02-17 14:31:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 14: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 | 20 |
author_reputation | 424,720,365,798 |
root_title | "体验一下 Steem 0.19.4 & condenser_api" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,271,385 |
net_rshares | 0 |