## Repository https://github.com/holgern/beem<center>  </center> [beem](https://github.com/holgern/beem) is a python library and command line tool for HIVE. The current version is 0.24.18. There is also a discord channel for beem: https://discord.gg/4HM592V The newest beem version can be installed by: ``` pip install -U beem ``` Check that you are using hive nodes. The following command ``` beempy updatenodes --hive ``` updates the nodelist and uses only hive nodes. After setting hive as default_chain, `beempy updatenodes` can be used. The list of nodes can be checked with ``` beempy config ``` and ``` beempy currentnode ``` shows the currently connected node. ## Changelog for 0.24.18 * Adapt account history on api changes and fixes issue #267 * Speed up history call, when limit is below 1000 * Improve unit tests for account history * Fix estimate_virtual_op_num, when get_account_history returns an empty entry for an index * Implement _get_operation_filter and use filter operations in history and history_reverse on the https://api.hive.blog api node ## Changelog for 0.24.17 * Fixed a bug when using skip_account_check=True * Refactor code in Account * Add more unit tests ## Changelog for 0.24.16 * Fix bug in bytes representation of an Amount which prevents sending certain amounts (e.g. 8.19 HIVE) * Added unit tests to check if 8.190 is correctly working ## Fixing rounding errors in transfers In version 0.24.16, a rounding bug was fixed which prevents sending 8.19 HIVE. This bug leads to a wrong signature, which then prevents broadcasting the transfer op. This is now fixed. ## Improved error handling in account history The account history and history_reverse functions have now a better error handling. The returned index is now checked, which prevents that account history elements were added twice to the output. ## New filtered account history Currently the new filter parameter are only implemented at "https://api.hive.blog" API node. On this node, the get_account_history call has two more parameters: operation_filter_low and operation_filter_high. These parameters are a bitmask of all possible operation names. They can be obtained with the `_get_operation_filter` function: ``` operation_filter_low, operation_filter_high = account._get_operation_filter(only_ops=["transfer", "vote"]) ``` which results in operation_filter_low=5 and operation_filter_high=0. The `history` and `history_reverse` function from beem will now use the operation_filter when "https://api.hive.blog" is set as node. This speeds up receiving account history data up to 100 %. ### History reverse with operation_filter ``` from beem.account import Account from beem import Hive import time hive = Hive("https://api.hive.blog") acc = Account("holger80", blockchain_instance=hive) start_time = time.time() n_op = acc.virtual_op_count() transfer_ops = list(acc.history_reverse(only_ops=["transfer"])) print("Time needed to search all transfers in %d history elements: %.2f s" % (n_op, (time.time() - start_time))) print("%d transfer op have been found" % (len(transfer_ops))) ``` returns ``` Time needed to search all transfers in 283514 history elements: 145.66 s 4666 transfer op have been found ``` ### History with operation_filter ``` from beem.account import Account from beem import Hive import time hive = Hive("https://api.hive.blog") acc = Account("holger80", blockchain_instance=hive) start_time = time.time() n_op = acc.virtual_op_count() transfer_ops = list(acc.history(only_ops=["transfer"])) print("Time needed to search all transfers in %d history elements: %.2f s" % (n_op, (time.time() - start_time))) print("%d transfer op have been found" % (len(transfer_ops))) ``` returns ``` Time needed to search all transfers in 283517 history elements: 144.55 s 4666 transfer op have been found ``` ### History without operation filter Now we do the same without filtering: ``` from beem.account import Account from beem import Hive import time hive = Hive("https://api.hive.blog") acc = Account("holger80", blockchain_instance=hive) start_time = time.time() n_op = acc.virtual_op_count() transfer_ops = [] for op in acc.history(): if op["type"] == "transfer": transfer_ops.append(op) print("Time needed to search all transfers in %d history elements: %.2f s" % (n_op, (time.time() - start_time))) print("%d transfer op have been found" % (len(transfer_ops))) ``` returns ``` Time needed to search all transfers in 283518 history elements: 261.63 s 4666 transfer op have been found ``` ___ *If you like what I do, consider casting a vote for me as witness on [Hivesigner](https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1) or on [PeakD](https://peakd.com/witnesses)*
author | holger80 |
---|---|
permlink | update-for-beem-improved-account-history-handling |
category | hive-139531 |
json_metadata | "{"canonical_url": "https://hive.blog/hive-139531/@holger80/update-for-beem-improved-account-history-handling", "community": "hive-139531", "app": "beempy/0.24.18", "links": ["https://github.com/holgern/beem", "https://cdn.steemitimages.com/DQmcRrwLPSywSYMierfP6um6mejeMNGjN9Rxw7audJqTDgb/beem-logo", "https://discord.gg/4HM592V", "https://api.hive.blog", "https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1", "https://peakd.com/witnesses"], "tags": ["development", "beem", "python", "#267"]}" |
created | 2020-11-06 23:29:39 |
last_update | 2020-11-06 23:29:39 |
depth | 0 |
children | 7 |
last_payout | 2020-11-13 23:29:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 37.960 HBD |
curator_payout_value | 30.052 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,856 |
author_reputation | 358,857,509,568,825 |
root_title | "Update for beem: improved account history handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,422,691 |
net_rshares | 301,234,085,868,573 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steempty | 0 | 20,417,380,641,841 | 100% | ||
blocktrades | 0 | 153,302,105,369,847 | 100% | ||
tombstone | 0 | 25,666,686,447 | 1.2% | ||
boatymcboatface | 0 | 313,700,911,694 | 20% | ||
fractalnode | 0 | 23,268,963,232 | 100% | ||
onealfa | 0 | 149,248,593,496 | 7.76% | ||
kingscrown | 0 | 894,562,801,296 | 20% | ||
flemingfarm | 0 | 188,149,255,994 | 80% | ||
theshell | 0 | 84,205,751,150 | 20% | ||
mammasitta | 0 | 90,806,670,827 | 15% | ||
gerber | 0 | 351,717,429,729 | 21% | ||
kosimoos | 0 | 526,315,415 | 50% | ||
roelandp | 0 | 502,170,376,691 | 25% | ||
ezzy | 0 | 1,372,513,654,673 | 21% | ||
inertia | 0 | 1,502,833,517,464 | 100% | ||
arcange | 0 | 5,068,724,711,004 | 100% | ||
xpilar | 0 | 17,119,717,221 | 50% | ||
exyle | 0 | 732,088,503,294 | 21% | ||
sharker | 0 | 9,108,878,359 | 12.37% | ||
raphaelle | 0 | 2,956,582,870 | 3% | ||
ace108 | 0 | 291,144,509,256 | 8% | ||
kibela | 0 | 4,643,522,194 | 13.75% | ||
timcliff | 0 | 1,514,178,043,294 | 100% | ||
laoyao | 0 | 43,438,301,081 | 100% | ||
somebody | 0 | 77,462,691 | 100% | ||
midnightoil | 0 | 152,497,910,943 | 100% | ||
alinalazareva | 0 | 1,075,749,974 | 10% | ||
miketr | 0 | 8,844,226,564 | 5% | ||
xiaohui | 0 | 863,009,151,595 | 100% | ||
jphamer1 | 0 | 4,016,781,614,115 | 100% | ||
oflyhigh | 0 | 5,170,916,584,602 | 100% | ||
djennyfloro | 0 | 1,295,417,673 | 10% | ||
fooblic | 0 | 39,142,620,626 | 99% | ||
fingolfin | 0 | 157,128,928,145 | 100% | ||
borran | 0 | 597,131,352,445 | 75% | ||
anech512 | 0 | 8,057,110,697 | 25% | ||
rubenalexander | 0 | 380,403,155,074 | 100% | ||
helene | 0 | 1,135,201,648,734 | 100% | ||
lemouth | 0 | 1,823,240,699,057 | 100% | ||
stevescoins | 0 | 12,356,032,573 | 100% | ||
jsantana | 0 | 976,869,327 | 30% | ||
netaterra | 0 | 352,261,229,950 | 18.9% | ||
someguy123 | 0 | 422,776,999,775 | 21% | ||
uwelang | 0 | 1,125,610,143,397 | 100% | ||
petrvl | 0 | 61,730,621,011 | 7.5% | ||
abh12345 | 0 | 607,643,911,684 | 25% | ||
funnyman | 0 | 859,322,193,989 | 20% | ||
justyy | 0 | 94,976,049,173 | 10% | ||
ssekulji | 0 | 57,529,526,805 | 100% | ||
gamer00 | 0 | 33,977,789,864 | 5% | ||
techslut | 0 | 113,217,402,413 | 20% | ||
triviummethod | 0 | 553,845,981 | 100% | ||
mow | 0 | 634,544,286 | 100% | ||
ixindamix | 0 | 101,828,609,080 | 50% | ||
chiren | 0 | 3,554,386,348 | 66% | ||
askari | 0 | 55,410,634,119 | 100% | ||
lastminuteman | 0 | 599,464,497 | 0.95% | ||
blackbunny | 0 | 68,183,561,945 | 100% | ||
lingfei | 0 | 72,763,953,777 | 100% | ||
tarazkp | 0 | 2,764,410,674,101 | 50% | ||
ambyr00 | 0 | 4,166,150,500 | 0.75% | ||
tabea | 0 | 40,967,827,651 | 30% | ||
dyrt88 | 0 | 2,743,801,042 | 100% | ||
borislavzlatanov | 0 | 145,714,726,431 | 100% | ||
lordneroo | 0 | 1,541,078,380 | 30% | ||
dhimmel | 0 | 6,542,864,159,461 | 100% | ||
freebornsociety | 0 | 1,948,388,114 | 10% | ||
elevator09 | 0 | 253,637,303,068 | 100% | ||
lizanomadsoul | 0 | 232,716,635,264 | 100% | ||
dune69 | 0 | 155,928,720,008 | 21% | ||
bobskibob | 0 | 8,186,162,582 | 50% | ||
iansart | 0 | 23,270,072,914 | 13.02% | ||
aaliyahholt | 0 | 21,318,082,119 | 100% | ||
jerrybanfield | 0 | 7,001,728,849 | 0.5% | ||
kennyroy | 0 | 6,501,675,801 | 100% | ||
steempearls | 0 | 95,130,418 | 15% | ||
exec | 0 | 231,164,176,671 | 100% | ||
eval | 0 | 804,937,184 | 100% | ||
jeanpi1908 | 0 | 136,574,500,968 | 100% | ||
belahejna | 0 | 10,669,092,323 | 7.5% | ||
lelon | 0 | 9,197,197,423 | 100% | ||
skepticology | 0 | 33,133,629,729 | 100% | ||
alphacore | 0 | 428,608,913,128 | 18.94% | ||
maxer27 | 0 | 128,503,994,876 | 25% | ||
blacklux | 0 | 47,932,569,399 | 100% | ||
pibara | 0 | 247,018,346,808 | 100% | ||
jayna | 0 | 17,311,000,194 | 5% | ||
ew-and-patterns | 0 | 190,493,896,800 | 9% | ||
sirjaxxy | 0 | 527,571,826 | 50% | ||
offgridlife | 0 | 561,714,811,053 | 100% | ||
geekgirl | 0 | 1,515,608,206,515 | 100% | ||
benedict08 | 0 | 109,266,369,232 | 50% | ||
ricardovieira | 0 | 27,951,574,035 | 100% | ||
mcoinz79 | 0 | 1,264,773,782,870 | 100% | ||
bubke | 0 | 2,735,072,900,391 | 100% | ||
runicar | 0 | 290,645,796,819 | 30% | ||
eturnerx | 0 | 3,461,022,838,568 | 100% | ||
jacekw | 0 | 59,780,074,701 | 100% | ||
theguruasia | 0 | 1,069,863,623 | 100% | ||
codingdefined | 0 | 326,709,157,611 | 100% | ||
hope-on-fire | 0 | 240,911,751,783 | 26% | ||
nicniezgrublem | 0 | 684,780,522 | 16.8% | ||
dado13btc | 0 | 498,409,782 | 30% | ||
shitsignals | 0 | 9,388,413,431 | 21% | ||
shebe | 0 | 34,393,626,522 | 53% | ||
themarkymark | 0 | 3,810,151,634,758 | 16% | ||
dine77 | 0 | 13,741,320,296 | 15% | ||
bronkong | 0 | 31,138,012,154 | 100% | ||
vikisecrets | 0 | 414,022,464,549 | 30% | ||
fatherfaith | 0 | 797,055,511 | 10% | ||
khalil319 | 0 | 4,947,161,974 | 50% | ||
gamesjoyce | 0 | 9,283,257,122 | 33% | ||
buggedout | 0 | 1,025,641,679,423 | 100% | ||
jasonbu | 0 | 68,100,105,442 | 31.25% | ||
onetin84 | 0 | 915,390,670,394 | 100% | ||
pardeepkumar | 0 | 60,564,885,938 | 30% | ||
felander | 0 | 99,688,214,655 | 21% | ||
santigs | 0 | 27,309,440,277 | 49% | ||
angelusnoctum | 0 | 15,686,299,059 | 100% | ||
bashadow | 0 | 70,241,872,850 | 25% | ||
kimzwarch | 0 | 11,066,922,275 | 4% | ||
jedigeiss | 0 | 1,992,516,020,013 | 100% | ||
massivevibration | 0 | 9,104,758,103 | 15% | ||
onartbali | 0 | 10,646,137,097 | 50% | ||
crokkon | 0 | 50,783,365,253 | 100% | ||
accelerator | 0 | 44,173,135,830 | 5% | ||
buildawhale | 0 | 11,815,769,570,971 | 16% | ||
voxmonkey | 0 | 18,567,635,343 | 100% | ||
drax | 0 | 61,652,654,623 | 14.7% | ||
cesinfenianos | 0 | 7,560,144,921 | 100% | ||
therealwolf | 0 | 1,298,071,763,964 | 4% | ||
deathwing | 0 | 91,738,097,069 | 40% | ||
suffragator | 0 | 1,206,315,034 | 100% | ||
scorer | 0 | 5,445,045,188 | 100% | ||
revisesociology | 0 | 404,196,336,913 | 30% | ||
espoem | 0 | 336,828,300,295 | 100% | ||
thatterrioguy | 0 | 1,516,310,495 | 100% | ||
calimeatwagon | 0 | 786,068,942 | 23.1% | ||
makerhacks | 0 | 47,887,199,662 | 16% | ||
borgheseglass | 0 | 10,618,438,581 | 100% | ||
shadflyfilms | 0 | 9,666,239,998 | 100% | ||
daisyphotography | 0 | 36,426,150,754 | 100% | ||
investegg | 0 | 339,867,853,617 | 8.93% | ||
arabisouri | 0 | 45,407,831,951 | 100% | ||
caladan | 0 | 36,244,404,086 | 19.95% | ||
tradingideas | 0 | 2,276,750,845 | 100% | ||
kipling | 0 | 615,127,677 | 100% | ||
quekery | 0 | 96,153,221,675 | 50% | ||
omstavan | 0 | 8,103,552,208 | 100% | ||
emrebeyler | 0 | 524,870,647,575 | 21% | ||
smartsteem | 0 | 257,506,169,815 | 4% | ||
publicumaurora | 0 | 587,201,759 | 50% | ||
andrepol | 0 | 5,719,607,146 | 99% | ||
mytechtrail | 0 | 45,647,648,358 | 15% | ||
ocupation | 0 | 98,354,843,565 | 30% | ||
tazi | 0 | 286,723,745,637 | 50% | ||
lebin | 0 | 146,537,029,703 | 100% | ||
itchyfeetdonica | 0 | 154,230,906,867 | 30% | ||
nathen007 | 0 | 40,727,137,557 | 100% | ||
fjcalduch | 0 | 37,999,928,993 | 70% | ||
madridbg | 0 | 8,198,211,096 | 50% | ||
smooms | 0 | 19,074,547,757 | 50% | ||
enjoyinglife | 0 | 3,350,649,466 | 30% | ||
steembasicincome | 0 | 1,754,951,442,014 | 100% | ||
jpphotography | 0 | 5,886,195,189 | 36.64% | ||
jrungi | 0 | 1,273,839,466 | 33% | ||
lethsrock | 0 | 573,082,994 | 50% | ||
tomatom | 0 | 7,221,436,788 | 50% | ||
fourfourfun | 0 | 7,415,074,697 | 25% | ||
candyboy | 0 | 787,106,956 | 100% | ||
upmyvote | 0 | 11,424,383,148 | 16% | ||
jim888 | 0 | 303,709,147,205 | 22% | ||
phortun | 0 | 195,387,541,167 | 30% | ||
oliverschmid | 0 | 4,454,585,368,446 | 100% | ||
abitcoinskeptic | 0 | 34,693,531,981 | 20% | ||
jewel-lover | 0 | 1,660,825,686 | 100% | ||
gabrielatravels | 0 | 33,179,110,096 | 20% | ||
jongolson | 0 | 459,794,729,000 | 50% | ||
nerdtopiade | 0 | 21,409,382,580 | 65% | ||
dudeontheweb | 0 | 708,581,679 | 6.6% | ||
payger | 0 | 5,293,340,727 | 50% | ||
korinkrafting | 0 | 853,246,134 | 22.5% | ||
nealmcspadden | 0 | 121,440,993,878 | 21% | ||
tryskele | 0 | 4,823,501,958 | 5% | ||
mermaidvampire | 0 | 47,400,750,240 | 45% | ||
ahmedsy | 0 | 2,219,806,217 | 100% | ||
manncpt | 0 | 67,049,140,299 | 100% | ||
purefood | 0 | 26,423,085,372 | 21% | ||
chrismadcboy2016 | 0 | 3,735,007,414 | 100% | ||
jimcustodio | 0 | 1,885,688,025 | 50% | ||
auracraft | 0 | 1,395,316,797 | 100% | ||
mattockfs | 0 | 20,416,186,729 | 100% | ||
vaansteam | 0 | 1,147,952,191 | 30% | ||
jarvie | 0 | 687,042,364,386 | 100% | ||
jnmarteau | 0 | 19,855,845,015 | 100% | ||
casberp | 0 | 25,648,193,310 | 21.99% | ||
philnewton | 0 | 878,714,639 | 12.5% | ||
udabeu | 0 | 36,162,729,927 | 100% | ||
brewery | 0 | 3,800,588,436 | 18% | ||
tobias-g | 0 | 102,124,204,047 | 18.75% | ||
tricki | 0 | 568,737,076 | 6.6% | ||
investyourvote | 0 | 2,792,645,098 | 6% | ||
icuz | 0 | 1,210,299,802 | 100% | ||
holger80 | 0 | 3,450,979,284,878 | 78% | ||
dailychina | 0 | 2,815,807,904 | 10% | ||
unconditionalove | 0 | 2,336,370,018 | 10.5% | ||
cadawg | 0 | 107,229,946,696 | 28% | ||
minerspost | 0 | 1,909,415,438 | 50% | ||
ericburgoyne | 0 | 2,035,287,153 | 50% | ||
felixgarciap | 0 | 4,635,137,653 | 16.5% | ||
sweetkathy | 0 | 2,258,383,894 | 100% | ||
sudefteri | 0 | 22,451,104,198 | 100% | ||
pkocjan | 0 | 9,426,218,504 | 16.8% | ||
overmedia | 0 | 662,307,940 | 33% | ||
maxpatternman | 0 | 525,119,177 | 100% | ||
condeas | 0 | 2,482,334,259,326 | 100% | ||
anikys3reasure | 0 | 3,306,991,350 | 50% | ||
barge | 0 | 249,194,174,119 | 100% | ||
elektr1ker | 0 | 625,003,816 | 15% | ||
thisbejake | 0 | 1,975,237,860 | 33% | ||
onlavu | 0 | 6,161,256,875 | 15% | ||
asgarth | 0 | 1,234,286,826,548 | 50% | ||
flugschwein | 0 | 44,723,598,660 | 75% | ||
hasmez | 0 | 155,172,075,625 | 100% | ||
cst90 | 0 | 74,367,009,377 | 100% | ||
citimillz | 0 | 202,207,223,362 | 100% | ||
movement19 | 0 | 3,858,690,964 | 4% | ||
ladysalsa | 0 | 3,994,036,038 | 21% | ||
ajaxalot | 0 | 2,650,106,950 | 3.3% | ||
akifane | 0 | 3,752,383,955 | 100% | ||
mindtrap | 0 | 898,464,838,582 | 30% | ||
futurecurrency | 0 | 25,635,682,945 | 45% | ||
losi | 0 | 615,044,494 | 100% | ||
idkpdx | 0 | 2,164,283,618 | 50% | ||
leeyh | 0 | 14,355,666,403 | 100% | ||
backinblackdevil | 0 | 276,958,389,222 | 75% | ||
frassman | 0 | 8,409,570,395 | 50% | ||
properfraction | 0 | 47,893,466,073 | 100% | ||
lauchmelder | 0 | 4,944,893,536 | 100% | ||
nervi | 0 | 4,769,830,931 | 100% | ||
jocieprosza | 0 | 88,856,478,379 | 100% | ||
amico | 0 | 933,053,206,319 | 96.69% | ||
marcus0alameda | 0 | 937,873,970 | 50% | ||
bestboom | 0 | 9,335,642,868 | 21% | ||
eunsik | 0 | 294,309,606,106 | 50% | ||
nebuladream | 0 | 1,180,660,851 | 33% | ||
dotwin1981 | 0 | 58,035,252,442 | 33% | ||
ronaldoavelino | 0 | 153,556,581,129 | 20% | ||
schlafhacking | 0 | 356,613,843,991 | 100% | ||
lesmouths-travel | 0 | 8,103,105,431 | 100% | ||
sbi2 | 0 | 921,490,249,655 | 100% | ||
dera123 | 0 | 774,717,762,755 | 100% | ||
foxon | 0 | 99,462,422,680 | 20% | ||
m2nnari | 0 | 27,277,520,066 | 100% | ||
elleok | 0 | 3,892,773,861 | 100% | ||
freddio | 0 | 20,149,853,516 | 15% | ||
blainjones | 0 | 18,484,119,010 | 15% | ||
gadrian | 0 | 160,075,839,643 | 100% | ||
mary-me | 0 | 49,633,447,527 | 50% | ||
memepress | 0 | 1,498,961,933 | 50% | ||
themightyvolcano | 0 | 194,570,274,154 | 21% | ||
iseeyouvee | 0 | 1,268,421,381 | 21% | ||
peekbit | 0 | 28,021,439,473 | 98.54% | ||
dreimaldad | 0 | 88,298,475,531 | 40% | ||
naruitchi | 0 | 4,132,561,698 | 33% | ||
tsnaks | 0 | 19,669,068,954 | 100% | ||
manojbhatt | 0 | 2,244,944,979 | 100% | ||
saboin | 0 | 95,215,755,802 | 11% | ||
thedevilsbride | 0 | 7,415,387,229 | 50% | ||
globalschool | 0 | 44,585,922,333 | 50% | ||
sbi3 | 0 | 546,565,742,661 | 100% | ||
promobot | 0 | 91,139,281,848 | 100% | ||
youraverageguy | 0 | 530,797,580 | 50% | ||
superlao | 0 | 25,508,533,619 | 100% | ||
dunite | 0 | 10,337,926,802 | 66% | ||
sbi4 | 0 | 340,845,949,889 | 100% | ||
opt2o | 0 | 2,947,110,373 | 50% | ||
jancharlest | 0 | 31,258,181,828 | 100% | ||
celinavisaez | 0 | 4,535,287,669 | 17% | ||
fw206 | 0 | 1,695,100,019,961 | 100% | ||
slobberchops | 0 | 1,733,766,871,042 | 35% | ||
carlpei | 0 | 311,571,351,794 | 100% | ||
meins0815 | 0 | 14,209,723,195 | 23% | ||
aceaeterna | 0 | 3,345,495,098 | 33% | ||
justasperm | 0 | 3,227,174,302 | 100% | ||
pladozero | 0 | 47,148,646,955 | 10% | ||
crimo | 0 | 627,733,097 | 11.5% | ||
nateaguila | 0 | 302,203,866,025 | 8% | ||
sk1920 | 0 | 9,459,039,359 | 100% | ||
angatt | 0 | 527,900,797 | 8.4% | ||
linnyplant | 0 | 43,349,419,335 | 100% | ||
muelli | 0 | 46,196,700,722 | 50% | ||
commonlaw | 0 | 4,537,599,119 | 35% | ||
solarwarrior | 0 | 1,269,913,875,569 | 100% | ||
sbi5 | 0 | 260,804,374,803 | 100% | ||
somegaming | 0 | 1,235,797,532 | 33% | ||
swisswitness | 0 | 12,298,076,934 | 21% | ||
kahvesizlik | 0 | 1,314,778,723 | 100% | ||
inteligente | 0 | 30,849,960 | 21.99% | ||
moneybaby | 0 | 848,743,063 | 2.5% | ||
kriang3tee | 0 | 5,736,611,096 | 65% | ||
imtase | 0 | 1,792,637,449 | 65% | ||
sbi6 | 0 | 259,317,002,155 | 100% | ||
libuska | 0 | 1,552,716,020 | 100% | ||
drsensor | 0 | 2,217,352,677 | 80% | ||
shortsegments | 0 | 896,083,144 | 0.5% | ||
urdreamscometrue | 0 | 2,984,791,078 | 100% | ||
gallerani | 0 | 1,300,943,746 | 21% | ||
baiboua | 0 | 2,541,251,719 | 65% | ||
bigpower | 0 | 3,721,753,326 | 50% | ||
rufruf | 0 | 860,432,353 | 100% | ||
akioexzgamer | 0 | 15,206,126 | 65% | ||
dalz | 0 | 34,854,562,101 | 10.5% | ||
french-tech | 0 | 111,387,340,929 | 65% | ||
yuza | 0 | 1,526,803,143 | 65% | ||
mozo | 0 | 1,011,776,176 | 10.5% | ||
sbi7 | 0 | 172,481,345,414 | 100% | ||
pjcorts | 0 | 897,417,836 | 100% | ||
luppers | 0 | 127,779,690,297 | 10.5% | ||
dlike | 0 | 245,054,078,629 | 21% | ||
tommasobusiello | 0 | 26,786,752,320 | 100% | ||
paopaoza | 0 | 1,979,423,888 | 65% | ||
voxmortis | 0 | 917,736,913 | 0.5% | ||
fullnodeupdate | 0 | 25,204,092,585 | 78% | ||
ten-years-before | 0 | 256,624,881 | 65% | ||
engrave | 0 | 312,941,293,289 | 16.8% | ||
altonos | 0 | 98,512,759,578 | 25% | ||
tipsybosphorus | 0 | 503,623,312,710 | 100% | ||
bluengel | 0 | 4,023,136,003 | 100% | ||
furioslosi | 0 | 479,572,112 | 100% | ||
kr-coffeesteem | 0 | 1,129,956,292 | 100% | ||
bobby.madagascar | 0 | 1,992,793,366 | 5.25% | ||
vimm | 0 | 468,645,798,060 | 66% | ||
muscara | 0 | 54,851,570,748 | 25% | ||
cultus-forex | 0 | 70,739,788,719 | 100% | ||
quediceharry | 0 | 10,086,647,357 | 100% | ||
musinka | 0 | 2,037,241,874 | 100% | ||
puza | 0 | 1,277,586,177 | 65% | ||
crypto.story | 0 | 57,190,783 | 65% | ||
sbi8 | 0 | 183,865,055,889 | 100% | ||
jackofcrows | 0 | 1,550,136,305 | 50% | ||
gamer0815 | 0 | 1,022,572,490 | 33% | ||
univers.crypto | 0 | 181,906,857 | 65% | ||
ibc | 0 | 81,870,178,541 | 100% | ||
mintrawa | 0 | 5,663,598,665 | 65% | ||
ldp | 0 | 3,025,730,786 | 21% | ||
steemitcuration | 0 | 842,094,473 | 25% | ||
berthold | 0 | 3,952,039,714 | 6% | ||
sbi9 | 0 | 125,676,774,217 | 100% | ||
actifit-peter | 0 | 490,045,943,803 | 98.44% | ||
besheda | 0 | 1,008,589,801 | 43% | ||
thrasher666 | 0 | 1,819,193,683 | 60% | ||
florino | 0 | 821,998,282 | 15% | ||
votum | 0 | 134,192,149 | 100% | ||
linuxbot | 0 | 651,845,003 | 100% | ||
actnearn | 0 | 1,609,914,005,612 | 100% | ||
forecasteem | 0 | 9,130,090,394 | 100% | ||
geeklania | 0 | 19,897,400,315 | 100% | ||
cwow2 | 0 | 211,776,585,193 | 27% | ||
followjohngalt | 0 | 153,279,587,056 | 21% | ||
mistia | 0 | 6,610,310,560 | 100% | ||
glastar | 0 | 1,154,655,932,982 | 100% | ||
cakemonster | 0 | 13,560,416,404 | 10.5% | ||
sbi10 | 0 | 119,691,148,361 | 100% | ||
smonia | 0 | 1,914,200,334 | 100% | ||
starrouge | 0 | 1,040,268,151 | 50% | ||
wherein | 0 | 312,334,443,133 | 100% | ||
bluerobo | 0 | 147,767,740,221 | 100% | ||
zerofive | 0 | 851,298,334 | 50% | ||
j-p-bs | 0 | 2,138,320,077 | 100% | ||
thehealthylife | 0 | 3,582,160,610 | 100% | ||
kaldewei | 0 | 8,169,290,548 | 33% | ||
tr777 | 0 | 1,669,523,259 | 100% | ||
reflektor | 0 | 18,413,060,033 | 50% | ||
smoner | 0 | 1,447,205,774 | 100% | ||
flyingbolt | 0 | 1,567,723,039 | 21% | ||
determine | 0 | 1,269,074,029 | 21% | ||
smonian | 0 | 1,652,850,877 | 100% | ||
cnstm | 0 | 253,187,661,391 | 100% | ||
permaculturedude | 0 | 8,198,666,466 | 21% | ||
likuang007 | 0 | 662,494,496 | 100% | ||
agent14 | 0 | 454,156,042 | 35% | ||
meins0816 | 0 | 3,304,632,749 | 75% | ||
marianomariano | 0 | 21,093,286,391 | 100% | ||
smon-joa | 0 | 1,263,827,694 | 100% | ||
jjangjjanggirl | 0 | 1,444,793,864 | 100% | ||
hingsten | 0 | 16,928,705,210 | 50% | ||
lianjingmedia | 0 | 975,523,025 | 100% | ||
broxi | 0 | 7,957,906,513 | 50% | ||
hanke | 0 | 7,607,960,025 | 100% | ||
curationvoter | 0 | 20,658,630,394 | 50% | ||
curationhelper | 0 | 14,120,593,113 | 100% | ||
realgoodcontent | 0 | 965,967,317 | 100% | ||
abbenay | 0 | 11,063,432,745 | 50% | ||
giftgiver | 0 | 78,932,553,950 | 40% | ||
sm-skynet | 0 | 2,572,003,984 | 100% | ||
thelogicaldude | 0 | 21,668,546,782 | 10% | ||
smonbear | 0 | 803,574,474 | 50% | ||
bewithbreath | 0 | 1,408,578,010 | 5% | ||
hungryharish | 0 | 1,552,822,755 | 5.25% | ||
maxsieg | 0 | 1,415,043,220 | 25% | ||
sniem5180 | 0 | 3,553,488,286 | 75% | ||
mfblack | 0 | 20,225,587,799 | 19.95% | ||
szf | 0 | 688,338,989 | 50% | ||
blue.rabbit | 0 | 960,179,716,001 | 100% | ||
actifit-devil | 0 | 7,632,507,724 | 100% | ||
samujaeger | 0 | 37,458,625,194 | 100% | ||
moritzjaeger | 0 | 479,973,289 | 50% | ||
epicdice | 0 | 8,969,094,367 | 1.2% | ||
battlegames | 0 | 431,334,617,403 | 99% | ||
ricardomello | 0 | 4,587,781,131 | 100% | ||
blockchainpeople | 0 | 117,516,946 | 21.99% | ||
gadrian-sp | 0 | 1,146,485,188 | 100% | ||
minigame | 0 | 415,250,803,073 | 100% | ||
threejay | 0 | 9,633,173,314 | 10.5% | ||
sm-silva | 0 | 2,423,609,995 | 10.5% | ||
naltedtirt | 0 | 1,970,245,973 | 50% | ||
ssc-token | 0 | 1,324,032,433 | 100% | ||
steementertainer | 0 | 232,762,851 | 65% | ||
solomon.grundy | 0 | 3,226,411,081 | 75% | ||
likwid | 0 | 735,827,084,241 | 100% | ||
swedishdragon76 | 0 | 2,488,827,304 | 50% | ||
dachcolony | 0 | 18,458,656,499 | 100% | ||
tradingideas2 | 0 | 0 | 100% | ||
plankton.token | 0 | 4,870,667,319 | 30% | ||
tggr | 0 | 1,200,924,583 | 3% | ||
iamjohn | 0 | 1,526,787,667 | 25% | ||
firefuture | 0 | 748,363,592 | 10.5% | ||
ilovecanada | 0 | 92,031,304 | 50% | ||
steemindian | 0 | 2,039,660,636 | 10.5% | ||
nalexadre | 0 | 297,584,857 | 65% | ||
sparstrumpf | 0 | 2,959,266,728 | 100% | ||
erixink | 0 | 2,647,825,796 | 100% | ||
vxc | 0 | 1,808,374,476 | 57.75% | ||
imbartley | 0 | 1,577,752,542 | 50% | ||
kaeptn-iglo | 0 | 85,237,970,792 | 50% | ||
shimozurdo | 0 | 9,717,864,737 | 21% | ||
kgswallet | 0 | 1,428,478,329 | 50% | ||
milu-the-dog | 0 | 8,997,884,850 | 21% | ||
lrekt01 | 0 | 3,597,669,141 | 100% | ||
triplea.bot | 0 | 7,323,044,596 | 21% | ||
steem.leo | 0 | 204,561,637,828 | 21% | ||
holycow2019 | 0 | 287,121,509 | 100% | ||
votebetting | 0 | 388,829,257,308 | 50% | ||
leeyh5 | 0 | 1,535,817,859 | 50% | ||
zaku-pal | 0 | 781,139,260 | 21% | ||
co2admin | 0 | 22,351,125,821 | 97.32% | ||
babytarazkp | 0 | 3,262,561,006 | 50% | ||
asteroids | 0 | 23,523,540,651 | 18.9% | ||
tokenindustry | 0 | 3,366,503,219 | 66% | ||
tina-tina | 0 | 362,705,493 | 100% | ||
ticketyboo | 0 | 14,190,513,161 | 100% | ||
ticketywoof | 0 | 14,188,378,851 | 100% | ||
thranax | 0 | 8,136,250,014 | 15% | ||
project.hope | 0 | 147,440,217,982 | 1% | ||
beta500 | 0 | 16,924,195,035 | 21% | ||
happiness19 | 0 | 0 | 100% | ||
sbi-tokens | 0 | 9,973,554,394 | 35.19% | ||
gdhaetae | 0 | 31,847,405 | 100% | ||
re2pair | 0 | 319,513,138 | 100% | ||
maxuvv | 0 | 0 | 9% | ||
maxuvd | 0 | 47,214,162,903 | 10.5% | ||
btscn | 0 | 369,750,587,069 | 100% | ||
borbina | 0 | 14,289,183,578 | 100% | ||
emeka4 | 0 | 139,980,814 | 100% | ||
ctl001 | 0 | 597,162,447 | 100% | ||
jessy22 | 0 | 1,237,251,025 | 100% | ||
andylein | 0 | 44,333,513,883 | 50% | ||
pogarda | 0 | 971,436,878 | 100% | ||
holybread | 0 | 131,891,616,399 | 30% | ||
mein2070 | 0 | 2,761,319,298 | 75% | ||
ibelin | 0 | 3,874,174,908 | 35% | ||
therealyme | 0 | 1,330,636,893 | 16.8% | ||
mittwochsquickie | 0 | 2,496,506,755 | 60% | ||
bilpcoin.pay | 0 | 1,048,644,702 | 25% | ||
qwertm | 0 | 2,981,512,024 | 50% | ||
detetive | 0 | 26,816,516 | 21.99% | ||
gerbo | 0 | 203,818,019 | 21% | ||
simplex-world | 0 | 10,151,515,731 | 82.44% | ||
sacrosanct | 0 | 9,045,811,090 | 30% | ||
keepit2 | 0 | 1,307,351,504 | 100% | ||
ribary | 0 | 7,029,783,615 | 10.5% | ||
busybody | 0 | 4,699,796,453 | 18% | ||
mice-k | 0 | 124,020,359,780 | 21% | ||
davidlionfish | 0 | 11,143,189,740 | 50% | ||
techhype | 0 | 1,958,388 | 1% | ||
troll3838 | 0 | 1,772,574,893 | 21% | ||
drew0 | 0 | 7,658,065,735 | 50% | ||
mehmetfix | 0 | 7,330,912,625 | 11% | ||
dpend.active | 0 | 3,988,540,795 | 4.2% | ||
euc | 0 | 21,197,762,300 | 100% | ||
dapplr | 0 | 1,219,549,620 | 12% | ||
stuntman.mike | 0 | 49,960,477,317 | 100% | ||
fengchao | 0 | 14,923,181,543 | 3% | ||
foxoff | 0 | 2,976,155,554 | 40% | ||
blue-witness | 0 | 3,004,857,252 | 100% | ||
mountaingod | 0 | 415,449,545,473 | 100% | ||
hiq | 0 | 57,625,999,282 | 50% | ||
folklure | 0 | 2,119,512,703 | 10.5% | ||
nulledgh0st | 0 | 848,512,568,274 | 50% | ||
softworld | 0 | 1,079,302,806,199 | 65% | ||
polish.hive | 0 | 71,484,878,359 | 21% | ||
velinov86 | 0 | 2,254,340,826 | 15% | ||
dagamers | 0 | 879,224,289 | 66% | ||
quello | 0 | 8,715,685,437 | 18.75% | ||
monster-burner | 0 | 998,427,277 | 10.5% | ||
dcityrewards | 0 | 615,642,236,761 | 21% | ||
freakeao | 0 | 40,788,787,237 | 100% | ||
alapok | 0 | 1,708,311,807 | 100% | ||
hivelist | 0 | 1,893,950,585 | 2.1% | ||
ninnu | 0 | 11,163,605,519 | 2.5% | ||
kiemis | 0 | 9,793,989,927 | 2.5% | ||
tattytoque | 0 | 555,900,250 | 31.25% | ||
localgrower | 0 | 1,107,356,502 | 2.1% | ||
traduzindojogos | 0 | 1,909,501,752 | 100% | ||
ronavel | 0 | 48,814,025,099 | 15% | ||
jannatmirza | 0 | 431,306,583 | 100% | ||
hivecur | 0 | 83,360,197,401 | 21% | ||
kran9 | 0 | 526,449,049 | 100% | ||
kran10 | 0 | 526,441,913 | 100% | ||
jelly13 | 0 | 373,145,300,589 | 25.5% | ||
reza-shamim | 0 | 14,055,875,780 | 100% | ||
cristianlrj | 0 | 0 | 100% | ||
koxmicart | 0 | 852,944,810 | 100% | ||
recoveryinc | 0 | 196,546,952,022 | 8% | ||
camplife | 0 | 671,388,206 | 100% | ||
kraken99 | 0 | 3,940,577,721 | 100% | ||
dying | 0 | 7,697,776,693 | 8% | ||
vtol79 | 0 | 18,640,624,498 | 100% | ||
discohedge | 0 | 2,215,833,201 | 10.5% | ||
usainvote | 0 | 3,120,102,066,794 | 20% | ||
aaalviarez | 0 | 5,599,958,842 | 100% | ||
victorjopaca | 0 | 0 | 100% | ||
carmate | 0 | 5,814,270,865 | 50% | ||
mismo | 0 | 675,121,424 | 16.8% | ||
alphacentauris | 0 | 0 | 100% | ||
hiq.redaktion | 0 | 31,479,710,550 | 50% | ||
beebay | 0 | 2,179,495,283 | 50% | ||
brofund-stem | 0 | 3,115,048,928 | 100% | ||
beebay.office | 0 | 1,780,879,832 | 50% | ||
betterdev | 0 | 74,968,874,919 | 100% | ||
aleda0616 | 0 | 0 | 100% |
Upvoted to thank you @holger80 for supporting the [CO2Fund](https://peakd.com/@co2fund) by, e.g., supporting posts, banner presentation, SP/HP delegation, dustsweeper gifts, helpful tools, etc.
author | co2admin |
---|---|
permlink | re-update-for-beem-improved-account-history-handling-20201106t233236z |
category | hive-139531 |
json_metadata | "{"app": "rewarding/0.1.0"}" |
created | 2020-11-06 23:32:36 |
last_update | 2020-11-06 23:32:36 |
depth | 1 |
children | 0 |
last_payout | 2020-11-13 23: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 | 193 |
author_reputation | 3,792,666,189 |
root_title | "Update for beem: improved account history handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,422,726 |
net_rshares | 0 |
Congratulations @holger80! 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/@holger80/upvotes.png?202011202137"></td><td>You distributed more than 22000 upvotes. Your next target is to reach 23000 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@holger80) 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>
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-holger80-20201120t220435000z |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-11-20 22:04:36 |
last_update | 2020-11-20 22:04:36 |
depth | 1 |
children | 0 |
last_payout | 2020-11-27 22:04: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 | 631 |
author_reputation | 369,328,609,310,964 |
root_title | "Update for beem: improved account history handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,615,655 |
net_rshares | 0 |
Your current Rank (124) in the battle Arena of Holybread has granted you an Upvote of 30%
author | holybread |
---|---|
permlink | re-update-for-beem-improved-account-history-handling-20201106t233448z |
category | hive-139531 |
json_metadata | "{"app": "beem/0.24.4"}" |
created | 2020-11-06 23:34:48 |
last_update | 2020-11-06 23:34:48 |
depth | 1 |
children | 0 |
last_payout | 2020-11-13 23:34: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 | 89 |
author_reputation | 11,886,070,775,640 |
root_title | "Update for beem: improved account history handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,422,750 |
net_rshares | 0 |
<center> <sup>Congratulations @holger80, You Earned <b>2.051 TAN</b> & Curators Made <b>2.051 TAN</b>.</sup> <img src="https://files.peakd.com/file/peakd-hive/theguruasia/DWYqznFx-TANToken70.png" alt="tangent.token"> --- <sup>Join [CORE / VAULT Token Discord Channel](https://discord.gg/XYMrvyr) or Trade [TANGENT Token](https://hive-engine.com/?p=market&t=TAN)</sup> <sup>[TAN Current Market Price](https://hive-engine.com/?p=market&t=TAN) : <b>0.250 HIVE</b></sup> </center>
author | tan.app |
---|---|
permlink | 20201110t021630467z |
category | hive-139531 |
json_metadata | {"tags":["tan","tangent"],"app":"tan-bot/1.1","format":"markdown"} |
created | 2020-11-10 02:16:30 |
last_update | 2020-11-10 02:16:30 |
depth | 1 |
children | 0 |
last_payout | 2020-11-17 02:16:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 486 |
author_reputation | 164,160,871,793 |
root_title | "Update for beem: improved account history handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,464,857 |
net_rshares | 0 |
@holger80, Very useful, thank you for your effort! $tangent Cheers~
author | theguruasia |
---|---|
permlink | re-holger80-qjfypg |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.10.9"} |
created | 2020-11-07 19:41:42 |
last_update | 2020-11-08 12:51:45 |
depth | 1 |
children | 1 |
last_payout | 2020-11-14 19:41: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 | 68 |
author_reputation | 72,543,463,798,960 |
root_title | "Update for beem: improved account history handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,432,946 |
net_rshares | 0 |
<center> <sup>Congratulations, @theguruasia You Successfully Trended The Post Shared By @holger80.</sup> <sup>You Utilized <b>3/3</b> Daily Summon Bot Calls.</sup> --- <sup>[TAN Current Market Price](https://hive-engine.com/?p=market&t=TAN) : <b>0.203 HIVE</b></sup> </center>
author | tan.bot |
---|---|
permlink | 20201108t125157234z |
category | hive-139531 |
json_metadata | {"tags":["tan","tangent"],"app":"tan-bot/1.1","format":"markdown"} |
created | 2020-11-08 12:51:57 |
last_update | 2020-11-08 12:51:57 |
depth | 2 |
children | 0 |
last_payout | 2020-11-15 12:51: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 | 276 |
author_reputation | 44,172,891,181 |
root_title | "Update for beem: improved account history handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,442,032 |
net_rshares | 0 |
Thanks!
author | themarkymark |
---|---|
permlink | re-holger80-qjeeq7 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.10.9"} |
created | 2020-11-06 23:32:30 |
last_update | 2020-11-06 23:32:30 |
depth | 1 |
children | 0 |
last_payout | 2020-11-13 23:32:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 1,774,203,102,043,512 |
root_title | "Update for beem: improved account history handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,422,724 |
net_rshares | 0 |