先庆祝一下,昨天我终于跑步上车了,然后——***翻车了***😭 有没有被我忽悠一起上车的朋友啊,千万不要感谢我(谁丢的西红柿?谁丢的臭鸡蛋?不许再丢了) 不过是谁说的来着,不能计较一城一池的得失。如果BTS过段时间涨到5元10元,再回头看这一两毛钱的涨跌,不过是毛毛细雨。 ***(注:我给自己打气呢,不构成投资建议啊)*** 好了言归正传,既然已经上车了,就安心好好玩,记录并汇报一下这两天的对BTS RPC的学习。  ---- # BTS RPC #### 工作流程  (来自:http://docs.bitshares.org/api/index.html) #### 文档地址 http://docs.bitshares.org/api/rpc.html #### 调用格式 ``` { "jsonrpc": "2.0", "id": 1 "method": "get_accounts", "params": [["1.2.0", "1.2.1"]], } ``` 如果你有接触过STEEM的RPC调用,就会发现二者非常相似。 # 调用示例 `curl --data '{"jsonrpc": "2.0", "method": "get_accounts", "params": [["1.2.0", "1.2.1"]], "id": 1}' http://127.0.0.1:8090/rpc` 因为我没在本地装节点(确切地说是我不会弄啊),所以我直接使用了公共节点: `curl --data '{"jsonrpc": "2.0", "method": "get_accounts", "params": [["1.2.0", "1.2.1"]], "id": 1}' https://openledger.hk/ws` 返回了如下数据(部分):  (好吧,其实没法看,之后在详细分析) 好吧,尽管一知半解,但是总算明白一点点了。 # Database API 上述调用中的***`method`***和***`params`***都是在API中被定义,比如说***`Database API`***。 #### 文档地址 http://docs.bitshares.org/api/database.html #### API示例 以之前我们通过***`curl`***发起的get_accounts调用为例,在***`Database API`***中定义如下:  # 实际的例子 有了上述关于***`BTS RPC`***以及***`Database API`***介绍,我们就可以拿来做一些实际的工作了,比如查查我的账户下有多少资产余额? 原本以为,像STEEM一样,读取账户信息就会读到资产余额信息,但是BTS与STEEM还有有些不同。 用***`get_account_by_name`***读出来的并不包含资产余额信息 `curl -s --data '{"jsonrpc": "2.0", "method": "get_account_by_name", "params": ["oflyhigh"], "id": 1}' https://openledger.hk/ws`  (注:***`get_full_accounts`***返回的内容包含余额信息) 所以我们要用***`get_named_account_balances`***来读取资产 `curl -s --data '{"jsonrpc": "2.0", "method": "get_named_account_balances", "params": ["oflyhigh", []], "id": 1}' https://openledger.hk/ws`  哇,我有点激动,这是啥东西,我怎么有这么多,我已经数不清楚有多少位了。 不过貌似激动的有点早,让我来看看这是啥资产,调用***`get_objects`*** `curl -s --data '{"jsonrpc": "2.0", "method": "get_objects", "params": [["1.3.0"]], "id": 1}' https://openledger.hk/ws`  原来就是BTS,精度是五位,也就是我其实并没有几个😭 (从易读性来将,应该调用***`get_assets`***,其实本质都一样啦) # 总结 通过上边的学习和示例,大致了解了BTS RPC调用的机制。还有很多东西要去学习和了解,就不多介绍啦。 既然币价还没飞起来,就好好学习吧。 币价迟早会飞起来的,我的预测一贯很准的😭。 # 参考文档 * http://docs.bitshares.org/bitshares/index.html * http://docs.bitshares.org/api/index.html * http://docs.bitshares.org/api/rpc.html * http://docs.bitshares.org/api/database.html * http://docs.bitshares.org/development/blockchain/objects.html
author | oflyhigh |
---|---|
permlink | bts-learn-the-remote-procedure-call-of-bts |
category | bitshares |
json_metadata | {"tags":["bitshares","bts","api","rpc","cn"],"image":["https://steemitimages.com/DQmbetK9MHQbWok8gPBTMkvuJQe6meQP5rRKdXQbwgvCUc5/image.png","https://steemitimages.com/DQmcdz5ZUg6s5c6WX6jBYbMsq8pSK7L7MwcBBdAYjfUhS6c/image.png","https://steemitimages.com/DQmYGpNjJ36Mzons6H8jHxyA4QZruqr22hJDkvbrnvrHtig/image.png","https://steemitimages.com/DQmcktgDQ5qQD7dFekMnnyy7g2tnRwM5iknem195GKxLkK7/image.png","https://steemitimages.com/DQmbYz83kqPFsDzciNHcaFW23ZxHWi1GAGR8NXsuooABD7R/image.png","https://steemitimages.com/DQmTvyzpDe2eL2jBSUjkw7mohZgwos1LUw8ydp2LLmRP56k/image.png","https://steemitimages.com/DQmTxybZqbWiz3XUxWTZjAzeWC3FvuaLS1984CuCwCBo4Ep/image.png"],"links":["http://docs.bitshares.org/api/index.html","http://docs.bitshares.org/api/rpc.html","http://docs.bitshares.org/api/database.html","http://docs.bitshares.org/bitshares/index.html","http://docs.bitshares.org/development/blockchain/objects.html"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-11-02 10:58:00 |
last_update | 2017-11-02 10:58:00 |
depth | 0 |
children | 22 |
last_payout | 2017-11-09 10:58:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 66.269 HBD |
curator_payout_value | 12.925 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,846 |
author_reputation | 6,315,849,788,242,814 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,251,124 |
net_rshares | 38,376,764,574,216 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xeldal | 0 | 40,798,591,474 | 0.5% | ||
pharesim | 0 | 103,270,370,936 | 0.05% | ||
sandra | 0 | 29,307,137,589 | 13% | ||
abit | 0 | 8,283,649,594,545 | 60% | ||
mod-tamichh | 0 | 114,623,803,574 | 100% | ||
jademont | 0 | 215,251,385,392 | 100% | ||
gavvet | 0 | 147,129,699,639 | 1% | ||
steve-walschot | 0 | 85,104,053 | 1% | ||
dragonslayer109 | 0 | 22,016,409,228 | 1% | ||
coinbitgold | 0 | 90,414,424,523 | 100% | ||
rok-sivante | 0 | 1,697,672,237,443 | 100% | ||
wongshiying | 0 | 30,154,781,156 | 100% | ||
imyao | 0 | 18,807,010,163 | 100% | ||
mark-waser | 0 | 197,565,394,931 | 100% | ||
robrigo | 0 | 258,103,624,368 | 100% | ||
slowwalker | 0 | 1,070,869,856,380 | 10% | ||
vi1son | 0 | 122,844,856,825 | 100% | ||
jacor | 0 | 3,000,497,636 | 1% | ||
livingfree | 0 | 124,423,923,221 | 13% | ||
freeyourmind | 0 | 1,920,849,999 | 100% | ||
gikitiki | 0 | 149,118,519 | 0.1% | ||
blockchainbilly | 0 | 9,854,427,958 | 50% | ||
biophil | 0 | 40,616,344,219 | 100% | ||
arcange | 0 | 18,697,092,023 | 5% | ||
deanliu | 0 | 1,523,668,010,274 | 100% | ||
rea | 0 | 307,819,160,880 | 25% | ||
crazymumzysa | 0 | 1,502,268,274 | 1% | ||
raphaelle | 0 | 2,788,963,072 | 5% | ||
joythewanderer | 0 | 272,515,015,627 | 60% | ||
ace108 | 0 | 378,059,830,248 | 25% | ||
tensaix2j | 0 | 3,650,639,999 | 100% | ||
magicmonk | 0 | 72,385,289,495 | 100% | ||
cryptoninja | 0 | 169,666,502 | 2% | ||
somebody | 0 | 1,329,902,092,850 | 100% | ||
feelapi | 0 | 2,122,492,938 | 60% | ||
timsaid | 0 | 121,309,026,176 | 1% | ||
midnightoil | 0 | 179,709,829,641 | 100% | ||
btsabc | 0 | 130,649,313,950 | 100% | ||
snowflake | 0 | 9,986,010,350 | 100% | ||
xiaohui | 0 | 919,439,296,008 | 100% | ||
silentlucidity53 | 0 | 398,960,729 | 75% | ||
oflyhigh | 0 | 2,581,627,614,560 | 100% | ||
xiaokongcom | 0 | 15,688,053,678 | 100% | ||
archiles | 0 | 147,385,920 | 100% | ||
ericsim1991 | 0 | 143,689,939 | 100% | ||
ericsim1989 | 0 | 141,493,865 | 100% | ||
rivalhw | 0 | 1,579,330,676,307 | 70% | ||
nextgen622 | 0 | 919,507,514,905 | 100% | ||
chinadaily | 0 | 232,488,476,459 | 100% | ||
helene | 0 | 380,273,286,153 | 100% | ||
fred703 | 0 | 350,202,244 | 1% | ||
ffcrossculture | 0 | 20,051,656,092 | 100% | ||
ethansteem | 0 | 228,967,004,490 | 100% | ||
sweetsssj | 0 | 1,538,766,272,324 | 10% | ||
shengui | 0 | 17,889,428,996 | 100% | ||
englishtchrivy | 0 | 67,623,077,441 | 20% | ||
digital-wisdom | 0 | 82,843,526,943 | 100% | ||
ethical-ai | 0 | 7,120,860,303 | 100% | ||
cornerstone | 0 | 403,950,808,893 | 33% | ||
jwaser | 0 | 50,336,813,421 | 100% | ||
profitgenerator | 0 | 3,868,090,119 | 100% | ||
damarth | 0 | 1,726,447,831,467 | 30% | ||
bwaser | 0 | 11,541,077,119 | 100% | ||
funnyman | 0 | 1,478,083,710 | 0.2% | ||
justyy | 0 | 37,697,395,013 | 15.35% | ||
ellepdub | 0 | 2,100,011,223 | 100% | ||
arama | 0 | 3,153,531,899,794 | 80% | ||
herpetologyguy | 0 | 387,999,986,450 | 100% | ||
morgan.waser | 0 | 20,383,677,426 | 100% | ||
handyman | 0 | 9,137,715,194 | 100% | ||
strong-ai | 0 | 23,360,593,603 | 100% | ||
stacee | 0 | 126,497,306,790 | 100% | ||
reactivator | 0 | 84,141,038 | 100% | ||
yuxi | 0 | 4,486,367,727 | 70% | ||
steemtruth | 0 | 41,024,500,614 | 10% | ||
lalala | 0 | 71,669,713,518 | 100% | ||
graviton | 0 | 436,734,520 | 1% | ||
judasp | 0 | 80,144,407,399 | 100% | ||
joseluismejia | 0 | 3,087,166,682 | 100% | ||
dapeng | 0 | 34,798,549,817 | 50% | ||
happyukgo | 0 | 435,799,768 | 35% | ||
ruthofisrael | 0 | 333,702,175 | 1% | ||
devilwsy | 0 | 2,406,484,578 | 100% | ||
janiceting | 0 | 2,392,047,050 | 100% | ||
teukumukhlis | 0 | 1,373,038,166 | 1% | ||
lydiachan | 0 | 36,845,941,420 | 100% | ||
technoprogressiv | 0 | 22,475,131,047 | 100% | ||
harferri | 0 | 86,696,701 | 1% | ||
dragon40 | 0 | 2,505,011,410 | 10% | ||
someonewhoisme | 0 | 1,776,742,794 | 100% | ||
jackhircus | 0 | 119,140,138,020 | 75% | ||
blackbunny | 0 | 141,286,375,457 | 100% | ||
jubi | 0 | 88,246,106,082 | 51% | ||
corvuscoraxx | 0 | 58,463,108 | 6.36% | ||
ripperone | 0 | 1,139,208,200,243 | 25% | ||
bxt | 0 | 93,999,174,474 | 100% | ||
lingfei | 0 | 56,898,145,185 | 100% | ||
yyyy | 0 | 44,601,828,643 | 100% | ||
mandela | 0 | 2,133,730,627 | 1% | ||
coldhair | 0 | 130,079,942,163 | 50% | ||
ygern | 0 | 13,187,149,364 | 44% | ||
austinsandersco | 0 | 29,085,532,286 | 70% | ||
aismor | 0 | 850,874,988 | 100% | ||
marxrab | 0 | 3,078,048,281 | 8% | ||
hammadakhtar | 0 | 609,743,237 | 10% | ||
luna33 | 0 | 217,132,548 | 100% | ||
msg768 | 0 | 7,698,476,288 | 20% | ||
htliao | 0 | 184,430,122,210 | 84% | ||
aarkay | 0 | 273,960,852 | 100% | ||
mandagoi | 0 | 13,636,223,310 | 21% | ||
ribalinux | 0 | 7,141,159,551 | 24% | ||
ojaber | 0 | 42,709,122,201 | 100% | ||
wylo | 0 | 617,754,967 | 100% | ||
rexusmo | 0 | 68,892,437,252 | 10% | ||
susanlo | 0 | 38,649,044,997 | 100% | ||
jkkim | 0 | 3,945,881,219 | 10% | ||
ebejammin | 0 | 380,141,770,619 | 100% | ||
thethreehugs | 0 | 128,891,031 | 20% | ||
nanosesame | 0 | 26,421,570,498 | 80% | ||
freshstuff | 0 | 12,127,560,612 | 100% | ||
nuagnorab | 0 | 7,536,757,380 | 60% | ||
happychau123 | 0 | 9,172,132,621 | 100% | ||
revelim | 0 | 9,577,241,553 | 30% | ||
cryptohustler | 0 | 4,273,598,677 | 100% | ||
suitablybored | 0 | 511,911,384 | 100% | ||
wilkinshui | 0 | 105,994,321,373 | 100% | ||
drwom | 0 | 26,053,929,815 | 40% | ||
exec | 0 | 85,161,910,324 | 100% | ||
eval | 0 | 851,277,724 | 100% | ||
aliyah2017 | 0 | 15,202,612,777 | 100% | ||
michaelwilshaw | 0 | 1,798,914,389 | 10% | ||
speeding | 0 | 3,534,691,668 | 100% | ||
frankchen | 0 | 514,407,246 | 100% | ||
shenchensucc | 0 | 9,376,660,809 | 100% | ||
krischy | 0 | 51,697,945,578 | 100% | ||
motormouth | 0 | 5,267,875,217 | 100% | ||
walkinharmony | 0 | 15,214,858,345 | 90% | ||
asterix87 | 0 | 14,567,970,258 | 100% | ||
windrockswater | 0 | 469,940,076 | 100% | ||
susanli3769 | 0 | 11,961,540,378 | 100% | ||
dailyquotes | 0 | 504,908,800 | 100% | ||
abetterworld | 0 | 4,271,585,592 | 100% | ||
gentlebot | 0 | 286,950,539,313 | 100% | ||
raili | 0 | 12,439,480,047 | 100% | ||
incrediblesnow | 0 | 13,527,134,168 | 21% | ||
ldauch | 0 | 1,003,258,963 | 100% | ||
fenghuang | 0 | 2,272,003,771,333 | 40% | ||
thing-2 | 0 | 275,348,584,454 | 100% | ||
goldkey | 0 | 59,692,816,355 | 39% | ||
that1consultant | 0 | 13,145,548,912 | 100% | ||
sanzo | 0 | 408,865,982 | 100% | ||
davaowhenyo | 0 | 620,139,483 | 100% | ||
allenshayzar | 0 | 619,520,000 | 100% | ||
travelgirl | 0 | 81,900,080,688 | 100% | ||
martinbrandow | 0 | 1,964,388,733 | 100% | ||
raku | 0 | 617,220,000 | 100% | ||
resteeming | 0 | 278,780,377 | 100% | ||
ravenousappetite | 0 | 619,520,000 | 100% | ||
maxibyte | 0 | 187,640,234 | 10% | ||
aabb | 0 | 670,030,519 | 100% | ||
catwomanteresa | 0 | 27,597,921,580 | 100% | ||
auntigormint | 0 | 539,954,520 | 100% | ||
mrliga | 0 | 10,368,189,808 | 100% | ||
angela.ghkh | 0 | 2,621,911,856 | 100% | ||
hannahwu | 0 | 57,780,751,667 | 99% | ||
davidzack | 0 | 423,063,262 | 100% | ||
hag228 | 0 | 219,524,366 | 100% | ||
robertmoore | 0 | 545,250,341 | 100% | ||
johncobra | 0 | 589,440,940 | 100% | ||
sweethoney | 0 | 459,230,927 | 100% | ||
duekie | 0 | 65,390,478 | 100% | ||
idx | 0 | 12,711,294,324 | 60% | ||
cifer | 0 | 1,293,911,925 | 100% | ||
exprmnt | 0 | 429,273,019 | 100% | ||
modemser | 0 | 5,396,078,824 | 20% | ||
aafeng | 0 | 25,949,317,004 | 80% | ||
sylvia1997 | 0 | 30,905,713,541 | 100% | ||
carshot017 | 0 | 1,762,124,103 | 100% | ||
alli.top | 0 | 239,719,049 | 100% | ||
tvb | 0 | 2,733,318,590 | 7% | ||
mhmegh | 0 | 53,527,127 | 20% | ||
vadimlasca | 0 | 1,443,792,845 | 100% | ||
ericsim | 0 | 365,516,800 | 100% | ||
steemit-calendar | 0 | 597,836,800 | 100% | ||
freedom-fighter | 0 | 619,520,000 | 100% | ||
pptx | 0 | 567,383,012 | 100% | ||
turymenecier | 0 | 52,605,804 | 20% | ||
redtea | 0 | 3,295,836,012 | 100% | ||
bobbyboe | 0 | 24,986,141,669 | 100% | ||
renzhichu | 0 | 12,715,877,247 | 88% | ||
mechtalena | 0 | 505,321,244 | 100% | ||
eduter | 0 | 1,750,556,985 | 100% | ||
err0rist | 0 | 508,861,548 | 100% | ||
buckydurddle | 0 | 198,287,137 | 1% | ||
technologynepal | 0 | 617,220,000 | 100% | ||
chenlocus | 0 | 3,453,292,628 | 100% | ||
veronicazhu | 0 | 1,824,719,660 | 100% | ||
dgorbunov | 0 | 1,019,962,240 | 100% | ||
airwavez | 0 | 75,789,682 | 25% | ||
aleksandranails | 0 | 1,181,879,527 | 100% | ||
subcosmos | 0 | 4,053,562,950 | 30% | ||
tiffanyrej | 0 | 4,100,760,830 | 100% | ||
oodeyaa | 0 | 2,646,022,353 | 20% | ||
khalilad | 0 | 1,188,668,649 | 100% | ||
ms8988 | 0 | 618,947,877 | 100% | ||
superbing | 0 | 2,517,717,933 | 35% | ||
dailyfortune | 0 | 1,752,746,493 | 35% | ||
antone | 0 | 801,824,307 | 100% | ||
xiaoshancun | 0 | 636,052,462 | 100% | ||
alefabriko | 0 | 471,716,982 | 100% | ||
bibkchhetri | 0 | 162,592,025 | 100% | ||
dailystats | 0 | 1,703,209,138 | 35% | ||
raviraj | 0 | 9,602,783,564 | 100% | ||
victory622 | 0 | 8,065,339,597 | 8% | ||
steemitpeace | 0 | 6,673,074,364 | 100% | ||
ygriffiny | 0 | 385,085,192 | 100% | ||
syt | 0 | 1,797,352,821 | 100% | ||
biasnarrative | 0 | 50,900,100,927 | 100% | ||
fadlie | 0 | 4,781,713,598 | 100% | ||
popyt | 0 | 488,156,350 | 100% | ||
zizizhuji | 0 | 8,805,527,065 | 100% | ||
monkeyplayfire | 0 | 125,946,353 | 100% | ||
funzies | 0 | 1,004,623,633 | 100% | ||
rohits | 0 | 76,859,888 | 100% | ||
brendashockley | 0 | 86,410,800 | 25% | ||
dennisphillips | 0 | 86,410,800 | 25% | ||
trionyx-dv | 0 | 719,702,225 | 100% | ||
ikonik | 0 | 623,969,073 | 100% | ||
yakovarrasev | 0 | 497,654,843 | 100% | ||
luciamuresan | 0 | 6,497,306,313 | 100% | ||
vfxness | 0 | 16,947,372,917 | 100% | ||
mochi-mochi | 0 | 304,231,638 | 100% | ||
lemminon | 0 | 1,162,133,725 | 100% | ||
brittuf | 0 | 24,081,386,240 | 20% | ||
interestinginfo | 0 | 96,204,808 | 100% | ||
heyeshuang | 0 | 867,717,080 | 100% | ||
kanabis | 0 | 492,364,305 | 100% | ||
nietaasyqil | 0 | 5,012,977,875 | 100% | ||
fastiduos | 0 | 618,659,629 | 100% | ||
daijia | 0 | 6,319,537,054 | 100% | ||
pcma1425 | 0 | 264,293,768 | 100% | ||
hymle | 0 | 3,098,470,704 | 100% | ||
weavingwords | 0 | 48,638,147,368 | 100% | ||
markara17 | 0 | 462,372,701 | 100% | ||
infoworld | 0 | 123,468,710 | 100% | ||
fazlayrabby | 0 | 143,028,140 | 20% | ||
daes131 | 0 | 108,038,605 | 100% | ||
brysj22952 | 0 | 884,253,378 | 100% | ||
funnytime | 0 | 95,672,200 | 100% | ||
artworld | 0 | 96,112,160 | 100% | ||
naturecenter | 0 | 95,672,200 | 100% | ||
traveled | 0 | 95,672,200 | 100% | ||
mulan | 0 | 985,525,213 | 100% | ||
worldmeetsgirl | 0 | 284,516,656 | 100% | ||
keepup | 0 | 1,481,685,187 | 100% | ||
cnbuddy | 0 | 4,112,155,963 | 5.2% | ||
deanyeong | 0 | 1,440,405,351 | 75% | ||
nileelily | 0 | 1,275,523,998 | 100% | ||
chann | 0 | 2,090,251,495 | 100% | ||
artdirector | 0 | 95,672,200 | 100% | ||
art-is | 0 | 95,672,200 | 100% | ||
ecocoin | 0 | 98,387,355 | 100% | ||
xplay | 0 | 98,565,657 | 100% | ||
cryptoocurrency | 0 | 95,857,096 | 100% | ||
daxiang | 0 | 0 | 100% | ||
babycare | 0 | 243,154,014 | 100% | ||
piyasmarty121287 | 0 | 101,695,714 | 20% | ||
angelina6688 | 0 | 1,120,074,438 | 100% | ||
may0201 | 0 | 647,239,539 | 100% | ||
kevindaniel | 0 | 1,166,866,482 | 100% | ||
dhruv120511 | 0 | 93,075,306 | 20% | ||
rameshme00 | 0 | 75,436,589 | 20% | ||
sudhirk121287 | 0 | 81,239,340 | 20% | ||
benorbenor | 0 | 557,067,520 | 100% | ||
yorkchinese | 0 | 214,610,072 | 100% |
真搞不懂为啥BTS价格老是上不去。
author | brysj22952 |
---|---|
permlink | re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t110754641z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 11:08:00 |
last_update | 2017-11-02 11:08:00 |
depth | 1 |
children | 3 |
last_payout | 2017-11-09 11:08:00 |
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 | 203,024,116,259 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,251,767 |
net_rshares | 0 |
因为筹码太分散了……
author | imyao |
---|---|
permlink | re-brysj22952-re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t164515532z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 16:45:15 |
last_update | 2017-11-02 16:45:15 |
depth | 2 |
children | 1 |
last_payout | 2017-11-09 16:45: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 | 10 |
author_reputation | 2,782,342,637,822 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,278,356 |
net_rshares | 0 |
我觉得主要是交易量还是少了。它应该接受更多的代币。还有就是无法直接和法币兑换。
author | chenlocus |
---|---|
permlink | re-imyao-re-brysj22952-re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171103t030333457z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-03 03:03:33 |
last_update | 2017-11-03 03:03:33 |
depth | 3 |
children | 0 |
last_payout | 2017-11-10 03:03:33 |
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 | 39 |
author_reputation | 127,654,349,067,342 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,315,294 |
net_rshares | 0 |
比特币也有过低谷:)
author | oflyhigh |
---|---|
permlink | re-brysj22952-re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t111207058z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 11:12:09 |
last_update | 2017-11-02 11:12:09 |
depth | 2 |
children | 0 |
last_payout | 2017-11-09 11:12: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 | 10 |
author_reputation | 6,315,849,788,242,814 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,252,017 |
net_rshares | 0 |
BTS, STEEM, EOS都是偶看好的东西,区块链代币里确定性最强的几个。BTS翻车,没关系,有很多像偶一样的人会团结起来把车扶好。
author | chenlocus |
---|---|
permlink | re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t234913804z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 23:49:12 |
last_update | 2017-11-02 23:49:12 |
depth | 1 |
children | 1 |
last_payout | 2017-11-09 23:49:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.214 HBD |
curator_payout_value | 0.071 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 127,654,349,067,342 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,305,515 |
net_rshares | 139,563,881,531 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 139,563,881,531 | 5% |
哈哈,快扶好,我们继续开车! 😀
author | oflyhigh |
---|---|
permlink | re-chenlocus-re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171103t011224153z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-03 01:12:24 |
last_update | 2017-11-03 01:12:24 |
depth | 2 |
children | 0 |
last_payout | 2017-11-10 01:12: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 | 16 |
author_reputation | 6,315,849,788,242,814 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,309,448 |
net_rshares | 3,233,163,863 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chenlocus | 0 | 3,233,163,863 | 100% |
今天你那天气如何?cn区点赞机器人 @cnbuddy 谢谢你对cn区的贡献。 @cnbuddy 的梦想是能够对cn区快速发展作出自己的贡献。我的主页会定期总结cn区活动动态,欢迎围观。如果不想再收到我的留言,请回复“取消”。
author | cnbuddy |
---|---|
permlink | re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t112823698z |
category | bitshares |
json_metadata | "" |
created | 2017-11-02 11:28:24 |
last_update | 2017-11-02 11:28:24 |
depth | 1 |
children | 9 |
last_payout | 2017-11-09 11:28: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 | 112 |
author_reputation | -1,449,160,991,441 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,252,948 |
net_rshares | 0 |
取消
author | cifer |
---|---|
permlink | re-cnbuddy-re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t143351718z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 14:33:51 |
last_update | 2017-11-02 14:33:51 |
depth | 2 |
children | 0 |
last_payout | 2017-11-09 14:33:51 |
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 | 2 |
author_reputation | 8,256,283,569,876 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,266,969 |
net_rshares | 0 |
取消
author | oflyhigh |
---|---|
permlink | re-cnbuddy-re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t113230956z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 11:32:33 |
last_update | 2017-11-02 11:32:33 |
depth | 2 |
children | 7 |
last_payout | 2017-11-09 11:32:33 |
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 | 2 |
author_reputation | 6,315,849,788,242,814 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,253,188 |
net_rshares | 1,088,735,217 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
quantum-bug | 0 | 1,088,735,217 | 100% |
恢復
author | deanliu |
---|---|
permlink | re-oflyhigh-re-cnbuddy-re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t114509233z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 11:45:12 |
last_update | 2017-11-02 11:45:12 |
depth | 3 |
children | 6 |
last_payout | 2017-11-09 11:45: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 | 2 |
author_reputation | 3,091,849,888,189,995 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,254,001 |
net_rshares | 0 |
Thanks for showing this
author | freshstuff |
---|---|
permlink | re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t105920050z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 10:59:21 |
last_update | 2017-11-02 10:59:21 |
depth | 1 |
children | 0 |
last_payout | 2017-11-09 10:59: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 | 23 |
author_reputation | 4,090,858,283,419 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,251,220 |
net_rshares | 0 |
thanks for all the great code and explanation.
author | goldkey |
---|---|
permlink | re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t113349352z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 11:33:48 |
last_update | 2017-11-02 11:33:48 |
depth | 1 |
children | 0 |
last_payout | 2017-11-09 11:33: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 | 46 |
author_reputation | 357,343,665,891,557 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,253,262 |
net_rshares | 0 |
已上车…😄 等等
author | jubi |
---|---|
permlink | re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t110808080z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 11:08:18 |
last_update | 2017-11-02 11:08:18 |
depth | 1 |
children | 3 |
last_payout | 2017-11-09 11:08: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 | 8 |
author_reputation | 82,406,494,254,467 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,251,779 |
net_rshares | 0 |
我的体量太大,车被我压坏了 😭
author | oflyhigh |
---|---|
permlink | re-jubi-re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t111228538z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 11:12:30 |
last_update | 2017-11-02 11:12:30 |
depth | 2 |
children | 2 |
last_payout | 2017-11-09 11:12: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 | 15 |
author_reputation | 6,315,849,788,242,814 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,252,031 |
net_rshares | 0 |
那还怎么发车…下车下车
author | jubi |
---|---|
permlink | re-oflyhigh-re-jubi-re-oflyhigh-bts-learn-the-remote-procedure-call-of-bts-20171102t114315313z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"steemit/0.1"} |
created | 2017-11-02 11:43:24 |
last_update | 2017-11-02 11:43:24 |
depth | 3 |
children | 1 |
last_payout | 2017-11-09 11:43: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 | 11 |
author_reputation | 82,406,494,254,467 |
root_title | "学习一下BTS的远程过程调用 / Learn the remote procedure call of BTS" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,253,887 |
net_rshares | 0 |