<center></center> As I got some free time lately I decided to use it for the HIVE community either in publishing open source tools for application developers on HIVE or for personal & professional projects on HIVE. After the [HIVE Nodes Checker](/hive-139531/@mintrawa/hive-nodes-checker-version-0-hive-139531) it's time to introduce the Hive Authentication Client (HAC) # Hive Authentication Client (HAC) Hive Authentication Client (HAC) is a password-less users authentication, sign and broadcast transactions for the [HIVE Blockchain](https://hive.io/) through the [Hive Authentication Services (HAS)](/hive-139531/@arcange/hive-authentication-services-proposal) or the [Hive Keychain Browser Extension (KBE)](/hive/@keychain/hive-keychain-proposal-3-dhf). Authentications and transactions are performed by the wallet supporting the HAS protocol or the Hive Keychain Browser Extension without communicating the private key, which thus remains secure. The results of each operation are sent by subscription (RxJS). Hive Authentication Client (HAC) manages previous connections as well through encrypted data in the localStorage. In order to save time on the learning curve of the HIVE blockchain, some operations exist in short versions too (e.g. `hacFollowing`, `hacTransfer`, `hacDelegation`...). Big thank to @arcange who is the originator of the Hive Authentication Services (HAS) and to @stoodkev for his work to make the HIVE Keychain wallet compatible with the HAS protocol π **Hive Authentication Services (HAS)** Manage the WebSocket connection to the HAS and all communication with it. Support reconnection to another HAS WebSocket server in case of failure. HAS documentation: https://docs.hiveauth.com/ **Hive Keychain Browser Extension (KBE)** Manage the communication with the Hive Keychain Browser Extension if present KBE documentation: https://github.com/stoodkev/hive-keychain ## Github & NPM - https://github.com/Mintrawa/hive-auth-client - https://www.npmjs.com/package/@mintrawa/hive-auth-client <center><div class="phishy"><sub>**Like the Hive Authentication Services (HAS) this package remains in BETA!**</sub></div></center> <center></center> ## Use case example (extremely basic) I propose to show you how the Hive Authentication Client (HAC) works through a short Angular app example, which will be more meaningful. Our application will allow us to connect to the HIVE blockchain via HAS or KBE and to proceed to some transactions like Upvote for witness and Follow/Unfollow. For a more complete example, you can go there : https://github.com/Mintrawa/hac-tutorial ## Angular example ### Initialize create a new angular project ```bash $ ng new hac-tutorial ``` <sub>*choose yes for routing option and, CSS or SCSS.*</sub> Install the dependencies we will need for this tutorial ```bash ~/hac-tutorial$ npm i --save ng-qrcode @mintrawa/hive-auth-client ``` ### Edit open the project directory with your favorite editor #### angular.json Due to the usage of CommonJS dependencies, we need to add a section `allowedCommonJsDependencies` in our `angular.json` file after `"scripts": [],`. ```ts "allowedCommonJsDependencies": [ "@mintrawa/hive-auth-client", "qrcode" ] ``` #### app.module.ts For the tutorial, we will need to show a QRcode, to do this we will use the [ng-qrcode](https://www.npmjs.com/package/ng-qrcode) package Open the `app.module.ts` and add the import line `import { QrCodeModule } from 'ng-qrcode';` and in the `import` array add `QrCodeModule,` #### app.component.ts In this example, we will do everything from the `app.component.ts` ```ts import { Component, OnDestroy, OnInit } from '@angular/core'; /** Hive Authentication Client (HAC) */ import { HiveAuthClient, hacMsg, hacUserAuth, hacFollowing, hacWitnessVote, } from '@mintrawa/hive-auth-client'; @Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent implements OnInit, OnDestroy { loader = false; voteWitnessLoader = false; voteWitnessButton = false; followLoader = false; followButton = false; qrHAS: string | undefined; username?: string; connected?: string; pwd = '520c5c9b-bd58-4253-850a-1fa591a2dabd'; connect(username: string): void { this.loader = true; this.username = username; hacUserAuth(username, { name: 'HACtutorial' }, this.pwd, { key_type: 'active', value: 'MyCha11en6e', }); } voteWitness(witness: string, approve: boolean): void { this.voteWitnessLoader = true; this.followButton = true; hacWitnessVote(witness, approve); } follow(account: string, follow: boolean): void { this.followLoader = true; this.voteWitnessButton = true; hacFollowing(account, follow); } ngOnInit(): void { /** Initialize the HIVE auth client */ HiveAuthClient(); hacMsg.subscribe((m) => { console.log(m); /** Received auth_wait => generate the qrCode */ if (m.type === 'qr_code') { /** QRcode data */ this.qrHAS = (m as any).msg; } /** Received authentication msg */ if (m.type === 'authentication') { if (!m.error) { this.connected = m.msg?.data?.chalenge.slice(0, 12) + '...'; } else { this.loader = false; this.qrHAS = null; window.alert(`${m.error.msg}`); } } /** Received sign_result */ if (m.type === 'tx_result') { this.voteWitnessLoader ? (this.voteWitnessLoader = false) : (this.followLoader = false); this.voteWitnessButton ? (this.voteWitnessButton = false) : (this.followButton = false); window.alert(`${m.msg?.status} | ${m.msg?.uuid ? m.msg?.uuid : ''}`); } }); } ngOnDestroy(): void { hacMsg.unsubscribe(); } } ``` #### app.component.scss a little touch of style ```css .flex-container { display: flex; flex-flow: column wrap; justify-content: center; align-content: stretch; align-items: center; height: 100vh; } .encart { border: 2px solid red; padding: 20px; border-radius: 25px; } .loader { border: 4px solid #f3f3f3; border-radius: 50%; border-top: 4px solid red; width: 16px; height: 16px; -webkit-animation: spin 2s linear infinite; /* Safari */ animation: spin 2s linear infinite; } .operations { display: flex; flex-flow: column wrap; justify-content: center; align-content: stretch; align-items: flex-start; height: 100vh; padding: 12px; } .item { width: 250px; height: 80px; } ``` #### app.component.html Time to do our HTML. ```html <div class="flex-container"> <!-- Login --> <div class="encart" *ngIf="!connected && !qrHAS"> <div>HIVE Username</div> <div style="height:6px;"></div> <input #username type="text" /> <div style="height:6px;"></div> <button (click)="connect(username.value)" *ngIf="!loader"> HAS Connect </button> </div> <!-- QRcode --> <div class="encart" *ngIf="!connected && qrHAS"> <div>{{ username }}</div> <qr-code [value]="'has://auth_req/' + qrHAS" [size]="192" [errorCorrectionLevel]="'M'" ></qr-code> <div *ngIf="loader" class="loader"></div> </div> <!-- Connected => OPERATIONS --> <div *ngIf="connected" class="operations"> <!-- VOTE WITNESS --> <div class="encart item"> <div>VOTE WITNESS</div> <div style="height:6px;"></div> <div> <div>witness: <input #witness type="text" value="mintrawa" /></div> <div style="height: 6px;"></div> <div *ngIf="!voteWitnessLoader"> <button [disabled]="voteWitnessButton" (click)="voteWitness(witness.value, true)" > APPROVE</button > <button [disabled]="voteWitnessButton" (click)="voteWitness(witness.value, false)" > DISAPPROVE </button> </div> <div class="loader" *ngIf="voteWitnessLoader"></div> </div> </div> <div style="height:12px;"></div> <!-- FOLLOWING --> <div class="encart item"> <div>FOLLOWING</div> <div style="height:6px;"></div> <div> <div><input #following type="text" value="mintrawa" /></div> <div style="height: 6px;"></div> <div *ngIf="!followLoader"> <button [disabled]="followButton" (click)="follow(following.value, true)" > FOLLOW</button > <button [disabled]="followButton" (click)="follow(following.value, false)" > UNFOLLOW </button> </div> <div class="loader" *ngIf="followLoader"></div> </div> </div> </div> </div> ``` This short example is also available on **Stackblitz** https://stackblitz.com/edit/angular-ivy-ew73hs ## hac-tutorial A more complete example is available on **Github** here: https://github.com/Mintrawa/hac-tutorial - Mode debug - Fallback on the first HAS server - Management previous connections - Choice between HAS or Keychain - 1 page for the sign in and 1 for the operations - 8 operations in easy mode - follow/unfollow - vote/downvote - approve/disapprove Witness - transfer - transferToVesting - withdrawVesting - delegation - convert (HBD=>HIVE / HIVE=>HBD) - 1 manual operation (claim discount account) <hr> <center><sub>Original photo by [olieman.eth](https://unsplash.com/@moneyphotos?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on [Unsplash](https://unsplash.com/s/photos/password?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText)</sub></center> <hr> <center> My HIVE witness servers <center><sub>PRINCIPAL</sub></center> | <center><sub>BACKUP/SEED</sub></center> ------------ | ------------- <sub>CPU:Intel Xeon E3-1270v6</sub> | <sub>CPU: Intel Xeon E3-1230v6</sub> <sub>4 Cores/8 Threads 3.5 GHz/3.9 GHz</sub> | <sub>4 Cores/8 Threads 3.8 GHz/4.2 GHz</sub> <sub>RAM: 32GB DDR4 ECC 2133MHz</sub> | <sub>RAM: 32GB DDR4 ECC 2133MHz</sub> <sub>HDD: 1 To SSD NVMe</sub> | <sub>HDD: 1 To SSD NVMe</sub> <sub> Vote for my HIVE witness: [click here (via **HiveSigner**)](https://hivesigner.com/sign/account-witness-vote?witness=mintrawa&approve=1) </sub> </center>
author | mintrawa |
---|---|
permlink | hive-authentication-client-hac |
category | hive-139531 |
json_metadata | {"links":["https://hive.io/","https://docs.hiveauth.com/","https://github.com/stoodkev/hive-keychain","https://github.com/Mintrawa/hive-auth-client","https://www.npmjs.com/package/@mintrawa/hive-auth-client","https://github.com/Mintrawa/hac-tutorial","https://www.npmjs.com/package/ng-qrcode","https://stackblitz.com/edit/angular-ivy-ew73hs","https://github.com/Mintrawa/hac-tutorial","https://unsplash.com/@moneyphotos?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"],"image":["https://images.ecency.com/DQmdaJ7DcsnGpNGrwyAvD9huk52tqj2R7wzKqXHvNKetHZR/hive_auth_client_hac.jpg","https://images.ecency.com/DQmUYxCCyWzPd1VbNcAwmtsnyrdXTMn1C6ytRju8abMjYpp/screenshot_2022_01_20_031705.jpg"],"thumbnails":["https://images.ecency.com/DQmdaJ7DcsnGpNGrwyAvD9huk52tqj2R7wzKqXHvNKetHZR/hive_auth_client_hac.jpg","https://images.ecency.com/DQmUYxCCyWzPd1VbNcAwmtsnyrdXTMn1C6ytRju8abMjYpp/screenshot_2022_01_20_031705.jpg"],"users":["arcange","stoodkev","mintrawa","Component"],"tags":["hive-139531","hive","blockchain","dev","development","programming","typescript","angular","javascript","hivedevs"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-19 21:51:00 |
last_update | 2022-01-19 21:51:00 |
depth | 0 |
children | 28 |
last_payout | 2022-01-26 21:51:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 305.372 HBD |
curator_payout_value | 305.233 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,698 |
author_reputation | 18,694,802,429,423 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,658,579 |
net_rshares | 563,494,387,514,823 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 190,012,475,718,838 | 100% | ||
alpha | 0 | 39,543,402,727,332 | 30% | ||
acidyo | 0 | 10,550,594,986,425 | 100% | ||
mammasitta | 0 | 2,191,118,586 | 0.6% | ||
roelandp | 0 | 941,114,848,379 | 25% | ||
ausbitbank | 0 | 917,575,681,950 | 100% | ||
renovatio | 0 | 14,639,450,531 | 100% | ||
arcange | 0 | 210,313,500,920 | 2% | ||
demotruk | 0 | 405,836,948,745 | 100% | ||
raphaelle | 0 | 2,390,873,180 | 2% | ||
kryptik | 0 | 10,777,618,747 | 100% | ||
borran | 0 | 740,958,315,282 | 81% | ||
frankbacon | 0 | 74,701,781,239 | 100% | ||
theb0red1 | 0 | 62,943,522,163 | 20% | ||
lemouth | 0 | 2,222,531,494,492 | 100% | ||
kommienezuspadt | 0 | 3,932,316,982,265 | 100% | ||
titusfrost | 0 | 129,547,761,317 | 100% | ||
appalachain | 0 | 42,224,547,378 | 100% | ||
myklovenotwar | 0 | 11,846,484,692 | 100% | ||
ssekulji | 0 | 34,970,258,318 | 100% | ||
dylanhobalart | 0 | 87,070,942,846 | 21% | ||
nonameslefttouse | 0 | 2,636,919,606,215 | 100% | ||
breezin | 0 | 36,614,585,280 | 100% | ||
walterjay | 0 | 255,541,531,047 | 17.5% | ||
v4vapid | 0 | 6,894,542,167,249 | 45% | ||
automaton | 0 | 2,666,392,442 | 100% | ||
davidgermano | 0 | 10,325,706,677 | 100% | ||
steemitboard | 0 | 10,142,694,208 | 2% | ||
hattaarshavin | 0 | 179,890,373,011 | 100% | ||
teammo | 0 | 109,053,833,308 | 100% | ||
ranchorelaxo | 0 | 48,802,326,443,819 | 100% | ||
btu | 0 | 35,542,474,998 | 1% | ||
trafalgar | 0 | 10,180,555,977,958 | 26% | ||
louisthomas | 0 | 101,618,131,373 | 100% | ||
itinerantph | 0 | 1,046,001,631 | 50% | ||
freebornsociety | 0 | -1,103,263,832 | -8% | ||
elevator09 | 0 | 18,341,018,572 | 100% | ||
dickturpin | 0 | 16,801,395,944 | 50% | ||
lizanomadsoul | 0 | 5,251,672,671 | 4% | ||
raindrop | 0 | 167,047,237,437 | 26% | ||
ocisly | 0 | 11,213,567,718 | 100% | ||
imperfect-one | 0 | 2,704,823,093 | 100% | ||
lugaxker | 0 | 864,390,148 | 25.98% | ||
mes | 0 | 254,397,567,622 | 50% | ||
roomservice | 0 | 51,387,708,092 | 75% | ||
kennyroy | 0 | 4,359,294,357 | 100% | ||
drag33 | 0 | 4,175,747,730 | 100% | ||
trumpikas | 0 | 22,655,669,228 | 80% | ||
masterthematrix | 0 | 14,913,966,002 | 100% | ||
aditor | 0 | 5,515,258,225 | 100% | ||
bitcoinflood | 0 | 418,039,452,189 | 24.4% | ||
steeminator3000 | 0 | 784,649,488 | 100% | ||
sam99 | 0 | 27,119,343,918 | 21% | ||
joeyarnoldvn | 0 | 570,148,063 | 1.68% | ||
ufv | 0 | 3,280,330,805 | 50% | ||
tipy | 0 | 5,547,006,559 | 100% | ||
kaminchan | 0 | 21,834,328,614 | 24% | ||
haejin | 0 | 12,980,470,280,424 | 100% | ||
loonatic | 0 | 21,753,777,098 | 100% | ||
nicniezgrublem | 0 | 29,902,722,015 | 100% | ||
themarkymark | 0 | 3,215,252,616,154 | 10% | ||
ralph-rennoldson | 0 | 785,537,121 | 100% | ||
vikisecrets | 0 | 496,467,281,962 | 30% | ||
isabelpena | 0 | 19,829,944,002 | 100% | ||
zonguin | 0 | 2,210,904,118 | 17.5% | ||
pocketrocket | 0 | 17,635,707,937 | 100% | ||
steemik | 0 | 951,416,441,146 | 100% | ||
francosteemvotes | 0 | 7,943,612,221 | 35% | ||
jasonbu | 0 | 826,466,019 | 1% | ||
santigs | 0 | 36,544,316,639 | 76% | ||
stoodkev | 0 | 7,638,880,803,786 | 100% | ||
evildido | 0 | 2,051,307,246 | 17.5% | ||
buildawhale | 0 | 6,461,194,206,569 | 10% | ||
aidefr | 0 | 7,065,247,641 | 26.25% | ||
cconn | 0 | 9,209,652,459 | 100% | ||
chinchilla | 0 | 274,521,235,550 | 100% | ||
tomwafula | 0 | 3,110,049,535 | 100% | ||
therealwolf | 0 | 3,170,881,368,423 | 100% | ||
jaichai | 0 | 2,196,443,767 | 100% | ||
makerhacks | 0 | 18,452,356,829 | 10% | ||
krevasilis | 0 | 6,239,008,211 | 100% | ||
x30 | 0 | 573,467,611,449 | 10% | ||
spacesheep | 0 | 4,809,675,269 | 100% | ||
arabisouri | 0 | 266,726,063,135 | 100% | ||
noble-noah | 0 | 16,378,586,494 | 100% | ||
baloox | 0 | 1,758,907,220 | 5.25% | ||
dbddv01 | 0 | 1,673,049,912 | 17.5% | ||
smartsteem | 0 | 5,129,070,627,888 | 100% | ||
travoved | 0 | 2,157,139,838 | 100% | ||
traf | 0 | 896,167,887,926 | 26% | ||
ocupation | 0 | 518,640,581,153 | 100% | ||
sgt-dan | 0 | 65,979,705,804 | 50% | ||
rcshad0w | 0 | 45,390,437,141 | 100% | ||
fjcalduch | 0 | 296,222,020,585 | 100% | ||
robotics101 | 0 | 3,961,790,441 | 35% | ||
lpv | 0 | 2,271,162,156 | 6.56% | ||
statorcrime | 0 | 1,179,266,421 | 17.5% | ||
spiritabsolute | 0 | 34,384,106,534 | 100% | ||
tomatom | 0 | 9,886,265,385 | 50% | ||
peter.goki | 0 | 12,722,378,101 | 100% | ||
upmyvote | 0 | 2,794,743,749 | 10% | ||
duke77 | 0 | 4,005,331,503 | 25% | ||
dechastre | 0 | 991,530,307 | 25% | ||
bloorinvestor | 0 | 3,182,206,846 | 100% | ||
gabrielatravels | 0 | 77,004,204,529 | 50% | ||
blocktrades.com | 0 | 83,177,432,217,312 | 100% | ||
santarius | 0 | 555,223,679 | 100% | ||
criptomaster | 0 | 2,085,844,615 | 100% | ||
ldsklee | 0 | 55,292,397,593 | 100% | ||
manncpt | 0 | 3,877,276,579 | 4% | ||
xak | 0 | 5,974,417,166 | 100% | ||
auracraft | 0 | 3,760,620,381 | 100% | ||
jarvie | 0 | 1,703,573,301,983 | 75% | ||
jnmarteau | 0 | 1,060,000,142 | 4% | ||
a-quarius | 0 | 21,829,583,336 | 15% | ||
thetroublenotes | 0 | 210,517,504,306 | 100% | ||
gribouille | 0 | 1,178,258,512 | 26.25% | ||
fieryfootprints | 0 | 18,069,448,103 | 40% | ||
tobias-g | 0 | 521,394,431 | 7.5% | ||
minnowvotes | 0 | 282,504,781,143 | 100% | ||
minerspost | 0 | 2,205,310,418 | 50% | ||
mgzayyar | 0 | 5,862,220,358 | 100% | ||
darkpylon | 0 | 2,974,252,729 | 100% | ||
karancd | 0 | 0 | 100% | ||
barge | 0 | 197,665,348,905 | 100% | ||
elektr1ker | 0 | 2,286,129,866 | 50% | ||
asgarth | 0 | 1,161,049,088,340 | 96% | ||
almi | 0 | 106,343,646,200 | 25% | ||
didutza | 0 | 798,332,952 | 50% | ||
josemalavem | 0 | 57,100,905,079 | 70% | ||
krasnec | 0 | 48,380,774,609 | 100% | ||
silverd510 | 0 | 9,516,489,206 | 100% | ||
manniman | 0 | 68,855,192,028 | 11% | ||
sekhet | 0 | 474,097,567 | 100% | ||
gamerkampreto59 | 0 | 441,914,229 | 100% | ||
ablaze | 0 | 51,309,959,190 | 100% | ||
memepress | 0 | 1,598,661,746 | 50% | ||
geadriana | 0 | 39,391,613,412 | 100% | ||
imcore | 0 | 1,024,526,772 | 10% | ||
gogreenbuddy | 0 | 76,160,513,273 | 10% | ||
achimmertens | 0 | 2,522,813,991 | 1% | ||
kgakakillerg | 0 | 16,707,789,357 | 10% | ||
santarius2 | 0 | 803,753,048 | 100% | ||
globalschool | 0 | 1,909,034,708 | 2% | ||
promobot | 0 | 1,126,811,740 | 9% | ||
cesaramos | 0 | 83,101,616,149 | 100% | ||
fw206 | 0 | 2,433,257,664,958 | 100% | ||
atanas007 | 0 | 2,172,458,021 | 100% | ||
davidesimoncini | 0 | 9,781,968,704 | 30.3% | ||
sk1920 | 0 | 31,112,544,223 | 100% | ||
angatt | 0 | 3,578,827,347 | 50% | ||
worldwildflora | 0 | 984,026,575 | 50% | ||
kstop1 | 0 | 31,829,560,745 | 100% | ||
numasi | 0 | 2,236,818,132 | 100% | ||
drsensor | 0 | 2,209,016,653 | 80% | ||
revueh | 0 | 1,553,601,458 | 35% | ||
nazomimatute1998 | 0 | 1,494,051,143 | 100% | ||
sarunya | 0 | 22,683,090,773 | 100% | ||
zaibkang | 0 | 5,794,848,673 | 100% | ||
steinz | 0 | 895,047,405 | 59% | ||
akioexzgamer | 0 | 13,257,115,456 | 100% | ||
surachai | 0 | 22,598,876,635 | 100% | ||
mobi72 | 0 | 20,489,218,751 | 100% | ||
engrave | 0 | 2,187,671,985,172 | 100% | ||
pboulet | 0 | 29,031,749,653 | 35% | ||
starstrings01 | 0 | 128,066,500,670 | 30.7% | ||
teerawith | 0 | 21,555,208,340 | 100% | ||
palasatenea | 0 | 58,572,657,449 | 100% | ||
mister-meeseeks | 0 | 44,756,031,179 | 50% | ||
bntcamelo | 0 | 11,338,714,419 | 100% | ||
naty16 | 0 | 1,034,895,699 | 3.07% | ||
thevil | 0 | 487,271,973,111 | 50% | ||
merlin7 | 0 | 248,421,507,159 | 100% | ||
thrasher666 | 0 | 2,035,618,673 | 60% | ||
gameeit | 0 | 625,486,213 | 100% | ||
solarphasing | 0 | 578,897,141 | 17.5% | ||
theycallmedan | 0 | 75,207,499,750,450 | 100% | ||
khan.dayyanz | 0 | 133,132,251,112 | 100% | ||
bluerobo | 0 | 91,751,983,596 | 100% | ||
jacuzzi | 0 | 319,452,930,019 | 100% | ||
vaultec | 0 | 51,780,065,767 | 100% | ||
primeradue | 0 | 4,290,781,801 | 45% | ||
smonkstop1 | 0 | 3,386,468,042 | 100% | ||
nataya | 0 | 22,593,250,333 | 100% | ||
janyasai | 0 | 12,981,525,778 | 35% | ||
kharma.scribbles | 0 | 797,338,151 | 75% | ||
zeero22 | 0 | 4,802,671,643 | 100% | ||
photographercr | 0 | 28,841,108,828 | 15% | ||
epicdice | 0 | 27,129,262,159 | 30% | ||
iamsaray | 0 | 60,089,106,765 | 100% | ||
minigame | 0 | 342,826,427,188 | 100% | ||
onespringday | 0 | 598,327,829 | 100% | ||
likwid | 0 | 1,785,989,481 | 9% | ||
vancouverdining | 0 | 5,276,014,544,200 | 100% | ||
victoriaxl | 0 | 6,363,463,718 | 100% | ||
kgswallet | 0 | 3,334,790,420 | 50% | ||
lrekt01 | 0 | 4,569,519,882 | 80% | ||
empoderat | 0 | 2,282,464,888,360 | 100% | ||
soyunasantacruz | 0 | 54,511,587,702 | 100% | ||
logiczombie | 0 | 0 | -1% | ||
breezy3714 | 0 | 3,108,369,195 | 100% | ||
urun | 0 | 131,853,051,506 | 100% | ||
icetea | 0 | 2,800,136,878 | 60% | ||
mattsanthonyit | 0 | 25,428,639,564 | 100% | ||
fixie | 0 | 75,491,822,738 | 100% | ||
bilpcoinrecords | 0 | 2,728,388,872 | 50% | ||
bilpcoin.pay | 0 | 517,946,640 | 10% | ||
moon333 | 0 | 1,366,937,846 | 100% | ||
lachg89 | 0 | 19,599,663,706 | 100% | ||
kgsupport | 0 | 2,313,505,749 | 50% | ||
julesquirin | 0 | 648,867,984 | 5.2% | ||
ugochill | 0 | 2,291,974,184 | 100% | ||
curamax | 0 | 4,523,805,998 | 100% | ||
yunnie | 0 | 1,726,403,177 | 100% | ||
hive-153476 | 0 | 33,459,321,349 | 100% | ||
darine.darine | 0 | 132,716,675,312 | 100% | ||
fengchao | 0 | 8,138,586,620 | 2% | ||
hivebuzz | 0 | 8,447,277,848 | 4% | ||
blue-witness | 0 | 2,230,105,415 | 100% | ||
hivetrending | 0 | 25,812,114,288 | 100% | ||
laruche | 0 | 1,522,166,446,463 | 35% | ||
ykretz | 0 | 1,520,580,828 | 3.5% | ||
master-lamps | 0 | 17,291,032,557 | 100% | ||
softworld | 0 | 263,419,692,243 | 78% | ||
alther | 0 | 145,827,285 | 100% | ||
kyleana | 0 | 1,412,323,264 | 50% | ||
hiveonboard | 0 | 227,352,330,459 | 75% | ||
ogre-radio | 0 | 566,368,159,259 | 100% | ||
ninnu | 0 | 225,180,173,422 | 50% | ||
ghaazi | 0 | 5,029,918,918 | 100% | ||
iamdanny | 0 | 1,803,833,440 | 100% | ||
danishcrypto | 0 | 1,606,782,507 | 43.2% | ||
patronpass | 0 | 6,781,815,141 | 100% | ||
greengalletti | 0 | 44,636,505,973 | 100% | ||
damadama | 0 | 1,634,403,316 | 100% | ||
patagonica | 0 | 41,331,749,496 | 100% | ||
plusvault | 0 | 2,102,355,878 | 100% | ||
olaunlimited | 0 | 17,176,593,830 | 11.7% | ||
udoger | 0 | 127,230,621,271 | 100% | ||
zhoten | 0 | 61,839,794,569 | 100% | ||
reward.app | 0 | 42,320,657,339 | 10% | ||
koxmicart | 0 | 13,252,661,885 | 100% | ||
recoveryinc | 0 | 2,715,301,486 | 5% | ||
aamizone | 0 | 0 | 100% | ||
cubanresearch | 0 | 3,123,985,524 | 50% | ||
sevenoh-fiveoh | 0 | 991,049,452 | 5% | ||
tripode | 0 | 99,732,576,801 | 30.7% | ||
cccoinx.voter | 0 | 807,771,686 | 50% | ||
dying | 0 | 1,505,060,739 | 5% | ||
vermarys | 0 | 9,966,302,550 | 100% | ||
aabcent | 0 | 160,809,589,474 | 100% | ||
sshila | 0 | 2,397,456,342 | 100% | ||
usainvote | 0 | 9,158,771,703,494 | 50% | ||
dama52 | 0 | 424,621,202 | 100% | ||
arrrds | 0 | 1,086,529,614 | 50% | ||
trangbaby | 0 | 119,474,482,814 | 100% | ||
diecinueve | 0 | 273,641,562 | 100% | ||
mrhuman88 | 0 | 97,290,766 | 50% | ||
mismo | 0 | 3,703,613,624 | 100% | ||
lowlightart | 0 | 1,230,547,266 | 40% | ||
kattycrochet | 0 | 20,366,658,136 | 50% | ||
alex-rourke | 0 | 5,608,914,964 | 100% | ||
psicologiaexpres | 0 | 7,718,362,468 | 30% | ||
blukei | 0 | 1,344,034,351 | 15.35% | ||
edwing357 | 0 | 17,834,165,284 | 50% | ||
godfather.ftw | 0 | 4,155,332,640 | 100% | ||
potpourry | 0 | 1,113,670,145 | 30% | ||
mundo.curioso | 0 | 394,260,653 | 100% | ||
rollsman1 | 0 | 0 | 100% | ||
babeltrips | 0 | 16,602,019,250 | 50% | ||
samrisso | 0 | 3,174,638,252 | 5% | ||
trostparadox | 0 | 8,626,884,485,000 | 100% | ||
bosco56 | 0 | 11,392,769,687 | 100% | ||
sofs-su | 0 | 46,859,976,145 | 46.8% | ||
bananass | 0 | 4,032,938,056 | 10% | ||
xyba | 0 | 45,401,176,444 | 100% | ||
zdigital222 | 0 | 132,715,243 | 82% | ||
arunbiju969 | 0 | 2,303,595,914 | 14% | ||
shemanto72 | 0 | 12,918,710,349 | 100% | ||
kooza | 0 | 2,901,071,364 | 50% | ||
cowboyphylosophy | 0 | 6,800,492,143 | 100% | ||
maylenasland | 0 | 855,184,133 | 15.35% | ||
hasted | 0 | 63,208,308 | 100% | ||
wend1go | 0 | 40,144,806,388 | 100% | ||
antonym | 0 | 3,312,425,461 | 100% | ||
creodas | 0 | 2,129,179,947 | 75% | ||
asuk4 | 0 | 1,773,522,025 | 100% | ||
rendrianarma | 0 | 1,532,844,355 | 50% | ||
phuongthao98 | 0 | 2,031,069,778 | 50% | ||
leveluplifestyle | 0 | 23,751,050,802 | 50% | ||
heskay | 0 | 11,825,438,631 | 50% | ||
auliaarma | 0 | 1,730,998,620 | 50% | ||
pablodare | 0 | 2,903,655,322 | 20% | ||
dendendenden | 0 | 70,420,783,565 | 100% | ||
thaolaven | 0 | 622,862,443 | 50% | ||
estheffcr | 0 | 5,217,818,838 | 100% | ||
krrizjos18 | 0 | 4,392,770,846 | 50% | ||
twicejoy | 0 | 1,128,675,029 | 50% | ||
sodom-lv | 0 | 2,829,254,964 | 100% | ||
davidbright | 0 | 4,646,099,602 | 50% | ||
slckrck40 | 0 | 108,750,688 | 100% | ||
joeth | 0 | 7,221,597,942 | 100% | ||
kuzuri27 | 0 | 8,078,569,723 | 50% | ||
manh20 | 0 | 344,588,203 | 100% | ||
apeminingclub | 0 | 41,915,155,658 | 10% | ||
nyaksaif | 0 | 0 | 100% | ||
raqraq | 0 | 1,008,751,326 | 100% | ||
ihsanushshabri | 0 | 0 | 100% | ||
chobro | 0 | 2,081,710,091 | 100% | ||
olympicdragon | 0 | 928,785,717 | 100% | ||
suralart | 0 | 4,347,143,695 | 100% | ||
subidu | 0 | 2,613,291,025 | 100% | ||
iamleicester | 0 | 515,304,417 | 80% | ||
senju1 | 0 | 12,585,645,293 | 100% | ||
seed-treasury | 0 | 3,053,421,265 | 100% | ||
tanzil2024 | 0 | 765,534,598 | 100% | ||
cryptonumbers | 0 | 515,672,458 | 100% | ||
mosin-nagant | 0 | 3,630,165,141 | 100% | ||
vrezyy | 0 | 2,531,172,726 | 100% | ||
trasto | 0 | 54,867,069,818 | 50% | ||
kimloan | 0 | 6,818,985,175 | 50% | ||
cryptokungfu | 0 | 6,839,760,132 | 100% | ||
winnietran | 0 | 4,078,809,424 | 50% | ||
oluwasamlex1 | 0 | 1,139,725,674 | 100% | ||
samyandy | 0 | 3,033,781,337 | 100% | ||
dsky | 0 | 74,306,579,519 | 100% | ||
jordand89 | 0 | 74,338,960,327 | 100% | ||
madame.fondue | 0 | 4,272,407,883 | 100% | ||
colm.hive | 0 | 1,527,529,786 | 100% | ||
tyrnis.curation | 0 | 508,318,256 | 50% | ||
shoumik31 | 0 | 16,062,043,606 | 100% | ||
som3li3r | 0 | 635,972,478 | 100% | ||
mcookies | 0 | 829,712,697 | 50% | ||
photonium | 0 | 1,334,334,923 | 100% | ||
abeerhunter | 0 | 3,088,629,784 | 18% | ||
chaosmagic23 | 0 | 3,188,090,610 | 100% | ||
bananofarmer | 0 | 2,233,211,553 | 100% | ||
baibuaza | 0 | 9,727,259,910 | 100% | ||
kriang3teejoe | 0 | 19,191,243,134 | 100% | ||
nicolasbernada | 0 | 992,348,618 | 100% | ||
sunnyvo | 0 | 9,071,545,960 | 50% | ||
dono1307 | 0 | 607,083,762 | 35% | ||
abh12345.waivio | 0 | 1,807,957,064 | 100% | ||
ehizgabriel | 0 | 2,553,502,363 | 100% | ||
cryptobeautiful | 0 | 1,817,554,448 | 100% | ||
methodofmad | 0 | 7,686,891,316 | 100% | ||
aioflureedb | 0 | 3,728,033,061 | 100% | ||
susurrodmisterio | 0 | 18,235,465 | 11.2% | ||
ruthh09 | 0 | 1,111,533,817 | 100% | ||
trollvictor | 0 | 349,537,114 | 100% | ||
lamphuong | 0 | 1,738,171,865 | 50% | ||
cashcowprotocol | 0 | 591,250,442 | 100% | ||
femcy-willcy | 0 | 1,858,207,888 | 31% | ||
luisciber | 0 | 0 | 100% | ||
osmy91 | 0 | 544,342,696 | 100% | ||
santacruz.sports | 0 | 2,133,010,174 | 100% | ||
jeryco | 0 | 0 | 100% | ||
farzam1f | 0 | 0 | 100% | ||
gormiot | 0 | 0 | 100% | ||
be-alysha | 0 | 3,267,775,952 | 100% | ||
claraxmas | 0 | 586,093,001 | 50% | ||
giovannixmas | 0 | 586,092,991 | 50% | ||
tecnologgamer | 0 | 231,165,933 | 100% | ||
cdm.ano | 0 | 1,190,781,150 | 19% | ||
nkechi | 0 | 441,200,249 | 37% | ||
gavimaye12 | 0 | 1,434,139,578 | 100% | ||
taniqnam | 0 | 781,651,790 | 100% | ||
kingofarmy | 0 | 434,270,838 | 100% | ||
eyesthewriter | 0 | 444,052,173 | 100% | ||
mkolrf | 0 | 225,483,414 | 100% | ||
sven26 | 0 | 0 | 100% | ||
yugpreetsingh | 0 | 266,478,037 | 100% | ||
jeancargg | 0 | 140,002,470 | 100% | ||
zoelle | 0 | 0 | 100% |
Excellent and a nice walk through the code too and shout outs to stoodkev and arcange π
author | ablaze |
---|---|
permlink | r616x5 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-01-20 23:08:00 |
last_update | 2022-01-20 23:08:00 |
depth | 1 |
children | 1 |
last_payout | 2022-01-27 23:08:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 496,748,938,487,640 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,701,933 |
net_rshares | 66,040,941,161 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mintrawa | 0 | 66,040,941,161 | 30% |
Thanks a lot for your comment
author | mintrawa |
---|---|
permlink | re-ablaze-2022121t142516990z |
category | hive-139531 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-21 07:25:18 |
last_update | 2022-01-21 07:25:18 |
depth | 2 |
children | 0 |
last_payout | 2022-01-28 07:25: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 | 29 |
author_reputation | 18,694,802,429,423 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,713,550 |
net_rshares | 18,082,804,885 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ablaze | 0 | 18,082,804,885 | 30% |
Outstanding, and a great walkthrough too.
author | allama |
---|---|
permlink | re-mintrawa-r6m809 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2022.01.2"} |
created | 2022-02-01 07:41:00 |
last_update | 2022-02-01 07:41:00 |
depth | 1 |
children | 0 |
last_payout | 2022-02-08 07:41: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 | 41 |
author_reputation | 437,083,684,635,033 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,036,657 |
net_rshares | 0 |
What is the difference between HAC and Hive signer?
author | be-alysha |
---|---|
permlink | re-mintrawa-r6208t |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2021.12.1"} |
created | 2022-01-21 09:41:18 |
last_update | 2022-01-21 09:41:18 |
depth | 1 |
children | 1 |
last_payout | 2022-01-28 09:41: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 | 52 |
author_reputation | 22,418,512,459,506 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,716,153 |
net_rshares | 0 |
In HiveSigner, you have to give your private keys, which means that your private keys are stored in a database on the HiveSigner server (which makes them vulnerable to being hacked or leaked). With the HAS protocol or Keychain browser extension, it's your device that performs the transaction with the HIVE blockchain, which means that your private keys never leave your device and will never be shared with an application.
author | mintrawa |
---|---|
permlink | re-be-alysha-2022121t191559284z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-21 12:16:00 |
last_update | 2022-01-21 12:16:00 |
depth | 2 |
children | 0 |
last_payout | 2022-01-28 12:16: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 | 423 |
author_reputation | 18,694,802,429,423 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,719,166 |
net_rshares | 3,061,825,480 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chaosmagic23 | 0 | 3,061,825,480 | 100% |
Next time post in English for the rest of us, please.
author | drutter |
---|---|
permlink | r620c3 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-01-21 09:43:24 |
last_update | 2022-01-21 09:43:24 |
depth | 1 |
children | 0 |
last_payout | 2022-01-28 09:43:24 |
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 | 53 |
author_reputation | 195,816,837,999,321 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,716,194 |
net_rshares | 0 |
Congratulations @mintrawa! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s): <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@mintrawa/upvotes.png?202201190332"></td><td>You distributed more than 15000 upvotes.<br>Your next target is to reach 16000 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@mintrawa) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! **Check out the last post from @hivebuzz:** <table><tr><td><a href="/hivebuzz/@hivebuzz/pum-202201-18"><img src="https://images.hive.blog/64x128/https://i.imgur.com/RdBX3H6.png"></a></td><td><a href="/hivebuzz/@hivebuzz/pum-202201-18">Hive Power Up Month - Feedback from day 18</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-mintrawa-20220119t221533 |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-01-19 22:15:33 |
last_update | 2022-01-19 22:15:33 |
depth | 1 |
children | 0 |
last_payout | 2022-01-26 22:15: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 | 983 |
author_reputation | 369,393,292,813,518 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,659,601 |
net_rshares | 0 |
Congratulations @mintrawa! Your post has been a top performer on the Hive blockchain and you have been rewarded with the following badge: <table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutweek.png"></td><td>Post with the highest payout of the week.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@mintrawa) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Check out the last post from @hivebuzz:** <table><tr><td><a href="/hivebuzz/@hivebuzz/pum-202201-22"><img src="https://images.hive.blog/64x128/https://i.imgur.com/nSxk3aq.png"></a></td><td><a href="/hivebuzz/@hivebuzz/pum-202201-22">Hive Power Up Month - Feedback from day 22</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-mintrawa-20220124t012552 |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-01-24 01:25:54 |
last_update | 2022-01-24 01:25:54 |
depth | 1 |
children | 0 |
last_payout | 2022-01-31 01:25:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.137 HBD |
curator_payout_value | 0.138 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 879 |
author_reputation | 369,393,292,813,518 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,795,379 |
net_rshares | 226,642,973,833 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mintrawa | 0 | 226,642,973,833 | 100% |
Thank you for this information wish you all the best
author | manh20 |
---|---|
permlink | re-mintrawa-2022120t221324742z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","dev","development","programming","typescript","angular","javascript","hivedevs"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-20 15:13:27 |
last_update | 2022-01-20 15:13:27 |
depth | 1 |
children | 1 |
last_payout | 2022-01-27 15:13: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 | 52 |
author_reputation | 205,006,431,841 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,690,649 |
net_rshares | -435,858,485,739 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drutter | 0 | -435,858,485,739 | -100% |
Thank you for your support
author | mintrawa |
---|---|
permlink | re-manh20-2022121t141254430z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","dev","development","programming","typescript","angular","javascript","hivedevs"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-21 07:12:54 |
last_update | 2022-01-21 07:12:54 |
depth | 2 |
children | 0 |
last_payout | 2022-01-28 07:12:54 |
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 | 26 |
author_reputation | 18,694,802,429,423 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,713,374 |
net_rshares | 0 |
HAC-K Nice!
author | manniman |
---|---|
permlink | re-mintrawa-r5zh8g |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2021.12.1"} |
created | 2022-01-20 00:55:27 |
last_update | 2022-01-20 00:55:27 |
depth | 1 |
children | 3 |
last_payout | 2022-01-27 00:55: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 | 11 |
author_reputation | 77,790,724,868,389 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,663,225 |
net_rshares | 0 |
Hahaha thanks π
author | mintrawa |
---|---|
permlink | re-manniman-2022120t171437128z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-20 10:14:39 |
last_update | 2022-01-20 10:14:39 |
depth | 2 |
children | 2 |
last_payout | 2022-01-27 10:14:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.017 HBD |
curator_payout_value | 0.017 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 18,694,802,429,423 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,682,859 |
net_rshares | 32,609,630,613 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
manniman | 0 | 32,609,630,613 | 5% |
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @mintrawa, here is a little bit of <code>BEER</code> from @manniman for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-mintrawa-re-manniman-2022120t171437128z-20220120t102323813z |
category | hive-139531 |
json_metadata | {"app":"beerlover/2.0"} |
created | 2022-01-20 10:23:24 |
last_update | 2022-01-20 10:23:24 |
depth | 3 |
children | 0 |
last_payout | 2022-01-27 10:23:24 |
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 | 25,787,219,315,076 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,683,266 |
net_rshares | 0 |
:) cheers to you !BEER
author | manniman |
---|---|
permlink | re-mintrawa-r607h3 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2021.12.1"} |
created | 2022-01-20 10:22:15 |
last_update | 2022-01-20 10:22:15 |
depth | 3 |
children | 0 |
last_payout | 2022-01-27 10:22:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.057 HBD |
curator_payout_value | 0.054 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 77,790,724,868,389 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,683,219 |
net_rshares | 105,425,546,617 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
imtase | 0 | 1,046,459,795 | 20% | ||
french-tech | 0 | 48,688,219,445 | 20% | ||
ten-years-before | 0 | 218,709,501 | 20% | ||
mintrawa | 0 | 43,533,932,849 | 20% | ||
mcedric | 0 | 11,938,225,027 | 20% |
@cryptocharmers in case you need it for an upcoming project
author | methodofmad |
---|---|
permlink | re-mintrawa-r632x9 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2021.12.1"} |
created | 2022-01-21 23:36:51 |
last_update | 2022-01-21 23:36:51 |
depth | 1 |
children | 0 |
last_payout | 2022-01-28 23:36:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.182 HBD |
curator_payout_value | 0.180 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 14,840,828,149,748 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,734,861 |
net_rshares | 319,562,243,619 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
imtase | 0 | 3,259,316,978 | 60% | ||
french-tech | 0 | 147,082,074,460 | 60% | ||
ten-years-before | 0 | 761,019,380 | 60% | ||
mintrawa | 0 | 132,319,897,666 | 60% | ||
mcedric | 0 | 36,139,935,135 | 60% |
Way above my brain's natural position but, surely, it does give an angle to think about or have fueled light in some of the boxes in my brain.
author | mobi72 |
---|---|
permlink | re-mintrawa-r604nw |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2021.12.1"} |
created | 2022-01-20 09:22:36 |
last_update | 2022-01-20 09:22:36 |
depth | 1 |
children | 1 |
last_payout | 2022-01-27 09:22: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 | 142 |
author_reputation | 49,948,507,174,693 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,681,404 |
net_rshares | 0 |
Thanks for your comment π
author | mintrawa |
---|---|
permlink | re-mobi72-2022120t17153514z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-20 10:15:36 |
last_update | 2022-01-20 10:15:36 |
depth | 2 |
children | 0 |
last_payout | 2022-01-27 10:15: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 | 25 |
author_reputation | 18,694,802,429,423 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,682,977 |
net_rshares | 0 |
cool post
author | nicolasbernada | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | r60u6o | ||||||||||||
category | hive-139531 | ||||||||||||
json_metadata | {"app":"hiveblog/0.1"} | ||||||||||||
created | 2022-01-20 18:32:51 | ||||||||||||
last_update | 2022-01-20 18:32:51 | ||||||||||||
depth | 1 | ||||||||||||
children | 0 | ||||||||||||
last_payout | 2022-01-27 18:32: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 | 9 | ||||||||||||
author_reputation | 782,528,205,098 | ||||||||||||
root_title | "Hive Authentication Client (HAC)" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 109,695,730 | ||||||||||||
net_rshares | -429,256,288,465 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drutter | 0 | -429,256,288,465 | -100% |
Thanks for the information.
author | nkechi |
---|---|
permlink | re-mintrawa-r602te |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2021.12.1"} |
created | 2022-01-20 08:41:39 |
last_update | 2022-01-20 08:41:39 |
depth | 1 |
children | 1 |
last_payout | 2022-01-27 08:41: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 | 28 |
author_reputation | 6,183,721,709,496 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,680,431 |
net_rshares | 0 |
You're welcome
author | mintrawa |
---|---|
permlink | re-nkechi-2022120t171454696z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-20 10:14:57 |
last_update | 2022-01-20 10:14:57 |
depth | 2 |
children | 0 |
last_payout | 2022-01-27 10:14: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 | 14 |
author_reputation | 18,694,802,429,423 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,682,902 |
net_rshares | 0 |
@mintrawa I think the **HAC** was created to simply so many process requirements when interacting with the HIVE community.. but considering the fact that it's passwordless, what are the level of security check out in place to avoid scammer bridging.? Considering the fact I have not experiment the usability. Hoping to learn more about how it works in your next post..
author | oluwasamlex1 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | r60y2m | ||||||||||||
category | hive-139531 | ||||||||||||
json_metadata | {"users":["mintrawa"],"app":"hiveblog/0.1"} | ||||||||||||
created | 2022-01-20 19:56:57 | ||||||||||||
last_update | 2022-01-20 19:56:57 | ||||||||||||
depth | 1 | ||||||||||||
children | 2 | ||||||||||||
last_payout | 2022-01-27 19:56: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 | 369 | ||||||||||||
author_reputation | 213,669,295,658 | ||||||||||||
root_title | "Hive Authentication Client (HAC)" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 109,697,838 | ||||||||||||
net_rshares | 0 |
The advantage of passwordless is that the validation is done directly from the wallet supporting the HAS protocol. Thus, the keys are never communicated, preventing the application used to retrieve them ant to being leaked after that. Moreover, the initialization is done by scanning a QRcode from the wallet (or in the case of an application on a smartphone a direct communication with the wallet) allowing to create the future encrypted exchange between application and wallet. The system thus prevents any man-in-the-middle attack since only the application and the wallet can encode and decode the messages they send each other.
author | mintrawa |
---|---|
permlink | re-oluwasamlex1-2022121t142417979z |
category | hive-139531 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-21 07:24:18 |
last_update | 2022-01-21 07:24:18 |
depth | 2 |
children | 1 |
last_payout | 2022-01-28 07:24:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 634 |
author_reputation | 18,694,802,429,423 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,713,529 |
net_rshares | 20,795,572,203 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hectgranate | 0 | 17,670,789,539 | 100% | ||
chaosmagic23 | 0 | 3,124,782,664 | 100% |
Amazing very secure I see.... Still research on a personal note
author | oluwasamlex1 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | r62e95 | ||||||||||||
category | hive-139531 | ||||||||||||
json_metadata | {"app":"hiveblog/0.1"} | ||||||||||||
created | 2022-01-21 14:43:57 | ||||||||||||
last_update | 2022-01-21 14:43:57 | ||||||||||||
depth | 3 | ||||||||||||
children | 0 | ||||||||||||
last_payout | 2022-01-28 14:43: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 | 63 | ||||||||||||
author_reputation | 213,669,295,658 | ||||||||||||
root_title | "Hive Authentication Client (HAC)" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 109,722,611 | ||||||||||||
net_rshares | 0 |
https://twitter.com/wouarfwouarf/status/1483924461422538753 <sub> The rewards earned on this comment will go directly to the person sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
author | poshtoken | ||||||
---|---|---|---|---|---|---|---|
permlink | re-mintrawa-hive-authentication-client-hac15508 | ||||||
category | hive-139531 | ||||||
json_metadata | "{"app":"Poshtoken 0.0.1"}" | ||||||
created | 2022-01-19 22:25:51 | ||||||
last_update | 2022-01-19 22:25:51 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2022-01-26 22:25: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 | 247 | ||||||
author_reputation | 5,413,052,146,199,012 | ||||||
root_title | "Hive Authentication Client (HAC)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 109,660,056 | ||||||
net_rshares | 0 |
Keep it up bro :)
author | yugpreetsingh |
---|---|
permlink | r60w2y |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-01-20 19:13:48 |
last_update | 2022-01-20 19:13:48 |
depth | 2 |
children | 0 |
last_payout | 2022-01-27 19:13:48 |
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 | 17 |
author_reputation | 0 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,696,857 |
net_rshares | 0 |
Please I request for a contribution to help me get started on my webdev journey. Thanks for your timeβ€
author | readforfun |
---|---|
permlink | re-mintrawa-2022122t467603z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","dev","development","programming","typescript","angular","javascript","hivedevs"],"app":"ecency/3.0.23-mobile","format":"markdown+html"} |
created | 2022-01-22 03:06:09 |
last_update | 2022-01-22 03:06:09 |
depth | 1 |
children | 0 |
last_payout | 2022-01-29 03:06: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 | 102 |
author_reputation | 1,542,702,555,369 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,738,708 |
net_rshares | 0 |
lookin good...
author | tobetada |
---|---|
permlink | re-mintrawa-r606fn |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2021.12.1"} |
created | 2022-01-20 09:59:51 |
last_update | 2022-01-20 09:59:51 |
depth | 1 |
children | 1 |
last_payout | 2022-01-27 09:59: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 | 14 |
author_reputation | 597,853,819,316,852 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,682,224 |
net_rshares | 0 |
Thank you
author | mintrawa |
---|---|
permlink | re-tobetada-2022120t171512777z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-20 10:15:15 |
last_update | 2022-01-20 10:15:15 |
depth | 2 |
children | 0 |
last_payout | 2022-01-27 10:15: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 | 9 |
author_reputation | 18,694,802,429,423 |
root_title | "Hive Authentication Client (HAC)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,682,933 |
net_rshares | 0 |