 [source](https://pixabay.com/de/illustrations/schl%C3%BCssel-schlo%C3%9F-sicherheit-metall-3348307/) All accounts on the HIVE blockchain that existed also before the fork may have posting permissions granted to apps that do not exists on the HIVE blockchain. It is a good idea to remove them for now. You can use beempy to remove posting permissions to your account. At first, all account that have posting/active permissions should be printed with ``` beempy permissions holger80 ``` ``` +------------+-----------+-----------------------------------------------------------+ | Permission | Threshold | Key/Account | +------------+-----------+-----------------------------------------------------------+ | owner | 1 | STM5XDYn3NeTqiMd1wczZjF9sPiJqY2uQw9HRwT6LR6rQytAxWNfz (1) | | active | 1 | STM7tA7Mh81wJV1J8eW8NyGLc3XCSyXNdFnhAh8F8bYYd8yAcy6Ew (1) | | posting | 1 | actifit.app (1) | | | | dpoll.xyz (1) | | | | esteemapp (1) | | | | nc-client (1) | | | | nextcolony (1) | | | | peakd.app (1) | | | | rewarding (1) | | | | STM6t5ExkHZtQL1pdkrRZjCgzbAdnB3YUYCZgrYWDXvdnU5bp57jL (1) | +------------+-----------+-----------------------------------------------------------+ ``` ## Remove posting permission Now, not needed permissions can be removed by ``` beempy disallow -a holger80 busy.app ``` where the account name is set with `-a`. This command broadcasts a `account_update` operation and removes the given account name from the `account_auths` field.  This can also be done with https://hivesigner.com/revoke/ followed by the account name, e.g. https://hivesigner.com/revoke/busy.app Changing and reviewing permissions is also possible with peakd: https://peakd.com/@holger80/permissions ## Recovery account The recovery account can be check with https://hiveblocks.com/@holger80  It is set to @steem for my account and as it is most unlikely that @steem will ever sign a `Request_account_recovery` operation on HIVE, I'm unable to recovery my account, when I would accidentally leak my owner key and someone would change it using my leaked owner key. This is most unlikely, as I'm not using my owner key but it could happen. ### How does account recovery work? Assuming, my owner key was changed within 30 days, I have the previous owner key and the recover account is signing, I can recover my account: 1. I need to create a new owner key 2. the recover account broadcasts a `Request_account_recovery` operation with the new owner public key signed with its active key 3. I need then to broadcast a `Recover_account` operation with the old and the new owner public key and sign it with the old and the new owner private key. 4. I can change now all keys with an `Account_update` operation signed with the new owner key. Currently this will not work for me, as @steem will not broadcast a `Request_account_recovery` operation on HIVE. ## Changing the recover account I created a new account @recovery.account on HIVE as my new recovery account. It would be possible to use hivesigner for this: https://hivesigner.com/sign/change_recovery_account?account_to_recover=holger80&new_recovery_account=recovery.account&extensions=%5B%5D or peakd: https://peakd.com/@holger80/permissions But I do like to use my own script: ``` from beem.account import Account from beem.nodelist import NodeList from beem import Steem from beem.transactionbuilder import TransactionBuilder from beemgraphenebase.account import PrivateKey import beembase import getpass if __name__ == "__main__": nodes = NodeList() nodes.update_nodes() key = getpass.getpass(prompt='Owner key: ') owner_key = PrivateKey(wif=key) print("pub: %s" % str(owner_key.pubkey)) account_name = input("account name: ") new_recovery_account = input("new recovery_account: ") hive = Steem(node=nodes.get_nodes(hive=True)) assert hive.is_hive account = Account(account_name, steem_instance=hive) new_rec_acc = Account(new_recovery_account, steem_instance=hive) op = beembase.operations.Change_recovery_account(**{ 'account_to_recover': account['name'], 'new_recovery_account': new_rec_acc['name'], 'extensions': [] }) print(op) prompt = input("Broadcast the operation? [y/n]") if prompt[0] == "y": tb = TransactionBuilder(steem_instance=hive) tb.appendOps([op]) tb.appendWif(str(owner_key)) #tb.appendSigner(account['name'], 'owner') tb.sign() trx = tb.broadcast() print(trx) ``` Results in  This means that in 30 days my recovery account will be changed. I will keep the keys of @recovery.account in a safe place and will not use them. ## Is there a need for a recovery account provider? Do you want also to change your recovery account? How could this work? Let me know.
author | holger80 |
---|---|
permlink | how-to-review-account-permissions-and-change-your-recovery-account |
category | hive |
json_metadata | {"app":"peakd/2020.03.14","format":"markdown","tags":["hive","beem","python","development"],"users":["holger80","steem","recovery"],"links":["https://pixabay.com/de/illustrations/schl%C3%BCssel-schlo%C3%9F-sicherheit-metall-3348307/","https://hivesigner.com/revoke/","https://hivesigner.com/revoke/busy.app","/@holger80/permissions","https://hiveblocks.com/@holger80","/@steem","/@steem","/@steem","/@recovery.account","https://hivesigner.com/sign/change_recovery_account?account_to_recover=holger80&new_recovery_account=recovery.account&extensions=%5B%5D"],"image":["https://files.peakd.com/file/peakd-hive/holger80/UScDOcPB-image.png","https://files.peakd.com/file/peakd-hive/holger80/nNzpFYoS-image.png","https://files.peakd.com/file/peakd-hive/holger80/n5L0jCIN-image.png","https://files.peakd.com/file/peakd-hive/holger80/N8fWV7bM-image.png"]} |
created | 2020-04-02 22:04:27 |
last_update | 2020-04-04 06:25:21 |
depth | 0 |
children | 17 |
last_payout | 2020-04-09 22:04:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 30.183 HBD |
curator_payout_value | 22.046 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,661 |
author_reputation | 358,857,509,568,825 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,685,152 |
net_rshares | 154,060,297,427,074 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 2,308,388,995,785 | 100% | ||
steempty | 0 | 9,425,474,832,517 | 100% | ||
bue | 0 | 906,130,211,301 | 100% | ||
flemingfarm | 0 | 82,629,173,212 | 100% | ||
acidyo | 0 | 5,391,113,371,146 | 52% | ||
gerber | 0 | 208,377,347,144 | 7.9% | ||
gidlark | 0 | 2,494,272,331 | 1.75% | ||
hitmeasap | 0 | 5,387,702,525 | 25% | ||
stranger27 | 0 | 8,606,303,914 | 100% | ||
ausbitbank | 0 | 2,779,319,722,891 | 100% | ||
inertia | 0 | 689,426,432,286 | 100% | ||
arcange | 0 | 86,364,789,488 | 4% | ||
sharker | 0 | 4,888,389,151 | 24.5% | ||
raphaelle | 0 | 2,983,622,888 | 4% | ||
kibela | 0 | 6,900,273,565 | 24.5% | ||
twinner | 0 | 20,674,036,292,053 | 100% | ||
timcliff | 0 | 1,052,438,007,992 | 100% | ||
neddykelly | 0 | 7,046,255,824 | 100% | ||
abiky | 0 | 1,662,186,752 | 100% | ||
alinalazareva | 0 | 757,912,616 | 14% | ||
hyperbatata | 0 | 576,216,593 | 10% | ||
jphamer1 | 0 | 3,474,667,283,236 | 100% | ||
djennyfloro | 0 | 1,292,091,878 | 10% | ||
fooblic | 0 | 29,191,413,628 | 100% | ||
fingolfin | 0 | 96,361,737,878 | 100% | ||
stevescoins | 0 | 202,579,267,487 | 75% | ||
themanualbot | 0 | 11,223,269,566 | 10% | ||
uwelang | 0 | 565,343,078,742 | 50% | ||
phusionphil | 0 | 1,610,636,768 | 5% | ||
abh12345 | 0 | 202,127,706,264 | 15% | ||
steemcleaners | 0 | 4,417,292,328,500 | 75% | ||
siniceku | 0 | 774,250,439 | 100% | ||
techslut | 0 | 94,374,231,909 | 20% | ||
judasp | 0 | 914,534,081,548 | 100% | ||
bugavi | 0 | 51,167,598,179 | 100% | ||
rahul.stan | 0 | 7,320,075,466 | 26% | ||
ericwilson | 0 | 159,911,306,788 | 80% | ||
tarazkp | 0 | 1,470,355,808,542 | 50% | ||
amryksr | 0 | 9,982,152,718 | 100% | ||
evildeathcore | 0 | 14,912,106,137 | 100% | ||
travelnepal | 0 | 1,090,206,788 | 10% | ||
pouchon | 0 | 949,644,679,169 | 100% | ||
dhimmel | 0 | 4,248,378,328,608 | 100% | ||
freebornsociety | 0 | 3,222,451,385 | 10% | ||
damla | 0 | 60,038,024,743 | 100% | ||
imperfect-one | 0 | 555,232,074 | 7.89% | ||
mes | 0 | 159,901,264,916 | 100% | ||
bobskibob | 0 | 157,901,951,463 | 100% | ||
schlees | 0 | 382,404,061,093 | 100% | ||
yeaho | 0 | 65,597,234,209 | 20% | ||
rocksg | 0 | 155,973,184,986 | 100% | ||
drag33 | 0 | 98,809,518,693 | 100% | ||
mblain | 0 | 963,275,200 | 100% | ||
mys | 0 | 26,952,717,938 | 7.89% | ||
rycharde | 0 | 1,134,356,906 | 7.9% | ||
yehey | 0 | 1,181,609,784,005 | 100% | ||
jeanpi1908 | 0 | 75,262,026,287 | 100% | ||
skepticology | 0 | 10,408,104,286 | 100% | ||
maxer27 | 0 | 139,062,588,735 | 35% | ||
wf9877 | 0 | 617,916,355,343 | 100% | ||
gingerninja | 0 | 5,176,675,751 | 10% | ||
spectrumecons | 0 | 1,813,894,374,712 | 40% | ||
jayna | 0 | 8,671,161,619 | 3% | ||
whd | 0 | 10,237,339,884 | 7.89% | ||
mcoinz79 | 0 | 2,633,121,310,572 | 100% | ||
bubke | 0 | 1,959,751,992,889 | 100% | ||
jacekw | 0 | 60,583,421,503 | 100% | ||
jeffrey24864 | 0 | 139,897,040,039 | 100% | ||
drorion | 0 | 1,417,101,388,064 | 100% | ||
hope-on-fire | 0 | 42,553,526,514 | 26% | ||
blazing | 0 | 0 | 100% | ||
shebe | 0 | 12,077,345,300 | 53% | ||
ralph-rennoldson | 0 | 1,381,138,908 | 1.6% | ||
yoogyart | 0 | 29,732,775,429 | 51% | ||
superhardness | 0 | 6,953,823,760,964 | 100% | ||
steemik | 0 | 1,580,691,464,587 | 100% | ||
jasonbu | 0 | 60,720,351,070 | 50% | ||
vidafitnessfeliz | 0 | 1,007,231,557 | 30% | ||
jenesa | 0 | 540,845,976 | 10% | ||
masummim50 | 0 | 46,570,861,885 | 100% | ||
onetin84 | 0 | 407,098,476,782 | 100% | ||
rehan12 | 0 | 39,347,648,655 | 50% | ||
spaminator | 0 | 2,077,129,134,864 | 100% | ||
bashadow | 0 | 32,033,416,548 | 30% | ||
tipu | 0 | 9,209,642,490,462 | 20.01% | ||
kimzwarch | 0 | 8,776,891,914 | 4% | ||
peacefulpatriot | 0 | 12,947,800,104 | 25% | ||
accelerator | 0 | 84,390,199,182 | 7.9% | ||
nako1337 | 0 | 2,202,200,775 | 100% | ||
marysent | 0 | 644,667,397 | 20% | ||
roleerob | 0 | 5,304,768,631 | 1.18% | ||
scorer | 0 | 182,862,977,952 | 100% | ||
revisesociology | 0 | 173,873,388,183 | 20% | ||
szabolcs | 0 | 37,635,542,376 | 100% | ||
espoem | 0 | 282,659,190,243 | 100% | ||
creativetruth | 0 | 144,968,156,529 | 100% | ||
isnochys | 0 | 22,594,270,056 | 18% | ||
gringo211985 | 0 | 151,524,742,858 | 100% | ||
tobetada | 0 | 174,329,749,607 | 25% | ||
steemph.cebu | 0 | 2,478,479,354 | 20% | ||
lays | 0 | 53,235,539,445 | 10% | ||
sorenkierkegaard | 0 | 539,525,887 | 20% | ||
uncommonriad | 0 | 13,151,154,606 | 100% | ||
steinhammer | 0 | 642,103,739 | 50% | ||
xsasj | 0 | 1,405,673,590 | 8% | ||
junebride | 0 | 2,527,782,099 | 5% | ||
anli | 0 | 7,190,166,492 | 99% | ||
andrepol | 0 | 37,613,301,370 | 99% | ||
wajahatsardar | 0 | 109,544,906,384 | 100% | ||
mytechtrail | 0 | 41,324,584,714 | 20% | ||
tazi | 0 | 73,914,420,891 | 70% | ||
itchyfeetdonica | 0 | 128,322,419,574 | 30% | ||
nokodemion | 0 | 39,484,948,305 | 100% | ||
steembasicincome | 0 | 248,782,396,666 | 100% | ||
jpphotography | 0 | 71,019,837,899 | 37.46% | ||
fourfourfun | 0 | 6,459,683,177 | 25% | ||
candyboy | 0 | 381,475,794,110 | 100% | ||
oliverschmid | 0 | 403,519,193,698 | 35% | ||
abitcoinskeptic | 0 | 124,209,246,192 | 20% | ||
kissi | 0 | 15,070,939,774 | 75% | ||
cordeta | 0 | 537,431,536 | 10% | ||
nerdtopiade | 0 | 20,970,464,003 | 65% | ||
bartheek | 0 | 2,021,598,129 | 10% | ||
davidamsterdam | 0 | 6,790,421,514 | 100% | ||
bji1203 | 0 | 1,281,786,716,726 | 76% | ||
leslierevales | 0 | 1,972,310,666 | 50% | ||
knfitaly | 0 | 192,705,618,287 | 27% | ||
chrismadcboy2016 | 0 | 44,123,955,054 | 100% | ||
vaansteam | 0 | 78,121,662,836 | 30% | ||
udabeu | 0 | 16,703,458,748 | 56% | ||
darewealth | 0 | 34,365,149,852 | 100% | ||
nobyeni | 0 | 1,693,297,780 | 5% | ||
jlordc | 0 | 121,646,478,707 | 100% | ||
holger80 | 0 | 3,146,809,811,198 | 100% | ||
cadawg | 0 | 16,162,878,589 | 5.53% | ||
sudefteri | 0 | 19,033,662,749 | 100% | ||
happy-soul | 0 | 83,604,380,018 | 10% | ||
maxpatternman | 0 | 29,782,544,028 | 100% | ||
condeas | 0 | 1,323,824,959,231 | 100% | ||
sashas | 0 | 3,699,435,288 | 100% | ||
anikys3reasure | 0 | 1,438,936,226 | 50% | ||
starzy | 0 | 539,495,027 | 10% | ||
cheema1 | 0 | 43,088,652,196 | 52% | ||
flugschwein | 0 | 7,710,899,452 | 26% | ||
akifane | 0 | 3,445,405,362 | 100% | ||
kitalee | 0 | 9,154,105,833 | 10% | ||
cryptictruth | 0 | 65,054,038,124 | 100% | ||
fego | 0 | 17,001,801,228 | 14% | ||
nezer | 0 | 30,484,095,453 | 100% | ||
backinblackdevil | 0 | 223,776,801,597 | 20% | ||
olimiesma | 0 | 43,250,888,297 | 100% | ||
satren | 0 | 65,868,670,129 | 25% | ||
lauchmelder | 0 | 16,450,995,129 | 100% | ||
kargul09 | 0 | 5,856,776,292 | 100% | ||
amico | 0 | 913,595,572,841 | 99.98% | ||
ai1love | 0 | 507,819,698 | 10% | ||
beleg | 0 | 3,611,248,565 | 7.89% | ||
bestboom | 0 | 101,334,332,875 | 7.9% | ||
eunsik | 0 | 287,789,250,185 | 50% | ||
abrockman | 0 | 852,076,182,585 | 100% | ||
kkndworld | 0 | 18,162,886,237 | 100% | ||
reversehitler88 | 0 | 1,135,893,830 | 50% | ||
sbi2 | 0 | 161,612,540,332 | 100% | ||
dera123 | 0 | 94,511,261,896 | 15% | ||
paragism | 0 | 24,412,084,740 | 100% | ||
elleok | 0 | 3,890,292,104 | 100% | ||
freddio | 0 | 59,923,707,887 | 15% | ||
alitavirgen | 0 | 25,707,999,795 | 15.4% | ||
dreimaldad | 0 | 57,990,643,035 | 50% | ||
taldor | 0 | 15,983,701,875 | 100% | ||
atra-aranea | 0 | 4,848,885,809 | 100% | ||
julialee66 | 0 | 1,847,276,524,820 | 10% | ||
saboin | 0 | 87,160,117,114 | 12.24% | ||
wirago | 0 | 18,961,192,465 | 100% | ||
andreasgrubhofer | 0 | 117,897,649,784 | 93% | ||
steamsteem | 0 | 410,109,951,572 | 100% | ||
stefannikolov | 0 | 1,045,988,488 | 10% | ||
retard-gamer-de | 0 | 1,251,155,573 | 50% | ||
sbi3 | 0 | 149,284,593,182 | 100% | ||
yaraha | 0 | 20,250,116,842 | 100% | ||
promobot | 0 | 894,122,434,381 | 100% | ||
superlao | 0 | 52,790,945,743 | 100% | ||
sbi4 | 0 | 125,538,870,545 | 100% | ||
hatoto | 0 | 186,242,819,336 | 100% | ||
carlpei | 0 | 311,571,351,794 | 100% | ||
blockchainstudio | 0 | 164,043,204,670 | 100% | ||
crimo | 0 | 5,019,445,621 | 50% | ||
helpyou | 0 | 1,864,733,614 | 50% | ||
archisteem | 0 | 3,805,567,748 | 7.5% | ||
linnyplant | 0 | 43,289,750,271 | 100% | ||
commonlaw | 0 | 4,352,390,335 | 35% | ||
bluewall | 0 | 23,562,574,198 | 100% | ||
sbi5 | 0 | 102,114,902,373 | 100% | ||
swisswitness | 0 | 51,744,212,341 | 100% | ||
kahvesizlik | 0 | 1,266,126,075 | 100% | ||
roger5120 | 0 | 192,335,346,802 | 16% | ||
sbi6 | 0 | 90,335,866,987 | 100% | ||
accountsale | 0 | 746,854,971,623 | 100% | ||
urdreamscometrue | 0 | 30,104,271,104 | 100% | ||
mightypanda | 0 | 5,272,079,094 | 14% | ||
pagliozzo | 0 | 19,612,405,317 | 20% | ||
schlunior | 0 | 30,539,117,424 | 100% | ||
izzynoel | 0 | 621,008,952 | 37.5% | ||
daath | 0 | 4,282,582,635 | 100% | ||
pvinny69 | 0 | 2,662,800,094 | 10% | ||
goumao | 0 | 75,643,601,426 | 100% | ||
sbi7 | 0 | 78,838,473,444 | 100% | ||
julian2013 | 0 | 10,200,415,880 | 3.55% | ||
dlike | 0 | 360,047,526,497 | 7.9% | ||
periods | 0 | 6,432,611,892 | 100% | ||
triptolemus | 0 | 22,870,656,281 | 7.9% | ||
doldrums | 0 | 4,963,562,048 | 5% | ||
coinmarketcal | 0 | 21,391,781,974 | 22% | ||
holger.random | 0 | 921,211,001 | 100% | ||
fullnodeupdate | 0 | 13,697,508,364 | 100% | ||
tipsybosphorus | 0 | 318,490,338,633 | 50% | ||
mrnicepost | 0 | 0 | 100% | ||
a-bot | 0 | 194,432,953,087 | 100% | ||
bobby.madagascar | 0 | 3,012,247,154 | 1.97% | ||
alucian | 0 | 150,699,835,003 | 100% | ||
muscara | 0 | 35,796,844,904 | 40% | ||
mister-meeseeks | 0 | 15,029,078,089 | 26% | ||
selfvotejustice | 0 | 1,197,024,627,769 | 100% | ||
sbi8 | 0 | 76,627,974,967 | 100% | ||
sbi9 | 0 | 61,321,040,901 | 100% | ||
besheda | 0 | 1,025,401,208 | 43% | ||
actnearn | 0 | 2,886,303,181,812 | 100% | ||
mistia | 0 | 5,663,184,362 | 100% | ||
sbi10 | 0 | 42,177,400,410 | 100% | ||
moneytron | 0 | 39,988,179,842 | 100% | ||
theskmeister | 0 | 24,716,127,956 | 100% | ||
yuriy4 | 0 | 8,124,460,343 | 100% | ||
bluerobo | 0 | 30,659,367,412 | 100% | ||
j-p-bs | 0 | 2,224,690,453 | 100% | ||
swiftbot | 0 | 5,101,826,223 | 41% | ||
dfen | 0 | 1,613,911,945 | 100% | ||
bewarecenterbase | 0 | 233,751,237,056 | 100% | ||
tonalddrump | 0 | 6,819,211,409 | 50% | ||
permaculturedude | 0 | 1,521,286,126 | 3.95% | ||
idiosyncratic1 | 0 | 12,128,284,985 | 100% | ||
smon-joa | 0 | 208,526,963,656 | 100% | ||
broxi | 0 | 10,248,585,816 | 50% | ||
brujas | 0 | 1,092,012,458 | 100% | ||
hanke | 0 | 2,626,141,141 | 100% | ||
schlank | 0 | 23,365,022,558 | 100% | ||
realgoodcontent | 0 | 854,910,372 | 100% | ||
mia-cc | 0 | 2,533,663,195 | 20.01% | ||
peter-bot | 0 | 2,101,833,776 | 100% | ||
bewithbreath | 0 | 6,496,896,020 | 5% | ||
cpt-sparrow | 0 | 32,707,945,043 | 100% | ||
pedrobrito2004 | 0 | 7,183,325,315 | 20.01% | ||
schlooster | 0 | 1,951,293,637 | 100% | ||
joelingo | 0 | 951,774,005 | 100% | ||
ttg | 0 | 641,637,032,678 | 100% | ||
lefty619 | 0 | 37,350,992,732 | 100% | ||
maxsieg | 0 | 2,771,527,421 | 100% | ||
szf | 0 | 948,225,244 | 50% | ||
memehub | 0 | 2,772,812,327,521 | 100% | ||
raspibot | 0 | 3,337,857,504 | 100% | ||
nextcolony | 0 | 949,748,234,623 | 35% | ||
sparschwein | 0 | 12,053,005,015 | 50% | ||
naltedtirt | 0 | 6,278,594,264 | 50% | ||
likwid | 0 | 31,005,394,999,540 | 100% | ||
swedishdragon76 | 0 | 2,488,827,304 | 50% | ||
amkn6590 | 0 | 178,230,093,715 | 100% | ||
dachcolony | 0 | 16,022,161,265 | 100% | ||
captain.kirk | 0 | 22,329,052,311 | 50% | ||
leighscotford | 0 | 773,202,063 | 2% | ||
ilovecanada | 0 | 13,481,261,400 | 50% | ||
cinefilm | 0 | 352,861,520,613 | 100% | ||
jalentakesphotos | 0 | 2,660,283,116 | 10% | ||
map10k | 0 | 0 | 9.6% | ||
sanaee | 0 | 4,154,535,599 | 100% | ||
kgswallet | 0 | 2,893,310,160 | 100% | ||
steem.leo | 0 | 74,213,422,095 | 7.58% | ||
everythingsmgirl | 0 | 1,428,568,319 | 50% | ||
leo.voter | 0 | 115,797,615,397 | 7.66% | ||
holycow2019 | 0 | 287,121,509 | 100% | ||
arenatoken | 0 | 1,712,989,539 | 100% | ||
freddio.sport | 0 | 1,607,754,630 | 15% | ||
mapxv | 0 | 32,319,705,692 | 11.2% | ||
tokenindustry | 0 | 2,743,858,917 | 80% | ||
ticketyboo | 0 | 5,707,261,933 | 65% | ||
ticketywoof | 0 | 5,706,130,612 | 65% | ||
leo.syndication | 0 | 3,048,692,382 | 7.9% | ||
one.life | 0 | 42,560,283,227 | 7.88% | ||
maxuvv | 0 | 181,484,837 | 2.46% | ||
maxuvd | 0 | 4,557,738,810 | 7.9% | ||
maxuve | 0 | 9,992,500,358 | 2.46% | ||
hayalet | 0 | 3,610,004,512 | 100% | ||
borbina | 0 | 4,081,804,085 | 65% | ||
ctl001 | 0 | 575,229,054 | 100% | ||
bcm | 0 | 299,652,468,048 | 15% | ||
dappstats | 0 | 6,722,960,951 | 15% | ||
leonardodaslade | 0 | 1,680,682,302 | 100% | ||
kleingeldpilotin | 0 | 1,078,953,878 | 100% | ||
huaren.news | 0 | 69,073,506,339 | 1% | ||
lamorada | 0 | 95,851,141 | 100% | ||
dollarbills | 0 | 36,753,203,966 | 29% | ||
abusamad | 0 | 9,679,002,620 | 100% | ||
diamond-head | 0 | 3,043,256,201 | 100% | ||
yea-zoo | 0 | 758,326,631 | 80% | ||
dominuus | 0 | 386,544,947 | 7.89% | ||
sujaytechnicals | 0 | 139,322,758 | 100% | ||
steemcityrewards | 0 | 46,129,362,535 | 7.9% | ||
stuntman.mike | 0 | 50,611,553,983 | 100% | ||
fengchao | 0 | 919,776,189 | 1% | ||
maxwellelisha19 | 0 | 0 | 100% | ||
azar0307 | 0 | 1,894,476,303 | 100% | ||
stay4truee | 0 | 85,294,936 | 100% | ||
reggaejahm | 0 | 313,314,194,231 | 100% | ||
vermaveenu | 0 | 0 | 100% |
Changing recovery account is great and anyone can do it easily. But the problem is that whom to set account trustee, if I do so and set someone my account trustee how can I prove my ownership on stolen account. Second question - If I create an account like you they I will need a tool to do all the process because I'm not a developer. So , do you have answers of these questions @holger80
author | ajks |
---|---|
permlink | re-holger80-q883ru |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-03 17:40:45 |
last_update | 2020-04-03 17:40:45 |
depth | 1 |
children | 0 |
last_payout | 2020-04-10 17:40: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 | 391 |
author_reputation | 80,793,116,826,740 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,695,388 |
net_rshares | 0 |
@tipu curate ___ A huge hug from @amico! 🤗
author | amico |
---|---|
permlink | re-how-to-review-account-permissions-and-change-your-recovery-account-20200402t220912z |
category | hive |
json_metadata | "{"app": "rewarding/0.1.0"}" |
created | 2020-04-02 22:09:42 |
last_update | 2020-04-02 22:09:42 |
depth | 1 |
children | 0 |
last_payout | 2020-04-09 22:09:42 |
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 | 44 |
author_reputation | 51,076,240,298,517 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,685,211 |
net_rshares | 0 |
I think I got some of them removed, but is there an easy to view location where I can see who I have given permissions to? On Steem block Chain I used Steemd to see this info, but have not found a similar app for hive yet.
author | bashadow |
---|---|
permlink | re-holger80-q86nsw |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-02 22:58:03 |
last_update | 2020-04-02 22:58:03 |
depth | 1 |
children | 5 |
last_payout | 2020-04-09 22:58: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 | 222 |
author_reputation | 100,388,692,638,882 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,685,605 |
net_rshares | 0 |
You can check your permissions here: https://hiveblocks.com/@bashadow
author | holger80 |
---|---|
permlink | re-bashadow-q88bzc |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-03 20:41:45 |
last_update | 2020-04-03 20:41:45 |
depth | 2 |
children | 3 |
last_payout | 2020-04-10 20:41:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 358,857,509,568,825 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,697,354 |
net_rshares | 151,877,200,483 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bashadow | 0 | 108,422,735,297 | 100% | ||
anli | 0 | 6,595,486,979 | 99% | ||
andrepol | 0 | 36,578,435,249 | 99% | ||
holycow2019 | 0 | 280,542,958 | 100% |
Thank you, I thought I had seen it somewhere, but so many book marks I lost it. Now I have it bookmarked in peakd
author | bashadow |
---|---|
permlink | re-holger80-q88k6m |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-03 23:35:03 |
last_update | 2020-04-03 23:35:03 |
depth | 3 |
children | 2 |
last_payout | 2020-04-10 23:35: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 | 113 |
author_reputation | 100,388,692,638,882 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,699,002 |
net_rshares | 0 |
You can check your permissions here: https://hiveblocks.com/@bashadow
author | holger80 |
---|---|
permlink | re-bashadow-q88bzn |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-03 20:38:12 |
last_update | 2020-04-03 20:38:12 |
depth | 2 |
children | 0 |
last_payout | 2020-04-10 20:38:12 |
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 | 69 |
author_reputation | 358,857,509,568,825 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,697,320 |
net_rshares | 44,311,906,299 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anli | 0 | 6,725,135,025 | 99% | ||
andrepol | 0 | 37,299,649,765 | 99% | ||
holycow2019 | 0 | 287,121,509 | 100% |
yes there is a need for this . i also want to change my account recovery, but don't know who to change it to. maybe a one time payment fee . or if you or someone else commits to it a dao proposal 5sbd a day
author | bobskibob |
---|---|
permlink | re-holger80-q86mk1 |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-02 22:31:15 |
last_update | 2020-04-02 22:32:00 |
depth | 1 |
children | 0 |
last_payout | 2020-04-09 22:31: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 | 209 |
author_reputation | 9,906,780,416,788 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,685,413 |
net_rshares | 371,639,569 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hamnox | 0 | 371,639,569 | 100% |
Thanks @holger80 removed a lot and will change the recovery acc.
author | detlev |
---|---|
permlink | re-holger80-q8dz37 |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-06 21:45:12 |
last_update | 2020-04-06 21:45:12 |
depth | 1 |
children | 0 |
last_payout | 2020-04-13 21:45:12 |
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 | 64 |
author_reputation | 1,707,195,232,946,208 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,736,840 |
net_rshares | 0 |
Thank you oh so very much! This is exactly what I was looking for today!!! Problem solved:)
author | joelingo |
---|---|
permlink | q86s68 |
category | hive |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-04-03 00:32:36 |
last_update | 2020-04-03 00:32:36 |
depth | 1 |
children | 0 |
last_payout | 2020-04-10 00:32: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 | 92 |
author_reputation | 4,125,864,249,402 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,686,212 |
net_rshares | 0 |
Something simple? Lol
author | libert |
---|---|
permlink | q88y4c |
category | hive |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-04-04 04:36:15 |
last_update | 2020-04-04 04:36:15 |
depth | 1 |
children | 0 |
last_payout | 2020-04-11 04:36: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 | 21 |
author_reputation | 19,208,620,620,574 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,701,137 |
net_rshares | 0 |
I need to change mine. Will you be helping other with @recovery.account? I changed mine the last time I took a loan from @neoxian to him and haven't changed back since.
author | rishi556 |
---|---|
permlink | re-holger80-q86q0j |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-02 23:45:57 |
last_update | 2020-04-02 23:45:57 |
depth | 1 |
children | 1 |
last_payout | 2020-04-09 23:45: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 | 168 |
author_reputation | 132,030,433,979,940 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,685,889 |
net_rshares | 0 |
Yes, I'm willing to help. I created a new discord channel for this: https://discord.gg/Ae6mUwX Maybe a discord bot with HIVE transfer to register can be used? I have to think about this.
author | holger80 |
---|---|
permlink | re-rishi556-q88e03 |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-03 21:21:45 |
last_update | 2020-04-03 21:21:45 |
depth | 2 |
children | 0 |
last_payout | 2020-04-10 21:21: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 | 187 |
author_reputation | 358,857,509,568,825 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,697,713 |
net_rshares | 42,853,891,922 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anli | 0 | 6,515,394,922 | 99% | ||
andrepol | 0 | 36,062,694,345 | 99% | ||
holycow2019 | 0 | 275,802,655 | 100% |
For perfect security reason
author | rockor |
---|---|
permlink | re-holger80-q87his |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.14"} |
created | 2020-04-03 09:40:33 |
last_update | 2020-04-03 09:40:33 |
depth | 1 |
children | 0 |
last_payout | 2020-04-10 09:40: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 | 27 |
author_reputation | 8,978,993,139,136 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,690,337 |
net_rshares | 0 |
Thank you, really useful indeed.
author | theskmeister |
---|---|
permlink | q88sys |
category | hive |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-04-04 02:44:51 |
last_update | 2020-04-04 02:44:51 |
depth | 1 |
children | 0 |
last_payout | 2020-04-11 02:44:51 |
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 | 32 |
author_reputation | 5,249,999,792,859 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,700,343 |
net_rshares | 0 |
thank you..
author | zdigital222 |
---|---|
permlink | re-holger80-2021217t93848374z |
category | hive |
json_metadata | {"tags":["hive","beem","python","development"],"app":"ecency/3.0.13-vision","format":"markdown+html"} |
created | 2021-02-17 01:38:51 |
last_update | 2021-02-17 01:38:51 |
depth | 1 |
children | 0 |
last_payout | 2021-02-24 01:38:51 |
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 | -16,896,317,633,211 |
root_title | "How to review account permissions and change your recovery account" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,914,743 |
net_rshares | 0 |