create account

Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem by anonymity.inlet

View this thread on: hive.blogpeakd.comecency.com
· @anonymity.inlet · (edited)
Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem
Original :[《steem奇幻旅:用steem官方docker镜像中的命令行钱包cli_wallet创建Steem安全新号》](https://steemit.com/cn/@dappcoder/steem-steem-docker-cliwallet-steem)

[Translating English Version with Authorization of the Author(经作者授权,翻译英文版)](https://steemit.com/cn/@dappcoder/steem-steem-docker-cliwallet-steem#@anonymity.inlet/pzakkx)

<h1> Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem</h1>


> [0. target](#0-target)  
>> [Main Step](#main-step)  
>
> [1. Make local Docker environment](#1-make-local-docker-environment)  
>> [ubuntu18.04 install Docker](#ubuntu1804-install-docker)  
>> [Add special system account steemd](#add-special-system-account-steemd)  
>
> [2. Get Steem's official Docker image ](#2-get-steems-official-docker-image) 
> [3. Running `cli_wallet` in docker image mode ](#3-running-cli_wallet-in-docker-image-mode)  
> [4. Import the key of the old account in cli_wallet](#4-import-the-key-of-the-old-account-in-cli_wallet)  
> [5. Generate key pair in `cli_wallet`](#5-generate-key-pair-in-cli_wallet)  
> [6. Generating a new account with the public key of the key pair in `cli_wallet`](#6-generating-a-new-account-with-the-public-key-of-the-key-pair-in-cli_wallet)  
> [7. Login with the new account on online wallet of steemit with the private key of the key pair](#7-login-with-the-new-account-on-online-wallet-of-steemit-with-the-private-key-of-the-key-pair)  
> [8. In steemit's official online wallet, change the new keys](#8-in-steemits-official-online-wallet-change-the-new-keys)  
> [9. You can use the new account normally(remember the keys for recovery after the stolen account is stolen in the future)](#9-you-can-use-the-new-account-normallyremember-the-keys-for-recovery-after-the-stolen-account-is-stolen-in-the-future)  
> [Appendix: Source code explanation](#appendix-source-code-explanation) 


# 0. target
`cli_wallet` is Steem's command-line wallet, which can interact directly with Steem nodes and perform many important wallet-related operations, including creating new accounts.

New accounts created through `cli_wallet` are safer and not controlled by any account (including your old account or steemit official).

But `cli_wallet` requires Steem nodes to support WebSocket RPC (ws/wss) and temporarily find one (or build it yourself): wss://steemd.privex.io.

## Main Step  
1. Make local Docker environment  
2. Get Steem's official Docker image  
3. Running `cli_wallet` in docker image mode   
4. Import the key of the old account in cli_wallet(Responsible for paying 3STEEM fees for account creation)  
5. Generate key pair in `cli_wallet`  
6. Generating a new account with the public key of the key pair in `cli_wallet`, All new key of the new account are this key pair 
7. Login with the new account on online wallet of steemit with the private key of the key pair  
8. In steemit's official online wallet, change the new keys,Make all kinds of keys different, convenient for hierarchical management  
9. You can use the new account normally (remember the keys for recovery after the stolen account is stolen in the future).  

# 1. Make local Docker environment
## ubuntu18.04 install Docker
Take Ubuntu 18.04 as an example, Docker installation of other systems is easy by google/baidu.

Install Docker package:
`$  sudo apt update && sudo apt install git containerd docker.io -y`
Docker can also be installed via get.docker.com:
```
$ curl -fsSL get.docker.com -o get-docker.sh 
$ sh get-docker.sh
```

Start docker service:`$ service docker restart  `  
View docker status (error logs):
`$ systemctl status docker.service` or `$ journalctl -xn` 

## Add special system account steemd
Add special system account steemd,,并加入到 docker 组:
```shell
$ sudo adduser steemd
$ sudo usermod -aG sudo steemd
$ sudo usermod -aG docker steemd
$ sudo su - steemd 
```
In this way, steemd users can run docker directly without the need for frequent `sudo` operations.

# 2. Get Steem's official Docker image
Using the official docker image, it is easy for disaster recovery or hard bifurcation to operate quickly. It can also download and compile source code from GitHub itself.

Obtain the official docker image:`$ docker pull steemit/steem`  
View status : `$ docker images | grep steemit` 
```shell
steemit/steem       latest              1325632326e0        5 weeks ago         2.24GB
```
If you cannot access the official docker.com/docker.io, you can modify the docker image source:`$ sudo vi /etc/docker/daemon.json`
```config
{
"registry-mirrors":  ["https://registry.docker-cn.com","http://hub-mirror.c.163.com"]
}
```

Other options:
1. China University of Science and Technology: https://docker.mirrors.ustc.edu.cn 
2. Docker Official China Region: https://registry.docker-cn.com 
3. Netease: http://hub-mirror.c.163.com 
4. Aliyun: https://pee6w651.mirror.aliyuncs.com

# 3. Running `cli_wallet` in docker image mode   
Running `cli_wallet` in docker image mode : 
`$ docker run  -it steemit/steem /usr/local/steemd-default/bin/cli_wallet -s wss://steemd.privex.io`
show status:  
```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 >>> 
```

First time use, need to set password for local Wallet with `set_password`:
`new >>> set_password yourpwd`
show status:  
```info
new >>> set_password yourpwd
set_password yourpwd
null
locked >>> 
```

At this point, the wallet is locked and unlocked with `unlock`:
`locked >>> unlock yourpwd`  
show status:  
```info
locked >>> unlock yourpwd
unlock yourpwd
null
unlocked >>> 
```

If there is no response during use, it may be that `cli_wallet` disconnects the network connection with steem node and needs `ctrl+d` to exit and re-do the previous operation.

# 4. Import the key of the old account in cli_wallet
To create a new cli_wallet, you need to pay the steem node 3 STEEM fee, so you must first have an old account with at least 3STEEM to create the account.

Import Wallet Key of the old account (active key):
`unlocked >>> import_key 5J-active-key`
show status:  
```info
import_key 5J-active-key
3555971ms wallet.cpp:427                save_wallet_file     ] saving wallet to file wallet.json
true
unlocked >>> 
```

View imported account assets:
`unlocked >>> list_my_accounts `
show status:  
```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. Generate key pair in `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. Generating a new account with the public key of the key pair in `cli_wallet`
use the `pub_key` produced with `suggest_brain_key` creates a new account (`olduser` for old user, `newuser` for new user):
`unlocked >>> create_account_with_keys "olduser" "newuser" "" "STM8QhX-pub_key-Dw1KB" "STM8QhX-pub_key-Dw1KB" "STM8QhX-pub_key-Dw1KB" "STM8QhX-pub_key-Dw1KB" true`

Created new account, all kinds of keys are this key pair, the return information shows that the old account as creator paid 3 STEEM fees:
```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. Login with the new account on online wallet of steemit with the private key of the key pair  
The browser opens https://steemitwallet.com and login with the new account `newuser` and the private key of the key pair (`wif_priv_key`).

# 8. In steemit's official online wallet, change the new keys
All the keys of the new account are private keys of the key pair, which is not conducive to hierarchical management. 

Therefore, after login to the official online wallet, change the key immediately, so that all passwords are different, which is convenient for hierarchical management. 

change the keys: https://steemitwallet.com/@newuser/password

# 9. You can use the new account normally(remember the keys for recovery after the stolen account is stolen in the future)
Back up four keys, using different key in different situations:/post/Active/Owner/Memo

# Appendix: Source code explanation
Why to create an account in this way can not be controlled by any other account, you can find the explanation from the source code and source code comments.

For more `cli_wallet` operations, you can refer to the instructions in the [steem source code](https://github.com/steemit/steem/blob/326b17c6b1e883fba518bee20f7cef2d3fecec09/libraries/wallet/wallet.cpp)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
👎  , , , , , , , , , , , , , , , , , , ,
properties (23)
authoranonymity.inlet
permlinkcreate-a-new-steem-security-account-with-the-command-line-wallet-cliwallet-in-the-official-docker-image-of-steem
categorycn
json_metadata{"tags":["cn","cn-stem","cn-reader","cn-curation","partiko","steemstem","cn-programming","build-it","ocd-resteem","steem-guides","sct","sct-cn","sct-freeboard","sct-userguide","team-cn","palnet","zzan","dblog","mediaofficials","actnearn","marlians","neoxian","lassecash","upfundme","busy"],"links":["https://steemit.com/cn/@dappcoder/steem-steem-docker-cliwallet-steem","https://steemit.com/cn/@dappcoder/steem-steem-docker-cliwallet-steem#@anonymity.inlet/pzakkx","#0-target","#main-step","#1-make-local-docker-environment","#ubuntu1804-install-docker","#add-special-system-account-steemd","#2-get-steems-official-docker-image","#3-running-cli_wallet-in-docker-image-mode","#4-import-the-key-of-the-old-account-in-cli_wallet","#5-generate-key-pair-in-cli_wallet","#6-generating-a-new-account-with-the-public-key-of-the-key-pair-in-cli_wallet","#7-login-with-the-new-account-on-online-wallet-of-steemit-with-the-private-key-of-the-key-pair","#8-in-steemits-official-online-wallet-change-the-new-keys","#9-you-can-use-the-new-account-normallyremember-the-keys-for-recovery-after-the-stolen-account-is-stolen-in-the-future","#appendix-source-code-explanation","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"],"app":"busy/2.5.4","format":"markdown"}
created2019-10-13 06:02:21
last_update2019-10-13 13:57:42
depth0
children32
last_payout2019-10-20 06:02:21
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_length9,254
author_reputation2,465,538,630,256
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,502,593
net_rshares-813,157,300,917
author_curate_reward""
vote details (58)
@goodposter ·
$0.58
感觉这样中文分开,比较情愫
👍  , , , , , , , , ,
properties (23)
authorgoodposter
permlinkpzdnwj
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-14 18:41:09
last_update2019-10-14 18:41:09
depth1
children0
last_payout2019-10-21 18:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.290 HBD
curator_payout_value0.289 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation41,746,596,001
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,554,786
net_rshares2,671,782,144,327
author_curate_reward""
vote details (10)
@mana.bank ·
properties (23)
authormana.bank
permlinkpzauef
categorycn
json_metadata{"users":["tipu"],"app":"steemit/0.1"}
created2019-10-13 06:08:39
last_update2019-10-13 06:08:39
depth1
children6
last_payout2019-10-20 06:08: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_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,502,711
net_rshares-90,526,365,133
author_curate_reward""
vote details (17)
@anonymity.inlet ·
$0.14
properties (23)
authoranonymity.inlet
permlinkpzddba
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-14 14:52:24
last_update2019-10-14 14:52:24
depth2
children1
last_payout2019-10-21 14:52:24
cashout_time1969-12-31 23:59:59
total_payout_value0.069 HBD
curator_payout_value0.069 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation2,465,538,630,256
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,548,147
net_rshares737,517,397,660
author_curate_reward""
vote details (8)
@jlsplatts ·
Flagged for collusive voting @steemflagrewards
properties (22)
authorjlsplatts
permlinkre-anonymityinlet-pzp499
categorycn
json_metadata{"tags":["cn"],"app":"steempeak/1.18.0"}
created2019-10-20 23:07:57
last_update2019-10-20 23:07:57
depth3
children0
last_payout2019-10-27 23:07: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_length46
author_reputation94,028,454,259,907
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,749,153
net_rshares0
@lebin ·
Flagged for collusive voting @steemflagrewards
👍  ,
👎  
properties (23)
authorlebin
permlinkre-manabank-pzk1yt
categorycn
json_metadata{"tags":["cn"],"app":"steempeak/1.18.0"}
created2019-10-18 05:30:30
last_update2019-10-18 05:30:30
depth2
children1
last_payout2019-10-25 05:30: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_length46
author_reputation2,847,372,044,861
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,664,571
net_rshares46,068,274,370
author_curate_reward""
vote details (3)
@steemflagrewards ·
Steem Flag Rewards mention comment has been approved for SFR Token Issuance! 

Tokens will be transferrred when the flagged content reaches payout. 

Thank you for reporting this abuse, @lebin.

* collusive voting
The votes on the content follows a repeated pattern suggestive of collusion between multiple users and /or alt accounts resulting in signficant overvaluation of content.

This post was submitted via our Discord Community channel. Check us out on the following link!
[SFR Discord](https://discord.gg/7pqKmg5)
properties (22)
authorsteemflagrewards
permlinkre-re-manabank-pzk1yt-20191019t190701z
categorycn
json_metadata"{"community": "SFR", "app": "beem/0.21.1", "users": ["lebin"], "links": ["https://discord.gg/7pqKmg5"]}"
created2019-10-19 19:07:03
last_update2019-10-19 19:07:03
depth3
children0
last_payout2019-10-26 19:07:03
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_length521
author_reputation90,302,625,572,111
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,713,405
net_rshares0
@manabank ·
$0.43
properties (23)
authormanabank
permlinkpzf8q0
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-15 15:08:27
last_update2019-10-15 15:08:27
depth2
children0
last_payout2019-10-22 15:08:27
cashout_time1969-12-31 23:59:59
total_payout_value0.217 HBD
curator_payout_value0.215 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation99,790,117,045
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,581,851
net_rshares2,079,262,227,098
author_curate_reward""
vote details (16)
@tipu ·
<a href="https://tipu.online/curator?mana.bank" target="_blank">Upvoted &#128076;</a>
properties (22)
authortipu
permlinkre-pzauef-20191013t060904
categorycn
json_metadata""
created2019-10-13 06:09:06
last_update2019-10-13 06:09:06
depth2
children0
last_payout2019-10-20 06:09: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_length85
author_reputation55,900,783,339,499
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,502,720
net_rshares0
@mana.bank ·
$0.15
properties (23)
authormana.bank
permlinkpzauha
categorycn
json_metadata{"users":["tipu"],"app":"steemit/0.1"}
created2019-10-13 06:10:24
last_update2019-10-13 06:10:24
depth1
children5
last_payout2019-10-20 06:10:24
cashout_time1969-12-31 23:59:59
total_payout_value0.077 HBD
curator_payout_value0.076 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation938,294,888,269
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,502,731
net_rshares800,248,557,585
author_curate_reward""
vote details (8)
@anonymity.inlet ·
properties (23)
authoranonymity.inlet
permlinkre-manabank-pzauha-20191013t075742895z
categorycn
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[],"image":[]}
created2019-10-13 07:57:45
last_update2019-10-13 07:57:45
depth2
children2
last_payout2019-10-20 07:57:45
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_length9
author_reputation2,465,538,630,256
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,504,766
net_rshares-15,273,982,463
author_curate_reward""
vote details (30)
@enforcer48 ·
Flagged for circlejerk vote farming.

<sub>@steemflagrewards</sub>
👍  
properties (23)
authorenforcer48
permlinkre-anonymityinlet-pzmyi7
categorycn
json_metadata{"tags":["cn"],"app":"steempeak/1.18.0"}
created2019-10-19 19:08:33
last_update2019-10-19 19:08:33
depth3
children1
last_payout2019-10-26 19:08:33
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_length66
author_reputation426,233,073,731,239
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,713,425
net_rshares5,425,796,981
author_curate_reward""
vote details (1)
@lebin ·
Flagged for collusive voting @steemflagrewards
👍  ,
👎  
properties (23)
authorlebin
permlinkre-manabank-pzk1ye
categorycn
json_metadata{"tags":["cn"],"app":"steempeak/1.18.0"}
created2019-10-18 05:30:15
last_update2019-10-18 05:30:15
depth2
children1
last_payout2019-10-25 05:30:15
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_length46
author_reputation2,847,372,044,861
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,664,564
net_rshares67,394,092,443
author_curate_reward""
vote details (3)
@steemflagrewards ·
Steem Flag Rewards mention comment has been approved for SFR Token Issuance! 

Tokens will be transferrred when the flagged content reaches payout. 

Thank you for reporting this abuse, @lebin.

* collusive voting
The votes on the content follows a repeated pattern suggestive of collusion between multiple users and /or alt accounts resulting in signficant overvaluation of content.

This post was submitted via our Discord Community channel. Check us out on the following link!
[SFR Discord](https://discord.gg/7pqKmg5)
properties (22)
authorsteemflagrewards
permlinkre-re-manabank-pzk1ye-20191019t203826z
categorycn
json_metadata"{"community": "SFR", "app": "beem/0.21.1", "users": ["lebin"], "links": ["https://discord.gg/7pqKmg5"]}"
created2019-10-19 20:38:27
last_update2019-10-19 20:38:27
depth3
children0
last_payout2019-10-26 20:38: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_length521
author_reputation90,302,625,572,111
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,715,308
net_rshares0
@manabank ·
$0.16
我靠,这个帖子挂了?真可怜
👍  
properties (23)
authormanabank
permlinkpzf8lo
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-15 15:05:48
last_update2019-10-15 15:05:48
depth1
children1
last_payout2019-10-22 15:05:48
cashout_time1969-12-31 23:59:59
total_payout_value0.079 HBD
curator_payout_value0.079 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation99,790,117,045
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,581,763
net_rshares837,535,716,452
author_curate_reward""
vote details (1)
@manabank ·
$0.15
搞清楚什么原因了吗?
👍  
properties (23)
authormanabank
permlinkpzf8p7
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-15 15:07:57
last_update2019-10-15 15:07:57
depth2
children0
last_payout2019-10-22 15:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.077 HBD
curator_payout_value0.077 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation99,790,117,045
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,581,832
net_rshares820,823,756,332
author_curate_reward""
vote details (1)
@manabot2 ·
$0.18
fine!shop
👍  ,
properties (23)
authormanabot2
permlinkpzb1fd
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-13 08:40:27
last_update2019-10-13 08:40:27
depth1
children0
last_payout2019-10-20 08:40:27
cashout_time1969-12-31 23:59:59
total_payout_value0.090 HBD
curator_payout_value0.089 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation34,237,700,103
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,505,695
net_rshares917,322,999,034
author_curate_reward""
vote details (2)
@minnowvotes ·
re-anonymityinlet-create-a-new-steem-security-account-with-the-command-line-wallet-cliwallet-in-the-official-docker-image-of-steem-20191013t114659266z
You got a 74.03% upvote from @minnowvotes courtesy of @mana.bank!
👍  
👎  
properties (23)
authorminnowvotes
permlinkre-anonymityinlet-create-a-new-steem-security-account-with-the-command-line-wallet-cliwallet-in-the-official-docker-image-of-steem-20191013t114659266z
categorycn
json_metadata{"app":"postpromoter/2.1.1"}
created2019-10-13 11:47:00
last_update2019-10-13 11:47:00
depth1
children0
last_payout2019-10-20 11:47: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_length66
author_reputation-125,291,280,752
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,509,889
net_rshares2,783,410,004
author_curate_reward""
vote details (2)
@pharesim ·
$0.02
If you don't want to use the wallet, you can also use https://steeminvite.com
The keys are only given to the person accepting the invite there, so it's equally safe. It also allows you to create them for free if you have enough RC.
👍  ,
properties (23)
authorpharesim
permlinkpzc8c1
categorycn
json_metadata{"links":["https://steeminvite.com"],"app":"steemit/0.1"}
created2019-10-14 00:07:15
last_update2019-10-14 00:07:15
depth1
children3
last_payout2019-10-21 00:07:15
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length231
author_reputation239,352,620,843,716
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,527,530
net_rshares118,528,913,216
author_curate_reward""
vote details (2)
@acu.fund ·
what's happen about  https://steeminvite.com?
![屏幕快照 2019-10-17 上午12.02.28.png](https://cdn.steemitimages.com/DQmRu5FYpTtL8TAxsU94XeZxtcwsKxgp6qMPagxgmEm236S/%E5%B1%8F%E5%B9%95%E5%BF%AB%E7%85%A7%202019-10-17%20%E4%B8%8A%E5%8D%8812.02.28.png)
👍  
properties (23)
authoracu.fund
permlinkpzh5xf
categorycn
json_metadata{"image":["https://cdn.steemitimages.com/DQmRu5FYpTtL8TAxsU94XeZxtcwsKxgp6qMPagxgmEm236S/%E5%B1%8F%E5%B9%95%E5%BF%AB%E7%85%A7%202019-10-17%20%E4%B8%8A%E5%8D%8812.02.28.png"],"links":["https://steeminvite.com?"],"app":"steemit/0.1"}
created2019-10-16 16:03:18
last_update2019-10-16 16:03:18
depth2
children1
last_payout2019-10-23 16:03:18
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_length241
author_reputation3,707,885,330,267
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,614,851
net_rshares165,370,380
author_curate_reward""
vote details (1)
@pharesim ·
Should be good after a reload
👍  ,
properties (23)
authorpharesim
permlinkpzhj4i
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-16 20:48:21
last_update2019-10-16 20:48:21
depth3
children0
last_payout2019-10-23 20:48:21
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_length29
author_reputation239,352,620,843,716
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,621,651
net_rshares5,564,833,468
author_curate_reward""
vote details (2)
@manabank ·
$0.17
thanks, i use steemworld.org. i will try yours service. good advise!
👍  
properties (23)
authormanabank
permlinkpzf8o0
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-15 15:07:15
last_update2019-10-15 15:07:15
depth2
children0
last_payout2019-10-22 15:07:15
cashout_time1969-12-31 23:59:59
total_payout_value0.086 HBD
curator_payout_value0.086 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation99,790,117,045
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,581,814
net_rshares907,828,994,714
author_curate_reward""
vote details (1)
@steemitboard ·
Congratulations @anonymity.inlet! 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/60x60/http://steemitboard.com/img/notifications/firstcomment.png"></td><td>You made your First Comment</td></tr>
<tr><td><img src="https://steemitimages.com/60x60/http://steemitboard.com/img/notifications/firstvote.png"></td><td>You made your First Vote</td></tr>
<tr><td><img src="https://steemitimages.com/60x60/http://steemitboard.com/img/notifications/firstvoted.png"></td><td>You got a First Vote</td></tr>
<tr><td><img src="https://steemitimages.com/60x60/http://steemitboard.com/img/notifications/firstcommented.png"></td><td>You got a First Reply</td></tr>
<tr><td><img src="https://steemitimages.com/60x60/http://steemitboard.com/img/notifications/firstpost.png"></td><td>You published your First Post</td></tr>
<tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@anonymity.inlet/voted.png?201910130633"></td><td>You received more than 10 upvotes. Your next target is to reach 50 upvotes.</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@anonymity.inlet) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=anonymity.inlet)_</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-anonymityinlet-20191013t064656000z
categorycn
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-10-13 06:46:57
last_update2019-10-13 06:46:57
depth1
children4
last_payout2019-10-20 06:46: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_length2,076
author_reputation38,975,615,169,260
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,503,332
net_rshares0
@manabank ·
properties (23)
authormanabank
permlinkpzf8or
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-15 15:07:39
last_update2019-10-15 15:07:39
depth2
children3
last_payout2019-10-22 15:07: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_length11
author_reputation99,790,117,045
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,581,822
net_rshares-5,180,704,560
author_curate_reward""
vote details (19)
@jlsplatts ·
Flagged for collusive voting @steemflagrewards
properties (22)
authorjlsplatts
permlinkre-manabank-pzp47r
categorycn
json_metadata{"tags":["cn"],"app":"steempeak/1.18.0"}
created2019-10-20 23:07:03
last_update2019-10-20 23:07:03
depth3
children1
last_payout2019-10-27 23:07:03
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_length46
author_reputation94,028,454,259,907
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,749,135
net_rshares0
@steemitboard ·
https://i.cubeupload.com/LWhROG.jpg ))) 是的!<div class="pull-right"><sub><a href="/@steemreply/steemreply-stay-in-touch-with-your-steem-network">Posted with <img src="https://steemreply.com/logo-comment.png"/></a></sub></div>
properties (22)
authorsteemitboard
permlinkre-pzf8or
categorycn
json_metadata""
created2019-10-19 23:37:09
last_update2019-10-19 23:37:09
depth3
children0
last_payout2019-10-26 23:37:09
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_length224
author_reputation38,975,615,169,260
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,718,584
net_rshares0
@teamcn-shop ·
你好鸭,anonymity.inlet!

@manabot2给您叫了一份外卖!

由 @honoru 米高 迎着大雪 跑着步 给您送来
**加拿大人民早餐伴侣** <br> ![](https://s3.us-east-2.amazonaws.com/partiko.io/img/6e8717bdc31113e361b03dd4b12e90d0c0e19f30.png)
吃饱了吗?跟我猜拳吧! **石头,剪刀,布~**

如果您对我的服务满意,请不要吝啬您的点赞~
@onepagex
properties (22)
authorteamcn-shop
permlinkpzb1fd
categorycn
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2019-10-13 08:40:39
last_update2019-10-13 08:40:39
depth1
children4
last_payout2019-10-20 08:40: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_length246
author_reputation11,393,746,055,281
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,505,698
net_rshares0
@mana.bank ·
properties (23)
authormana.bank
permlinkpzb1y0
categorycn
json_metadata{"app":"steemit/0.1"}
created2019-10-13 08:51:36
last_update2019-10-13 08:51:36
depth2
children3
last_payout2019-10-20 08:51:36
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_length10
author_reputation938,294,888,269
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,505,944
net_rshares-2,990,275,615
author_curate_reward""
vote details (13)
@lebin ·
Flagged for collusive voting @steemflagrewards
👍  ,
👎  
properties (23)
authorlebin
permlinkre-manabank-pzk1xz
categorycn
json_metadata{"tags":["cn"],"app":"steempeak/1.18.0"}
created2019-10-18 05:30:03
last_update2019-10-18 05:30:03
depth3
children1
last_payout2019-10-25 05:30:03
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_length46
author_reputation2,847,372,044,861
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,664,551
net_rshares61,771,288,794
author_curate_reward""
vote details (3)
@teamcn-shop ·
https://1.bp.blogspot.com/-H5eDKvWthyo/WoGwC3ivE6I/AAAAAAATXIY/ebZ9qsoMR1sVJnwNagMqgCgiBHxrwcFOQCLcBGAs/s1600/AW785125_06.gif 
 You lose! 你输了!乖乖的给我点赞吧!
properties (22)
authorteamcn-shop
permlinkpzb1y0
categorycn
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2019-10-13 08:51:45
last_update2019-10-13 08:51:45
depth3
children0
last_payout2019-10-20 08:51:45
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_length151
author_reputation11,393,746,055,281
root_title"Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,505,947
net_rshares0