前几天简单地了解了一下Rust语言,然后我就一直在思索,能用Rust编程做点啥呢?不能就写个Hello World啊,那学来也没啥意义呀。  (图源 :[pixabay](https://pixabay.com/photos/coding-programming-working-macbook-924920/)) 然后我想,能不能用Rust写个程序,实现对HIVE区块链的访问(读取信息)以及操作(发布信息,转账、点赞等)? 当然,作为一个初学者,要实现这样的功能,无疑是高难度挑战,但是我们可以一点点来嘛,咋说来着,***九尺之台,起于垒土,千里之行,始于足下***。 要用rust实现对HIVE区块链的访问,大致有三个要点需要攻克(把大象装冰箱分几步?): * 了解响应的API * JSON编解码 * 网络访问 # 了解响应的API 我们可以在[Hive Developer Portal](https://developers.hive.io/)找到有关HIVE上各种API的详细信息。 以获取账户信息为例,相应的API为:[condenser_api.get_accounts](https://developers.hive.io/apidefinitions/#condenser_api.get_accounts),下边是使用curl访问API的一个简单示例: >`curl -s --data '{"jsonrpc":"2.0", "method":"condenser_api.get_accounts", "params":[["hiveio"]], "id":1}' https://api.hive.blog` 其它各个API,基本上大同小异。 # JSON编解码 通过上述示例,我们不难发现,数据以JSON形式传递给API节点,相应的,返回数据也是JSON格式。 这样就需要我们的程序,对JSON数据进行编码和解码,以便于传输数据和解读数据。 在rust中,有很多JSON库可以使用,`serde_json`就是其中一个很好用的库。 # 网络访问 访问API节点的过程,其实就是把编码好的JSON数据发送到网络,并读取回复的过程。 比如前边我们用curl的例子,就是把相应的get_accounts的JSON数据,发送给https://api.hive.blog节点。 同样,在rust中有很多支持访问网络的库,据说较为常用的是`reqwest`库,但是我试着写了几行代码,没用明白。所以我选择了`curl`库。 # 测试代码 下边是一段简单的测试代码: ``` use curl::easy::Easy; use serde_json::{json, from_str, to_string_pretty, Value}; fn main() { let account = "oflyhigh"; let json_data = json!({ "jsonrpc": "2.0", "method": "condenser_api.get_accounts", "params": [ [account] ], "id": 1 }).to_string(); let mut easy = Easy::new(); easy.url("https://api.hive.blog").unwrap(); easy.post(true).unwrap(); easy.post_field_size(json_data.len() as u64).unwrap(); easy.post_fields_copy(json_data.as_bytes()).unwrap(); let mut response = Vec::new(); { let mut transfer = easy.transfer(); transfer.write_function(|data| { response.extend_from_slice(data); Ok(data.len()) }).unwrap(); transfer.perform().unwrap(); } let response_string = String::from_utf8(response).unwrap(); let v:Value = from_str(&response_string).unwrap(); let pretty_json = to_string_pretty(&v).unwrap(); println!("{}", pretty_json); } ``` 若要成功编译上述代码,还需要在项目的Cargo.toml文件中添加如下内容: ``` [dependencies] serde_json = "1.0" curl = "0.4" ``` 然后运行`cargo run`就会下载安装相应的依赖并编译运行程序,成功运行后,就会格式化输出我账户的全部内容啦。 限于篇幅,只截取部分内容: > 所以,貌似使用rust编程读取hive区块链也很简单的啦(中间之曲折我就不多哭诉了)。 小伙伴们可以开动啦,用rust做一个HIVE交易机器人咋样?帮我赔钱,呜呜呜。 # 相关链接 * [Hive Developer Portal](https://developers.hive.io/) * [condenser_api.get_accounts](https://developers.hive.io/apidefinitions/#condenser_api.get_accounts) * https://crates.io/crates/curl * https://crates.io/crates/serde_json * https://docs.rs/serde_json/latest/serde_json/
author | oflyhigh |
---|---|
permlink | rust-hive |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","rust","cn-programming","programming"],"image":["https://images.hive.blog/DQmYC7SCfexShnpzYKSdbJDo9PtT3RKeQUQ9sQUyQX66JAN/image.png","https://images.hive.blog/DQmTnK7goFepA67cfRRreNLh6uopkhYjuLkKheR66esVyWh/image.png"],"links":["https://pixabay.com/photos/coding-programming-working-macbook-924920/"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2022-12-20 09:24:36 |
last_update | 2022-12-20 09:24:36 |
depth | 0 |
children | 11 |
last_payout | 2022-12-27 09:24:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 24.160 HBD |
curator_payout_value | 24.136 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,868 |
author_reputation | 6,395,273,341,971,803 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,247,853 |
net_rshares | 119,471,190,529,156 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 27,397,474,925,652 | 100% | ||
adm | 0 | 23,709,243,993,282 | 100% | ||
deanliu | 0 | 3,702,257,665,810 | 100% | ||
joythewanderer | 0 | 40,607,303,861 | 100% | ||
lemooljiang | 0 | 10,722,577,083 | 100% | ||
ace108 | 0 | 943,990,927,161 | 26% | ||
logic | 0 | 184,102,854,416 | 100% | ||
magicmonk | 0 | 3,594,764,326,126 | 100% | ||
laoyao | 0 | 60,619,168,896 | 100% | ||
midnightoil | 0 | 213,561,925,098 | 100% | ||
xiaohui | 0 | 19,015,985,952 | 100% | ||
joele | 0 | 440,321,367,083 | 100% | ||
rivalhw | 0 | 0 | 100% | ||
nextgen622 | 0 | 430,976,617,585 | 100% | ||
helene | 0 | 1,227,415,587,794 | 100% | ||
netaterra | 0 | 381,301,603,620 | 15% | ||
penguinpablo | 0 | 271,492,186,738 | 14% | ||
ivet | 0 | 90,584,550,980 | 100% | ||
cnfund | 0 | 97,035,216,098 | 50% | ||
funnyman | 0 | 1,364,617,031 | 5.6% | ||
steemcleaners | 0 | 1,636,857,825,570 | 55% | ||
btshuang | 0 | 746,785,498 | 50% | ||
azazqwe | 0 | 34,161,525,728 | 100% | ||
lucknie | 0 | 132,446,661 | 100% | ||
dumping | 0 | 100,369,981 | 100% | ||
bxt | 0 | 316,897,859,410 | 100% | ||
amryksr | 0 | 2,007,412,239 | 100% | ||
alexis555 | 0 | 4,440,503,570,649 | 43% | ||
trafalgar | 0 | 21,786,241,094,892 | 49% | ||
raindrop | 0 | 337,502,996,328 | 49% | ||
passion-fruit | 0 | 10,515,377,172 | 100% | ||
fortune-master | 0 | 10,608,763,780 | 100% | ||
drag33 | 0 | 41,982,316,355 | 100% | ||
nanosesame | 0 | 445,877,081,928 | 80% | ||
exec | 0 | 327,077,803,654 | 100% | ||
alphacore | 0 | 9,149,254,213 | 2.92% | ||
joeyarnoldvn | 0 | 588,120,890 | 1.76% | ||
geekgirl | 0 | 2,273,760,608,266 | 100% | ||
susanli3769 | 0 | 796,067,394,605 | 100% | ||
eturnerx | 0 | 13,301,817,423 | 0.7% | ||
travelgirl | 0 | 205,042,799,395 | 100% | ||
mygod | 0 | 743,197,974 | 50% | ||
catwomanteresa | 0 | 342,395,062,334 | 100% | ||
dine77 | 0 | 52,739,680,922 | 70% | ||
oldman28 | 0 | 67,656,335,881 | 60% | ||
ahlawat | 0 | 14,589,797,091 | 24.9% | ||
idx | 0 | 23,419,675,501 | 100% | ||
aafeng | 0 | 856,422,595,016 | 100% | ||
tvb | 0 | 4,136,344,137 | 30% | ||
santigs | 0 | 257,632,914,434 | 42% | ||
floatinglin | 0 | 7,004,753,305 | 100% | ||
stoodkev | 0 | 12,378,938,538,622 | 100% | ||
kimzwarch | 0 | 15,011,933,045 | 4% | ||
joshman | 0 | 171,803,519,704 | 25% | ||
chenlocus | 0 | 70,100,383,182 | 100% | ||
fatman | 0 | 8,792,174,523 | 2% | ||
votehero | 0 | 14,248,446,102 | 3.2% | ||
minloulou | 0 | 4,913,806,327 | 70% | ||
msp-makeaminnow | 0 | 14,643,492,781 | 18.6% | ||
victory622 | 0 | 212,020,694,790 | 100% | ||
gtpjfoodbank | 0 | 17,897,015,082 | 90% | ||
metten | 0 | 125,892,161 | 100% | ||
japanguide | 0 | 1,025,443,511 | 100% | ||
jychbetter | 0 | 406,283,846,737 | 100% | ||
winniex | 0 | 411,929,092,041 | 100% | ||
devosdevosi | 0 | 4,754,301,309 | 99.5% | ||
cn-book | 0 | 379,308,809 | 100% | ||
cn-movie | 0 | 179,671,092 | 100% | ||
etherpunk | 0 | 889,728,419 | 50% | ||
traf | 0 | 1,830,855,270,102 | 49% | ||
ioioioioi | 0 | 1,370,024,143 | 100% | ||
itchyfeetdonica | 0 | 573,988,811,473 | 100% | ||
vivia | 0 | 686,783,426 | 100% | ||
cryptonized | 0 | 21,895,370,450 | 14% | ||
joslud | 0 | 6,188,466,440 | 100% | ||
soufianechakrouf | 0 | 7,451,607,718 | 100% | ||
tryskele | 0 | 1,329,180,384 | 5% | ||
belemo | 0 | 72,056,275,319 | 100% | ||
mermaidvampire | 0 | 2,061,882,577 | 100% | ||
seikatsumkt | 0 | 5,103,652,455 | 75% | ||
xiaoli | 0 | 432,247,205 | 100% | ||
ikrahch | 0 | 201,614,344,671 | 50% | ||
emmali | 0 | 215,117,845,533 | 100% | ||
zainnyferdhoy | 0 | 6,255,536,765 | 100% | ||
aellly | 0 | 28,040,569,940 | 100% | ||
lordbutterfly | 0 | 940,426,037,411 | 100% | ||
lilacse | 0 | 22,195,990,226 | 100% | ||
cedricguillas | 0 | 200,287,184,123 | 100% | ||
el-dee-are-es | 0 | 21,313,447,077 | 10% | ||
leomolina | 0 | 3,145,551,338 | 9% | ||
hmayak | 0 | 33,309,655,786 | 100% | ||
archisteem | 0 | 1,265,556,826 | 7.5% | ||
theluvbug | 0 | 5,367,530,118 | 25% | ||
dses | 0 | 53,608,628,280 | 80% | ||
digital.mine | 0 | 62,108,502,312 | 60% | ||
smartvote | 0 | 59,841,644,080 | 2.7% | ||
julian2013 | 0 | 96,237,989,868 | 100% | ||
voxmortis | 0 | 36,688,589,790 | 20% | ||
voter001 | 0 | 14,647,038,568 | 15.2% | ||
pet.society | 0 | 14,243,305,246 | 6% | ||
minminlou | 0 | 549,773,032 | 56% | ||
annepink | 0 | 301,033,124,526 | 100% | ||
rasalom | 0 | 17,145,093,916 | 100% | ||
jacuzzi | 0 | 2,385,829,063 | 1.4% | ||
lestrange | 0 | 13,819,627,520 | 100% | ||
fusion.lover | 0 | 35,323,215,293 | 100% | ||
hungrybear | 0 | 615,242,876 | 14% | ||
lovelemon | 0 | 33,238,132,844 | 25% | ||
minigame | 0 | 365,543,664,911 | 100% | ||
dailyke20 | 0 | 2,511,076,349 | 100% | ||
omnivori | 0 | 1,700,761,485 | 90% | ||
ying82 | 0 | 59,353,471,007 | 100% | ||
jimhawkins | 0 | 519,236,719 | 64% | ||
samscalet | 0 | 0 | 100% | ||
atyh | 0 | 257,642,635,342 | 100% | ||
janaveda | 0 | 66,975,505,336 | 100% | ||
moleah | 0 | 642,539,963 | 100% | ||
vickyli | 0 | 18,032,479,253 | 100% | ||
tatiana21 | 0 | 0 | 100% | ||
dbfoodbank | 0 | 5,199,377,643 | 76% | ||
lnakuma | 0 | 34,337,038,487 | 100% | ||
weddinggift | 0 | 6,129,729,505 | 100% | ||
stoodmonsters | 0 | 304,988,758,063 | 100% | ||
starnote | 0 | 316,352,725 | 100% | ||
kgsupport | 0 | 2,395,832,648 | 50% | ||
moochain.net | 0 | 318,698,299 | 100% | ||
warmstill | 0 | 830,073,181 | 50% | ||
julesquirin | 0 | 2,219,487,530 | 9.8% | ||
lovequeen | 0 | 225,230,149,396 | 100% | ||
hivewatchers | 0 | 11,638,763,271 | 55% | ||
fantate | 0 | 99,828,586 | 100% | ||
softworld | 0 | 244,224,683,566 | 51% | ||
jywahaha | 0 | 477,271,673,132 | 100% | ||
roberto58 | 0 | 9,675,194,850 | 100% | ||
olaunlimited | 0 | 18,583,046,852 | 22.05% | ||
evahe | 0 | 169,285,022,361 | 100% | ||
blogstats | 0 | 309,161,587 | 100% | ||
philipmak | 0 | 1,305,601,360 | 50% | ||
rarereden | 0 | 3,238,358,918 | 100% | ||
kattycrochet | 0 | 21,906,738,320 | 24.5% | ||
belemo.leo | 0 | 2,678,998,311 | 100% | ||
sofs-su | 0 | 25,252,327,704 | 20.2% | ||
eturnerx-dbuzz | 0 | 14,633,555,730 | 24.8% | ||
mayor333 | 0 | 12,436,989,702 | 100% | ||
drricksanchez | 0 | 36,190,827,318 | 7.5% | ||
aswita | 0 | 16,006,102,881 | 36.1% | ||
ericaliu | 0 | 34,502,129,235 | 100% | ||
zwhammer | 0 | 1,040,857,839 | 50% | ||
hive.friends | 0 | 0 | 1% | ||
invcble | 0 | 2,722,173,155 | 100% | ||
tingjie | 0 | 39,353,544,910 | 100% | ||
nill2021 | 0 | 14,141,564,641 | 100% | ||
abundancelife | 0 | 41,500,205,700 | 100% | ||
cowboyzlegend27 | 0 | 22,687,622,253 | 100% | ||
lovelingling | 0 | 42,313,890,674 | 100% | ||
tina1219 | 0 | 12,016,890,370 | 100% | ||
zhangyan-123 | 0 | 93,746,202,591 | 100% | ||
flsfserkan | 0 | 47,801,557,618 | 25% | ||
alpha-omega | 0 | 13,361,244,612 | 50% | ||
pablodare2 | 0 | 3,821,155,250 | 100% | ||
bai123 | 0 | 4,149,060,934 | 100% | ||
soupcrxter | 0 | 0 | 100% | ||
lazy001 | 0 | 436,110,454 | 100% | ||
mimi.ruby | 0 | 180,533,413,912 | 100% | ||
theargirova | 0 | 7,119,960,242 | 52.8% | ||
ilark | 0 | 207,360,462,042 | 100% | ||
pappyelblanco | 0 | 1,367,198,346 | 50% | ||
drexlord | 0 | 3,662,846,714 | 7.5% | ||
sagarkothari88 | 0 | 224,216,075,140 | 20% | ||
hivefolks | 0 | 22,790,024,830 | 100% | ||
zuun.net | 0 | 7,710,703,262 | 50% | ||
tgarcialvarez | 0 | 2,358,407,158 | 100% | ||
treasuree | 0 | 4,843,914,089 | 100% | ||
love5200 | 0 | 38,964,369,291 | 100% | ||
xiaoyaodidi | 0 | 52,567,365,618 | 100% | ||
chenfuzi | 0 | 31,589,968,339 | 100% | ||
xtrafalgar | 0 | -310,091,070 | -49% | ||
ottomu | 0 | 22,756,181,563 | 100% | ||
bgmoha | 0 | 1,951,360,191 | 70% | ||
salicj | 0 | 32,130,109,527 | 100% | ||
queercoin | 0 | 26,401,179,240 | 100% | ||
novillain | 0 | 60,299,740 | 100% | ||
junio35310251 | 0 | 0 | 100% |
>当然,作为一个初学者,要实现这样的功能,无疑是高难度挑战, 从平时你的帖子来看,从头看到脚。 怎么看都看不出来你是个初学者。大佬级别我倒是信了。
author | aellly |
---|---|
permlink | re-oflyhigh-20221220t214740763z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","rust","cn-programming","programming"],"app":"ecency/3.0.30-vision","format":"markdown+html"} |
created | 2022-12-20 13:47:39 |
last_update | 2022-12-20 13:47:39 |
depth | 1 |
children | 0 |
last_payout | 2022-12-27 13:47: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 | 74 |
author_reputation | 874,216,966,497,117 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,252,060 |
net_rshares | 0 |
>use curl::easy::Easy; 也太過驕傲了,一開頭就說curl代碼很簡單是吧... 😠
author | deanliu |
---|---|
permlink | re-oflyhigh-rn6qfh |
category | hive-105017 |
json_metadata | {"tags":["hive-105017"],"app":"peakd/2022.12.1"} |
created | 2022-12-20 10:28:15 |
last_update | 2022-12-20 10:28:15 |
depth | 1 |
children | 2 |
last_payout | 2022-12-27 10:28: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 | 52 |
author_reputation | 3,100,979,937,647,200 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,248,724 |
net_rshares | 0 |
艾玛,刘美女也是IT的。
author | aellly |
---|---|
permlink | re-deanliu-20221220t214823212z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017"],"app":"ecency/3.0.30-vision","format":"markdown+html"} |
created | 2022-12-20 13:48:24 |
last_update | 2022-12-20 13:48:24 |
depth | 2 |
children | 0 |
last_payout | 2022-12-27 13:48: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 | 12 |
author_reputation | 874,216,966,497,117 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,252,077 |
net_rshares | 0 |
不好,一下子就被你发现大秘密了
author | oflyhigh |
---|---|
permlink | rn6rf2 |
category | hive-105017 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-12-20 10:49:51 |
last_update | 2022-12-20 10:49:51 |
depth | 2 |
children | 0 |
last_payout | 2022-12-27 10:49: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 | 15 |
author_reputation | 6,395,273,341,971,803 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,248,971 |
net_rshares | 0 |
没想到这里也能看见rust,还真是越来越普及了。 曾经有兴趣过,但是看到那个语法是有点提不起劲… 感觉回到了写C++的时代啊哈哈。
author | lilacse |
---|---|
permlink | re-oflyhigh-20221220t2015485z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","rust","cn-programming","programming"],"app":"ecency/3.0.35-mobile","format":"markdown+html"} |
created | 2022-12-20 12:01:06 |
last_update | 2022-12-20 12:01:06 |
depth | 1 |
children | 1 |
last_payout | 2022-12-27 12:01:06 |
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 | 66 |
author_reputation | 19,250,085,524,596 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,250,120 |
net_rshares | 0 |
哈哈,我是初学者 了解一下
author | oflyhigh |
---|---|
permlink | rn8p1r |
category | hive-105017 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-12-21 11:53:54 |
last_update | 2022-12-21 11:53:54 |
depth | 2 |
children | 0 |
last_payout | 2022-12-28 11:53: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 | 13 |
author_reputation | 6,395,273,341,971,803 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,274,421 |
net_rshares | 0 |
唉,又是看不懂系列😂
author | love5200 |
---|---|
permlink | re-oflyhigh-20221221t05527887z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","rust","cn-programming","programming"],"app":"ecency/3.0.30-vision","format":"markdown+html"} |
created | 2022-12-20 16:56:06 |
last_update | 2022-12-20 16:56:06 |
depth | 1 |
children | 0 |
last_payout | 2022-12-27 16:56:06 |
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 | 544,881,010,390,945 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,255,779 |
net_rshares | 0 |
虎熊熊来O哥这报个到。😂
author | lovelingling |
---|---|
permlink | re-oflyhigh-20221220t185139593z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","rust","cn-programming","programming"],"app":"ecency/3.0.19-mobile","format":"markdown+html"} |
created | 2022-12-20 10:51:39 |
last_update | 2022-12-20 10:51:39 |
depth | 1 |
children | 1 |
last_payout | 2022-12-27 10:51: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 | 12 |
author_reputation | 733,241,648,985,367 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,248,995 |
net_rshares | 0 |
我不喜欢熊熊,我喜欢牛牛😂
author | oflyhigh |
---|---|
permlink | rn8p2i |
category | hive-105017 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-12-21 11:54:21 |
last_update | 2022-12-21 11:54:21 |
depth | 2 |
children | 0 |
last_payout | 2022-12-28 11:54: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 | 13 |
author_reputation | 6,395,273,341,971,803 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,274,430 |
net_rshares | 0 |
We have seen that you have previously supported proposals for the improvement of Hive. We would love to have your support in our proposal that seeks to add a new tool to the Hive environment that will help ensure that your content continues to prioritize quality and above all originality. You can vote here: [Peakd](https://peakd.com/me/proposals/252) [Ecency](https://ecency.com/proposals/252) We would appreciate your support, criticism, and collaboration. Thank you for considering this proposal.
author | tgarcialvarez |
---|---|
permlink | re-oflyhigh-rnfsp6 |
category | hive-105017 |
json_metadata | {"tags":["hive-105017"],"app":"peakd/2022.12.1"} |
created | 2022-12-25 22:31:15 |
last_update | 2022-12-25 22:31:15 |
depth | 1 |
children | 0 |
last_payout | 2023-01-01 22:31: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 | 503 |
author_reputation | 5,546,142,716,574 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,381,644 |
net_rshares | 0 |
进步使人变强
author | xiaoyaodidi |
---|---|
permlink | re-oflyhigh-20221220t192432328z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","rust","cn-programming","programming"],"app":"ecency/3.0.35-mobile","format":"markdown+html"} |
created | 2022-12-20 11:24:30 |
last_update | 2022-12-20 11:24:30 |
depth | 1 |
children | 0 |
last_payout | 2022-12-27 11:24: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 | 6 |
author_reputation | 420,725,591,905,600 |
root_title | 每天进步一点点:使用rust编程读取hive区块链 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,249,449 |
net_rshares | 0 |