create account

用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号 by tex.fund

View this thread on: hive.blogpeakd.comecency.com
· @tex.fund · (edited)
$0.32
用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
<h1>用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号</h1>
# 目录
> [1. 目标](#1)  
> [2. 主要流程](#2)  
> [3. 搭建本地环境](#3)  
> [4. 获取官方镜像](#4)  
> [5. docker方式运行 cli_wallet ](#5)  
> [6. 导入账号的密钥](#6)  
> [7. 生成见证人需要的密钥对](#7)  
> [8. 更新见证人到steem链上](#8)  
> [9. 投票给新发布的见证人](#9)


<h1 id="1">1. 目标</h1>  
steem中的见证人witness账号,只是普通账号,最一个特别的声明.但可惜的是,网络上找不到完整有效的最新中文教程,怎么把普通账号升级为见证人账号.

目前steem刚完成硬分叉22,在源代码中的代号为HF22,网络上的英文教程和以及第三方工具都已经无法操作.

所以本文不依赖第三方工具,直接利用steem官方docker镜像中的命令行钱包 `cli_wallet`,将账号提升为见证人账号.这样做,更加安全.

cli_wallet 是 Steem 的命令行钱包,可直接和 Steem 节点交互,完成很多重要的钱包相关的操作;升级账号为见证人,也可以通过这个钱包实现.

不过cli_wallet需要Steem节点支持WebSocket RPC(ws/wss),暂时以比较容易访问的`wss://steemd.privex.io`作为交互节点服务器.后续可以出专门的教程,搭建自己的节点服务器.

<h1 id="2">2. 主要流程</h1>  
1. 搭建本地环境  
2. 获取官方镜像  
3. docker方式运行 cli_wallet  
4. 导入账号的密钥 
5. 生成见证人需要的密钥对  
6. 更新见证人到steem链上  
7. 投票给新发布的见证人  

<h1 id="3">3. 搭建本地环境</h1>  
## ubuntu18.04 安装 docker
这里以ubuntu18.04为例,安装docker包:
`$  sudo apt update && sudo apt install git containerd docker.io -y`
启动服务:`$ service docker restart  `  
查看日志:`$ systemctl status docker.service`

## 添加专用系统账户 steemd
添加专用系统账户 steemd,并加入到 docker 组,steemd用户可直接运行docker:
```shell
$ sudo adduser steemd
$ sudo usermod -aG sudo steemd
$ sudo usermod -aG docker steemd
$ sudo su - steemd 
```

<h1 id="4">4. 获取官方镜像</h1>  
使用steem官方的 docker 镜像(也可以自己从github上下载源码编译):
`$ docker pull steemit/steem`  
查看获取情况 : 
`$ docker images | grep steemit` 
```shell
steemit/steem       latest      1326e0        1 weeks ago         2.24GB
```

如果无法访问官方 docker.com/docker.io ,可修改镜像源:
`$ 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

<h1 id="5">5. docker方式运行 cli_wallet </h1> 
以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
36ms 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退出,重新登录 cli_wallet
 
<h1 id="6">6. 导入账号的密钥</h1>   
导入账号的钱包密钥(active key):
`unlocked >>> import_key 5J-account-active-key`
返回信息:
```info
import_key 5J-account-active-key
3571ms wallet.cpp:42    save_wallet_file ] saving wallet to file wallet.json
true
unlocked >>> 
```

<h1 id="7">7. 生成见证人需要的密钥对</h1>   
生成见证人打包区块所需要的密钥对:
`unlocked >>> suggest_brain_key`
```info
suggest_brain_key
{
  "brain_priv_key": "WACE be your words COGNATE",
  "wif_priv_key": "5J-wif_priv_key-str",
  "pub_key": "STM-pub_key-str"
}
unlocked >>> 
```
其中:  
> 1. `wif_priv_key` 为私钥,见证人节点服务器运行steemd时需要配置的密钥,用来生产区块时的签名;  
> 2. `pub_key` 为公钥,需要发布到steem区块链上,供全网应用。  

<h1 id="8">8. 更新见证人到steem链上</h1>   
用 'update_witness' 命令将公钥 `pub_key` 发布到链上:  
`unlocked >>>  update_witness "tex.fund" "https://tex.fund" "STM-pub_key-str" {"account_creation_fee":"3.000 STEEM","maximum_block_size":655360,"sbd_interest_rate":0} true`  
其中:  
> 1. "tex.fund" : 为见证人账号  
> 2. "https://tex.fund": 为见证人链接,可以是独立官网,也可以是steemit官网 #witness-category 标签下的见证人公告贴子,方便别人了解.  

返回信息:
```info
{
  "ref_block_num": 26255,
  "ref_block_prefix": 597975414,
  "expiration": "2019-10-13T15:03:09",
  "operations": [[
      "witness_update",{
        "owner": "tex.fund",
        "url": "https://tex.fund",
        "block_signing_key": "STM6MiTh",
        "props": {
          "account_creation_fee": "3.000 STEEM",
          "maximum_block_size": 655360,
          "sbd_interest_rate": 0,
          "account_subsidy_budget": 797,
          "account_subsidy_decay": 347321
        },
        "fee": "0.000 STEEM"
      }
    ]
  ],
  "extensions": [],
  "signatures": [
    "1f6b5aba87d2da1"
  ],
  "transaction_id": "fe24df02c",
  "block_num": 37250704,
  "transaction_num": 14
}
```

<h1 id="9">9. 投票给新发布的见证人</h1>  
自己先给自己的见证人投一票吧:浏览器打开 https://steemitwallet.com/~witnesses .
![投票给新发布的见证人](https://cdn.steemitimages.com/DQmUDRnscvYaSc4GVRBjLBhEKGvqz7gE3LCrUj24dovQ3Pf/1.png)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
👎  , , , , , , , , , , , , , , , ,
properties (23)
authortex.fund
permlinkcreate-a-new-steem-security-account-with-the-command-line-wallet-cliwallet-in-the-official-docker-image-of-steem
categoryzzan
json_metadata{"tags":["cn","cn-stem","cn-reader","cn-curation","steemstem","build-it","whalepower","ocd-resteem","steem-guides","sct","sct-cn","sct-freeboard","sct-userguide","team-cn","witness-category","zzan","palnet","dblog","mediaofficials","actnearn","marlians","neoxian","lassecash","upfundme","busy"],"image":["https://cdn.steemitimages.com/DQmUDRnscvYaSc4GVRBjLBhEKGvqz7gE3LCrUj24dovQ3Pf/1.png"],"links":["#1","#2","#3","#4","#5","#6","#7","#8","#9","https://docker.mirrors.ustc.edu.cn","https://registry.docker-cn.com","http://hub-mirror.c.163.com","https://pee6w651.mirror.aliyuncs.com","https://tex.fund","https://steemitwallet.com/~witnesses"],"app":"busy/2.5.4","format":"markdown"}
created2019-10-13 15:20:57
last_update2019-10-13 15:22:54
depth0
children52
last_payout2019-10-20 15:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.159 HBD
curator_payout_value0.157 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,496
author_reputation1,113,292,993,230
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,515,383
net_rshares1,561,134,497,082
author_curate_reward""
vote details (55)
@acu.fund ·
$0.58
太详细了,很多教程都是把账号的active key作为见证人的密钥,很显然不符合逻辑.还是这篇文章讲密钥对,比较合理.
👍  , , , , , , , , , , , , , , , , , ,
properties (23)
authoracu.fund
permlinkpzbkkf
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-13 15:33:51
last_update2019-10-13 15:33:51
depth1
children21
last_payout2019-10-20 15:33:51
cashout_time1969-12-31 23:59:59
total_payout_value0.292 HBD
curator_payout_value0.290 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation3,707,885,330,267
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,515,840
net_rshares2,659,525,145,294
author_curate_reward""
vote details (19)
@mana.bank ·
$0.25
properties (23)
authormana.bank
permlinkpzblbh
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-13 15:50:06
last_update2019-10-13 15:50:06
depth2
children19
last_payout2019-10-20 15:50:06
cashout_time1969-12-31 23:59:59
total_payout_value0.124 HBD
curator_payout_value0.122 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation938,294,888,269
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,516,260
net_rshares1,245,399,351,933
author_curate_reward""
vote details (23)
@acu.fund ·
$0.62
需要啊,节点服务不需要见证人账号(但是不能生产区块数据了).见证人账号也设置到节点服务的配置中,全网才能计算有效时间,还需要投票数量,连着累积,才能出块,获得奖励呢.
👍  , , , , , , , , , , , , , , , , , , , ,
properties (23)
authoracu.fund
permlinkpzbltm
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-13 16:01:00
last_update2019-10-13 16:01:00
depth3
children7
last_payout2019-10-20 16:01:00
cashout_time1969-12-31 23:59:59
total_payout_value0.310 HBD
curator_payout_value0.308 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation3,707,885,330,267
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,516,579
net_rshares2,806,532,501,421
author_curate_reward""
vote details (21)
@lebin ·
Flagged for collusive voting @steemflagrewards
👍  ,
👎  
properties (23)
authorlebin
permlinkre-manabank-pzk1vw
categoryzzan
json_metadata{"tags":["zzan"],"app":"steempeak/1.18.0"}
created2019-10-18 05:28:45
last_update2019-10-18 05:28:45
depth3
children1
last_payout2019-10-25 05:28: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_length46
author_reputation2,847,372,044,861
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,664,521
net_rshares71,823,026,595
author_curate_reward""
vote details (3)
@manabot3 ·
$0.62
老大,咱是不是也搞一个?很高大上啊
👍  , , , , , , , , , , , ,
properties (23)
authormanabot3
permlinkpzdea6
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-14 15:13:21
last_update2019-10-14 15:13:21
depth3
children4
last_payout2019-10-21 15:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.313 HBD
curator_payout_value0.311 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation127,203,259,061
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,548,839
net_rshares2,851,195,443,456
author_curate_reward""
vote details (13)
@texfund ·
$0.31
进不了TOP20,好像都亏钱呢,目前steem都跌倒TOP 88了,谁敢投啊?
👍  , , , , , , , , , , , ,
properties (23)
authortexfund
permlinkpzec7s
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-15 03:26:27
last_update2019-10-15 03:26:27
depth3
children3
last_payout2019-10-22 03:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.154 HBD
curator_payout_value0.153 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation110,044,126,013
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,565,747
net_rshares1,527,407,264,386
author_curate_reward""
vote details (13)
@texfund ·
$0.52
因为详细,所以被毙了(downvote),呵呵
👍  , , , , , , , , , , , , ,
properties (23)
authortexfund
permlinkpzec6b
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-15 03:25:24
last_update2019-10-15 03:25:24
depth2
children0
last_payout2019-10-22 03:25:24
cashout_time1969-12-31 23:59:59
total_payout_value0.259 HBD
curator_payout_value0.257 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation110,044,126,013
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,565,725
net_rshares2,418,186,971,176
author_curate_reward""
vote details (14)
@anonymity.inlet ·
$0.47
我也想搭建一个见证人服务器呢,要不我帮你把这个教程翻译英文版?
👍  , , , , , , , , , , , , , , , ,
properties (23)
authoranonymity.inlet
permlinkpzbm1a
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-13 16:05:33
last_update2019-10-13 16:05:33
depth1
children2
last_payout2019-10-20 16:05:33
cashout_time1969-12-31 23:59:59
total_payout_value0.235 HBD
curator_payout_value0.233 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation2,465,538,630,256
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,516,707
net_rshares2,201,964,286,964
author_curate_reward""
vote details (17)
@alanyao ·
$0.24
是应该扩大中文社区的世界影响力,好文就要走出世界,应该组织一个翻译队,也翻译成韩文、日文.
👍  ,
properties (23)
authoralanyao
permlinkpze6nv
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-15 01:26:21
last_update2019-10-15 01:26:21
depth2
children1
last_payout2019-10-22 01:26:21
cashout_time1969-12-31 23:59:59
total_payout_value0.120 HBD
curator_payout_value0.119 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation7,325,544,227,273
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,563,459
net_rshares1,219,367,956,245
author_curate_reward""
vote details (2)
@manabot ·
可惜,我也只会英文.
很期待会日韩文,是什么样子?:)美女比较多吧?
steem上中文社区美女不多吧?
👍  
properties (23)
authormanabot
permlinkpze6t2
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-15 01:29:30
last_update2019-10-15 01:29:30
depth3
children0
last_payout2019-10-22 01:29: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_length51
author_reputation113,293,894,589
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,563,523
net_rshares37,154,248,640
author_curate_reward""
vote details (1)
@goodreader ·
$0.34
写得真够详细,想操作错误,都难:)
👍  , , , , , , , ,
properties (23)
authorgoodreader
permlinkpzdnlu
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-14 18:34:42
last_update2019-10-14 18:34:42
depth1
children0
last_payout2019-10-21 18:34:42
cashout_time1969-12-31 23:59:59
total_payout_value0.170 HBD
curator_payout_value0.169 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation20,526,422,885,116
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,554,598
net_rshares1,668,758,376,947
author_curate_reward""
vote details (9)
@hertz.diy ·
支持您的DIY贴子
👍  
properties (23)
authorhertz.diy
permlinkpzjbn8
categoryzzan
json_metadata{"tags":["zzan","build-it"],"app":"buildit/0.1","canonical_url":"https://www.build-it.io/@hertz.diy/pzjbn8"}
created2019-10-17 20:01:57
last_update2019-10-17 20:01:57
depth1
children0
last_payout2019-10-24 20:01: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_length9
author_reputation-10,370,552,862
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,653,333
net_rshares374,481,546
author_curate_reward""
vote details (1)
@mana.bank ·
properties (23)
authormana.bank
permlinkpzbkn2
categoryzzan
json_metadata{"users":["tipu"],"app":"steemit/0.1"}
created2019-10-13 15:35:27
last_update2019-10-13 15:35:27
depth1
children3
last_payout2019-10-20 15:35: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_length14
author_reputation938,294,888,269
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,515,889
net_rshares1,441,137,904
author_curate_reward""
vote details (15)
@lebin ·
Flagged for collusive voting @steemflagrewards
👍  ,
👎  
properties (23)
authorlebin
permlinkre-manabank-pzk1xk
categoryzzan
json_metadata{"tags":["zzan"],"app":"steempeak/1.18.0"}
created2019-10-18 05:29:45
last_update2019-10-18 05:29:45
depth2
children1
last_payout2019-10-25 05:29: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_length46
author_reputation2,847,372,044,861
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,664,549
net_rshares50,360,087,888
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-pzk1xk-20191019t203446z
categoryzzan
json_metadata"{"community": "SFR", "app": "beem/0.21.1", "users": ["lebin"], "links": ["https://discord.gg/7pqKmg5"]}"
created2019-10-19 20:34:48
last_update2019-10-19 20:34:48
depth3
children0
last_payout2019-10-26 20:34:48
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用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,715,212
net_rshares0
@tipu ·
<a href="https://tipu.online/curator?mana.bank" target="_blank">Upvoted &#128076;</a>
properties (22)
authortipu
permlinkre-pzbkn2-20191013t153607
categoryzzan
json_metadata""
created2019-10-13 15:36:09
last_update2019-10-13 15:36:09
depth2
children0
last_payout2019-10-20 15:36: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_length85
author_reputation55,930,979,039,115
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,515,903
net_rshares0
@mana.bank ·
properties (23)
authormana.bank
permlinkpzbl7h
categoryzzan
json_metadata{"users":["tipu"],"app":"steemit/0.1"}
created2019-10-13 15:47:42
last_update2019-10-13 15:47:42
depth1
children2
last_payout2019-10-20 15:47:42
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用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,516,203
net_rshares7,372,539,450
author_curate_reward""
vote details (14)
@lebin ·
Flagged for collusive voting @steemflagrewards
👍  ,
👎  
properties (23)
authorlebin
permlinkre-manabank-pzk1x8
categoryzzan
json_metadata{"tags":["zzan"],"app":"steempeak/1.18.0"}
created2019-10-18 05:29:33
last_update2019-10-18 05:29:33
depth2
children1
last_payout2019-10-25 05:29: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_length46
author_reputation2,847,372,044,861
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,664,543
net_rshares47,627,707,104
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-pzk1x8-20191019t202804z
categoryzzan
json_metadata"{"community": "SFR", "app": "beem/0.21.1", "users": ["lebin"], "links": ["https://discord.gg/7pqKmg5"]}"
created2019-10-19 20:28:06
last_update2019-10-19 20:28:06
depth3
children0
last_payout2019-10-26 20:28: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_length521
author_reputation90,302,625,572,111
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,715,078
net_rshares0
@mana.bank ·
也是见证人了啊!thumpup

中文区应该把见证人都聚合起来,别让30个投票浪费了.

中文区的发展,需要大家团结
👍  , , , , , , , , , , , , , , ,
👎  , , , , , , , , , ,
properties (23)
authormana.bank
permlinkpzbl9r
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-13 15:49:03
last_update2019-10-13 15:49:03
depth1
children10
last_payout2019-10-20 15:49: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_length58
author_reputation938,294,888,269
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,516,231
net_rshares-51,353,719,615
author_curate_reward""
vote details (27)
@hnt ·
是啊,所有中文区都投同样的扶持中文社区的见证人,总有一个能进TOP20吧?

steem如果中文区搞不起来,也不会有什么大的前途.
👍  , , , , , , , , , , , , , , , , , , ,
👎  , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorhnt
permlinkpzbq0v
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-13 17:31:45
last_update2019-10-13 17:31:45
depth2
children5
last_payout2019-10-20 17:31: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_length65
author_reputation887,546,203,076
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,518,797
net_rshares-52,042,648,213
author_curate_reward""
vote details (42)
@acufund ·
$0.03
搞一个中文区的见证人联盟:)!BEER
👍  , , , , , ,
properties (23)
authoracufund
permlinkpzbq81
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-13 17:36:03
last_update2019-10-13 17:36:03
depth3
children1
last_payout2019-10-20 17:36:03
cashout_time1969-12-31 23:59:59
total_payout_value0.013 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation34,806,670,981
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,518,887
net_rshares154,384,201,412
author_curate_reward""
vote details (7)
@beerlover ·
Sorry, you don't have enough staked BEER in your account. You need 6 BEER in your virtual fridge to give some of your BEER to others. To view or trade BEER go to [steem-engine.com](https://steem-engine.com/?p=market&t=BEER)
properties (22)
authorbeerlover
permlinkre-pzbq0v-20191013t173612z
categoryzzan
json_metadata"{"app": "beem/0.21.1"}"
created2019-10-13 17:36:15
last_update2019-10-13 17:36:15
depth3
children0
last_payout2019-10-20 17:36: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_length223
author_reputation25,811,331,779,356
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,518,891
net_rshares0
@enforcer48 ·
Downvoted for vote farming.

<sub>@steemflagrewards</sub>
👍  
properties (23)
authorenforcer48
permlinkpzn1ys
categoryzzan
json_metadata{"users":["steemflagrewards"],"app":"steemit/0.1"}
created2019-10-19 20:23:18
last_update2019-10-19 20:23:18
depth3
children1
last_payout2019-10-26 20:23: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_length57
author_reputation426,238,777,098,689
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,714,984
net_rshares5,268,941,501
author_curate_reward""
vote details (1)
@lebin ·
Flagged for collusive voting @steemflagrewards
👍  ,
👎  
properties (23)
authorlebin
permlinkre-manabank-pzk1wf
categoryzzan
json_metadata{"tags":["zzan"],"app":"steempeak/1.18.0"}
created2019-10-18 05:29:06
last_update2019-10-18 05:29:06
depth2
children1
last_payout2019-10-25 05:29: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_length46
author_reputation2,847,372,044,861
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,664,529
net_rshares74,568,771,590
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-pzk1wf-20191019t202234z
categoryzzan
json_metadata"{"community": "SFR", "app": "beem/0.21.1", "users": ["lebin"], "links": ["https://discord.gg/7pqKmg5"]}"
created2019-10-19 20:22:36
last_update2019-10-19 20:22:36
depth3
children0
last_payout2019-10-26 20:22: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_length521
author_reputation90,302,625,572,111
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,714,966
net_rshares0
@manabot1 ·
$0.21
properties (23)
authormanabot1
permlinkpze7fm
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-15 01:43:00
last_update2019-10-15 01:43:00
depth2
children0
last_payout2019-10-22 01:43:00
cashout_time1969-12-31 23:59:59
total_payout_value0.107 HBD
curator_payout_value0.105 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation54,385,667,317
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,563,769
net_rshares1,105,883,913,566
author_curate_reward""
vote details (14)
@yaowl ·
$0.22
properties (23)
authoryaowl
permlinkpze75c
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-15 01:36:48
last_update2019-10-15 01:36:48
depth2
children0
last_payout2019-10-22 01:36:48
cashout_time1969-12-31 23:59:59
total_payout_value0.111 HBD
curator_payout_value0.109 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation63,121,703,772
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,563,643
net_rshares1,137,197,463,253
author_curate_reward""
vote details (15)
@manabot3 ·
$0.33
中文区有几个见证人大牛啊?有TOP20的吗?扶持一下新手吗:(
👍  , , , , , , , ,
properties (23)
authormanabot3
permlinkpzdbgp
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-14 14:12:27
last_update2019-10-14 14:12:27
depth1
children0
last_payout2019-10-21 14:12:27
cashout_time1969-12-31 23:59:59
total_payout_value0.166 HBD
curator_payout_value0.165 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation127,203,259,061
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,546,767
net_rshares1,626,232,391,517
author_curate_reward""
vote details (9)
@missingwolf ·
$0.34
中文区有哪些见证人啊?应该有个中文区的群组,大家即时交流互动.

别用WX了,都FQ了,还用!discord最好
👍  , , , , , , , , ,
properties (23)
authormissingwolf
permlinkpzcx1c
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-14 09:00:51
last_update2019-10-14 09:00:51
depth1
children0
last_payout2019-10-21 09:00:51
cashout_time1969-12-31 23:59:59
total_payout_value0.168 HBD
curator_payout_value0.167 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation-69,343,189,637
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,538,247
net_rshares1,638,199,836,002
author_curate_reward""
vote details (10)
@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-texfund-creat7028
categoryzzan
json_metadata{"tags":["zzan","cn","cn-stem","cn-reader","cn-curation","partiko","steemstem","build-it","whalepower","ocd-resteem","steem-guides","sct","sct-cn","sct-freeboard","sct-userguide","team-cn","witness-category","palnet","dblog","mediaofficials","actnearn","marlians","neoxian","lassecash","upfundme"],"image":["https://cdn.steemitimages.com/DQmUDRnscvYaSc4GVRBjLBhEKGvqz7gE3LCrUj24dovQ3Pf/1.png"],"links":["#1","#2","#3","#4","#5","#6","#7","#8","#9","https://docker.mirrors.ustc.edu.cn","https://registry.docker-cn.com","http://hub-mirror.c.163.com","https://pee6w651.mirror.aliyuncs.com","https://tex.fund","https://steemitwallet.com/~witnesses"],"app":"steemzzang/0.1","format":"markdown"}
created2019-10-13 15:21:03
last_update2019-10-13 15:21:03
depth1
children0
last_payout2019-10-20 15:21: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_length396
author_reputation60,586,092,807
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,515,387
net_rshares0
@steemitboard ·
Congratulations @tex.fund! 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/firstpost.png"></td><td>You published your First Post</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@tex.fund) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=tex.fund)_</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-texfund-20191013t175147000z
categoryzzan
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-10-13 17:51:48
last_update2019-10-13 17:51:48
depth1
children0
last_payout2019-10-20 17:51:48
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,236
author_reputation38,975,615,169,260
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,519,306
net_rshares0
@tex.fund ·
$0.03
@ocdb25 @threespeak
能知道你们为何为这篇文章downvote吗?这是篇原创文章啊?!内容有问题吗?谢谢
Can I know why you downvote for this article? This is an original article?!  Is there a problem with the content?thanks
👍  ,
properties (23)
authortex.fund
permlinkpze86n
categoryzzan
json_metadata{"users":["ocdb25","threespeak"],"app":"steemit/0.1"}
created2019-10-15 01:59:12
last_update2019-10-15 01:59:12
depth1
children0
last_payout2019-10-22 01:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation1,113,292,993,230
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,564,105
net_rshares163,055,350,086
author_curate_reward""
vote details (2)
@texfund ·
$0.24
老大,怎么被downvote了?默哀一下!呵呵
👍  , , , ,
properties (23)
authortexfund
permlinkpzec5e
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-15 03:24:51
last_update2019-10-15 03:24:51
depth1
children0
last_payout2019-10-22 03:24:51
cashout_time1969-12-31 23:59:59
total_payout_value0.121 HBD
curator_payout_value0.120 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation110,044,126,013
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,565,717
net_rshares1,230,223,556,216
author_curate_reward""
vote details (5)
@xinhuaren ·
$0.38
学习了.
那些老外文章,真心看不懂
👍  , , , , , , , , , , ,
properties (23)
authorxinhuaren
permlinkpzcwr3
categoryzzan
json_metadata{"app":"steemit/0.1"}
created2019-10-14 08:54:39
last_update2019-10-14 08:54:39
depth1
children0
last_payout2019-10-21 08:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.192 HBD
curator_payout_value0.191 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation59,590,800,766
root_title用steem官方docker镜像中的命令行钱包cli_wallet将账号提升为见证人witness账号
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,538,107
net_rshares1,848,256,176,321
author_curate_reward""
vote details (12)