create account

steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号 by dappcoder

View this thread on: hive.blogpeakd.comecency.com
· @dappcoder · (edited)
$0.63
steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
> [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)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 79 others
👎  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authordappcoder
permlinksteem-steem-docker-cliwallet-steem
categorycn
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"]}
created2019-10-12 14:46:24
last_update2019-10-13 07:08:15
depth0
children21
last_payout2019-10-19 14:46:24
cashout_time1969-12-31 23:59:59
total_payout_value0.302 HBD
curator_payout_value0.331 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,258
author_reputation9,480,331,507,174
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries
0.
accountbusy.org
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,484,343
net_rshares2,995,235,024,650
author_curate_reward""
vote details (177)
@anonymity.inlet ·
$0.23
properties (23)
authoranonymity.inlet
permlinkpzakkx
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-13 02:36:33
last_update2019-10-13 02:36:33
depth1
children1
last_payout2019-10-20 02:36:33
cashout_time1969-12-31 23:59:59
total_payout_value0.117 HBD
curator_payout_value0.116 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation2,465,538,630,256
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,499,224
net_rshares1,179,810,262,667
author_curate_reward""
vote details (13)
@dappcoder ·
$0.40
可以啊,不过注意busy默认的选项.加上原文链接,方便中文社区看见.

你是专门做匿名注册的?

不过这个教程的匿名性,还不够哦
👍  , , , , , , , , , ,
properties (23)
authordappcoder
permlinkpzanx1
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-13 03:48:39
last_update2019-10-13 03:48:39
depth2
children0
last_payout2019-10-20 03:48:39
cashout_time1969-12-31 23:59:59
total_payout_value0.200 HBD
curator_payout_value0.199 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation9,480,331,507,174
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,500,428
net_rshares1,903,651,100,904
author_curate_reward""
vote details (11)
@cameron.barnes ·
还了点念想,没全部踩没了
👍  
properties (23)
authorcameron.barnes
permlinkpzfese
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-15 17:19:27
last_update2019-10-15 17:19:27
depth1
children0
last_payout2019-10-22 17:19:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation2,927,734,851,797
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,585,549
net_rshares40,248,800,238
author_curate_reward""
vote details (1)
@dailychina ·
$0.05
!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)
👍  , , , , , , , , , , , , ,
properties (23)
authordailychina
permlinkre-steem-steem-docker-cliwallet-steem-20191014t080228
categorycn
json_metadata""
created2019-10-14 08:02:30
last_update2019-10-14 08:02:30
depth1
children2
last_payout2019-10-21 08:02:30
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,249
author_reputation50,124,640,567,504
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,537,003
net_rshares281,812,591,397
author_curate_reward""
vote details (14)
@dappcoder ·
$0.06
properties (23)
authordappcoder
permlinkpzcw1i
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-14 08:39:18
last_update2019-10-14 08:39:18
depth2
children0
last_payout2019-10-21 08:39:18
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation9,480,331,507,174
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,537,773
net_rshares342,416,809,356
author_curate_reward""
vote details (15)
@witnesstools ·
## Hello @dailychina! You are awesome!
![](https://media.giphy.com/media/1BcSKYB1VQBO8cb8PE/giphy.gif)

<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!*
properties (22)
authorwitnesstools
permlink20191014t083926496z
categorycn
json_metadata{"tags":["thumbup","bot-reply","justyy"],"app":"witnesstools"}
created2019-10-14 08:39:27
last_update2019-10-14 08:39:27
depth2
children0
last_payout2019-10-21 08:39:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length289
author_reputation159,850,393,835
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,537,780
net_rshares0
@dappcoder · (edited)
$0.37
markdown的目录很难搞啊!thump
👍  , , , , , , , , ,
properties (23)
authordappcoder
permlinkre-dappcoder-steem-steem-docker-cliwallet-steem-20191012t150145611z
categorycn
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[],"image":[]}
created2019-10-12 15:01:48
last_update2019-10-12 15:02:24
depth1
children3
last_payout2019-10-19 15:01:48
cashout_time1969-12-31 23:59:59
total_payout_value0.184 HBD
curator_payout_value0.182 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation9,480,331,507,174
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,484,785
net_rshares1,771,868,241,746
author_curate_reward""
vote details (10)
@acu.fund ·
$0.43
牛啊!thump

好像[TOC]不管用啊,官方给的链接是[github的markdown](https://guides.github.com/features/mastering-markdown/),好像没有关于目录怎么做
👍  , , , , , , , , , , , , , , , , , , , ,
properties (23)
authoracu.fund
permlinkpz9orq
categorycn
json_metadata{"links":["https://guides.github.com/features/mastering-markdown/"],"app":"steemit/0.1"}
created2019-10-12 15:09:27
last_update2019-10-12 15:09:27
depth2
children2
last_payout2019-10-19 15:09:27
cashout_time1969-12-31 23:59:59
total_payout_value0.216 HBD
curator_payout_value0.214 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation3,707,885,330,267
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,484,959
net_rshares2,048,419,949,197
author_curate_reward""
vote details (21)
@dappcoder ·
$0.39
我用busy.org,也没有目录的处理方式.

只有先本地markdown生成TOC目录,然后把导出的html中的链接,拿出来做列表.太麻烦.
👍  , , , , , , , , , , , , , , , , , , , ,
properties (23)
authordappcoder
permlinkre-acufund-pz9orq-20191012t151523888z
categorycn
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[],"image":[]}
created2019-10-12 15:15:27
last_update2019-10-12 15:15:27
depth3
children0
last_payout2019-10-19 15:15:27
cashout_time1969-12-31 23:59:59
total_payout_value0.197 HBD
curator_payout_value0.196 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation9,480,331,507,174
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,485,099
net_rshares1,891,185,344,404
author_curate_reward""
vote details (21)
@mana.bank ·
properties (23)
authormana.bank
permlinkpz9r6p
categorycn
json_metadata{"users":["tipu"],"app":"steemit/0.1"}
created2019-10-12 16:01:39
last_update2019-10-12 16:01:39
depth3
children0
last_payout2019-10-19 16:01:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation938,294,888,269
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,486,371
net_rshares-828,046,327,347
author_curate_reward""
vote details (16)
@dappcoder ·
$0.35
@busy 太呕心吧? 默认把自己放到收益名单中,而且10%呢.
![屏幕快照 2019-10-12 下午11.17.58.png](https://ipfs.busy.org/ipfs/QmVySnPrBJqMs3ZHDZTETiefEsmqrxGNTqQcEQY6r8C7Rq)
刚才点发布的时候,没在意.默认是选中状态:
![屏幕快照 2019-10-12 下午11.20.45.png](https://ipfs.busy.org/ipfs/QmUGzNb62igSYKcBmWeQduj3Hthgc16WqiBT4nzeiVNAQe)

至少也应该让新手确认一下吧?
👍  , , , , , , , , , , , ,
properties (23)
authordappcoder
permlinkre-dappcoder-steem-steem-docker-cliwallet-steem-20191012t152208825z
categorycn
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"]}
created2019-10-12 15:22:09
last_update2019-10-12 15:22:09
depth1
children3
last_payout2019-10-19 15:22:09
cashout_time1969-12-31 23:59:59
total_payout_value0.174 HBD
curator_payout_value0.173 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length288
author_reputation9,480,331,507,174
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,485,272
net_rshares1,691,323,376,560
author_curate_reward""
vote details (13)
@alanyao ·
$0.30
是有点过分呢!scanme
👍  , , , ,
properties (23)
authoralanyao
permlinkpz9toz
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-12 16:55:48
last_update2019-10-12 16:55:48
depth2
children2
last_payout2019-10-19 16:55:48
cashout_time1969-12-31 23:59:59
total_payout_value0.150 HBD
curator_payout_value0.150 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation7,325,544,227,273
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,487,657
net_rshares1,484,000,791,760
author_curate_reward""
vote details (5)
@shuxuan ·
Congratulations~ You are free from any blacklists~
properties (22)
authorshuxuan
permlinkpz9toz
categorycn
json_metadata{"app":"busy/2.5.4"}
created2019-10-12 16:55:57
last_update2019-10-12 16:55:57
depth3
children1
last_payout2019-10-19 16:55:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation7,561,902,207,693
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,487,658
net_rshares0
@davidchen ·
$0.04
写的不错@tipu curate
👍  , ,
properties (23)
authordavidchen
permlinkre-dappcoder-steem-steem-docker-cliwallet-steem-20191012t152553269z
categorycn
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn"],"users":["tipu"],"links":["/@tipu"],"image":[]}
created2019-10-12 15:25:54
last_update2019-10-12 15:25:54
depth1
children0
last_payout2019-10-19 15:25:54
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation10,165,893,911,274
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,485,395
net_rshares239,791,254,735
author_curate_reward""
vote details (3)
@goodvoter ·
$0.04
可惜了一幅原创贴
👍  ,
properties (23)
authorgoodvoter
permlinkpzfeh1
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-15 17:12:39
last_update2019-10-15 17:12:39
depth1
children0
last_payout2019-10-22 17:12:39
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation133,213,433,598
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,585,395
net_rshares217,040,635,577
author_curate_reward""
vote details (2)
@mana.bank ·
properties (23)
authormana.bank
permlinkpzanuh
categorycn
json_metadata{"users":["tipu"],"app":"steemit/0.1"}
created2019-10-13 03:47:06
last_update2019-10-13 03:47:06
depth1
children2
last_payout2019-10-20 03:47:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation938,294,888,269
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,500,405
net_rshares-24,561,821,148
author_curate_reward""
vote details (8)
@dappcoder ·
$0.30
properties (23)
authordappcoder
permlinkpzany3
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-13 03:49:15
last_update2019-10-13 03:49:15
depth2
children1
last_payout2019-10-20 03:49:15
cashout_time1969-12-31 23:59:59
total_payout_value0.151 HBD
curator_payout_value0.149 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation9,480,331,507,174
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,500,437
net_rshares1,478,796,813,007
author_curate_reward""
vote details (16)
@manabot ·
真有礼貌,好孩子,呵呵:)
👍  
properties (23)
authormanabot
permlinkpze6vn
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-15 01:31:00
last_update2019-10-15 01:31:00
depth3
children0
last_payout2019-10-22 01:31:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation113,293,894,589
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,563,548
net_rshares36,533,365,103
author_curate_reward""
vote details (1)
@sct.notice ·
- 스팀 코인판 커뮤니티를 이용해주셔서 감사합니다. 
- 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.
properties (22)
authorsct.notice
permlinkre-dappcoder-ste6703
categorycn
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":[]}
created2019-10-12 14:46:30
last_update2019-10-12 14:46:30
depth1
children0
last_payout2019-10-19 14:46:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length396
author_reputation60,586,092,807
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,484,345
net_rshares0
@steemitboard ·
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!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-dappcoder-20191012t210459000z
categorycn
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-10-12 21:04:57
last_update2019-10-12 21:04:57
depth1
children0
last_payout2019-10-19 21:04:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,288
author_reputation38,975,615,169,260
root_titlesteem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,493,138
net_rshares0