L'algorithme de consensus utilisé par Tendermint, est un algorithme de consensus byzantin. L'avantage de ce dernier est qu'il ne nécessite pas de minage pour apporter une solution au problème des généraux byzantins. Avant de commencer, un peu de vocabulaire. Les participants dans le protocole sont appelés des **validators**. A chaque tour de consensus appelé **round**, un **validator** est choisi selon l'algorithme de *round-robin* pour proposer le prochain bloc. Un **round** est composé de 3 étapes qui prennent chacune 1/3 du temps d'un round : - Propose ✅ - Prevote 🙋♂️ - Precommit 🔒 Il y a par ailleurs 2 phases supplémentaires : Commit and NewRound. ## Propose Un seul est choisi parmi tous les *validators* pour proposer le prochain bloc. Il envoie sa **proposition** de bloc signée à tous ses pairs, qui le relayent à leur tour. * Si le *validator* proposant le bloc est `locked` sur un bloc, il propose ce bloc. Le caractère `locked` d'un bloc est expliqué dans la suite. Structure d'une proposition  Source : https://tendermint.com/static/docs/tendermint.pdf ## Prevote Chaque *validator* vérifie la validité du bloc proposé puis envoie à tous les autres un message **prevote** signé pour le bloc proposé. * S'il n'a reçu aucune **proposition** de bloc, ou si le bloc proposé est invalide, il envoie un message signé `nil` **prevote**. * Si le *validator* est `locked` sur un bloc du **round** précédent, il envoie un **prevote** pour ce bloc. Aucun bloc ne peut être `locked` dans cette étape. ## Precommit Chaque *validator* vérifie les messages **prevote** reçus. * Si le nombre de **prevote** pour un bloc est supérieur à 2/3 du nombre total de noeuds, alors le *validator* envoie un message **precommit** signé à tous et le bloc est `locked` en abandonnant l'ancien bloc `locked`. * Au contraire, si le nombre de `nil` **prevote** est supérieur à 2/3 du nombre total de noeuds, alors le bloc `locked` est `unlocked`. Un seul bloc peut être `locked` à la fois. * Dans tous les 2 cas, les **prevotes** sont rassemblés dans un `proof-of-lock` pour la **proposition** du prochain **round**. * Dans les autres cas, aucun bloc n'est signé ou `locked`. A la fin de cette étape, si les noeuds ont reçu plus de 2/3 de **precommit** pour un bloc, alors on entre dans la phase **commit** ; sinon on recommence à partir de l'étape **propose**. ## Commit Il faut 2 conditions pour finaliser le **round** : - le noeud doit avoir reçu le bloc en question (car on peut entrer dans cette phase sans avoir reçu le bloc à la fin de l'étape **precommit**). Une fois le bloc reçu, un message **commit** est envoyé à tous les autres noeuds avec le bloc signé. - le nombre de **commit** pour ce bloc doit être supérieur à 2/3 du nombre total de noeuds. Dès que ces 2 conditions sont remplies, le noeud affecte au **CommitTime** le temps actuel et passe à la phase **NewRound**. Pour que le consensus soit maintenu, il faut que les horloges de tous les noeuds restent précises pendant toute la durée du consensus. ## NewRound Tant que le consensus sur le bloc proposé n'aboutit pas, il faut réitérer les étapes **propose**, **prevote** et **precommit**. Voici quelques exemples de cas où le consensus ne peut aboutir : - Si le noeud proposant le bloc est déconnecté - Si la connexion réseau est mauvaise, le bloc proposé n'arrive pas à temps - Si le noeud proposant le bloc est malicieux, il peut proposer un bloc invalide - Si le bloc proposé est valide, mais le nombre de **prevote** pour ce bloc est inférieur à 2/3 du nombre total de noeuds ; soit parce que les **prevote** n'ont pas été reçus à temps avant de passer à l'étape **precommit**, soit parce qu'il y a eu assez de *validators* qui n'ont pas voté ou qui ont voté `nil` - Si le bloc proposé est valide, et le nombre de **prevote** pour ce bloc est supérieur à 2/3 du nombre total de noeuds, mais le nombre de **precommit** pour ce bloc est inférieur à 2/3 du nombre total de noeuds ## Conclusion Vue d'ensemble des différentes étapes  Source : https://tendermint.com/static/docs/tendermint.pdf ### Sources - https://medium.com/softblocks/explaining-how-tendermint-consensus-works-433066cbc465 - https://cosmos-network.gitbooks.io/cosmos-academy/content/introduction-to-the-cosmos-ecosystem/tendermint-bft-consensus-algorithm.html - https://tendermint.com/static/docs/tendermint.pdf
author | blackerzx |
---|---|
permlink | tendermint-consensus-algorithm |
category | hive-114606 |
json_metadata | "{"links":["https://tendermint.com/static/docs/tendermint.pdf","https://tendermint.com/static/docs/tendermint.pdf","https://medium.com/softblocks/explaining-how-tendermint-consensus-works-433066cbc465","https://cosmos-network.gitbooks.io/cosmos-academy/content/introduction-to-the-cosmos-ecosystem/tendermint-bft-consensus-algorithm.html","https://tendermint.com/static/docs/tendermint.pdf"],"image":["https://images.ecency.com/DQmR8DRzqLdtGvSmCnNDU3UofFRnyp1HapL7pQR3JnqDmuy/proposition.png","https://images.ecency.com/DQmbEMEQQjWMG5DJdUR9NxBMpCoZGsm253vzVxfj8rkYaAb/schema.png"],"thumbnails":["https://images.ecency.com/DQmR8DRzqLdtGvSmCnNDU3UofFRnyp1HapL7pQR3JnqDmuy/proposition.png","https://images.ecency.com/DQmbEMEQQjWMG5DJdUR9NxBMpCoZGsm253vzVxfj8rkYaAb/schema.png"],"tags":["hive-114606","blockchain","tendermint","bft","fr","kr"],"description":"L'algorithme de consensus utilisé par Tendermint, est un algorithme de consensus byzantin. L'avantage de ce dernier est qu'il ne nécessite pas de minage pour apporter une solution au problème des généraux","app":"ecency/3.0.29-vision","format":"markdown+html"}" |
created | 2022-11-22 08:16:09 |
last_update | 2022-11-22 08:55:39 |
depth | 0 |
children | 4 |
last_payout | 2022-11-29 08:16:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.592 HBD |
curator_payout_value | 3.526 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,690 |
author_reputation | 512,759,586,315 |
root_title | "Tendermint Consensus Algorithm" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 118,525,364 |
net_rshares | 14,861,859,912,884 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevinwong | 0 | 1,267,092,718 | 0.18% | ||
justtryme90 | 0 | 565,314,449 | 30% | ||
eric-boucher | 0 | 5,764,379,695 | 1.2% | ||
thecryptodrive | 0 | 18,676,390,781 | 0.48% | ||
mammasitta | 0 | 3,497,464,376 | 1.2% | ||
roelandp | 0 | 132,481,394,288 | 15% | ||
cloh76 | 0 | 1,699,411,276 | 1.2% | ||
ace108 | 0 | 407,344,769,919 | 10% | ||
akipponn | 0 | 540,683,215 | 15% | ||
sunshine | 0 | 81,130,880,349 | 15% | ||
djennyfloro | 0 | 492,499,232 | 10% | ||
lordvader | 0 | 24,090,053,009 | 2.4% | ||
rmach | 0 | 3,779,934,448 | 15% | ||
lemouth | 0 | 784,045,665,504 | 30% | ||
lamouthe | 0 | 2,309,093,595 | 30% | ||
eftnow | 0 | 462,399,274 | 1.2% | ||
tfeldman | 0 | 2,327,698,264 | 1.2% | ||
metabs | 0 | 2,964,711,299 | 30% | ||
mcsvi | 0 | 107,379,966,232 | 50% | ||
lk666 | 0 | 724,843,820 | 1.2% | ||
cnfund | 0 | 4,523,579,060 | 2.4% | ||
justyy | 0 | 11,802,407,569 | 2.4% | ||
michelle.gent | 0 | 1,361,308,306 | 0.48% | ||
curie | 0 | 298,249,594,595 | 2.4% | ||
modernzorker | 0 | 1,463,637,120 | 1.68% | ||
techslut | 0 | 72,912,158,712 | 12% | ||
roguewriter | 0 | 10,745,693,647 | 15% | ||
steemstem | 0 | 1,744,178,307,235 | 30% | ||
yadamaniart | 0 | 898,688,866 | 1.2% | ||
apsu | 0 | 744,146,764 | 0.84% | ||
walterjay | 0 | 104,966,920,946 | 12.5% | ||
valth | 0 | 4,678,841,114 | 15% | ||
driptorchpress | 0 | 798,037,104 | 0.6% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 1,141,313,408 | 30% | ||
ambyr00 | 0 | 548,905,932 | 0.36% | ||
bloghound | 0 | 5,420,345,816 | 20% | ||
dhimmel | 0 | 163,593,346,464 | 7.5% | ||
oluwatobiloba | 0 | 2,442,720,193 | 30% | ||
detlev | 0 | 9,489,116,849 | 0.72% | ||
federacion45 | 0 | 3,688,240,992 | 1.2% | ||
gamersclassified | 0 | 1,758,359,422 | 1.2% | ||
iansart | 0 | 2,129,680,585 | 1.2% | ||
mobbs | 0 | 22,626,014,209 | 15% | ||
jerrybanfield | 0 | 8,228,483,684 | 2.4% | ||
roomservice | 0 | 854,161,771 | 0.9% | ||
rt395 | 0 | 1,553,664,825 | 1.5% | ||
bitrocker2020 | 0 | 4,404,281,763 | 0.36% | ||
sustainablyyours | 0 | 12,838,130,369 | 15% | ||
yehey | 0 | 2,831,230,565 | 2.4% | ||
arunava | 0 | 3,710,795,350 | 0.24% | ||
juancar347 | 0 | 4,977,639,573 | 1.2% | ||
samminator | 0 | 5,455,589,205 | 1.5% | ||
mahdiyari | 0 | 1,445,064,823,400 | 80% | ||
lorenzor | 0 | 1,342,053,070 | 50% | ||
sam99 | 0 | 14,187,120,085 | 21% | ||
alexander.alexis | 0 | 14,538,411,952 | 30% | ||
dandesign86 | 0 | 14,811,037,746 | 8% | ||
jayna | 0 | 2,685,942,500 | 0.48% | ||
ew-and-patterns | 0 | 7,984,646,240 | 3% | ||
deanlogic | 0 | 564,595,984 | 1.2% | ||
princessmewmew | 0 | 3,349,177,322 | 1.2% | ||
grapthar | 0 | 4,183,784,261 | 1.8% | ||
joeyarnoldvn | 0 | 490,684,844 | 1.47% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 31,627,436,469 | 0.6% | ||
pipiczech | 0 | 909,600,612 | 2.4% | ||
binkyprod | 0 | 1,385,383,348 | 1.2% | ||
flatman | 0 | 2,143,479,922 | 2.4% | ||
analealsuarez | 0 | 1,673,171,816 | 50% | ||
minnowbooster | 0 | 1,156,867,537,152 | 20% | ||
howo | 0 | 908,201,635,308 | 30% | ||
tsoldovieri | 0 | 3,109,176,861 | 15% | ||
steemwizards | 0 | 1,712,068,405 | 2.4% | ||
neumannsalva | 0 | 1,909,934,953 | 1.2% | ||
stayoutoftherz | 0 | 56,878,170,045 | 0.6% | ||
abigail-dantes | 0 | 11,035,454,277 | 30% | ||
coindevil | 0 | 1,141,111,070 | 1.92% | ||
zonguin | 0 | 3,228,769,624 | 12.5% | ||
investingpennies | 0 | 5,936,235,864 | 2.4% | ||
mamalikh13 | 0 | 6,889,177,237 | 2.4% | ||
francosteemvotes | 0 | 2,642,261,169 | 25% | ||
martibis | 0 | 1,037,251,655 | 0.72% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
redrica | 0 | 800,668,564 | 1.2% | ||
iamphysical | 0 | 17,632,027,189 | 90% | ||
hdmed | 0 | 774,574,222 | 2.4% | ||
zyx066 | 0 | 1,956,190,627 | 0.72% | ||
revo | 0 | 4,564,389,388 | 2.4% | ||
azulear | 0 | 256,382,047 | 100% | ||
djlethalskillz | 0 | 1,409,880,362 | 5% | ||
psicoluigi | 0 | 802,025,810 | 50% | ||
rocky1 | 0 | 338,803,784,342 | 0.36% | ||
thelordsharvest | 0 | 2,103,055,790 | 2.4% | ||
evildido | 0 | 1,446,891,574 | 12.5% | ||
aidefr | 0 | 3,075,666,896 | 15% | ||
torico | 0 | 598,422,196 | 0.79% | ||
sorin.cristescu | 0 | 866,374,126 | 1.2% | ||
karaoke1850 | 0 | 1,029,235,247 | 2.4% | ||
therealwolf | 0 | 13,814,021,990 | 1.2% | ||
cryptononymous | 0 | 782,687,601 | 1.2% | ||
upme | 0 | 729,780,847 | 1.2% | ||
dauerossi | 0 | 5,760,350,247 | 30% | ||
deadzy | 0 | 14,943,146,251 | 100% | ||
meno | 0 | 9,334,932,044 | 1.2% | ||
gregan | 0 | 2,686,662,420 | 100% | ||
fatkat | 0 | 597,530,453 | 1.19% | ||
morwhale | 0 | 1,603,010,779 | 100% | ||
bhoa | 0 | 2,210,006,709 | 15% | ||
enzor | 0 | 933,905,530 | 15% | ||
dandays | 0 | 4,341,452,370 | 0.48% | ||
notb4mycoffee | 0 | 1,337,037,767 | 2.4% | ||
silverwhale | 0 | 588,786,973 | 2.16% | ||
sunsea | 0 | 1,866,032,482 | 1.2% | ||
postpromoter | 0 | 669,264,088,276 | 30% | ||
teammorocco | 0 | 1,323,718,353 | 100% | ||
bluefinstudios | 0 | 1,175,513,145 | 0.72% | ||
steveconnor | 0 | 1,959,348,234 | 1.2% | ||
sankysanket18 | 0 | 646,880,475 | 15% | ||
dbddv01 | 0 | 1,649,335,878 | 12.5% | ||
paulmoon410 | 0 | 1,404,993,516 | 10% | ||
nicole-st | 0 | 3,459,639,226 | 1.2% | ||
smartsteem | 0 | 58,016,846,263 | 1.2% | ||
cura | 0 | 490,743,420 | 100% | ||
kenadis | 0 | 7,933,506,232 | 30% | ||
bebeomega | 0 | 500,097,226 | 1.2% | ||
robotics101 | 0 | 7,085,273,645 | 25% | ||
soluce07 | 0 | 4,658,658,120 | 100% | ||
lpv | 0 | 3,927,059,122 | 11.25% | ||
iptrucs | 0 | 5,596,416,585 | 25% | ||
elex17 | 0 | 1,667,962,936 | 100% | ||
punchline | 0 | 6,334,691,207 | 2.4% | ||
statorcrime | 0 | 825,683,393 | 12.5% | ||
duke77 | 0 | 15,023,535,267 | 50% | ||
r00sj3 | 0 | 60,406,675,208 | 15% | ||
sco | 0 | 7,943,022,497 | 30% | ||
anikekirsten | 0 | 1,691,806,380 | 15% | ||
ennyta | 0 | 983,079,970 | 50% | ||
brotherhood | 0 | 17,338,136,841 | 2.4% | ||
juecoree | 0 | 9,646,678,778 | 21% | ||
stahlberg | 0 | 524,306,062 | 1.2% | ||
carn | 0 | 1,395,703,957 | 2.16% | ||
branbello | 0 | 1,105,130,144 | 15% | ||
bartheek | 0 | 814,763,144 | 2.4% | ||
hetty-rowan | 0 | 846,175,048 | 1.2% | ||
ydavgonzalez | 0 | 1,680,729,129 | 10% | ||
intrepidphotos | 0 | 510,602,546,750 | 22.5% | ||
fineartnow | 0 | 1,612,353,316 | 1.2% | ||
hijosdelhombre | 0 | 41,498,194,149 | 40% | ||
sweeverdev | 0 | 1,440,426,057 | 70% | ||
oscarina | 0 | 860,518,004 | 10% | ||
yoghurt | 0 | 1,012,624,469 | 2.4% | ||
steemvault | 0 | 866,397,702 | 2.4% | ||
steem4all | 0 | 509,684,984 | 1.2% | ||
communitybank | 0 | 2,892,783,889 | 2.4% | ||
fragmentarion | 0 | 7,754,722,659 | 30% | ||
bennettitalia | 0 | 14,381,987,456 | 25% | ||
utube | 0 | 1,954,432,453 | 2.4% | ||
dynamicrypto | 0 | 4,203,755,610 | 1% | ||
neneandy | 0 | 2,750,731,815 | 2.4% | ||
goldrooster | 0 | 2,586,029,142 | 20% | ||
soufiani | 0 | 946,425,438 | 0.96% | ||
sportscontest | 0 | 2,313,127,694 | 2.4% | ||
videosteemit | 0 | 907,748,793 | 2.4% | ||
gribouille | 0 | 1,148,652,066 | 25% | ||
itharagaian | 0 | 4,242,045,705 | 50% | ||
pandasquad | 0 | 3,630,186,424 | 2.4% | ||
tobias-g | 0 | 697,399,619 | 1.8% | ||
kingabesh | 0 | 575,396,200 | 15% | ||
miguelangel2801 | 0 | 788,008,231 | 50% | ||
mproxima | 0 | 718,600,202 | 1.2% | ||
fantasycrypto | 0 | 1,948,022,718 | 2.4% | ||
didic | 0 | 803,105,340 | 1.2% | ||
dexterdev | 0 | 1,206,777,045 | 15% | ||
photohunt | 0 | 1,577,524,590 | 2.4% | ||
geopolis | 0 | 1,968,443,138 | 30% | ||
robertbira | 0 | 3,221,481,588 | 7.5% | ||
marlyncabrera | 0 | 502,056,617 | 1.2% | ||
lebastion | 0 | 1,682,966,473 | 50% | ||
alexdory | 0 | 4,565,014,765 | 30% | ||
takowi | 0 | 42,977,469,029 | 2.4% | ||
irgendwo | 0 | 6,284,692,433 | 2.4% | ||
flugschwein | 0 | 1,544,263,348 | 25.5% | ||
charitybot | 0 | 4,925,538,837 | 100% | ||
cyprianj | 0 | 12,523,220,396 | 30% | ||
kieranstone | 0 | 547,648,165 | 0.79% | ||
melvin7 | 0 | 9,370,859,640 | 15% | ||
francostem | 0 | 4,130,251,372 | 30% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
technologix | 0 | 1,534,944,853 | 2.4% | ||
croctopus | 0 | 1,418,962,667 | 100% | ||
jjerryhan | 0 | 541,072,000 | 1.2% | ||
cryptictruth | 0 | 2,337,705,265 | 0.5% | ||
michelmake | 0 | 52,703,417,674 | 50% | ||
zipporah | 0 | 1,151,755,528 | 0.48% | ||
superlotto | 0 | 6,541,961,955 | 2.4% | ||
vonaurolacu | 0 | 677,016,670 | 1.2% | ||
movingman | 0 | 1,165,028,243 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
proto26 | 0 | 1,013,435,067 | 2.4% | ||
scottcbusiness | 0 | 483,746,175 | 1.2% | ||
tomastonyperez | 0 | 16,938,786,323 | 50% | ||
bil.prag | 0 | 882,259,844 | 0.12% | ||
elvigia | 0 | 10,871,912,710 | 50% | ||
sanderjansenart | 0 | 2,023,596,603 | 1.2% | ||
vittoriozuccala | 0 | 890,003,849 | 1.2% | ||
laxam | 0 | 5,132,951,792 | 100% | ||
koenau | 0 | 840,483,499 | 1.2% | ||
qberry | 0 | 1,505,057,251 | 1.2% | ||
frissonsteemit | 0 | 495,004,525 | 1.2% | ||
rambutan.art | 0 | 526,455,836 | 2.4% | ||
albus.draco | 0 | 1,694,725,127 | 50% | ||
ryenneleow | 0 | 5,990,608,172 | 90% | ||
gadrian | 0 | 124,397,003,880 | 22.5% | ||
therising | 0 | 44,825,753,439 | 2.4% | ||
cryptocoinkb | 0 | 885,971,561 | 1.2% | ||
gifty-e | 0 | 702,767,946 | 80% | ||
scruffy23 | 0 | 20,076,274,154 | 50% | ||
de-stem | 0 | 16,463,761,492 | 29.7% | ||
imcore | 0 | 892,391,896 | 10% | ||
serylt | 0 | 1,352,512,577 | 29.4% | ||
gogreenbuddy | 0 | 6,165,208,379 | 2.4% | ||
josedelacruz | 0 | 4,615,340,559 | 50% | ||
achimmertens | 0 | 2,365,327,973 | 1.2% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
realblockchain | 0 | 14,788,902,631 | 50% | ||
erickyoussif | 0 | 593,893,700 | 100% | ||
meanbees | 0 | 14,398,676,984 | 10% | ||
indigoocean | 0 | 500,154,673 | 1.2% | ||
primersion | 0 | 256,236,128,106 | 20% | ||
deholt | 0 | 1,685,919,255 | 25.5% | ||
robmolecule | 0 | 40,647,085,710 | 20% | ||
anneporter | 0 | 1,146,258,543 | 9% | ||
diabonua | 0 | 2,147,759,264 | 1.2% | ||
pladozero | 0 | 33,020,115,819 | 10% | ||
minerthreat | 0 | 1,462,784,008 | 1.2% | ||
stevenwood | 0 | 1,231,393,185 | 0.79% | ||
temitayo-pelumi | 0 | 2,522,890,644 | 30% | ||
andrick | 0 | 856,782,775 | 50% | ||
motherofalegend | 0 | 4,696,218,500 | 15% | ||
doctor-cog-diss | 0 | 23,193,310,149 | 30% | ||
trisolaran | 0 | 645,553,408 | 1.2% | ||
marcuz | 0 | 877,233,188 | 15% | ||
acont | 0 | 34,078,303,878 | 50% | ||
uche-nna | 0 | 1,985,849,895 | 1.92% | ||
drawmeaship | 0 | 8,271,940,053 | 50% | ||
vietthuy | 0 | 809,811,166 | 50% | ||
citizendog | 0 | 2,106,078,520 | 2.4% | ||
letenebreux | 0 | 1,810,550,225 | 50% | ||
cheese4ead | 0 | 1,771,821,908 | 1.2% | ||
gaottantacinque | 0 | 392,772,307 | 100% | ||
blewitt | 0 | 753,863,714 | 0.14% | ||
drsensor | 0 | 644,387,903 | 24% | ||
talentclub | 0 | 2,726,548,367 | 1.2% | ||
bflanagin | 0 | 2,859,456,864 | 1.2% | ||
armandosodano | 0 | 5,390,850,978 | 1.2% | ||
acousticguitar | 0 | 14,106,893,625 | 50% | ||
marivic10 | 0 | 518,104,669 | 1.2% | ||
goblinknackers | 0 | 31,527,151,153 | 7% | ||
reinaseq | 0 | 7,043,894,160 | 100% | ||
vixmemon | 0 | 687,501,463 | 1.8% | ||
kylealex | 0 | 4,657,601,913 | 10% | ||
gasaeightyfive | 0 | 924,913,378 | 100% | ||
cubapl | 0 | 1,768,356,877 | 15% | ||
orlandogonzalez | 0 | 3,962,184,314 | 25% | ||
cleanplanet | 0 | 6,610,610,359 | 0.72% | ||
otp-one | 0 | 2,962,061,901 | 35% | ||
fran.frey | 0 | 4,169,879,653 | 50% | ||
perpetuum-lynx | 0 | 892,145,474 | 29.4% | ||
thelittlebank | 0 | 7,694,641,784 | 1.2% | ||
pboulet | 0 | 184,386,953,191 | 100% | ||
cercle | 0 | 1,705,577,025 | 50% | ||
stem-espanol | 0 | 25,742,968,918 | 100% | ||
cribbio | 0 | 1,385,822,071 | 100% | ||
cliffagreen | 0 | 2,000,784,026 | 10% | ||
aleestra | 0 | 11,949,362,825 | 80% | ||
the.success.club | 0 | 1,288,422,908 | 1.2% | ||
l-singclear | 0 | 2,347,798,462 | 100% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
sincensura | 0 | 1,034,397,450 | 100% | ||
meanroosterfarm | 0 | 572,768,806 | 15% | ||
agrovision | 0 | 5,460,734,120 | 15% | ||
mintrawa | 0 | 219,719,810,806 | 100% | ||
powernap | 0 | 10,409,755,501 | 100% | ||
brianoflondon | 0 | 12,958,735,733 | 0.36% | ||
giulyfarci52 | 0 | 1,704,407,819 | 50% | ||
esthersanchez | 0 | 4,005,778,656 | 60% | ||
kristall97 | 0 | 25,157,217,340 | 100% | ||
steemcryptosicko | 0 | 5,404,496,247 | 0.48% | ||
cowpatty | 0 | 598,967,066 | 15% | ||
olivier.jacobs | 0 | 1,376,498,388 | 50% | ||
stem.witness | 0 | 1,752,935,146 | 30% | ||
devann | 0 | 8,681,985,641 | 3% | ||
chipdip | 0 | 1,539,537,238 | 20% | ||
theskmeister | 0 | 519,970,233 | 100% | ||
robmojo | 0 | 976,906,507 | 3% | ||
double-negative | 0 | 521,316,349 | 20% | ||
wilmer14molina | 0 | 1,009,516,355 | 50% | ||
vaultec | 0 | 2,625,974,981 | 12% | ||
steemstorage | 0 | 2,865,670,886 | 2.4% | ||
aqua.nano | 0 | 723,237,180 | 100% | ||
jtm.support | 0 | 2,258,607,281 | 30% | ||
crowdwitness | 0 | 16,638,538,285 | 15% | ||
apokruphos | 0 | 3,353,531,561 | 1% | ||
eternalsuccess | 0 | 15,343,572,486 | 15% | ||
hairgistix | 0 | 1,311,395,091 | 1.2% | ||
steemean | 0 | 10,035,842,482 | 5% | ||
aaronkroeblinger | 0 | 108,657,237,353 | 50% | ||
elements5 | 0 | 810,225,257 | 1.2% | ||
photographercr | 0 | 1,034,564,431 | 0.48% | ||
memehub | 0 | 1,086,861,626 | 1.2% | ||
epicdice | 0 | 689,940,288 | 0.36% | ||
sallhiddles | 0 | 1,655,041,924 | 100% | ||
iamsaray | 0 | 515,449,525 | 1.2% | ||
monsterjamgold | 0 | 1,307,862,849 | 10% | ||
edencourage | 0 | 6,337,113,423 | 50% | ||
beerlover | 0 | 931,492,585 | 0.72% | ||
qwerrie | 0 | 1,348,127,717 | 0.18% | ||
tinyhousecryptos | 0 | 493,076,525 | 5% | ||
tggr | 0 | 503,632,017 | 1.2% | ||
aicu | 0 | 16,407,816,010 | 2.4% | ||
zeruxanime | 0 | 4,576,464,994 | 15% | ||
afarina46 | 0 | 807,329,393 | 15% | ||
waraira777 | 0 | 1,433,066,569 | 15% | ||
mind.force | 0 | 553,749,134 | 0.6% | ||
capp | 0 | 14,130,338,742 | 100% | ||
tokensink | 0 | 1,272,194,324 | 2.4% | ||
bastionpm | 0 | 1,392,355,456 | 50% | ||
nazer | 0 | 1,107,961,457 | 15% | ||
steemstem-trig | 0 | 2,431,834,520 | 30% | ||
atheistrepublic | 0 | 2,453,304,091 | 1.2% | ||
ibt-survival | 0 | 34,400,624,829 | 10% | ||
darthsauron | 0 | 864,148,732 | 10% | ||
riazud | 0 | 609,221,880 | 1.2% | ||
xerxes.alpha | 0 | 3,113,576,075 | 100% | ||
delilhavores | 0 | 585,751,362 | 3% | ||
hjmarseille | 0 | 986,353,150 | 21% | ||
roamingsparrow | 0 | 3,129,545,109 | 1.2% | ||
abachon | 0 | 749,402,508 | 2.4% | ||
zirky | 0 | 937,561,110 | 1.92% | ||
ignet | 0 | 1,695,126,218 | 50% | ||
peterale | 0 | 863,355,778 | 1.2% | ||
monica-ene | 0 | 1,641,145,843 | 1.2% | ||
hivequebec | 0 | 1,553,856,578 | 25% | ||
laruche | 0 | 1,092,476,213,051 | 25% | ||
ykretz | 0 | 2,402,469,831 | 5% | ||
stemsocial | 0 | 252,576,998,960 | 30% | ||
holoferncro | 0 | 2,166,313,382 | 5% | ||
pimpstudio | 0 | 8,714,595,800 | 100% | ||
hiveonboard | 0 | 881,124,294 | 0.9% | ||
authentika | 0 | 5,603,771,386 | 50% | ||
hive-143869 | 0 | 672,808,620,286 | 50% | ||
taniagonzalez | 0 | 1,830,892,910 | 10% | ||
noelyss | 0 | 9,221,382,869 | 15% | ||
lithajacobs | 0 | 3,089,139,823 | 100% | ||
jsalvage | 0 | 526,303,931 | 15% | ||
greengalletti | 0 | 9,027,521,343 | 15% | ||
buildahouse | 0 | 1,533,641,474 | 50% | ||
gohive | 0 | 14,063,857,671 | 100% | ||
treefiddybruh | 0 | 599,091,462 | 1.2% | ||
aabcent | 0 | 5,132,515,890 | 1.92% | ||
blogstats | 0 | 335,194,697 | 100% | ||
altleft | 0 | 8,344,222,030 | 0.02% | ||
gonklavez9 | 0 | 506,400,954 | 30% | ||
gabrieljr | 0 | 1,724,329,518 | 50% | ||
nbs.gmbh | 0 | 182,817,966,858 | 2.4% | ||
chubb149 | 0 | 742,477,135 | 3.6% | ||
cosplay.hadr | 0 | 510,485,951 | 2.4% | ||
hadrgames | 0 | 527,002,365 | 2.4% | ||
meritocracy | 0 | 25,847,945,130 | 0.24% | ||
dcrops | 0 | 17,758,126,676 | 1.2% | ||
entraide.rewards | 0 | 1,677,384,036 | 50% | ||
endrius | 0 | 2,716,428,324 | 75% | ||
traderhive | 0 | 2,388,914,618 | 2.4% | ||
cookaiss | 0 | 4,153,705,201 | 25% | ||
nanggroe1 | 0 | 1,008,848,221 | 40% | ||
mayorkeys | 0 | 5,175,548,564 | 30% | ||
failingforwards | 0 | 1,256,564,611 | 1.2% | ||
miroslaviv | 0 | 853,941,451 | 1.2% | ||
maxelitereturned | 0 | 705,247,356 | 15% | ||
nfttunz | 0 | 3,814,983,500 | 0.24% | ||
mcedric | 0 | 64,148,489,405 | 100% | ||
milagrosmhbl | 0 | 4,898,275,265 | 50% | ||
luisestaba23 | 0 | 492,094,502 | 50% | ||
gabyr02 | 0 | 11,293,514,808 | 100% | ||
krrizjos18 | 0 | 1,238,965,072 | 15% | ||
mirteg | 0 | 575,623,099 | 2.4% | ||
sarashew | 0 | 1,351,531,521 | 2.4% | ||
podping | 0 | 1,483,995,329 | 0.36% | ||
drhueso | 0 | 512,573,775 | 1.2% | ||
pinkfloyd878 | 0 | 4,585,905,756 | 100% | ||
mayberlys | 0 | 2,128,839,280 | 50% | ||
nopasaran72 | 0 | 1,397,055,250 | 25% | ||
seinkalar | 0 | 1,536,121,977 | 2.4% | ||
aries90 | 0 | 19,026,661,841 | 2.4% | ||
rencongland | 0 | 3,422,899,263 | 16% | ||
cugel | 0 | 882,470,169 | 1.2% | ||
gejzep | 0 | 32,565,563,766 | 15% | ||
cassioandro | 0 | 639,272,673 | 100% | ||
invest-time | 0 | 1,916,634,514 | 23.4% | ||
sagarkothari88 | 0 | 54,394,512,136 | 5% | ||
mmoonn | 0 | 1,071,135,529 | 100% | ||
wrestorgonline | 0 | 554,956,910,961 | 5% | ||
benwickenton | 0 | 930,785,573 | 2.4% | ||
synergie | 0 | 3,018,673,313 | 100% | ||
anhdaden146 | 0 | 64,359,955,302 | 1.2% | ||
dondido | 0 | 10,219,554,869 | 2.4% | ||
doodleaday | 0 | 34,201,236,221 | 50% | ||
prosocialise | 0 | 21,251,115,603 | 15% | ||
bhdc | 0 | 817,311,660 | 2.4% | ||
lataverne | 0 | 3,813,238,052 | 100% | ||
b8l | 0 | 1,723,469,670 | 100% | ||
hurtlocker | 0 | 1,047,423,614 | 1.44% | ||
independance | 0 | 1,728,334,357 | 50% | ||
philipp87 | 0 | 1,007,638,716 | 40% | ||
vagabond42069 | 0 | 610,838,982 | 15% | ||
inibless | 0 | 591,807,404 | 15% | ||
med-hive | 0 | 1,450,684,979 | 15% | ||
genepoolrentsclr | 0 | 631,786,596 | 1.2% | ||
cleanyourcity | 0 | 732,502,086 | 0.72% | ||
justfavour | 0 | 644,528,548 | 2.4% | ||
sc000 | 0 | 536,912,574 | 2.4% | ||
minava.museum | 0 | 1,709,076,321 | 50% | ||
lordnight72 | 0 | 1,707,402,350 | 50% | ||
bonus-fr | 0 | 6,567,153,899 | 100% | ||
quotidien | 0 | 2,909,808,290 | 50% | ||
tuba777 | 0 | 622,693,552 | 15% | ||
minas-glory | 0 | 2,364,658,418 | 1.2% | ||
clpacksperiment | 0 | 878,810,941 | 1.2% | ||
the-grandmaster | 0 | 2,021,751,974 | 1.2% | ||
the-burn | 0 | 2,567,832,468 | 1.2% | ||
ambicrypto | 0 | 6,155,676,927 | 2.4% | ||
superuser3 | 0 | 6,569,594,729 | 15% | ||
bbybender | 0 | 0 | 100% | ||
elimatheli | 0 | 672,748,491 | 100% | ||
ofreo | 0 | 672,748,491 | 100% | ||
blackerzx | 0 | 672,748,491 | 100% | ||
nissou31 | 0 | 672,748,491 | 100% | ||
benjil | 0 | 647,307,884 | 100% | ||
moh4m | 0 | 671,601,812 | 100% | ||
reverio | 0 | 491,401,797 | 5% |
--- --- ✒️ Pour vous encourager dans vos études, nous vous offrons 💝**50 points-fr**💝, un reblogue, un mini-upvote 🎁 Recevez en plus un bonus de **3 points-fr** pour votre sélection et ce pourboire : !LUV !GIF algorithm 💰 Plus de Tokens de 2eme couches vous attendent dans les posts de sélections et de récompenses <center> | @points-fr / @challenge-fr / @tokens-fr / @loterie-fr / @bonus-fr | | ------------ | </center> <center> **[Cumulez facilement les points-fr](/created/faqpoints-fr)** Récompense Multi-engagements des Francophones <a href='/created/points-fr'><img src='https://images.ecency.com/DQmbkGz3XuzUZJPndrZzNqh4tAoNgkRGWnhu6sjBg8mz4sD/logo_point_fr150.png'></a> </center> --- ---
author | bonus-fr |
---|---|
permlink | re-blackerzx-20221123t222425804z |
category | hive-114606 |
json_metadata | {"tags":["hive-114606","blockchain","tendermint","bft","fr","kr"],"app":"ecency/3.0.29-vision","format":"markdown+html"} |
created | 2022-11-23 21:24:24 |
last_update | 2022-11-23 21:24:24 |
depth | 1 |
children | 1 |
last_payout | 2022-11-30 21:24: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 | 699 |
author_reputation | 4,585,501,683,665 |
root_title | "Tendermint Consensus Algorithm" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 118,564,879 |
net_rshares | 0 |
@blackerzx, @bonus-fr<sub>(9/10)</sub> sent you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a href="https://tribaldex.com/wallet/" style="text-decoration:none">wallet</a> | <a href="https://hive-engine.com/trade/LUV" style="text-decoration:none">market</a> | <a href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a> <br> <center><a href="https://crrdlx.websavvy.work/wiki" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23sxEPgMNuQ5YPsuGungJ25Dpd6BjwgUmNkFAGCNnsKABBpUPXuRVgahFnwuZm9Qnf8Eh.png"></a><br><a href="https://crrdlx.websavvy.work/wiki" target="_blank">HiveWiki</a></center> <br> <center><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/luvshares/242henrWsje7ivLwY3jxy15af3LJqvUzEmrEKAViGAowE1XsPqkDUuQ6QnwYpVJUWKN7c.gif"></a><br><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">HiveBuzz.me NFT for Peace</a></center>
author | luvshares |
---|---|
permlink | re-re-blackerzx-20221123t222425804z-20221123t212444z |
category | hive-114606 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-11-23 21:24:45 |
last_update | 2022-11-23 21:24:45 |
depth | 2 |
children | 0 |
last_payout | 2022-11-30 21:24: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 | 1,383 |
author_reputation | 4,081,972,163,141 |
root_title | "Tendermint Consensus Algorithm" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 118,564,893 |
net_rshares | 0 |
Congratulations @blackerzx! 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/@blackerzx/upvoted.png?202211281451"></td><td>You received more than 400 upvotes.<br>Your next target is to reach 500 upvotes.</td></tr> <tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@blackerzx/payout.png?202211291155"></td><td>You received more than 10 HP as payout for your posts, comments and curation.<br>Your next payout target is 50 HP.<br><sub>The unit is Hive Power equivalent because post and comment rewards can be split into HP and HBD</sub></td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@blackerzx) 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="/hive-102201/@hivebuzz/wc2022-recap-day9"><img src="https://images.hive.blog/64x128/https://i.imgur.com/uNPMgnd.png"></a></td><td><a href="/hive-102201/@hivebuzz/wc2022-recap-day9">HiveBuzz World Cup Contest - Recap of Day 9</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202212"><img src="https://images.hive.blog/64x128/https://i.imgur.com/805FIIt.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202212">Hive Power Up Day - December 1st 2022</a></td></tr><tr><td><a href="/hive-102201/@hivebuzz/wc2022-ranking"><img src="https://images.hive.blog/64x128/https://i.imgur.com/8kplXrX.png"></a></td><td><a href="/hive-102201/@hivebuzz/wc2022-ranking">HiveBuzz World Cup Contest - Check your ranking</a></td></tr></table> ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/199)!
author | hivebuzz |
---|---|
permlink | notify-blackerzx-20221129t135723 |
category | hive-114606 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-11-29 13:57:24 |
last_update | 2022-11-29 13:57:24 |
depth | 1 |
children | 0 |
last_payout | 2022-12-06 13:57: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 | 1,974 |
author_reputation | 268,544,659,474,647 |
root_title | "Tendermint Consensus Algorithm" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 118,702,254 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-blackerzx-tendermint-consensus-algorithm-20221126t210902841z |
category | hive-114606 |
json_metadata | {"app":"STEMsocial"} |
created | 2022-11-26 21:09:03 |
last_update | 2022-11-26 21:09:03 |
depth | 1 |
children | 0 |
last_payout | 2022-12-03 21:09: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 | 565 |
author_reputation | 20,881,242,559,363 |
root_title | "Tendermint Consensus Algorithm" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 118,638,638 |
net_rshares | 0 |