> [0. 目标](#0) >> [主要流程](#_1) > > [1. 搭建本地的docker环境](#1-docker) >> [ubuntu18.04 安装 docker](#ubuntu1804-docker) >> [添加专用系统账户 steemd](#steemd) > > [2. 获取Steem的官方docker镜像 ](#2-steemdocker) > [3. 用docker镜像方式运行 cli_wallet](#3-docker-cli_wallet) > [4. 在 cli_wallet 中导入旧账号的密钥](#4-cli_wallet) > [5. 在 cli_wallet 中 生成密钥对](#5-cli_wallet) > [6. 在 cli_wallet 中 用密钥对的公钥生成新账号](#6-cli_wallet) > [7. 用密钥对的私钥,在steemit上登录新账号的在线钱包](#7-steemit) > [8. 在steemit的官方在线钱包中,更换新号的密码](#8-steemit) > [9. 可以正常用新号(记住密码,以备将来被盗号后的恢复)](#9) > [附录:源码释疑](#_2) # 0. 目标 cli_wallet 是 Steem 的命令行钱包,可以直接和 Steem 节点交互,完成很多重要的钱包相关的操作,包括创建新号. 通过 cli_wallet 创建的新号,更安全,不受任何号码的控制(包括自己的旧号或steemit官方). 但cli_wallet需要Steem节点支持WebSocket RPC(ws/wss),暂时找到一个(也可以自己搭建):wss://steemd.privex.io ## 主要流程 ``` 1. 搭建本地的docker环境 2. 获取Steem的官方docker镜像 3. 用docker镜像方式运行 cli_wallet 4. 在 cli_wallet 中导入旧账号的密钥(负责支付创建账号的3STEEM费用) 5. 在 cli_wallet 中 生成密钥对 6. 在 cli_wallet 中 用密钥对的公钥生成新账号,新号各种密码都是这个密钥对 7. 用密钥对的私钥,在steemit上登录新账号的在线钱包 8. 在steemit的官方在线钱包中,更换新号的密码,让各种密码都不一样,方便分级管理 9. 可以正常用新号(记住密码,以备将来被盗号后的恢复). ``` # 1. 搭建本地的docker环境 ## ubuntu18.04 安装 docker 这里以ubuntu18.04为例,其他系统的docker安装,很容易google/baidu. 安装docker包:`$ sudo apt update && sudo apt install git containerd docker.io -y` 也可通过 get.docker.com 安装 docker: ``` $ curl -fsSL get.docker.com -o get-docker.sh $ sh get-docker.sh ``` 启动 docker 服务:`$ service docker restart ` 查看 docker 状态(报错):`$ systemctl status docker.service` 或 `$ journalctl -xn` ## 添加专用系统账户 steemd 添加专用系统账户 steemd,并加入到 docker 组: ```shell $ sudo adduser steemd $ sudo usermod -aG sudo steemd $ sudo usermod -aG docker steemd $ sudo su - steemd ``` 这样,steemd用户就可以直接运行docker,而不需要经常sudo操作了. # 2. 获取Steem的官方docker镜像 使用官方 docker 镜像,便于灾备恢复或硬分叉时能快速操作,也可以自己从github上下载源码编译. 获取官方 docker 镜像:`$ docker pull steemit/steem` 查看获取情况 : `$ docker images | grep steemit` ```shell steemit/steem latest 1325632326e0 5 weeks ago 2.24GB ``` 如果无法访问官方 docker.com/docker.io ,可修改docker 镜像源:`$ sudo vi /etc/docker/daemon.json` ```config { "registry-mirrors": ["https://registry.docker-cn.com","http://hub-mirror.c.163.com"] } ``` 其他可选: 1. 中国科技大学:https://docker.mirrors.ustc.edu.cn 2. Docker 官方中国区:https://registry.docker-cn.com 3. 网易:http://hub-mirror.c.163.com 4. 阿里云:https://pee6w651.mirror.aliyuncs.com # 3. 用docker镜像方式运行 cli_wallet 以docker镜像方式运行 cli_wallet: `$ docker run -it steemit/steem /usr/local/steemd-default/bin/cli_wallet -s wss://steemd.privex.io` ```info Logging RPC to file: logs/rpc/rpc.log Starting a new wallet 3104566ms main.cpp:169 main ] wdata.ws_server: wss://steemd.privex.io Please use the set_password method to initialize a new wallet before continuing new >>> ``` 首次使用,需要为本地钱包设置密码:`new >>> set_password yourpwd` ```info new >>> set_password yourpwd set_password yourpwd null locked >>> ``` 此时钱包处于锁定状态,解锁钱包:`locked >>> unlock yourpwd` ```info locked >>> unlock yourpwd unlock yourpwd null unlocked >>> ``` 如果在使用过程中,出现没有反应,可能是 cli_wallet 断开了和steem节点之间的网络连接,需要ctrl+d退出,重新按之前的操作重做. # 4. 在 cli_wallet 中导入旧账号的密钥 cli_wallet创建新号,需要向steem节点支付3steem费用,因此必须先有一个旧账号,里面至少有支付创建账号所需的3STEEM. 导入旧号的钱包密钥(active key):`unlocked >>> import_key 5J-active-key` ```info import_key 5J-active-key 3555971ms wallet.cpp:427 save_wallet_file ] saving wallet to file wallet.json true unlocked >>> ``` 查看导入的账号资产:`unlocked >>> list_my_accounts ` ```info unlocked >>> list_my_accounts list_my_accounts 585041ms websocket_api.cpp:102 on_message ] message: {"jsonrpc":"2.0","result":[["acu.fund"]],"id":1} 585171ms websocket_api.cpp:102 on_message ] message: {"jsonrpc":"2.0","result":[{...} olduser 102.164 STEEM 614866.009468 VESTS 0.499 SBD ------------------------------------------------------------------------- TOTAL 102.164 STEEM 614866.009468 VESTS 0.499 SBD ``` # 5. 在 cli_wallet 中 生成密钥对 生成密钥对:`unlocked >>> suggest_brain_key` ```info suggest_brain_key { "brain_priv_key": "WACE other words COGNATE", "wif_priv_key": "5JY-wif_priv_key-5iB", "pub_key": "STM8QhX-pub_key-Dw1KB" } unlocked >>> ``` # 6. 在 cli_wallet 中 用密钥对的公钥生成新账号 用 suggest_brain_key 生产的 pub_key ,创建新号(旧号为olduser,新号为newuser):`create_account_with_keys "olduser" "newuser" "" "STM8QhX-pub_key-Dw1KB" "STM8QhX-pub_key-Dw1KB" "STM8QhX-pub_key-Dw1KB" "STM8QhX-pub_key-Dw1KB" true` 创建的新号,各种密码都是这个密钥对,返回信息显示,旧账号作为creator支付了 3 STEEM费用: ```info { "ref_block_num": 62156, "ref_block_prefix": 3768508021, "expiration": "2019-10-12T14:18:15", "operations": [[ "account_create",{ "fee": "3.000 STEEM", "creator": "olduser", "new_account_name": "newuser", ``` # 7. 用密钥对的私钥,在steemit上登录新账号的在线钱包 浏览器打开 https://steemitwallet.com , 用新用户名和密钥对的私钥(wif_priv_key)登录. # 8. 在steemit的官方在线钱包中,更换新号的密码 新号的所有密码都是密钥对的私钥,不利于分级管理,因此登录官方在线钱包后,立即更改密码,让各种密码都不一样,方便分级管理 : https://steemitwallet.com/@newuser/password # 9. 可以正常用新号(记住密码,以备将来被盗号后的恢复) 分别备份四个密码,在不同的场合,用不同的秘密:/post/Active/Owner/Memo # 附录:源码释疑 为何这样创建账号,可以不受其他任何账号的控制,可以从源码和源码注释中,找到说明. 更多的 cli_wallet 操作,可以[参考源码中的说明.](https://github.com/steemit/steem/blob/326b17c6b1e883fba518bee20f7cef2d3fecec09/libraries/wallet/wallet.cpp)
author | dappcoder | ||||||
---|---|---|---|---|---|---|---|
permlink | steem-steem-docker-cliwallet-steem | ||||||
category | cn | ||||||
json_metadata | {"community":"busy","app":"steemit/0.1","format":"markdown","tags":["sct","sc-cn","zzan","busy","esteem"],"links":["#0","#_1","#1-docker","#ubuntu1804-docker","#steemd","#2-steemdocker","#3-docker-cli_wallet","#4-cli_wallet","#5-cli_wallet","#6-cli_wallet","#7-steemit","#8-steemit","#9","#_2","https://docker.mirrors.ustc.edu.cn","https://registry.docker-cn.com","http://hub-mirror.c.163.com","https://pee6w651.mirror.aliyuncs.com","https://steemitwallet.com","https://steemitwallet.com/@newuser/password","https://github.com/steemit/steem/blob/326b17c6b1e883fba518bee20f7cef2d3fecec09/libraries/wallet/wallet.cpp"]} | ||||||
created | 2019-10-12 14:46:24 | ||||||
last_update | 2019-10-13 07:08:15 | ||||||
depth | 0 | ||||||
children | 21 | ||||||
last_payout | 2019-10-19 14:46:24 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.302 HBD | ||||||
curator_payout_value | 0.331 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 5,258 | ||||||
author_reputation | 9,480,331,507,174 | ||||||
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 91,484,343 | ||||||
net_rshares | 2,995,235,024,650 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
matt-a | 0 | -283,958,511,525 | -6% | ||
netaterra | 0 | -26,966,400,693 | -4% | ||
slider2990 | 0 | -2,236,268,744 | -8% | ||
lawrenceho84 | 0 | 41,450,539,271 | 100% | ||
trafalgar | 0 | -23,316,362,262,722 | -69% | ||
preparedwombat | 0 | -3,529,881,470 | -1.6% | ||
raindrop | 0 | -383,106,744,301 | -69% | ||
anomadsoul | 0 | -8,528,614,121 | -8% | ||
davidorcamuriel | 0 | -146,678,628,792 | -8% | ||
mcoinz79 | 0 | -80,710,412,252 | -4% | ||
tipu | 0 | 47,963,613,991,566 | 60.86% | ||
raj808 | 0 | -10,018,320,512 | -4% | ||
traf | 0 | -2,078,394,987,183 | -69% | ||
maski | 0 | 556,863,055 | 30.43% | ||
znnuksfe | 0 | -185,916,734,393 | -8% | ||
belemo | 0 | -1,427,672,060 | -4% | ||
peeyush | 0 | 0 | 5% | ||
sisygoboom | 0 | -14,861,379,777 | -8% | ||
miroslavrc | 0 | -4,632,737,346 | -4% | ||
erode | 0 | -1,445,172,371 | -4% | ||
d00k13 | 0 | -3,040,457,428 | -4% | ||
mariuszkarowski | 0 | -68,281,490,227 | -19.2% | ||
wonsama | 0 | 20,537,432,773 | 100% | ||
waybeyondpadthai | 0 | -26,785,191,737 | -8% | ||
andrewma | 0 | 0 | 0.2% | ||
ilikeit | 0 | -224,460,539,227 | -8% | ||
krnews | 0 | 2,575,226,556 | 100% | ||
wbot01 | 0 | 1,951,137,789 | 100% | ||
ocdb | 0 | -13,544,677,491,978 | -8% | ||
vimm | 0 | -60,893,671,573 | -8% | ||
thevil | 0 | -23,254,410,227 | -8% | ||
doctor.strange | 0 | 1,954,950,704 | 100% | ||
dead.pool | 0 | 1,958,413,120 | 100% | ||
black.widow | 0 | 1,950,483,080 | 100% | ||
marvel.spiderman | 0 | 1,950,444,857 | 100% | ||
marvel.hulk | 0 | 1,950,407,264 | 100% | ||
marvel.ironman | 0 | 1,950,483,200 | 100% | ||
black.pan.ther | 0 | 1,950,520,057 | 100% | ||
adyorka | 0 | 1,058,110,396 | 24.34% | ||
theycallmedan | 0 | -3,327,352,048,371 | -8% | ||
claim7 | 0 | 1,950,050,186 | 100% | ||
wcasino | 0 | 1,975,626,187 | 100% | ||
wcasino.pay | 0 | 1,950,121,300 | 100% | ||
wcasino.holdem | 0 | 1,860,487,141 | 100% | ||
wcasino.jackpot | 0 | 1,833,310,211 | 100% | ||
zerofive | 0 | 455,171,242 | 100% | ||
steemit.holdem | 0 | 1,866,201,138 | 100% | ||
steemit.jackpot | 0 | 1,833,385,404 | 100% | ||
primeradue | 0 | -19,037,411,614 | -19.61% | ||
tihi | 0 | 1,010,957,227 | 30.43% | ||
davidchen | 0 | 20,546,277,674 | 100% | ||
smcard | 0 | 1,856,168,494 | 100% | ||
smonsmon | 0 | 1,856,198,930 | 100% | ||
guro | 0 | 1,855,851,144 | 100% | ||
shindorim | 0 | 1,855,734,046 | 100% | ||
yongsan | 0 | 1,855,813,538 | 100% | ||
incheon | 0 | 1,856,916,509 | 100% | ||
mapo | 0 | 1,856,130,890 | 100% | ||
shingil | 0 | 1,845,317,353 | 100% | ||
checkname | 0 | 1,856,039,456 | 100% | ||
starterpack | 0 | 1,844,894,598 | 100% | ||
gdragon | 0 | 1,855,926,707 | 100% | ||
sumimasen | 0 | 1,856,192,074 | 100% | ||
smtester | 0 | 1,855,890,134 | 100% | ||
showdown | 0 | 1,845,282,204 | 100% | ||
monstersteem | 0 | 1,856,077,902 | 100% | ||
freesale | 0 | 1,856,310,111 | 100% | ||
freefee | 0 | 1,856,159,961 | 100% | ||
testsama | 0 | 1,845,046,676 | 100% | ||
ctime | 0 | -130,587,489,653 | -4% | ||
kimch | 0 | 1,844,901,506 | 100% | ||
tongdak | 0 | 1,856,808,633 | 100% | ||
hanbok | 0 | 1,866,583,803 | 100% | ||
jjangjjangman | 0 | 1,844,591,640 | 100% | ||
superguard | 0 | 1,865,027,023 | 100% | ||
yawang | 0 | 1,844,568,475 | 100% | ||
roadmap | 0 | 1,844,931,146 | 100% | ||
kpay | 0 | 1,844,136,969 | 100% | ||
adultbaby | 0 | 1,855,980,502 | 100% | ||
sneack | 0 | 1,844,870,471 | 100% | ||
gzone | 0 | 1,855,673,036 | 100% | ||
ppororo | 0 | 1,856,040,278 | 100% | ||
lotto645 | 0 | 1,844,718,630 | 100% | ||
alphamonsters | 0 | 1,855,946,865 | 100% | ||
betamonsters | 0 | 1,856,001,728 | 100% | ||
girlfriends | 0 | 1,855,712,742 | 100% | ||
fastway | 0 | 1,855,562,364 | 100% | ||
smonsang | 0 | 1,844,628,963 | 100% | ||
technomart | 0 | 1,855,773,774 | 100% | ||
lastsmon | 0 | 1,844,780,547 | 100% | ||
postme | 0 | 1,855,725,487 | 100% | ||
smilezone | 0 | 1,854,903,223 | 100% | ||
bearbaby | 0 | 1,855,697,377 | 100% | ||
o0o0o | 0 | 2,797,433,109 | 100% | ||
thecards | 0 | 1,855,816,507 | 100% | ||
developments | 0 | 1,855,434,475 | 100% | ||
originals | 0 | 1,856,051,123 | 100% | ||
beanpole | 0 | 1,855,774,252 | 100% | ||
oilbank | 0 | 1,855,734,286 | 100% | ||
iliili | 0 | 1,855,522,128 | 100% | ||
kotlin | 0 | 1,855,335,066 | 100% | ||
flutters | 0 | 1,855,545,386 | 100% | ||
prettyguy | 0 | 1,855,522,289 | 100% | ||
gamemonsters | 0 | 2,797,076,007 | 100% | ||
blueguy | 0 | 1,941,165,937 | 100% | ||
sicbo | 0 | 1,962,026,621 | 100% | ||
yaoi | 0 | 1,973,726,764 | 100% | ||
farmfarm | 0 | 1,972,211,571 | 100% | ||
giantroc | 0 | 1,960,916,070 | 100% | ||
koboldminer | 0 | 1,960,878,419 | 100% | ||
crustaceanking | 0 | 2,902,413,798 | 100% | ||
waterelemental | 0 | 1,960,801,119 | 100% | ||
goblinsorcerer | 0 | 1,960,992,035 | 100% | ||
ragingimpaler | 0 | 1,961,449,238 | 100% | ||
animatedcorpse | 0 | 1,973,088,540 | 100% | ||
spiritforest | 0 | 1,961,336,458 | 100% | ||
serpentflame | 0 | 1,961,108,763 | 100% | ||
goblincaptain | 0 | 2,902,413,374 | 100% | ||
lyannaforest | 0 | 2,902,417,535 | 100% | ||
divineknight | 0 | 1,961,261,886 | 100% | ||
feralwarrior | 0 | 1,961,057,342 | 100% | ||
elementalair | 0 | 2,902,493,741 | 100% | ||
jestertwisted | 0 | 1,961,336,379 | 100% | ||
bansheescreaming | 0 | 1,961,372,828 | 100% | ||
skyselenia | 0 | 1,960,906,696 | 100% | ||
darknesslord | 0 | 1,961,223,203 | 100% | ||
lightangel | 0 | 1,961,336,763 | 100% | ||
naturalyanna | 0 | 1,961,398,890 | 100% | ||
astormbringer | 0 | 1,961,072,530 | 100% | ||
giantfrost | 0 | 2,902,607,095 | 100% | ||
warriorminotaur | 0 | 2,902,492,990 | 100% | ||
golemalric | 0 | 1,961,298,672 | 100% | ||
orcelemental | 0 | 1,972,519,568 | 100% | ||
spiritpriest | 0 | 1,961,173,487 | 100% | ||
lordjester | 0 | 2,902,721,486 | 100% | ||
magifirestorm | 0 | 1,960,695,603 | 100% | ||
muhan | 0 | 1,960,579,749 | 100% | ||
smseller | 0 | 1,884,829,711 | 100% | ||
prcko | 0 | 748,521,089 | 30.43% | ||
dicetime | 0 | -5,122,056,322 | -4% | ||
threespeak | 0 | -3,338,689,092,806 | -8% | ||
zzan.co17 | 0 | 63,868,350 | 15% | ||
cn-zzang | 0 | 1,102,812,396 | 5% | ||
cn-sct | 0 | 1,883,927,762 | 2% | ||
dappcoder | 0 | 30,557,378,466 | 100% | ||
tagflagger | 0 | 0 | -4% | ||
cribesa | 0 | -3,178,447 | -10% | ||
jirtrumi | 0 | -2,488,350 | -10% | ||
vautyu | 0 | -9,730,930 | -10% | ||
tex.fund | 0 | 32,148,054,985 | 100% | ||
hnt | 0 | 29,765,589,525 | 100% | ||
acu.fund | 0 | 1,184,786,160,190 | 100% | ||
dravez | 0 | -9,464,002 | -10% | ||
miranza | 0 | 0 | -10% | ||
mana.bank | 0 | 27,949,578,219 | 100% | ||
acu.fund.witness | 0 | 30,792,960,000 | 100% | ||
spbank | 0 | 31,187,990,667 | 100% | ||
yaowl | 0 | 31,385,710,667 | 100% | ||
alanyao | 0 | 31,385,710,667 | 100% | ||
missingwolf | 0 | 29,647,996,292 | 100% | ||
xinhuaren | 0 | 31,187,990,667 | 100% | ||
acufund | 0 | 31,187,824,017 | 100% | ||
downvoter | 0 | 60,163,248,693 | 100% | ||
manabot1 | 0 | 28,687,080,432 | 100% | ||
manabot | 0 | 29,982,621,582 | 100% | ||
huaren.news | 0 | 206,852,204,374 | 100% | ||
cameron.barnes | 0 | 543,090,565 | 100% | ||
manabot2 | 0 | 27,601,940,000 | 100% | ||
sherryzhou | 0 | 543,057,165 | 100% | ||
goodvoter | 0 | 0 | 100% | ||
anonymity.inlet | 0 | 384,886,314 | 100% | ||
manabot3 | 0 | 32,412,491,656 | 100% | ||
manabot4 | 0 | 31,577,308,636 | 100% | ||
manabank | 0 | 31,577,084,624 | 100% | ||
texfund | 0 | 24,780,396,971 | 100% | ||
goodreader | 0 | 31,577,079,957 | 100% | ||
goodposter | 0 | 31,576,724,080 | 100% |
能翻译成英文吗?要么我帮你翻译也行?:)
author | anonymity.inlet |
---|---|
permlink | pzakkx |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-13 02:36:33 |
last_update | 2019-10-13 02:36:33 |
depth | 1 |
children | 1 |
last_payout | 2019-10-20 02:36:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.117 HBD |
curator_payout_value | 0.116 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 2,465,538,630,256 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,499,224 |
net_rshares | 1,179,810,262,667 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 29,986,457,927 | 100% | ||
tex.fund | 0 | 29,234,769,504 | 100% | ||
acu.fund | 0 | 230,496,463,034 | 23% | ||
mana.bank | 0 | 26,775,749,462 | 100% | ||
acu.fund.witness | 0 | 30,176,529,175 | 100% | ||
spbank | 0 | 29,354,956,742 | 100% | ||
alanyao | 0 | 28,948,020,578 | 100% | ||
missingwolf | 0 | 28,766,270,175 | 100% | ||
xinhuaren | 0 | 26,410,820,060 | 100% | ||
downvoter | 0 | 228,701,451,592 | 100% | ||
manabot | 0 | 30,340,258,446 | 100% | ||
huaren.news | 0 | 243,403,320,276 | 100% | ||
anonymity.inlet | 0 | 217,215,195,696 | 100% |
可以啊,不过注意busy默认的选项.加上原文链接,方便中文社区看见. 你是专门做匿名注册的? 不过这个教程的匿名性,还不够哦
author | dappcoder |
---|---|
permlink | pzanx1 |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-13 03:48:39 |
last_update | 2019-10-13 03:48:39 |
depth | 2 |
children | 0 |
last_payout | 2019-10-20 03:48:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.200 HBD |
curator_payout_value | 0.199 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 9,480,331,507,174 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,500,428 |
net_rshares | 1,903,651,100,904 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 28,428,736,005 | 100% | ||
acu.fund | 0 | 1,027,358,007,713 | 100% | ||
mana.bank | 0 | 24,435,191,747 | 100% | ||
acu.fund.witness | 0 | 25,671,832,090 | 100% | ||
spbank | 0 | 28,193,965,311 | 100% | ||
alanyao | 0 | 29,854,270,709 | 100% | ||
missingwolf | 0 | 30,563,664,715 | 100% | ||
xinhuaren | 0 | 28,061,644,961 | 100% | ||
downvoter | 0 | 196,798,369,832 | 100% | ||
huaren.news | 0 | 253,508,551,534 | 100% | ||
anonymity.inlet | 0 | 230,776,866,287 | 100% |
还了点念想,没全部踩没了
author | cameron.barnes |
---|---|
permlink | pzfese |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-15 17:19:27 |
last_update | 2019-10-15 17:19:27 |
depth | 1 |
children | 0 |
last_payout | 2019-10-22 17:19: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 | 12 |
author_reputation | 2,927,734,851,797 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,585,549 |
net_rshares | 40,248,800,238 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acu.fund | 0 | 40,248,800,238 | 88% |
!thumbup 恭喜你!您的这篇文章入选 @justyy 今日 (2019-10-14) 榜单 [【优秀的文章】](https://steemit.com/cn/@justyy/--daily-cn-updates-cncnpower-downyy2019-10-14), 回复本条评论24小时内领赏,点赞本评论将支持 @dailychina 并增加将来您的奖赏。 @justyy 是CN区的见证人,[请支持他,给他投票](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=justyy),或者设置justyy为[见证人代理](https://v2.steemconnect.com/sign/account-witness-proxy?proxy=justyy&approve=1)。感谢!@justyy的主要贡献:https://steemyy.com Congratulations! This post has been selected by @justyy as today's (2019-10-14) [【Good Posts】](https://steemit.com/cn/@justyy/--daily-cn-updates-cncnpower-downyy2019-10-14), Steem On! Reply to this message in 24 hours to get rewards. Upvote this comment to support the @dailychina and increase your future rewards! ^_^ [SteemIt 工具、API接口、机器人和教程](https://steemyy.com/steemit-tools/) [SteemIt Tools, Bots, APIs and Tutorial](https://SteemYY.com)<hr> If you believe what I am doing, please consider a spare vote voting me [here](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=justyy), thank you very much indeed. @justyy - the author of https://SteemYY.com and I have been a Steem Witness for [more than a year now.](https://steemit.com/witness-category/@justyy/one-year-winessversary-a-great-start)
author | dailychina |
---|---|
permlink | re-steem-steem-docker-cliwallet-steem-20191014t080228 |
category | cn |
json_metadata | "" |
created | 2019-10-14 08:02:30 |
last_update | 2019-10-14 08:02:30 |
depth | 1 |
children | 2 |
last_payout | 2019-10-21 08:02:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.024 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,249 |
author_reputation | 50,124,640,567,504 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,537,003 |
net_rshares | 281,812,591,397 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
justyy | 0 | 201,333,731,512 | 8% | ||
happyukgo | 0 | 481,560,836 | 25% | ||
superbing | 0 | 6,708,878,969 | 25% | ||
dailyfortune | 0 | 32,505,309 | 25% | ||
dailystats | 0 | 15,917,710,597 | 25% | ||
penghuren | 0 | 1,493,073,023 | 100% | ||
dailychina | 0 | 14,787,950,933 | 25% | ||
turtlegraphics | 0 | 3,020,541,795 | 25% | ||
witnesstools | 0 | 2,911,826,517 | 25% | ||
ilovecoding | 0 | 2,889,581,717 | 25% | ||
steemfuckeos | 0 | 1,882,209,141 | 25% | ||
cplusplus | 0 | 0 | 25% | ||
justsoso | 0 | 0 | 25% | ||
dappcoder | 0 | 30,353,021,048 | 100% |
太牛了!thumbup
author | dappcoder |
---|---|
permlink | pzcw1i |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-14 08:39:18 |
last_update | 2019-10-14 08:39:18 |
depth | 2 |
children | 0 |
last_payout | 2019-10-21 08:39:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.031 HBD |
curator_payout_value | 0.029 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 9,480,331,507,174 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,537,773 |
net_rshares | 342,416,809,356 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
justyy | 0 | 202,651,444,960 | 8% | ||
happyukgo | 0 | 584,944,806 | 30% | ||
superbing | 0 | 8,022,056,777 | 30% | ||
dailyfortune | 0 | 48,504,249 | 30% | ||
dailystats | 0 | 19,023,264,341 | 30% | ||
dailychina | 0 | 17,669,547,778 | 30% | ||
turtlegraphics | 0 | 3,616,846,732 | 30% | ||
witnesstools | 0 | 3,487,018,883 | 30% | ||
ilovecoding | 0 | 3,460,454,177 | 30% | ||
steemfuckeos | 0 | 2,257,431,260 | 30% | ||
cplusplus | 0 | 0 | 30% | ||
justsoso | 0 | 0 | 30% | ||
acu.fund | 0 | 23,375,070,097 | 85% | ||
acu.fund.witness | 0 | 28,402,994,424 | 100% | ||
xinhuaren | 0 | 29,817,230,872 | 100% |
## Hello @dailychina! You are awesome!  <hr/> command: **!thumbup** is powered by witness @justyy and his contributions are: [https://steemyy.com](https://steemyy.com) *[More commands](https://steemyy.com/#bots) are coming!*
author | witnesstools |
---|---|
permlink | 20191014t083926496z |
category | cn |
json_metadata | {"tags":["thumbup","bot-reply","justyy"],"app":"witnesstools"} |
created | 2019-10-14 08:39:27 |
last_update | 2019-10-14 08:39:27 |
depth | 2 |
children | 0 |
last_payout | 2019-10-21 08:39: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 | 289 |
author_reputation | 159,850,393,835 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,537,780 |
net_rshares | 0 |
markdown的目录很难搞啊!thump
author | dappcoder |
---|---|
permlink | re-dappcoder-steem-steem-docker-cliwallet-steem-20191012t150145611z |
category | cn |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[],"image":[]} |
created | 2019-10-12 15:01:48 |
last_update | 2019-10-12 15:02:24 |
depth | 1 |
children | 3 |
last_payout | 2019-10-19 15:01:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.184 HBD |
curator_payout_value | 0.182 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 9,480,331,507,174 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,484,785 |
net_rshares | 1,771,868,241,746 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 29,451,288,069 | 100% | ||
acu.fund | 0 | 1,162,842,007,140 | 100% | ||
acu.fund.witness | 0 | 24,182,494,983 | 100% | ||
spbank | 0 | 25,454,512,313 | 100% | ||
yaowl | 0 | 27,154,336,958 | 100% | ||
alanyao | 0 | 30,053,073,875 | 100% | ||
missingwolf | 0 | 28,482,589,750 | 100% | ||
acufund | 0 | 29,904,584,879 | 100% | ||
downvoter | 0 | 185,246,292,082 | 100% | ||
huaren.news | 0 | 229,097,061,697 | 100% |
牛啊!thump 好像[TOC]不管用啊,官方给的链接是[github的markdown](https://guides.github.com/features/mastering-markdown/),好像没有关于目录怎么做
author | acu.fund |
---|---|
permlink | pz9orq |
category | cn |
json_metadata | {"links":["https://guides.github.com/features/mastering-markdown/"],"app":"steemit/0.1"} |
created | 2019-10-12 15:09:27 |
last_update | 2019-10-12 15:09:27 |
depth | 2 |
children | 2 |
last_payout | 2019-10-19 15:09:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.216 HBD |
curator_payout_value | 0.214 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 3,707,885,330,267 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,484,959 |
net_rshares | 2,048,419,949,197 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 30,051,795,387 | 100% | ||
tex.fund | 0 | 32,148,054,985 | 100% | ||
hnt | 0 | 28,579,785,965 | 100% | ||
acu.fund | 0 | 1,141,081,668,255 | 100% | ||
mana.bank | 0 | 27,494,521,832 | 100% | ||
acu.fund.witness | 0 | 27,831,106,922 | 100% | ||
spbank | 0 | 28,438,069,951 | 100% | ||
alanyao | 0 | 29,464,110,610 | 100% | ||
missingwolf | 0 | 27,914,324,190 | 100% | ||
xinhuaren | 0 | 31,175,842,560 | 100% | ||
acufund | 0 | 29,310,699,486 | 100% | ||
downvoter | 0 | 189,021,099,603 | 100% | ||
manabot1 | 0 | 29,671,199,082 | 100% | ||
manabot | 0 | 27,033,705,920 | 100% | ||
huaren.news | 0 | 233,771,661,686 | 100% | ||
cameron.barnes | 0 | 508,244,473 | 100% | ||
goodvoter | 0 | 16,768,467,674 | 100% | ||
anonymity.inlet | 0 | 351,166,496 | 100% | ||
manabot3 | 0 | 29,412,994,875 | 100% | ||
manabank | 0 | 29,419,614,424 | 100% | ||
downscaner | 0 | 58,971,814,821 | 100% |
我用busy.org,也没有目录的处理方式. 只有先本地markdown生成TOC目录,然后把导出的html中的链接,拿出来做列表.太麻烦.
author | dappcoder |
---|---|
permlink | re-acufund-pz9orq-20191012t151523888z |
category | cn |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[],"image":[]} |
created | 2019-10-12 15:15:27 |
last_update | 2019-10-12 15:15:27 |
depth | 3 |
children | 0 |
last_payout | 2019-10-19 15:15:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.197 HBD |
curator_payout_value | 0.196 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 9,480,331,507,174 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,485,099 |
net_rshares | 1,891,185,344,404 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 28,921,095,649 | 100% | ||
tex.fund | 0 | 31,429,569,842 | 100% | ||
hnt | 0 | 27,475,300,608 | 100% | ||
acu.fund | 0 | 1,119,454,637,722 | 100% | ||
mana.bank | 0 | 27,148,939,351 | 100% | ||
acu.fund.witness | 0 | 24,654,305,624 | 100% | ||
spbank | 0 | 25,974,569,849 | 100% | ||
yaowl | 0 | 27,709,081,990 | 100% | ||
alanyao | 0 | 30,666,976,804 | 100% | ||
missingwolf | 0 | 29,064,666,142 | 100% | ||
xinhuaren | 0 | 26,949,065,935 | 100% | ||
acufund | 0 | 30,515,460,225 | 100% | ||
downvoter | 0 | 50,064,117,188 | 100% | ||
manabot1 | 0 | 19,608,055,812 | 100% | ||
manabot | 0 | 27,112,057,057 | 100% | ||
goodvoter | 0 | 16,104,076,171 | 100% | ||
anonymity.inlet | 0 | 216,493,911,059 | 100% | ||
manabot4 | 0 | 28,541,711,259 | 100% | ||
manabank | 0 | 23,080,356,612 | 100% | ||
goodposter | 0 | 27,974,002,555 | 100% | ||
downscaner | 0 | 52,243,386,950 | 100% |
@tipu nominate
author | mana.bank |
---|---|
permlink | pz9r6p |
category | cn |
json_metadata | {"users":["tipu"],"app":"steemit/0.1"} |
created | 2019-10-12 16:01:39 |
last_update | 2019-10-12 16:01:39 |
depth | 3 |
children | 0 |
last_payout | 2019-10-19 16:01: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 | 14 |
author_reputation | 938,294,888,269 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,486,371 |
net_rshares | -828,046,327,347 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemflagrewards | 0 | -2,475,469,107,315 | -69% | ||
tex.fund | 0 | 27,913,070,470 | 100% | ||
hnt | 0 | 28,036,818,672 | 100% | ||
acu.fund | 0 | 1,053,722,511,772 | 100% | ||
mana.bank | 0 | 25,582,478,980 | 100% | ||
acu.fund.witness | 0 | 29,569,127,198 | 100% | ||
spbank | 0 | 29,922,661,927 | 100% | ||
yaowl | 0 | 29,439,901,002 | 100% | ||
missingwolf | 0 | 28,557,762,915 | 100% | ||
xinhuaren | 0 | 27,615,368,634 | 100% | ||
acufund | 0 | 29,296,061,325 | 100% | ||
downvoter | 0 | 57,664,375,958 | 100% | ||
manabot1 | 0 | 26,921,101,433 | 100% | ||
manabot | 0 | 28,701,675,028 | 100% | ||
huaren.news | 0 | 198,093,155,061 | 100% | ||
manabot2 | 0 | 26,386,709,593 | 100% |
@busy 太呕心吧? 默认把自己放到收益名单中,而且10%呢.  刚才点发布的时候,没在意.默认是选中状态:  至少也应该让新手确认一下吧?
author | dappcoder |
---|---|
permlink | re-dappcoder-steem-steem-docker-cliwallet-steem-20191012t152208825z |
category | cn |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn"],"users":["busy"],"links":["/@busy"],"image":["https://ipfs.busy.org/ipfs/QmVySnPrBJqMs3ZHDZTETiefEsmqrxGNTqQcEQY6r8C7Rq","https://ipfs.busy.org/ipfs/QmUGzNb62igSYKcBmWeQduj3Hthgc16WqiBT4nzeiVNAQe"]} |
created | 2019-10-12 15:22:09 |
last_update | 2019-10-12 15:22:09 |
depth | 1 |
children | 3 |
last_payout | 2019-10-19 15:22:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.174 HBD |
curator_payout_value | 0.173 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 288 |
author_reputation | 9,480,331,507,174 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,485,272 |
net_rshares | 1,691,323,376,560 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 28,342,765,585 | 100% | ||
acu.fund | 0 | 1,142,284,879,249 | 100% | ||
mana.bank | 0 | 26,605,644,924 | 100% | ||
acu.fund.witness | 0 | 25,158,038,010 | 100% | ||
spbank | 0 | 26,505,462,161 | 100% | ||
yaowl | 0 | 28,275,371,109 | 100% | ||
alanyao | 0 | 31,291,403,535 | 100% | ||
missingwolf | 0 | 29,658,621,644 | 100% | ||
xinhuaren | 0 | 27,499,845,923 | 100% | ||
acufund | 0 | 31,138,581,058 | 100% | ||
downvoter | 0 | 51,086,000,911 | 100% | ||
huaren.news | 0 | 243,476,762,451 | 100% | ||
goodvoter | 0 | 0 | 100% |
是有点过分呢!scanme
author | alanyao |
---|---|
permlink | pz9toz |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-12 16:55:48 |
last_update | 2019-10-12 16:55:48 |
depth | 2 |
children | 2 |
last_payout | 2019-10-19 16:55:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.150 HBD |
curator_payout_value | 0.150 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 7,325,544,227,273 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,487,657 |
net_rshares | 1,484,000,791,760 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 28,634,622,585 | 100% | ||
acu.fund | 0 | 997,756,122,017 | 100% | ||
acu.fund.witness | 0 | 26,197,495,421 | 100% | ||
downvoter | 0 | 192,874,631,377 | 100% | ||
huaren.news | 0 | 238,537,920,360 | 100% |
Congratulations~ You are free from any blacklists~
author | shuxuan |
---|---|
permlink | pz9toz |
category | cn |
json_metadata | {"app":"busy/2.5.4"} |
created | 2019-10-12 16:55:57 |
last_update | 2019-10-12 16:55:57 |
depth | 3 |
children | 1 |
last_payout | 2019-10-19 16:55: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 | 50 |
author_reputation | 7,561,902,207,693 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,487,658 |
net_rshares | 0 |
author | davidchen |
---|---|
permlink | re-dappcoder-steem-steem-docker-cliwallet-steem-20191012t152553269z |
category | cn |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn"],"users":["tipu"],"links":["/@tipu"],"image":[]} |
created | 2019-10-12 15:25:54 |
last_update | 2019-10-12 15:25:54 |
depth | 1 |
children | 0 |
last_payout | 2019-10-19 15:25:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.021 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 10,165,893,911,274 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,485,395 |
net_rshares | 239,791,254,735 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 27,801,988,136 | 100% | ||
acu.fund | 0 | 185,747,750,927 | 19% | ||
mana.bank | 0 | 26,241,515,672 | 100% |
author | goodvoter |
---|---|
permlink | pzfeh1 |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-15 17:12:39 |
last_update | 2019-10-15 17:12:39 |
depth | 1 |
children | 0 |
last_payout | 2019-10-22 17:12:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 133,213,433,598 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,585,395 |
net_rshares | 217,040,635,577 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acu.fund | 0 | 45,187,540,399 | 85% | ||
downvoter | 0 | 171,853,095,178 | 100% |
@tipu nominate
author | mana.bank |
---|---|
permlink | pzanuh |
category | cn |
json_metadata | {"users":["tipu"],"app":"steemit/0.1"} |
created | 2019-10-13 03:47:06 |
last_update | 2019-10-13 03:47:06 |
depth | 1 |
children | 2 |
last_payout | 2019-10-20 03:47: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 | 14 |
author_reputation | 938,294,888,269 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,500,405 |
net_rshares | -24,561,821,148 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemflagrewards | 0 | -185,046,577,928 | -7% | ||
dappcoder | 0 | 30,443,630,066 | 100% | ||
tex.fund | 0 | 27,514,979,427 | 100% | ||
acu.fund | 0 | 22,779,662,418 | 90% | ||
mana.bank | 0 | 25,742,831,633 | 100% | ||
acu.fund.witness | 0 | 27,268,597,349 | 100% | ||
cameron.barnes | 0 | 445,232,873 | 100% | ||
manabot2 | 0 | 26,289,823,014 | 100% |
谢谢呢, 不过,管用吗?
author | dappcoder |
---|---|
permlink | pzany3 |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-13 03:49:15 |
last_update | 2019-10-13 03:49:15 |
depth | 2 |
children | 1 |
last_payout | 2019-10-20 03:49:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.151 HBD |
curator_payout_value | 0.149 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 9,480,331,507,174 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,500,437 |
net_rshares | 1,478,796,813,007 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 29,814,428,237 | 100% | ||
hnt | 0 | 26,403,437,452 | 100% | ||
acu.fund | 0 | 24,466,593,881 | 86% | ||
mana.bank | 0 | 681,952,144,916 | 100% | ||
acu.fund.witness | 0 | 27,277,099,742 | 100% | ||
yaowl | 0 | 28,908,551,070 | 100% | ||
xinhuaren | 0 | 28,635,130,644 | 100% | ||
acufund | 0 | 27,020,594,178 | 100% | ||
downvoter | 0 | 204,875,967,155 | 100% | ||
manabot | 0 | 28,225,719,079 | 100% | ||
huaren.news | 0 | 248,439,213,748 | 100% | ||
manabot2 | 0 | 25,995,347,832 | 100% | ||
goodvoter | 0 | 17,110,441,041 | 100% | ||
manabot4 | 0 | 24,282,986,947 | 100% | ||
manabank | 0 | 27,973,986,727 | 100% | ||
texfund | 0 | 27,415,170,358 | 100% |
真有礼貌,好孩子,呵呵:)
author | manabot |
---|---|
permlink | pze6vn |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-15 01:31:00 |
last_update | 2019-10-15 01:31:00 |
depth | 3 |
children | 0 |
last_payout | 2019-10-22 01:31: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 | 13 |
author_reputation | 113,293,894,589 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,563,548 |
net_rshares | 36,533,365,103 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acu.fund | 0 | 36,533,365,103 | 84% |
- 스팀 코인판 커뮤니티를 이용해주셔서 감사합니다. - 2019년 10월 15일부터는 스팀코인판에서 작성한 글만 SCT 토큰을 보상받을 수 있습니다 - 스팀 코인판 이외의 곳에서 작성된 글은 SCT 보상에서 제외되니 주의 바랍니다. - Thanks to everyone who continues to participate in SteemCoinPan community. - From Oct 15, 2019, we will provide SCT rewards for postings published on SteemCoinPan. - You won't get SCT rewards at all if you create a posting on other Steem Dapps after Oct 15, 2019.
author | sct.notice |
---|---|
permlink | re-dappcoder-ste6703 |
category | cn |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn","sct","sc-cn","zzan","busy","esteem"],"users":["goodvoter"],"links":["#0","#_1","#1-docker","#ubuntu1804-docker","#steemd","#2-steemdocker","#3-docker-cli_wallet","#4-cli_wallet","#5-cli_wallet","#6-cli_wallet"],"image":[]} |
created | 2019-10-12 14:46:30 |
last_update | 2019-10-12 14:46:30 |
depth | 1 |
children | 0 |
last_payout | 2019-10-19 14:46: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 | 396 |
author_reputation | 60,586,092,807 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,484,345 |
net_rshares | 0 |
Congratulations @dappcoder! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@dappcoder/voted.png?201910121622"></td><td>You received more than 50 upvotes. Your next target is to reach 100 upvotes.</td></tr> </table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@dappcoder) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=dappcoder)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-badge-is-ready"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmRUkELn2Fd13pWFkmWU2wBMMx39EBX5V3cHBEZ2d7f3Ve/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-badge-is-ready">The new SteemFest⁴ badge is ready</a></td></tr></table> ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-dappcoder-20191012t210459000z |
category | cn |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-10-12 21:04:57 |
last_update | 2019-10-12 21:04:57 |
depth | 1 |
children | 0 |
last_payout | 2019-10-19 21:04: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 | 1,288 |
author_reputation | 38,975,615,169,260 |
root_title | steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,493,138 |
net_rshares | 0 |