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)
author | anonymity.inlet |
---|---|
permlink | create-a-new-steem-security-account-with-the-command-line-wallet-cliwallet-in-the-official-docker-image-of-steem |
category | cn |
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"} |
created | 2019-10-13 06:02:21 |
last_update | 2019-10-13 13:57:42 |
depth | 0 |
children | 32 |
last_payout | 2019-10-20 06:02:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,254 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,502,593 |
net_rshares | -813,157,300,917 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
matt-a | 0 | -283,328,020,707 | -6% | ||
netaterra | 0 | -26,831,588,320 | -4% | ||
slider2990 | 0 | -2,213,031,793 | -8% | ||
preparedwombat | 0 | -3,523,155,930 | -1.6% | ||
anomadsoul | 0 | -8,530,065,102 | -8% | ||
davidorcamuriel | 0 | -145,187,810,820 | -8% | ||
xyzashu | 0 | 53,275,771,877 | 100% | ||
mcoinz79 | 0 | -80,307,416,208 | -4% | ||
tipu | 0 | 2,473,352,574,233 | 3% | ||
raj808 | 0 | -9,968,079,396 | -4% | ||
znnuksfe | 0 | -185,961,823,575 | -8% | ||
belemo | 0 | -1,423,243,389 | -4% | ||
minnowvotes | 0 | 15,650,104,845,756 | 74.03% | ||
sisygoboom | 0 | -14,861,379,777 | -8% | ||
minibot | 0 | 3,305,160,549 | 50% | ||
miroslavrc | 0 | -4,609,369,254 | -4% | ||
erode | 0 | -1,440,692,393 | -4% | ||
d00k13 | 0 | -3,041,090,259 | -4% | ||
waybeyondpadthai | 0 | -26,790,525,013 | -8% | ||
andrewma | 0 | 42,506,288 | 0.5% | ||
ilikeit | 0 | -224,513,552,845 | -8% | ||
ocdb | 0 | -13,547,623,879,062 | -8% | ||
steeming-hot | 0 | 0 | 0.01% | ||
thevil | 0 | -23,254,410,227 | -8% | ||
teamcn-shop | 0 | 2,188,172,292 | 5% | ||
theycallmedan | 0 | -3,328,047,985,094 | -8% | ||
zerofive | 0 | 465,340,425 | 100% | ||
threespeak | 0 | -3,339,365,920,525 | -8% | ||
cn-sct | 0 | 4,770,912,397 | 5% | ||
dappcoder | 0 | 30,442,354,262 | 100% | ||
cn-build | 0 | 129,842,083 | 21% | ||
tex.fund | 0 | 29,703,278,836 | 100% | ||
hnt | 0 | 29,240,206,591 | 100% | ||
acu.fund | 0 | 1,133,838,651,251 | 100% | ||
dblogbasicincome | 0 | 0 | 2% | ||
mana.bank | 0 | 25,842,670,747 | 100% | ||
acu.fund.witness | 0 | 28,460,807,821 | 100% | ||
spbank | 0 | 27,821,048,036 | 100% | ||
yaowl | 0 | 30,083,023,033 | 100% | ||
alanyao | 0 | 29,546,524,269 | 100% | ||
missingwolf | 0 | 28,597,055,894 | 100% | ||
xinhuaren | 0 | 28,827,661,508 | 100% | ||
acufund | 0 | 29,354,040,974 | 100% | ||
downvoter | 0 | 55,631,351,165 | 100% | ||
manabot1 | 0 | 27,249,624,556 | 100% | ||
manabot | 0 | 30,406,955,487 | 100% | ||
huaren.news | 0 | 248,973,127,562 | 100% | ||
cameron.barnes | 0 | 486,854,478 | 100% | ||
manabot2 | 0 | 27,426,907,553 | 100% | ||
sherryzhou | 0 | 543,057,165 | 100% | ||
goodvoter | 0 | 0 | 100% | ||
anonymity.inlet | 0 | 236,725,846,314 | 100% | ||
manabot3 | 0 | 31,763,711,262 | 100% | ||
manabot4 | 0 | 30,945,229,154 | 100% | ||
manabank | 0 | 30,945,009,622 | 100% | ||
texfund | 0 | 25,286,187,340 | 100% | ||
goodreader | 0 | 30,945,005,049 | 100% | ||
goodposter | 0 | 30,944,422,943 | 100% |
感觉这样中文分开,比较情愫
author | goodposter |
---|---|
permlink | pzdnwj |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-14 18:41:09 |
last_update | 2019-10-14 18:41:09 |
depth | 1 |
children | 0 |
last_payout | 2019-10-21 18:41:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.290 HBD |
curator_payout_value | 0.289 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 41,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,554,786 |
net_rshares | 2,671,782,144,327 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tex.fund | 0 | 29,821,343,391 | 100% | ||
acu.fund | 0 | 1,048,174,446,484 | 100% | ||
mana.bank | 0 | 1,212,585,783,454 | 100% | ||
acu.fund.witness | 0 | 28,981,045,079 | 100% | ||
spbank | 0 | 31,187,990,667 | 100% | ||
alanyao | 0 | 31,385,710,667 | 100% | ||
missingwolf | 0 | 28,190,812,494 | 100% | ||
acufund | 0 | 28,758,733,818 | 100% | ||
downvoter | 0 | 200,805,559,312 | 100% | ||
manabank | 0 | 31,890,718,961 | 100% |
@tipu curate 3
author | mana.bank |
---|---|
permlink | pzauef |
category | cn |
json_metadata | {"users":["tipu"],"app":"steemit/0.1"} |
created | 2019-10-13 06:08:39 |
last_update | 2019-10-13 06:08:39 |
depth | 1 |
children | 6 |
last_payout | 2019-10-20 06:08:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 938,294,888,269 |
root_title | "Create a new Steem Security Account with the command line wallet cli_wallet in the official docker image of steem" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,502,711 |
net_rshares | -90,526,365,133 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freebornangel | 0 | -106,872,323,940 | -100% | ||
freebornsociety | 0 | -105,388,223,485 | -100% | ||
pjau | 0 | -126,363,730,220 | -35% | ||
johnwatson | 0 | -36,702,297,048 | -100% | ||
lebin | 0 | -346,000,565,076 | -20% | ||
steemflagrewards | 0 | -100,711,555,425 | -3% | ||
kabir88 | 0 | -336,075,330,688 | -100% | ||
mrkebab | 0 | -32,463,962,337 | -100% | ||
ilgiaguaro | 0 | -12,115,602,964 | -90% | ||
tex.fund | 0 | 28,077,073,706 | 100% | ||
acu.fund | 0 | 854,564,397,670 | 100% | ||
mana.bank | 0 | 25,354,929,165 | 100% | ||
acu.fund.witness | 0 | 27,825,901,186 | 100% | ||
cameron.barnes | 0 | 455,327,058 | 100% | ||
manabot2 | 0 | 26,827,174,477 | 100% | ||
anonymity.inlet | 0 | 116,520,090,527 | 50% | ||
manabank | 0 | 32,542,332,261 | 100% |
谢谢
author | anonymity.inlet |
---|---|
permlink | pzddba |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-14 14:52:24 |
last_update | 2019-10-14 14:52:24 |
depth | 2 |
children | 1 |
last_payout | 2019-10-21 14:52:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.069 HBD |
curator_payout_value | 0.069 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,548,147 |
net_rshares | 737,517,397,660 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jlsplatts | 0 | -358,012,788,360 | -100% | ||
hnt | 0 | 21,812,306,366 | 100% | ||
acu.fund | 0 | 772,751,639,821 | 100% | ||
acufund | 0 | 22,114,833,598 | 100% | ||
anonymity.inlet | 0 | 170,814,220,171 | 100% | ||
manabank | 0 | 33,207,243,791 | 100% | ||
texfund | 0 | 28,545,945,730 | 100% | ||
downscaner | 0 | 46,283,996,543 | 100% |
Flagged for collusive voting @steemflagrewards
author | jlsplatts |
---|---|
permlink | re-anonymityinlet-pzp499 |
category | cn |
json_metadata | {"tags":["cn"],"app":"steempeak/1.18.0"} |
created | 2019-10-20 23:07:57 |
last_update | 2019-10-20 23:07:57 |
depth | 3 |
children | 0 |
last_payout | 2019-10-27 23:07:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 94,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,749,153 |
net_rshares | 0 |
Flagged for collusive voting @steemflagrewards
author | lebin |
---|---|
permlink | re-manabank-pzk1yt |
category | cn |
json_metadata | {"tags":["cn"],"app":"steempeak/1.18.0"} |
created | 2019-10-18 05:30:30 |
last_update | 2019-10-18 05:30:30 |
depth | 2 |
children | 1 |
last_payout | 2019-10-25 05:30:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,664,571 |
net_rshares | 46,068,274,370 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joshman | 0 | 72,881,803,212 | 4% | ||
steem.ninja | 0 | 733,169,209,699 | 27.51% | ||
mana.bank | 0 | -759,982,738,541 | -100% |
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)
author | steemflagrewards |
---|---|
permlink | re-re-manabank-pzk1yt-20191019t190701z |
category | cn |
json_metadata | "{"community": "SFR", "app": "beem/0.21.1", "users": ["lebin"], "links": ["https://discord.gg/7pqKmg5"]}" |
created | 2019-10-19 19:07:03 |
last_update | 2019-10-19 19:07:03 |
depth | 3 |
children | 0 |
last_payout | 2019-10-26 19:07:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 521 |
author_reputation | 90,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,713,405 |
net_rshares | 0 |
很不幸,帖子阵亡了
author | manabank |
---|---|
permlink | pzf8q0 |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-15 15:08:27 |
last_update | 2019-10-15 15:08:27 |
depth | 2 |
children | 0 |
last_payout | 2019-10-22 15:08:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.217 HBD |
curator_payout_value | 0.215 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 99,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,581,851 |
net_rshares | 2,079,262,227,098 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dappcoder | 0 | 24,635,220,881 | 100% | ||
tex.fund | 0 | 27,117,360,411 | 100% | ||
hnt | 0 | 24,133,273,416 | 100% | ||
acu.fund | 0 | 757,311,508,708 | 100% | ||
mana.bank | 0 | 659,492,443,773 | 100% | ||
acu.fund.witness | 0 | 20,284,295,233 | 100% | ||
alanyao | 0 | 24,780,167,051 | 100% | ||
missingwolf | 0 | 23,979,031,911 | 100% | ||
acufund | 0 | 24,468,246,987 | 100% | ||
downvoter | 0 | 157,812,372,552 | 100% | ||
manabot1 | 0 | 26,023,385,271 | 100% | ||
goodvoter | 0 | 39,521,162,940 | 100% | ||
anonymity.inlet | 0 | 188,828,970,061 | 100% | ||
manabot3 | 0 | 19,628,989,888 | 100% | ||
goodposter | 0 | 27,473,986,604 | 100% | ||
downscaner | 0 | 33,771,811,411 | 100% |
<a href="https://tipu.online/curator?mana.bank" target="_blank">Upvoted 👌</a>
author | tipu |
---|---|
permlink | re-pzauef-20191013t060904 |
category | cn |
json_metadata | "" |
created | 2019-10-13 06:09:06 |
last_update | 2019-10-13 06:09:06 |
depth | 2 |
children | 0 |
last_payout | 2019-10-20 06:09:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 55,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,502,720 |
net_rshares | 0 |
@tipu nominate
author | mana.bank |
---|---|
permlink | pzauha |
category | cn |
json_metadata | {"users":["tipu"],"app":"steemit/0.1"} |
created | 2019-10-13 06:10:24 |
last_update | 2019-10-13 06:10:24 |
depth | 1 |
children | 5 |
last_payout | 2019-10-20 06:10:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.077 HBD |
curator_payout_value | 0.076 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 938,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,502,731 |
net_rshares | 800,248,557,585 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lebin | 0 | -345,986,119,817 | -20% | ||
tex.fund | 0 | 28,650,639,297 | 100% | ||
acu.fund | 0 | 804,493,740,466 | 100% | ||
mana.bank | 0 | 24,854,814,780 | 100% | ||
acu.fund.witness | 0 | 28,394,360,012 | 100% | ||
cameron.barnes | 0 | 465,631,450 | 100% | ||
manabot2 | 0 | 27,375,296,349 | 100% | ||
anonymity.inlet | 0 | 232,000,195,048 | 100% |
谢谢,不知管用不?
author | anonymity.inlet |
---|---|
permlink | re-manabank-pzauha-20191013t075742895z |
category | cn |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[],"image":[]} |
created | 2019-10-13 07:57:45 |
last_update | 2019-10-13 07:57:45 |
depth | 2 |
children | 2 |
last_payout | 2019-10-20 07:57:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,504,766 |
net_rshares | -15,273,982,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freebornangel | 0 | -111,632,491,683 | -100% | ||
freebornsociety | 0 | -112,241,376,125 | -100% | ||
pjau | 0 | -381,792,191,775 | -100% | ||
johnwatson | 0 | -38,766,734,659 | -100% | ||
jlsplatts | 0 | -356,471,570,213 | -100% | ||
eonwarped | 0 | -205,410,396,326 | -13.65% | ||
kalif | 0 | -5,483,665,975 | -100% | ||
bitfiend | 0 | -39,694,050,015 | -100% | ||
flugschwein | 0 | -22,180,454,142 | -100% | ||
kabir88 | 0 | -355,309,399,285 | -100% | ||
enforcer48 | 0 | -264,428,214,822 | -100% | ||
mrkebab | 0 | -34,669,453,116 | -100% | ||
ilgiaguaro | 0 | -12,808,996,133 | -90% | ||
dappcoder | 0 | 27,504,930,704 | 100% | ||
hnt | 0 | 26,942,635,229 | 100% | ||
acu.fund | 0 | 742,196,081,902 | 100% | ||
mana.bank | 0 | 381,965,452,797 | 100% | ||
spbank | 0 | 28,768,159,190 | 100% | ||
yaowl | 0 | 29,499,096,390 | 100% | ||
alanyao | 0 | 29,539,594,157 | 100% | ||
missingwolf | 0 | 29,354,135,964 | 100% | ||
acufund | 0 | 27,572,612,571 | 100% | ||
downvoter | 0 | 233,363,099,104 | 100% | ||
manabot1 | 0 | 26,821,454,443 | 100% | ||
manabot2 | 0 | 23,855,888,718 | 100% | ||
goodvoter | 0 | 17,460,373,975 | 100% | ||
anonymity.inlet | 0 | 221,645,823,614 | 100% | ||
manabot4 | 0 | 24,779,340,409 | 100% | ||
manabank | 0 | 28,545,190,500 | 100% | ||
goodposter | 0 | 25,801,142,139 | 100% |
Flagged for circlejerk vote farming. <sub>@steemflagrewards</sub>
author | enforcer48 |
---|---|
permlink | re-anonymityinlet-pzmyi7 |
category | cn |
json_metadata | {"tags":["cn"],"app":"steempeak/1.18.0"} |
created | 2019-10-19 19:08:33 |
last_update | 2019-10-19 19:08:33 |
depth | 3 |
children | 1 |
last_payout | 2019-10-26 19:08:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 426,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,713,425 |
net_rshares | 5,425,796,981 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ismailkah | 0 | 5,425,796,981 | 25% |
Flagged for collusive voting @steemflagrewards
author | lebin |
---|---|
permlink | re-manabank-pzk1ye |
category | cn |
json_metadata | {"tags":["cn"],"app":"steempeak/1.18.0"} |
created | 2019-10-18 05:30:15 |
last_update | 2019-10-18 05:30:15 |
depth | 2 |
children | 1 |
last_payout | 2019-10-25 05:30:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,664,564 |
net_rshares | 67,394,092,443 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joshman | 0 | 72,833,218,080 | 4% | ||
steem.ninja | 0 | 1,319,084,448,662 | 46% | ||
mana.bank | 0 | -1,324,523,574,299 | -100% |
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)
author | steemflagrewards |
---|---|
permlink | re-re-manabank-pzk1ye-20191019t203826z |
category | cn |
json_metadata | "{"community": "SFR", "app": "beem/0.21.1", "users": ["lebin"], "links": ["https://discord.gg/7pqKmg5"]}" |
created | 2019-10-19 20:38:27 |
last_update | 2019-10-19 20:38:27 |
depth | 3 |
children | 0 |
last_payout | 2019-10-26 20:38:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 521 |
author_reputation | 90,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,715,308 |
net_rshares | 0 |
我靠,这个帖子挂了?真可怜
author | manabank |
---|---|
permlink | pzf8lo |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-15 15:05:48 |
last_update | 2019-10-15 15:05:48 |
depth | 1 |
children | 1 |
last_payout | 2019-10-22 15:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.079 HBD |
curator_payout_value | 0.079 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 99,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,581,763 |
net_rshares | 837,535,716,452 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acu.fund | 0 | 837,535,716,452 | 100% |
搞清楚什么原因了吗?
author | manabank |
---|---|
permlink | pzf8p7 |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-15 15:07:57 |
last_update | 2019-10-15 15:07:57 |
depth | 2 |
children | 0 |
last_payout | 2019-10-22 15:07:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.077 HBD |
curator_payout_value | 0.077 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 99,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,581,832 |
net_rshares | 820,823,756,332 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acu.fund | 0 | 820,823,756,332 | 100% |
fine!shop
author | manabot2 |
---|---|
permlink | pzb1fd |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-13 08:40:27 |
last_update | 2019-10-13 08:40:27 |
depth | 1 |
children | 0 |
last_payout | 2019-10-20 08:40:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.090 HBD |
curator_payout_value | 0.089 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 34,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,505,695 |
net_rshares | 917,322,999,034 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acu.fund | 0 | 889,695,267,346 | 100% | ||
missingwolf | 0 | 27,627,731,688 | 100% |
You got a 74.03% upvote from @minnowvotes courtesy of @mana.bank!
author | minnowvotes |
---|---|
permlink | re-anonymityinlet-create-a-new-steem-security-account-with-the-command-line-wallet-cliwallet-in-the-official-docker-image-of-steem-20191013t114659266z |
category | cn |
json_metadata | {"app":"postpromoter/2.1.1"} |
created | 2019-10-13 11:47:00 |
last_update | 2019-10-13 11:47:00 |
depth | 1 |
children | 0 |
last_payout | 2019-10-20 11:47:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,509,889 |
net_rshares | 2,783,410,004 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | -25,399,799,926 | -10% | ||
acufund | 0 | 28,183,209,930 | 100% |
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.
author | pharesim |
---|---|
permlink | pzc8c1 |
category | cn |
json_metadata | {"links":["https://steeminvite.com"],"app":"steemit/0.1"} |
created | 2019-10-14 00:07:15 |
last_update | 2019-10-14 00:07:15 |
depth | 1 |
children | 3 |
last_payout | 2019-10-21 00:07:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 231 |
author_reputation | 239,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,527,530 |
net_rshares | 118,528,913,216 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kratomuzanto | 0 | 232,378,459 | 10% | ||
anonymity.inlet | 0 | 118,296,534,757 | 50% |
what's happen about https://steeminvite.com? 
author | acu.fund |
---|---|
permlink | pzh5xf |
category | cn |
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"} |
created | 2019-10-16 16:03:18 |
last_update | 2019-10-16 16:03:18 |
depth | 2 |
children | 1 |
last_payout | 2019-10-23 16:03:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 241 |
author_reputation | 3,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,614,851 |
net_rshares | 165,370,380 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
manabot | 0 | 165,370,380 | 1% |
Should be good after a reload
author | pharesim |
---|---|
permlink | pzhj4i |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-16 20:48:21 |
last_update | 2019-10-16 20:48:21 |
depth | 3 |
children | 0 |
last_payout | 2019-10-23 20:48:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 239,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,621,651 |
net_rshares | 5,564,833,468 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
googlybot | 0 | 5,361,572,364 | 100% | ||
kratomuzanto | 0 | 203,261,104 | 10% |
thanks, i use steemworld.org. i will try yours service. good advise!
author | manabank |
---|---|
permlink | pzf8o0 |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-15 15:07:15 |
last_update | 2019-10-15 15:07:15 |
depth | 2 |
children | 0 |
last_payout | 2019-10-22 15:07:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.086 HBD |
curator_payout_value | 0.086 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 99,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,581,814 |
net_rshares | 907,828,994,714 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acu.fund | 0 | 907,828,994,714 | 100% |
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!
author | steemitboard |
---|---|
permlink | steemitboard-notify-anonymityinlet-20191013t064656000z |
category | cn |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-10-13 06:46:57 |
last_update | 2019-10-13 06:46:57 |
depth | 1 |
children | 4 |
last_payout | 2019-10-20 06:46:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,076 |
author_reputation | 38,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,503,332 |
net_rshares | 0 |
这个是官方的机器人吗?
author | manabank |
---|---|
permlink | pzf8or |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-15 15:07:39 |
last_update | 2019-10-15 15:07:39 |
depth | 2 |
children | 3 |
last_payout | 2019-10-22 15:07:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 99,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,581,822 |
net_rshares | -5,180,704,560 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freebornsociety | 0 | -66,741,794,664 | -57.27% | ||
johnwatson | 0 | -36,766,591,901 | -100% | ||
jlsplatts | 0 | -361,162,925,121 | -100% | ||
steemseph | 0 | -69,255,473,732 | -100% | ||
trump3t | 0 | -11,333,588,050 | -100% | ||
loler555 | 0 | -3,892,212,238 | -100% | ||
kalif | 0 | -5,482,466,227 | -100% | ||
bitfiend | 0 | -39,240,072,363 | -100% | ||
flugschwein | 0 | -22,332,491,431 | -100% | ||
enforcer48 | 0 | -26,278,557,211 | -10% | ||
scienceblocks | 0 | -12,345,316,272 | -50% | ||
noblebot | 0 | -40,641,741,370 | -100% | ||
kingsofa | 0 | -46,566,698,961 | -100% | ||
rabbitbot | 0 | -13,996,521,942 | -100% | ||
mrkebab | 0 | -34,493,309,731 | -100% | ||
sfr-treasury | 0 | -16,721,374,988 | -100% | ||
ilgiaguaro | 0 | -11,663,093,600 | -90% | ||
anastasiavasilc | 0 | -58,182,738,440 | -100% | ||
acu.fund | 0 | 871,916,263,682 | 100% |
Flagged for collusive voting @steemflagrewards
author | jlsplatts |
---|---|
permlink | re-manabank-pzp47r |
category | cn |
json_metadata | {"tags":["cn"],"app":"steempeak/1.18.0"} |
created | 2019-10-20 23:07:03 |
last_update | 2019-10-20 23:07:03 |
depth | 3 |
children | 1 |
last_payout | 2019-10-27 23:07:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 94,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,749,135 |
net_rshares | 0 |
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>
author | steemitboard |
---|---|
permlink | re-pzf8or |
category | cn |
json_metadata | "" |
created | 2019-10-19 23:37:09 |
last_update | 2019-10-19 23:37:09 |
depth | 3 |
children | 0 |
last_payout | 2019-10-26 23:37:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 224 |
author_reputation | 38,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,718,584 |
net_rshares | 0 |
你好鸭,anonymity.inlet! @manabot2给您叫了一份外卖! 由 @honoru 米高 迎着大雪 跑着步 给您送来 **加拿大人民早餐伴侣** <br>  吃饱了吗?跟我猜拳吧! **石头,剪刀,布~** 如果您对我的服务满意,请不要吝啬您的点赞~ @onepagex
author | teamcn-shop |
---|---|
permlink | pzb1fd |
category | cn |
json_metadata | "{"app":"teamcn-shop bot/1.0"}" |
created | 2019-10-13 08:40:39 |
last_update | 2019-10-13 08:40:39 |
depth | 1 |
children | 4 |
last_payout | 2019-10-20 08:40:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 246 |
author_reputation | 11,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,505,698 |
net_rshares | 0 |
这些美食,需要布!布
author | mana.bank |
---|---|
permlink | pzb1y0 |
category | cn |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-10-13 08:51:36 |
last_update | 2019-10-13 08:51:36 |
depth | 2 |
children | 3 |
last_payout | 2019-10-20 08:51:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 938,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,505,944 |
net_rshares | -2,990,275,615 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pjau | 0 | -383,229,780,598 | -100% | ||
johnwatson | 0 | -36,345,377,032 | -100% | ||
eonwarped | 0 | -96,199,198,100 | -6.19% | ||
lebin | 0 | -345,971,674,558 | -20% | ||
kabir88 | 0 | -342,935,271,668 | -100% | ||
mrkebab | 0 | -32,391,374,277 | -100% | ||
ilgiaguaro | 0 | -12,134,562,947 | -90% | ||
acu.fund | 0 | 788,474,423,234 | 100% | ||
mana.bank | 0 | 374,643,633,995 | 100% | ||
acufund | 0 | 26,528,413,864 | 100% | ||
cameron.barnes | 0 | 476,150,338 | 100% | ||
manabot2 | 0 | 24,840,804,133 | 100% | ||
manabank | 0 | 31,253,538,001 | 100% |
Flagged for collusive voting @steemflagrewards
author | lebin |
---|---|
permlink | re-manabank-pzk1xz |
category | cn |
json_metadata | {"tags":["cn"],"app":"steempeak/1.18.0"} |
created | 2019-10-18 05:30:03 |
last_update | 2019-10-18 05:30:03 |
depth | 3 |
children | 1 |
last_payout | 2019-10-25 05:30:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,664,551 |
net_rshares | 61,771,288,794 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joshman | 0 | 72,776,452,607 | 4% | ||
steem.ninja | 0 | 1,207,570,921,397 | 42.5% | ||
mana.bank | 0 | -1,218,576,085,210 | -100% |
https://1.bp.blogspot.com/-H5eDKvWthyo/WoGwC3ivE6I/AAAAAAATXIY/ebZ9qsoMR1sVJnwNagMqgCgiBHxrwcFOQCLcBGAs/s1600/AW785125_06.gif You lose! 你输了!乖乖的给我点赞吧!
author | teamcn-shop |
---|---|
permlink | pzb1y0 |
category | cn |
json_metadata | "{"app":"teamcn-shop bot/1.0"}" |
created | 2019-10-13 08:51:45 |
last_update | 2019-10-13 08:51:45 |
depth | 3 |
children | 0 |
last_payout | 2019-10-20 08:51:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 11,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,505,947 |
net_rshares | 0 |