 Below are a few highlights of the Hive-related programming issues worked on by the BlockTrades team since my last report. It’s been a while since I last wrote, and a lot of work has been done since then, so a lot of work that was done isn’t covered here, but I’ve tried to capture some of the more important tasks that might affect or be useful to other Hive devs. # [Hived (blockchain node software)](https://gitlab.syncad.com/hive/hive) ## Fixed log rotation bug There was a longstanding bug in the fc file appender that was fixed, enabling log rotation to work properly for hived. Log rotation is a process where a program periodically creates a new log file instead of just always writing to the same log file, and then compresses the previously used log file. Most commonly node operators may want to configure their log rotation settings so that a new log file is created every day and the last week’s or month’s worth of log files are kept. Log rotation is particularly useful when hived is configured to log a lot of events, because without log rotation such log files can quickly get too large to manage effectively and can have detrimental side effects such as using up all the disk space on a server. ## Improved error handling for hived “notifications” External processes can register with a hived node to receive notifications of events (e.g. arrival of a new block, etc). Recently we [improved hived’s HTTP server by supporting 204 HTTP status codes.]( https://gitlab.syncad.com/hive/hive/-/merge_requests/950) This change was made to fix intermittent CI test failures for tests that relied on notifications sent by hived. Although the change was initiated to reduce intermittent test failures, it is also an important improvement for other applications that use hived’s notification service. ## Fixed bug when processing a HAF database backup We fixed an [invalid assert in the code for public key serialization of null key values](https://gitlab.syncad.com/hive/hive/-/merge_requests/941). This would show up when a null public key was specified for a witness key and resulted in a failure when processing a HAF database backup. ## Automated action code removed We removed the never-used code for automated actions. Automated actions were introduced as a concept in hived to prevent a bunch of “automatically created” actions from requiring too much cpu time, resulting in a block not being able to be produced with the allowed block computation time. This concept was originally created by Steemit devs because of fears that automated actions associated with SMTs (e.g. periodic creation of new SMT tokens) could become computationally burdensome. We considered using this capability when recurring transfers were developed, as these operations also generated “future work” beyond the initial block in which they were included, but we decided that there were other ways to schedule such future actions so that the nodes don’t get overburdened. ## RC code continuing to be refactored As a step towards eventually allowing the resource credit logic being part of blockchain consensus, we’ve been refactoring the code in the resource credit plugin and moving some of this code into the core code. None of this work will impact current consensus rules, however. ## Hived continuous integration (CI) test improvements Out testing system now generates [a reusable blockchain state file built from the first 5M blocks of the blockchain](https://gitlab.syncad.com/hive/hive/-/merge_requests/900). This state file is versioned to the revision of the hived code that created, so as long as there are no changes to the revision of the hived code, this same statefile can be reused across multiple builds and tests of the code, reducing build and test time. In other words, when a commit revision only modifies the tests, the commit does not trigger a new build operation (hived images are reused). Similarly, state file generation is skipped (as the state file is also reused). This means the turnaround time for CI pipelines is very quick when only tests are being modified/added. Other testing improvements: * [new blockchain operation tests (testcases for dedicated testing scenarios)](https://gitlab.syncad.com/hive/hive/-/merge_requests/911) * A new Hived fixture was created that is used for unit tests to much better emulate the real world Hived environment during testing time. With this new text fixture, the whole appbase application is started and initialized, instead of hacking the initialization of specific plugins being tested. The impetus for this change was that we found a unit test that wasn’t properly testing functionality because of a mismatch between the test setup and real-world hived setup. * Several fixes to Python regression tests itself to avoid CI random failures: https://gitlab.syncad.com/hive/hive/-/merge_requests/952 https://gitlab.syncad.com/hive/hive/-/merge_requests/936 * Preliminary fixes to libfaketime library eliminating timer blocking problem. Due to bad time recalculations, the witness plugin became blocked and block production was stopped. This error often led to CI failures (tests that timed out). # [Clive (a new Hive wallet with a text-based user interface)](https://gitlab.syncad.com/hive/clive) Clive is a Hive wallet written in Python that runs on your own computer (it is not a web-based wallet where the code comes from a remote server) so it is inherently more secure than web-based wallets. Currently there are two such wallets available and supported in the Hive ecosystem: 1) a command-line interface wallet (aka the CLI wallet) written using C++ and 2) a graphical interface wallet called [Vessel (a JavaScript-based wallet)](https://gitlab.syncad.com/hive/vessel). Clive is designed to be easier to use than the existing CLI wallet, but at the same time it doesn’t require a terminal that supports graphics like Vessel does. For most people, Clive should provide a more friendly interface for performing Hive operations in a high security environment compared to using the CLI wallet. As it turns out I was overly optimistic about the development status of Clive in my previous report, so a publicly usable version is still a couple weeks away, and that initial version will mainly support basic operations such as Hive/HBD transfers. # Beekeeper (tool for managing encryption keys) Along with the creation of Clive, we created a new C++ program that can be used to store encryption keys and sign transactions with those keys. The purpose of this new program is to separate the high-security aspects of encryption key management from other wallet operations. For example, Clive doesn’t directly store keys or sign transactions. Instead it communicates with a separate beekeeper process and requests these operations to be performed. For those familiar with the EOS ecosystem, beekeeper is based on the ideas embodied in keosd. Recently beekeeper was improved to allow a single instance of beekeeper to support multiple clive instances. # [Hive Application Framework (HAF)](https://gitlab.syncad.com/hive/haf) HAF is a SQL-based framework for creating highly scalable and robust 2nd layer apps that operate using data from the Hive blockchain. ## New HAF features * [Support for multiple contexts passed to app_next_block function](https://gitlab.syncad.com/hive/haf/-/merge_requests/277). This makes it easy to create complex haf apps which embedded other haf apps in order to gain the extra functionality of those apps. It enables modular design of complex haf apps. This new feature was tested as part of embedding the balance_tracker app inside the haf_block_explorer app. * [Support for HAF database backup/restore in dockerized environment](https://gitlab.syncad.com/hive/haf/-/merge_requests/282) * [better tracking of SQL query activity: counts deleted/updated/inserted/selected tuples in the haf database](https://gitlab.syncad.com/hive/haf/-/merge_requests/288) ## Implemented standardized composite data types for Hive blockchain operations We completed the creation of [SQL “composite data types” that correspond to Hive blockchain operations](https://gitlab.syncad.com/hive/haf/-/merge_requests/264), and the associated code for creating such composite objects from raw operations data. Having a common SQL-based representation of such data promotes more efficient coding practices and code re-use across HAF applications. Using these composite objects we were able to cut in half the block processing time required by the haf block explorer indexing engine. Next we plan to update more of the existing haf apps to uses this new feature. ## HAF query supervisor to prevent rogue queries consuming too many resources One of the more important tasks we’ve been working on for HAF recently is the creation of a “query supervisor”. This is a set of code that is used to monitor the queries executed on a SQL server and limit how many resources can be used by that query before the query will be terminated. The query supervisor is necessary to prevent potential denial-of-service attacks that might be launched against a HAF server, especially a HAF server that allows the execution of semi-arbitrary SQL code (e.g. the code of SQL code that would likely be used for a smart contract system running on a HAF server). Implementation of the query supervisor has proceeded to the point where it is functionally useful and we’re getting ready to setup an instance of a HAF server that will be publicly accessible with the query supervisor enabled to rate limit loading on the database. ## HAF bug fixes and test improvements * [Fixed bug that could lead to a constraint violation while processing forks (community reported bug)](https://gitlab.syncad.com/hive/haf/-/merge_requests/285) * [Eliminated hived node hung while closing](https://gitlab.syncad.com/hive/haf/-/merge_requests/278) * [Fixed bug when different SQL role (user) owns application schema and different role creates context](https://gitlab.syncad.com/hive/haf/-/merge_requests/286) * [Support for creating testnet HAF environments to simplify writing testcases]( https://gitlab.syncad.com/hive/haf/-/merge_requests/224) # HAFAH - HAF-based account history application * [Testing for this app was updated to reuse already produced data basing on commit revision.](https://gitlab.syncad.com/hive/HAfAH/-/merge_requests/73) * Eliminated need to have local `hafah_user` unix user and similarly eliminated usage of sudo while performing a database setup using setup_db.sh script. # Hivemind (social media HAF app for Hive) * [CI tests for hivemind use a docker image of hivemind instead of directly creating a hivemind setup](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/594). This allows the full dockerized flow for hivemind to be tested during CI testing. * [Functional changes to community support: owner can't be changed anymore](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/520) # HAF-based balance tracker: tracks Hive account balances This is a HAF app that we originally created as an example of how to make a simple app. It provides an api to track hive and hbd account balances for any Hive account over time (for example, to graph how your account's hive value increases/decreases with time). But we found its functionality would be very useful for the haf block explorer, so we've extended its functionality significantly to fit the needs of the block explorer. * [Support for tracking saving balances](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/16 ) * [Support for tracking reward balances](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/19) * [Support for tracking vests delegations](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/12) * [Vests withdraw routes support](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/20) * [Setup/permission fixes and improvements](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/21) * https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/17 # HAF-based block explorer We’ve been working for a while on new HAF-based block explorer for Hive. There were two main reasons for creating another block explorer for Hive: 1) we wanted an open-source block explorer than could easily be deployed by any of the existing API node operators without adding much overhead to their servers as a means of further decentralizing this critical functionality and 2) we wanted a “heavy-duty” HAF app that could help us identify and fix potential weaknesses and programming difficulties that might arise when developing a complex HAF-based app. So far, I feel we’re well on the way to achieving both goals with this task. * [Integrated and enabled metadata data provider (offered by HAF)](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/37) * [implemented delegated vests tracking/endpoint](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/38) * [Implemented savings tracking/endpoint](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/44) * Implemented versioning * Use new multiple context scheme provided by HAF * [Rewards tracking using balance tracker features](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/47) * [Vests withdrawal routes support](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/48) * [Support for structural HAF operations to speed up block indexing](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/43) # Some upcoming tasks * Integration of keyauth state provider provided by HAF into haf block explorer. * Improve pg_dump/pg_restore performance by changing format of dumped hive.operation from textual json to bytea literal. * Complete refactoring work on resource credit code (for eventual inclusion in consensus logic). * Test real world performance of SQL query_supervisor by setting up a publicly accessible HAF server that users can directly perform read-only queries on. * Continue work on Consensus State Providers (for more powerful HAF apps). * Continue work on HAF-based block explorer backend and GUI * Finish up work on Clive wallet. * Collect benchmarks for a hafah app operating in “irreversible block mode” and compare to a hafah app operating in “normal” mode (low priority). * Publish more documentation for various new tools (beekeeper, Clive, consensus state providers) and separate HAF documentation into smaller, more easily digestible chunks. * Create docker compose scripts to ease deployment of API node infrastructure.
author | blocktrades |
---|---|
permlink | 4th-update-of-2023-putting-haf-apps-through-their-paces |
category | hive-139531 |
json_metadata | {"tags":["hive","blockchain","software","blocktrades"],"links":["https://gitlab.syncad.com/hive/hive"],"app":"hiveblog/0.1","format":"markdown","image":["https://images.hive.blog/DQmSihw8Kz4U7TuCQa98DDdCzqbqPFRumuVWAbareiYZW1Z/blocktrades%20update.png"]} |
created | 2023-07-03 03:11:39 |
last_update | 2023-07-03 03:21:54 |
depth | 0 |
children | 14 |
last_payout | 2023-07-10 03:11:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 113.066 HBD |
curator_payout_value | 112.927 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14,766 |
author_reputation | 1,278,355,776,041,298 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 124,989,473 |
net_rshares | 505,574,884,540,786 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemychicken1 | 0 | 629,984,411,239 | 22% | ||
boatymcboatface | 0 | 570,057,907,943 | 30% | ||
kingscrown | 0 | 86,716,829,019 | 30% | ||
flemingfarm | 0 | 447,357,530,490 | 80% | ||
acidyo | 0 | 14,618,366,195,958 | 100% | ||
leprechaun | 0 | 1,099,451,751 | 13% | ||
theshell | 0 | 152,699,186,537 | 30% | ||
kennyskitchen | 0 | 18,374,721,786 | 50% | ||
gtg | 0 | 36,322,553,701,440 | 100% | ||
roelandp | 0 | 487,942,690,744 | 50% | ||
ausbitbank | 0 | 3,070,082,313,983 | 100% | ||
fulltimegeek | 0 | 734,781,998,853 | 100% | ||
cloh76 | 0 | 145,734,272,936 | 100% | ||
renovatio | 0 | 10,786,412,398 | 100% | ||
kendewitt | 0 | 395,904,556,776 | 100% | ||
arcange | 0 | 10,969,806,122,484 | 50% | ||
lichtblick | 0 | 131,464,626,589 | 100% | ||
deanliu | 0 | 3,948,788,490,320 | 100% | ||
quigua | 0 | 1,094,872,223 | 100% | ||
ace108 | 0 | 377,025,938,369 | 10% | ||
akipponn | 0 | 3,894,267,887 | 30% | ||
magicmonk | 0 | 4,598,651,423,499 | 100% | ||
timcliff | 0 | 124,048,463,033 | 100% | ||
jphamer1 | 0 | 5,331,074,953,163 | 100% | ||
joele | 0 | 35,395,907,607 | 100% | ||
oflyhigh | 0 | 4,515,380,133,089 | 100% | ||
shanghaipreneur | 0 | 23,732,010,017 | 100% | ||
fooblic | 0 | 36,498,017,791 | 99% | ||
borran | 0 | 1,070,502,271,496 | 100% | ||
lemouth | 0 | 2,993,545,573,986 | 100% | ||
elamental | 0 | 10,229,620,307 | 22% | ||
stevescoins | 0 | 2,404,326,176 | 25% | ||
netaterra | 0 | 196,051,410,243 | 10% | ||
themonetaryfew | 0 | 753,401,417,104 | 100% | ||
esecholo | 0 | 7,831,791,341 | 100% | ||
penguinpablo | 0 | 199,921,956,470 | 14% | ||
uwelang | 0 | 12,159,525,821 | 20% | ||
wakeupnd | 0 | 102,071,714,963 | 50% | ||
tftproject | 0 | 1,297,720,991 | 7.5% | ||
dbroze | 0 | 8,510,911,310 | 50% | ||
jimbobbill | 0 | 2,136,334,439 | 15% | ||
canadian-coconut | 0 | 7,575,108,987,347 | 50% | ||
cornerstone | 0 | 1,177,819,247,986 | 50% | ||
yetaras | 0 | 91,087,420,491 | 33.3% | ||
petrvl | 0 | 207,519,125,711 | 20% | ||
mjhomb | 0 | 356,115,647,156 | 100% | ||
funnyman | 0 | 1,369,416,581 | 5.6% | ||
steemcleaners | 0 | 2,291,430,737,617 | 80% | ||
michelle.gent | 0 | 295,624,188,507 | 100% | ||
whoib | 0 | 9,931,355,795 | 100% | ||
lloyddavis | 0 | 22,604,926,034 | 75% | ||
ssekulji | 0 | 30,558,716,516 | 100% | ||
siniceku | 0 | 1,504,165,487 | 100% | ||
syahhiran | 0 | 1,053,384,466 | 100% | ||
ura-soul | 0 | 36,062,951,125 | 25% | ||
techslut | 0 | 293,375,622,944 | 50% | ||
consciousness | 0 | 10,013,126,809 | 100% | ||
triviummethod | 0 | 5,776,683,579 | 100% | ||
jaybird | 0 | 23,207,287,214 | 100% | ||
whistleblower | 0 | 10,515,040,181 | 100% | ||
ancolie | 0 | 13,277,520,237 | 11.37% | ||
funnel | 0 | 59,031,905,675 | 100% | ||
edb | 0 | 6,161,847,961 | 6% | ||
veganism | 0 | 5,746,342,043 | 100% | ||
justinw | 0 | 155,880,379,453 | 33% | ||
walterjay | 0 | 197,659,842,211 | 16.25% | ||
humanearl | 0 | 2,032,488,858 | 70% | ||
v4vapid | 0 | 884,914,875,458 | 5.5% | ||
delso | 0 | 49,604,582,335 | 100% | ||
steemitcommunity | 0 | 1,354,326,995 | 100% | ||
darynka | 0 | 988,051,492 | 16.65% | ||
askari | 0 | 25,103,506,947 | 20% | ||
ppjose | 0 | 1,192,691,171 | 100% | ||
tarazkp | 0 | 3,312,954,153,139 | 50% | ||
steemitboard | 0 | 12,954,194,864 | 5% | ||
sudutpandang | 0 | 391,079,789 | 100% | ||
thereikiforest | 0 | 483,529,368 | 10% | ||
evildeathcore | 0 | 8,491,701,236 | 100% | ||
teammo | 0 | 274,564,087,877 | 100% | ||
diggndeeper.com | 0 | 6,856,565,891,347 | 100% | ||
trafalgar | 0 | 46,514,838,615,076 | 100% | ||
louisthomas | 0 | 208,975,666,528 | 100% | ||
itinerantph | 0 | 1,171,735,582 | 50% | ||
lordneroo | 0 | 9,856,742,865 | 100% | ||
freedomexists | 0 | 1,596,762,984 | 100% | ||
freebornsociety | 0 | 5,679,851,634 | 10% | ||
singa | 0 | 8,581,186,650 | 100% | ||
detlev | 0 | 135,339,749,617 | 10% | ||
dickturpin | 0 | 54,024,291,690 | 100% | ||
raindrop | 0 | 720,625,704,020 | 100% | ||
ocisly | 0 | 11,775,650,880 | 100% | ||
passion-fruit | 0 | 9,766,172,027 | 92% | ||
fortune-master | 0 | 9,360,966,428 | 92% | ||
lugaxker | 0 | 598,935,157 | 25.74% | ||
smasssh | 0 | 1,353,605,020,851 | 30% | ||
tamaralovelace | 0 | 81,821,311,861 | 100% | ||
mes | 0 | 490,090,577,092 | 100% | ||
andyjaypowell | 0 | 657,217,407,150 | 99% | ||
nenio | 0 | 69,515,528,148 | 26% | ||
iansart | 0 | 422,063,028,464 | 100% | ||
schlees | 0 | 419,278,653,404 | 20% | ||
mobbs | 0 | 295,811,537,164 | 100% | ||
jerrybanfield | 0 | 173,873,333,740 | 50% | ||
rt395 | 0 | 12,300,281,935 | 10% | ||
uruiamme | 0 | 5,709,314,548 | 55% | ||
bigram13 | 0 | 26,463,674,658 | 100% | ||
drag33 | 0 | 39,970,089,447 | 100% | ||
newsflash | 0 | 717,634,400 | 1.37% | ||
fredrikaa | 0 | 2,197,718,743,720 | 100% | ||
trumpikas | 0 | 9,306,953,663 | 80% | ||
frostyamber | 0 | 7,909,658,950 | 100% | ||
joechiappetta | 0 | 134,555,616,132 | 100% | ||
aditor | 0 | 5,287,301,972 | 100% | ||
bitcoinflood | 0 | 250,072,843,829 | 100% | ||
belahejna | 0 | 36,511,537,858 | 20% | ||
anacristinasilva | 0 | 21,473,920,019 | 50% | ||
steeminator3000 | 0 | 784,649,488 | 100% | ||
alphacore | 0 | 9,585,793,775 | 7.12% | ||
galenkp | 0 | 5,026,930,695,879 | 100% | ||
enjar | 0 | 811,684,310,678 | 100% | ||
robtheranger | 0 | 524,197,205 | 10% | ||
mahdiyari | 0 | 2,336,053,133,918 | 100% | ||
chinito | 0 | 22,513,295,554 | 100% | ||
hellene8 | 0 | 1,853,312,781 | 100% | ||
spectrumecons | 0 | 3,269,660,706,655 | 50% | ||
truthforce | 0 | 3,134,019,973 | 50% | ||
vieanna | 0 | 275,147,723,107 | 100% | ||
joeyarnoldvn | 0 | 36,073,687,398 | 100% | ||
heyitshaas | 0 | 11,052,204,910 | 100% | ||
grocko | 0 | 41,539,763,401 | 50% | ||
papilloncharity | 0 | 1,811,269,432,519 | 80.1% | ||
gniksivart | 0 | 119,575,012,749 | 20% | ||
bluemist | 0 | 45,068,461,277 | 20% | ||
eturnerx | 0 | 21,331,404,561 | 1.1% | ||
adambarratt | 0 | 24,278,604,854 | 50% | ||
tattoodjay | 0 | 373,795,671,218 | 15% | ||
lenasveganliving | 0 | 3,527,089,204 | 10% | ||
howo | 0 | 3,257,087,187,919 | 100% | ||
appreciator | 0 | 75,512,608,561,814 | 20% | ||
themarkymark | 0 | 48,354,465,226,686 | 100% | ||
stayoutoftherz | 0 | 2,593,910,824,646 | 25% | ||
bambukah | 0 | 4,194,938,419 | 20% | ||
vikisecrets | 0 | 588,797,248,380 | 30% | ||
isabelpena | 0 | 5,591,955,817 | 100% | ||
shasta | 0 | 352,920,328,664 | 100% | ||
zonguin | 0 | 2,794,721,138 | 16.25% | ||
pocketrocket | 0 | 19,871,701,104 | 100% | ||
kharrazi | 0 | 4,427,060,720 | 100% | ||
khalil319 | 0 | 901,432,929 | 25% | ||
francosteemvotes | 0 | 4,806,506,992 | 32.5% | ||
yacobh | 0 | 11,625,682,966 | 70% | ||
horpey | 0 | 54,781,627,144 | 100% | ||
shanibeer | 0 | 299,792,339,778 | 17.5% | ||
shogo | 0 | 4,991,884,543 | 100% | ||
fionasfavourites | 0 | 194,341,238,180 | 100% | ||
aafeng | 0 | 86,854,644,550 | 10% | ||
htotoo | 0 | 3,475,695,991 | 100% | ||
crrdlx | 0 | 137,039,694,175 | 100% | ||
santigs | 0 | 359,755,114,747 | 51% | ||
floatinglin | 0 | 6,425,610,765 | 100% | ||
marketinggeek | 0 | 3,053,541,171 | 100% | ||
nadhora | 0 | 4,890,033,367 | 100% | ||
ekkah | 0 | 877,658,368 | 100% | ||
evildido | 0 | 1,903,098,525 | 16.25% | ||
buildawhale | 0 | 76,277,325,929,660 | 100% | ||
fersher | 0 | -1,199,016,524 | -100% | ||
aidefr | 0 | 5,567,757,845 | 26% | ||
eastmael | 0 | 52,028,026,461 | 100% | ||
artlover | 0 | 1,196,970,363 | 100% | ||
drax | 0 | 347,976,384,492 | 100% | ||
tomiscurious | 0 | 73,110,951,571 | 13.8% | ||
roleerob | 0 | 587,662,533,934 | 100% | ||
fatman | 0 | 9,019,329,383 | 2% | ||
votehero | 0 | 21,199,320,272 | 4.6% | ||
raycoms | 0 | 223,909,731,023 | 100% | ||
revisesociology | 0 | 761,042,536,074 | 30% | ||
silversaver888 | 0 | 155,166,717,533 | 25% | ||
benainouna | 0 | 11,614,626,838 | 100% | ||
dilimunanzar | 0 | 13,716,699,302 | 100% | ||
insanityisfree | 0 | 875,156,742 | 50% | ||
diosarich | 0 | 927,690,691 | 100% | ||
msp-makeaminnow | 0 | 21,553,294,288 | 26.9% | ||
yabapmatt | 0 | 20,265,625,758,489 | 100% | ||
omra-sky | 0 | 46,339,781,197 | 40% | ||
risemultiversity | 0 | 3,411,842,859 | 25% | ||
makerhacks | 0 | 127,953,988,154 | 100% | ||
ecotrain | 0 | 144,414,495,126 | 50% | ||
steemseph | 0 | 57,087,347,096 | 50% | ||
m-san | 0 | 5,429,898,297 | 100% | ||
investegg | 0 | 5,335,716,326 | 6.9% | ||
vegoutt-travel | 0 | 49,896,536,508 | 50% | ||
spacesheep | 0 | 4,585,145,696 | 100% | ||
liverpool-fan | 0 | 1,246,065,492 | 5% | ||
afterglow | 0 | 3,350,682,051 | 50% | ||
petrolinivideo | 0 | 5,567,174,087 | 50% | ||
arabisouri | 0 | 78,871,268,208 | 100% | ||
traciyork | 0 | 854,520,579,721 | 55% | ||
cre47iv3 | 0 | 2,665,416,746 | 100% | ||
informationwar | 0 | 259,280,270,530 | 50% | ||
coolguy123 | 0 | 98,947,647,247 | 50% | ||
sunsea | 0 | 16,292,025,056 | 10% | ||
omstavan | 0 | 7,144,413,646 | 100% | ||
steveconnor | 0 | 86,276,874,418 | 50% | ||
dbddv01 | 0 | 2,382,332,778 | 16.25% | ||
katerinaramm | 0 | 210,860,228,376 | 100% | ||
travoved | 0 | 9,482,524,540 | 100% | ||
steeminer4up | 0 | 498,184,844 | 100% | ||
mhm-philippines | 0 | 1,131,019,446 | 50% | ||
traf | 0 | 3,908,060,951,301 | 100% | ||
fjcalduch | 0 | 403,180,828,413 | 100% | ||
robotics101 | 0 | 9,579,992,910 | 32.5% | ||
lpv | 0 | 2,250,407,283 | 6.5% | ||
drunksamurai | 0 | 2,854,239,822 | 30% | ||
statorcrime | 0 | 1,092,588,864 | 16.25% | ||
spiritabsolute | 0 | 33,059,010,651 | 100% | ||
dmwh | 0 | 63,026,515,401 | 25% | ||
wiseagent | 0 | 79,000,360,168 | 7.5% | ||
cryptonized | 0 | 17,712,492,039 | 14% | ||
fourfourfun | 0 | 1,537,658,690 | 5% | ||
upmyvote | 0 | 32,256,301,910 | 100% | ||
anikekirsten | 0 | 3,551,889,126 | 100% | ||
phortun | 0 | 122,191,171,442 | 10% | ||
daltono | 0 | 464,538,870,522 | 24% | ||
deepresearch | 0 | 208,472,234,881 | 18.2% | ||
kaerpediem | 0 | 527,298,453,860 | 100% | ||
sagescrub | 0 | 685,780,794 | 12.5% | ||
gabrielatravels | 0 | 39,684,531,506 | 50% | ||
thedrewshow | 0 | 787,675,190 | 100% | ||
jude.villarta | 0 | 4,703,653,155 | 50% | ||
awuahbenjamin | 0 | 9,508,111,377 | 100% | ||
edwardstobia | 0 | 12,774,943,513 | 50% | ||
payger | 0 | 5,761,253,192 | 50% | ||
hijosdelhombre | 0 | 51,517,652,268 | 50% | ||
bengy | 0 | 60,730,697,785 | 50% | ||
smjn | 0 | 947,538,869,349 | 100% | ||
santarius | 0 | 3,731,518,013 | 100% | ||
socialmediaseo | 0 | 3,640,918,369 | 100% | ||
criptomaster | 0 | 4,024,005,499 | 100% | ||
manncpt | 0 | 155,518,013,268 | 100% | ||
soyrosa | 0 | 154,413,936,831 | 50% | ||
miflinux | 0 | 1,868,803,646 | 100% | ||
empress-eremmy | 0 | 17,424,821,175 | 25% | ||
dynamicrypto | 0 | 3,519,925,233 | 1% | ||
auracraft | 0 | 720,281,297 | 20% | ||
a-quarius | 0 | 85,332,954,854 | 50% | ||
philnewton | 0 | 562,696,765 | 7.5% | ||
thetroublenotes | 0 | 242,033,250,618 | 100% | ||
nnaraoh | 0 | 175,744,245,856 | 100% | ||
fieryfootprints | 0 | 48,624,444,140 | 20% | ||
tobias-g | 0 | 28,230,766,709 | 10% | ||
essejparr | 0 | 74,044,963,710 | 100% | ||
krommus | 0 | 1,126,563,137 | 50% | ||
lunaticpandora | 0 | 924,939,666,759 | 50% | ||
jazzhero | 0 | 29,298,729,642 | 37.5% | ||
shmoogleosukami | 0 | 9,157,477,935 | 100% | ||
atma-yoga | 0 | 525,933,857 | 50% | ||
cryptosharon | 0 | 169,736,067,944 | 100% | ||
galam | 0 | 706,356,985 | 26% | ||
fireguardian | 0 | 1,906,950,134 | 20% | ||
green77 | 0 | 21,969,651,865 | 95% | ||
saltycat | 0 | 7,702,111,116 | 100% | ||
onlavu | 0 | 128,933,809,105 | 100% | ||
asgarth | 0 | 270,742,234,834 | 100% | ||
cyprianj | 0 | 115,445,420,095 | 100% | ||
bertrayo | 0 | 12,807,169,285 | 10% | ||
cst90 | 0 | 273,501,525,047 | 100% | ||
movement19 | 0 | 6,873,373,151 | 25% | ||
lisfabian | 0 | 14,512,102,691 | 50% | ||
russellstockley | 0 | 115,303,638,026 | 100% | ||
g4fun | 0 | 11,440,359,941 | 25% | ||
putu300 | 0 | 4,496,969,112 | 50% | ||
cryptictruth | 0 | 2,014,079,243 | 0.5% | ||
siphon | 0 | 58,111,909,925 | 33.8% | ||
almi | 0 | 279,067,690,221 | 50% | ||
homeginkit | 0 | 3,233,849,141 | 100% | ||
dumnebari | 0 | 1,197,181,691 | 50% | ||
didutza | 0 | 798,332,952 | 50% | ||
thomasthewolf | 0 | 92,497,726,427 | 100% | ||
richatvns | 0 | 561,358,422 | 0.5% | ||
properfraction | 0 | 60,077,821,253 | 100% | ||
bonzopoe | 0 | 49,397,557,946 | 40% | ||
miosha | 0 | 522,046,511,758 | 100% | ||
outlinez | 0 | 900,216,173 | 20% | ||
sunshinebear | 0 | 1,618,299,128 | 50% | ||
steemitcolombia | 0 | 4,613,194,528 | 100% | ||
silverd510 | 0 | 20,783,413,192 | 100% | ||
immanuel94 | 0 | 379,528,801,083 | 100% | ||
andablackwidow | 0 | 54,798,835,615 | 100% | ||
bil.prag | 0 | 265,345,312,622 | 30% | ||
ravenmus1c | 0 | 3,163,722,111 | 10% | ||
manniman | 0 | 53,464,893,749 | 11% | ||
adamada | 0 | 279,249,486,826 | 50% | ||
louis88 | 0 | 1,458,202,571,541 | 60% | ||
reversehitler88 | 0 | 1,411,656,822 | 10% | ||
paragism | 0 | 2,989,600,814 | 100% | ||
jkramer | 0 | 1,455,039,529,296 | 100% | ||
franciscopr | 0 | 18,126,819,607 | 100% | ||
wolfhart | 0 | 16,258,470,092 | 40% | ||
m2nnari | 0 | 2,373,666,048 | 100% | ||
yameen | 0 | 38,860,059,276 | 100% | ||
braaiboy | 0 | 37,397,769,288 | 10% | ||
abdulmath | 0 | 13,057,031,071 | 50% | ||
jemmanuel | 0 | 8,334,502,296 | 20% | ||
gadrian | 0 | 219,276,013,760 | 30% | ||
fotogruppemunich | 0 | 242,823,743,864 | 80% | ||
inciter | 0 | 13,159,412,478 | 20% | ||
memepress | 0 | 1,700,939,917 | 50% | ||
xchng | 0 | 9,267,202,232 | 80% | ||
gifty-e | 0 | 827,258,066 | 100% | ||
manuelmusic | 0 | 585,636,568 | 12% | ||
artmom | 0 | 179,266,446,692 | 100% | ||
michellpiala | 0 | 2,819,297,448 | 50% | ||
imcore | 0 | 863,671,663 | 10% | ||
gogreenbuddy | 0 | 2,765,583,753,721 | 100% | ||
springlining | 0 | 32,067,677,554 | 100% | ||
tsnaks | 0 | 27,120,644,195 | 100% | ||
achimmertens | 0 | 62,049,130,077 | 25% | ||
quochuy | 0 | 6,163,889,175,562 | 100% | ||
kgakakillerg | 0 | 45,721,737,486 | 25% | ||
flyinghigher | 0 | 68,517,096,681 | 100% | ||
davidcentenor | 0 | 8,101,249,608 | 100% | ||
el-dee-are-es | 0 | 6,420,362,690 | 10% | ||
santarius2 | 0 | 795,853,719 | 100% | ||
we-are-one | 0 | 1,071,081,269 | 100% | ||
kendallron | 0 | 969,896,713 | 50% | ||
calisay | 0 | 14,124,096,708 | 100% | ||
globalschool | 0 | 7,883,527,836 | 50% | ||
raorac | 0 | 1,323,374,694 | 35% | ||
retard-gamer-de | 0 | 612,918,795 | 25% | ||
yaraha | 0 | 3,963,204,194 | 20% | ||
promobot | 0 | 2,981,537,138 | 100% | ||
veteranforcrypto | 0 | 4,080,980,767 | 20% | ||
studio666 | 0 | 2,840,973,517 | 100% | ||
opt2o | 0 | 8,313,139,323 | 100% | ||
fitnessgourmet | 0 | 843,170,738 | 100% | ||
rozku | 0 | 75,620,388,795 | 30% | ||
jancharlest | 0 | 5,238,443,804 | 100% | ||
leomolina | 0 | 2,120,420,612 | 9% | ||
fw206 | 0 | 539,301,850,708 | 10% | ||
netzisde | 0 | 19,965,852,660 | 50% | ||
techcoderx | 0 | 71,162,578,658 | 100% | ||
sayago | 0 | 3,035,367,810 | 50% | ||
pladozero | 0 | 33,508,124,371 | 10% | ||
crimo | 0 | 532,630,460 | 10% | ||
nateaguila | 0 | 342,543,226,032 | 12% | ||
angatt | 0 | 3,579,095,197 | 50% | ||
gmlgang | 0 | 551,072,350 | 100% | ||
steem-tube | 0 | 7,191,204,124 | 100% | ||
pinas | 0 | 553,552,330 | 50% | ||
worldwildflora | 0 | 969,360,592 | 50% | ||
steddyman | 0 | 2,261,138,629 | 100% | ||
commonlaw | 0 | 4,659,559,598 | 35% | ||
cryptoandcoffee | 0 | 255,978,979,867 | 10% | ||
solarwarrior | 0 | 113,441,897,362 | 100% | ||
sgbonus | 0 | 38,963,574,965 | 15% | ||
digital.mine | 0 | 66,206,395,390 | 60% | ||
sbi5 | 0 | 234,614,510,347 | 31.38% | ||
marblely | 0 | 31,367,889,508 | 30% | ||
we-are-lucky | 0 | 37,806,598,356 | 99.4% | ||
purrix | 0 | 20,544,888,726 | 100% | ||
haccolong | 0 | 1,246,528,124 | 12.5% | ||
newsnownorthwest | 0 | 866,166,488 | 7.5% | ||
daysiselena | 0 | 19,523,606,239 | 100% | ||
scrawly | 0 | 2,569,200,429 | 100% | ||
drsensor | 0 | 2,273,631,468 | 80% | ||
hemo | 0 | 3,498,428,731 | 100% | ||
roozeec | 0 | 493,779,319 | 10% | ||
steemulant | 0 | 2,291,721,666 | 100% | ||
xves | 0 | 18,726,277,970 | 50% | ||
revueh | 0 | 1,867,452,415 | 32.5% | ||
ambiguity | 0 | 41,634,744,403 | 100% | ||
zaibkang | 0 | 31,651,980,856 | 100% | ||
schlunior | 0 | 23,078,483,728 | 20% | ||
rilo | 0 | 4,567,571,036 | 100% | ||
sadbear | 0 | 1,169,499,577 | 10% | ||
bestofph | 0 | 6,308,459,328 | 50% | ||
steem.craft | 0 | 572,969,096 | 100% | ||
yestermorrow | 0 | 12,273,359,214 | 31% | ||
marivic10 | 0 | 899,367,174 | 2.5% | ||
thehive | 0 | 25,246,532,870 | 67% | ||
luciannagy | 0 | 6,209,397,327 | 30% | ||
fandelkefir | 0 | 4,103,294,644 | 100% | ||
light-hearted | 0 | 8,417,428,303 | 100% | ||
hoaithu | 0 | 3,483,661,555 | 10.62% | ||
deepdives | 0 | 219,036,857,959 | 50% | ||
goingbonkers | 0 | 68,163,928,547 | 100% | ||
themanny | 0 | 75,481,229,928 | 100% | ||
voxmortis | 0 | 37,666,571,674 | 20% | ||
anhvu | 0 | 2,251,036,111 | 10% | ||
engrave | 0 | 5,227,430,301,368 | 100% | ||
tipsybosphorus | 0 | 5,637,822,982 | 90% | ||
pboulet | 0 | 216,197,490,781 | 100% | ||
chike4545 | 0 | 959,592,398 | 100% | ||
ynwa.andree | 0 | 89,639,094,494 | 76% | ||
voter000 | 0 | 12,542,826,814 | 28.8% | ||
steemituplife | 0 | 647,372,543 | 25% | ||
steemwhalepower | 0 | 966,516,944 | 100% | ||
mister-meeseeks | 0 | 46,510,664,261 | 50% | ||
thevil | 0 | 1,027,876,626,349 | 100% | ||
riskneutral | 0 | 5,097,091,046 | 50% | ||
merlin7 | 0 | 202,206,327,403 | 100% | ||
besheda | 0 | 2,333,734,949 | 50% | ||
thrasher666 | 0 | 2,513,696,697 | 60% | ||
vasigo | 0 | 20,548,039,388 | 100% | ||
kingsofa | 0 | 11,119,915,141 | 50% | ||
geeklania | 0 | 720,601,264 | 100% | ||
cremisi | 0 | 1,869,005,942 | 100% | ||
misterc | 0 | 174,479,841,374 | 100% | ||
certain | 0 | 211,659,377,277 | 100% | ||
carbodexkim | 0 | 823,294,194 | 100% | ||
michealb | 0 | 434,380,412,292 | 100% | ||
iovoccae | 0 | 4,506,941,808 | 100% | ||
glastar | 0 | 600,180,656 | 100% | ||
keket | 0 | 671,207,880 | 50% | ||
bia.birch | 0 | 4,227,451,206 | 25% | ||
steemlandia | 0 | 4,484,586,487 | 100% | ||
maajaanaa | 0 | 1,097,908,376 | 20% | ||
tamito0201 | 0 | 1,692,390,361 | 100% | ||
starrouge | 0 | 1,048,492,524 | 50% | ||
wherein | 0 | 49,538,600,463 | 100% | ||
shainemata | 0 | 127,878,212,904 | 50% | ||
zerofive | 0 | 872,902,987 | 50% | ||
thehealthylife | 0 | 3,007,190,695 | 25% | ||
currentxchange | 0 | 6,437,396,040 | 10% | ||
kork75 | 0 | 7,992,433,758 | 100% | ||
jacuzzi | 0 | 3,225,045,684 | 1.4% | ||
slothlydoesit | 0 | 38,092,817,479 | 50% | ||
cnstm | 0 | 145,808,220,038 | 100% | ||
likuang007 | 0 | 665,860,519 | 100% | ||
elikast | 0 | 43,871,592,385 | 100% | ||
vickyguevara | 0 | 3,287,492,545 | 100% | ||
miguelmederico | 0 | 1,161,216,040 | 40% | ||
caribehub | 0 | 1,374,361,848 | 100% | ||
baasdebeer | 0 | 1,570,812,520 | 10% | ||
lianjingmedia | 0 | 1,004,005,509 | 100% | ||
broxi | 0 | 9,109,137,126 | 50% | ||
steemtelly | 0 | 32,894,593,300 | 100% | ||
breadbakers | 0 | 3,102,155,635 | 100% | ||
steemitmonsters | 0 | 980,635,221 | 100% | ||
creacioneslelys | 0 | 35,955,815,658 | 100% | ||
cooperfelix | 0 | 755,752,875 | 40% | ||
kokadi | 0 | 2,852,741,489 | 80% | ||
hungrybear | 0 | 557,124,486 | 14% | ||
afternoondrinks | 0 | 1,671,449,801 | 10% | ||
louis.random | 0 | 505,084,152 | 60% | ||
ond | 0 | 513,630,917 | 100% | ||
thelogicaldude | 0 | 48,625,614,394 | 50% | ||
denizcakmak | 0 | 972,340,208 | 100% | ||
hungryharish | 0 | 23,420,041,375 | 100% | ||
sophieandhenrik | 0 | 10,039,183,401 | 100% | ||
src3 | 0 | 5,926,887,661 | 5% | ||
kggymlife | 0 | 8,943,914,063 | 50% | ||
zeero22 | 0 | 9,024,042,134 | 51% | ||
gunnarheilmann | 0 | 36,030,695,210 | 100% | ||
russia-btc | 0 | 1,008,434,684,146 | 77.41% | ||
ilanisnapshots | 0 | 1,030,035,635 | 10% | ||
jaster | 0 | 595,471,452,962 | 100% | ||
bitcoinator | 0 | 3,223,205,970 | 100% | ||
alenox | 0 | 3,957,820,905 | 100% | ||
maxsieg | 0 | 8,356,899,462 | 50% | ||
hungryanu | 0 | 3,438,543,205 | 50% | ||
photographercr | 0 | 47,201,231,220 | 20% | ||
szf | 0 | 660,126,973 | 50% | ||
wallvater | 0 | 1,330,224,688 | 20% | ||
steelborne | 0 | 2,779,489,901 | 20% | ||
bigmoneyman | 0 | 909,795,639 | 50% | ||
coolsurfer | 0 | 2,145,794,646 | 10% | ||
helgalubevi | 0 | 2,162,383,827 | 5% | ||
deeanndmathews | 0 | 26,347,911,607 | 100% | ||
nooblogger | 0 | 3,471,455,188 | 50% | ||
beerlover | 0 | 12,356,054,169 | 10% | ||
aboutheraklion | 0 | 1,874,189,167 | 50% | ||
likwid | 0 | 1,806,254,452 | 100% | ||
blumela | 0 | 671,422,554 | 100% | ||
agmoore2 | 0 | 4,999,753,820 | 100% | ||
tinyhousecryptos | 0 | 481,936,129 | 5% | ||
shauner | 0 | 2,759,754,659 | 25% | ||
clownworld | 0 | 2,154,859,956 | 25% | ||
leighscotford | 0 | 751,269,510 | 1% | ||
iktisat | 0 | 757,856,580 | 100% | ||
xyz004 | 0 | 48,890,759,492 | 25% | ||
steemindian | 0 | 4,313,937,266 | 100% | ||
davidtron | 0 | 3,733,470,492 | 50% | ||
cryptogambit | 0 | 1,430,790,256 | 7.5% | ||
waraira777 | 0 | 6,277,793,708 | 100% | ||
moneymisstress | 0 | 13,572,814,671 | 100% | ||
kgswallet | 0 | 5,538,172,152 | 100% | ||
lrekt01 | 0 | 4,019,161,155 | 64% | ||
reggaesteem | 0 | 2,895,044,945 | 29.75% | ||
nichemarket | 0 | 1,289,162,398 | 100% | ||
empoderat | 0 | 103,315,977,409 | 100% | ||
farm1 | 0 | 694,866,725,957 | 100% | ||
freedomring | 0 | 4,764,018,656 | 100% | ||
hyborian-strain | 0 | 2,435,944,017 | 30% | ||
babytarazkp | 0 | 3,101,406,090 | 50% | ||
valerianis | 0 | 552,458,403 | 10% | ||
wrestlingdesires | 0 | 124,815,107,953 | 100% | ||
eulymer | 0 | 3,666,615,614 | 100% | ||
soyunasantacruz | 0 | 65,103,769,593 | 100% | ||
sbi-tokens | 0 | 2,720,650,605 | 3.37% | ||
janaveda | 0 | 46,615,881,437 | 100% | ||
hugo1954 | 0 | 519,802,506 | 100% | ||
lynds | 0 | 541,069,979,680 | 100% | ||
nata86 | 0 | 1,579,669,225 | 50% | ||
the-table | 0 | 9,681,135,522 | 100% | ||
maxuve | 0 | 0 | 100% | ||
electronico | 0 | 2,902,658,400 | 50% | ||
emeka4 | 0 | 1,079,005,009 | 10% | ||
gigel2 | 0 | 745,791,067,851 | 100% | ||
bilpcoinrecords | 0 | 2,321,398,452 | 50% | ||
dappstats | 0 | 4,420,815,070 | 15% | ||
therealyme | 0 | 23,137,613,778 | 1.5% | ||
sandymeyer | 0 | 2,990,971,943,577 | 100% | ||
bilpcoin.pay | 0 | 538,669,106 | 10% | ||
tobago | 0 | 672,318,078 | 35% | ||
dw-glgsy112321s | 0 | 871,837,264 | 100% | ||
fenngen | 0 | 740,132,900 | 25% | ||
patlog | 0 | 848,810,235 | 100% | ||
unpopular | 0 | 1,318,382,680,131 | 100% | ||
apineda | 0 | 485,500,867 | 100% | ||
lnakuma | 0 | 36,097,453,362 | 100% | ||
rockface | 0 | 5,283,654,911 | 100% | ||
thecontesttrain | 0 | 566,416,916 | 25% | ||
galenkp.aus | 0 | 1,211,381,760 | 100% | ||
cultofsteem | 0 | 553,623,621 | 100% | ||
lachg89 | 0 | 883,601,024 | 100% | ||
gmlrecordz | 0 | 743,740,608 | 50% | ||
veryanprime | 0 | 5,126,932,165 | 100% | ||
hope.venezuela | 0 | 7,413,306,299 | 100% | ||
journeyofanomad | 0 | 5,630,435,281 | 40% | ||
angel33 | 0 | 642,588,051 | 100% | ||
inigo-montoya-jr | 0 | 1,109,075,722 | 42.5% | ||
gloriaolar | 0 | 13,849,437,157 | 15% | ||
garlet | 0 | 25,893,298,724 | 100% | ||
juanvegetarian | 0 | 6,414,453,147 | 50% | ||
onestop | 0 | 9,140,957,430 | 100% | ||
atma.love | 0 | 58,705,388,022 | 10% | ||
marblesz | 0 | 2,127,407,703 | 30% | ||
bilpcoinbpc | 0 | 758,703,968 | 5% | ||
vault.tokens | 0 | 704,875,831 | 50% | ||
julesquirin | 0 | 15,815,341,287 | 50% | ||
alexa.art | 0 | 69,379,405,629 | 100% | ||
ukulima | 0 | 143,344,113,810 | 10% | ||
fsm-core | 0 | 23,489,429,374 | 100% | ||
hivewatchers | 0 | 1,165,011,277 | 55% | ||
hivequebec | 0 | 2,266,713,096 | 32.5% | ||
hivetrending | 0 | 199,633,027,472 | 100% | ||
laruche | 0 | 139,052,638,314 | 32.5% | ||
reggaejahm | 0 | 133,622,134,272 | 35% | ||
softworld | 0 | 272,981,515,950 | 49% | ||
captainhive | 0 | 1,238,229,355,097 | 50% | ||
velinov86 | 0 | 5,244,401,054 | 5% | ||
ninnu | 0 | 7,925,996,143 | 15% | ||
kingneptune | 0 | 586,448,829 | 50% | ||
ghaazi | 0 | 5,815,437,892 | 100% | ||
actioncats | 0 | 28,639,126,867 | 20% | ||
noelyss | 0 | 7,549,711,020 | 10% | ||
nazaleo | 0 | 10,071,464,395 | 100% | ||
daniky | 0 | 37,772,697,179 | 100% | ||
lucianav | 0 | 28,701,013,512 | 100% | ||
bimpcy | 0 | 10,701,732,359 | 20% | ||
jelly13 | 0 | 711,878,212 | 8.5% | ||
reza-shamim | 0 | 490,450,340 | 40% | ||
gabilan55 | 0 | 1,244,592,393 | 10% | ||
olaunlimited | 0 | 83,533,450,645 | 100% | ||
zhoten | 0 | 4,147,244,230 | 100% | ||
razorshark | 0 | 798,235,607 | 100% | ||
dayerlis | 0 | 484,279,032 | 100% | ||
akhyar23 | 0 | 523,276,230 | 50% | ||
recoveryinc | 0 | 32,807,282,635 | 50% | ||
hrcl.art | 0 | 4,005,927,700 | 100% | ||
liz.writes | 0 | 1,045,093,348 | 50% | ||
camplife | 0 | 684,358,974 | 100% | ||
kraken99 | 0 | 2,592,268,758 | 100% | ||
aurauramagic | 0 | 12,944,853,850 | 100% | ||
storiesoferne | 0 | 156,833,011,271 | 100% | ||
dying | 0 | 1,845,505,821 | 50% | ||
goliathus | 0 | 2,375,697,787 | 25% | ||
usainvote | 0 | 11,952,809,903,014 | 50% | ||
idea-make-rich | 0 | 27,247,220,583 | 100% | ||
trangbaby | 0 | 257,286,429,385 | 100% | ||
borbolet | 0 | 14,148,266,954 | 30% | ||
finris | 0 | 3,312,672,868 | 50% | ||
noalys | 0 | 3,388,868,349 | 10% | ||
hive-168869 | 0 | 38,120,935,136 | 100% | ||
ongehoorde | 0 | 2,028,309,162 | 100% | ||
wannderingsoul | 0 | 689,360,187 | 50% | ||
rohansuares | 0 | 5,265,400,198 | 50% | ||
mismo | 0 | 42,648,100,036 | 100% | ||
kattycrochet | 0 | 13,208,593,646 | 10% | ||
zaddyboy | 0 | 2,534,987,430 | 25% | ||
esecholito | 0 | 47,061,319,012 | 100% | ||
dalz.shorts | 0 | 689,133,516 | 50% | ||
birdbeaksd | 0 | 679,199,103 | 100% | ||
tamiapt6 | 0 | 1,128,874,299 | 100% | ||
druckado | 0 | 732,817,755 | 20% | ||
completewind | 0 | 5,661,640,988 | 100% | ||
catchfortune | 0 | 0 | 100% | ||
rondonshneezy | 0 | 7,210,799,684 | 50% | ||
dadspardan | 0 | 11,018,148,213 | 50% | ||
cielitorojo | 0 | 6,349,994,816 | 14% | ||
babeltrips | 0 | 20,635,614,369 | 50% | ||
guitarmcy | 0 | 6,733,249,511 | 50% | ||
eldritchspig | 0 | 593,918,639 | 50% | ||
samrisso | 0 | 35,302,718,945 | 50% | ||
ktest1 | 0 | 28,134,432 | 100% | ||
cookaiss | 0 | 2,515,177,410 | 15% | ||
repayme4568 | 0 | 827,987,246 | 25% | ||
haitch | 0 | 2,724,964,623 | 100% | ||
xrayman | 0 | 71,029,287,902 | 100% | ||
lingkar-photo | 0 | 3,465,591,011 | 100% | ||
eturnerx-honey | 0 | 5,329,855,918 | 15% | ||
ausbit.dev | 0 | 20,710,220,913 | 100% | ||
rich0399 | 0 | 619,592,871 | 100% | ||
bananass | 0 | 4,148,501,712 | 100% | ||
firinmahlazer | 0 | 492,025,808 | 100% | ||
retaliatorr | 0 | 2,802,756,040 | 100% | ||
huzzah | 0 | 30,312,633,553 | 100% | ||
marvinman | 0 | 4,687,486,244 | 100% | ||
normalyf | 0 | 3,351,982,786 | 100% | ||
elgatoshawua | 0 | 2,784,370,603 | 10% | ||
abisag | 0 | 5,792,008,297 | 100% | ||
cooperclub | 0 | 18,769,539,482 | 50% | ||
zdigital222 | 0 | 1,544,684,795 | 100% | ||
kahkashan | 0 | 3,760,458,752 | 100% | ||
wynella | 0 | 3,972,534,695 | 10% | ||
nyxlabs | 0 | 533,913,032 | 2.5% | ||
mapetoke | 0 | 75,186,313,608 | 100% | ||
proofofbrainio | 0 | 40,359,007,496 | 50% | ||
melcaya | 0 | 38,815,745,812 | 100% | ||
creodas | 0 | 1,224,605,927 | 37.5% | ||
drricksanchez | 0 | 50,611,073,038 | 10% | ||
wizzitywillican | 0 | 4,814,494,937 | 50% | ||
city-bounter | 0 | 1,623,807,731 | 100% | ||
rendrianarma | 0 | 2,173,263,761 | 50% | ||
hexagono6 | 0 | 1,419,980,504 | 10% | ||
phuongthao98 | 0 | 1,996,463,101 | 50% | ||
astrocreator | 0 | 289,469,144,233 | 100% | ||
hive.pizza | 0 | 2,019,425,953,942 | 100% | ||
sachingeorge | 0 | 783,896,675 | 50% | ||
aswita | 0 | 20,721,918,909 | 56.9% | ||
leveluplifestyle | 0 | 26,248,601,280 | 50% | ||
zarnoex | 0 | 514,904,500 | 100% | ||
ruffatotmeee | 0 | 38,936,368,702 | 100% | ||
dendendenden | 0 | 6,631,602,901 | 100% | ||
power-kappe | 0 | 1,450,957,443 | 20% | ||
pizzabot | 0 | 1,570,095,631 | 100% | ||
dajokawild | 0 | 18,812,098,422 | 50% | ||
thaolaven | 0 | 594,251,426 | 50% | ||
louis.pay | 0 | 1,043,940,680 | 60% | ||
naath | 0 | 556,538,438 | 7% | ||
hive.friends | 0 | 0 | 1% | ||
invcble | 0 | 30,498,413,938 | 100% | ||
hjrrodriguez | 0 | 3,495,436,556 | 100% | ||
farpetrad | 0 | 57,131,000,333 | 100% | ||
shanhenry | 0 | 3,283,365,222 | 100% | ||
mayureshpandit | 0 | 1,242,791,935 | 100% | ||
fotomaglys | 0 | 3,165,251,951 | 10% | ||
twicejoy | 0 | 1,890,481,838 | 7% | ||
marisa0949 | 0 | 14,604,675,735 | 100% | ||
lordb | 0 | 21,774,570,152 | 100% | ||
estebandido1983 | 0 | 2,534,679,304 | 80% | ||
shiftrox | 0 | 6,396,741,648 | 12.5% | ||
carlos13 | 0 | 13,631,751,264 | 100% | ||
aprasad2325 | 0 | 3,796,173,463 | 10% | ||
yoieuqudniram | 0 | 1,007,807,711 | 10% | ||
john9inch | 0 | 2,019,286,661 | 50% | ||
boboman | 0 | 13,909,124,475 | 100% | ||
dungeondog | 0 | 23,402,769,401 | 20% | ||
ischmieregal | 0 | 7,626,270,211 | 20% | ||
celeste413 | 0 | 83,629,203,498 | 100% | ||
szmobacsi | 0 | 4,032,442,685 | 90% | ||
delver | 0 | 19,722,134,269 | 50% | ||
chuyster | 0 | 620,998,693 | 100% | ||
nopasaran72 | 0 | 2,987,410,775 | 32.5% | ||
rayius | 0 | 689,420,050 | 100% | ||
pishio | 0 | 556,323,359,216 | 10% | ||
r0nny | 0 | 12,247,529,230 | 10% | ||
apeminingclub | 0 | 142,678,651,783 | 100% | ||
trentonlundy1 | 0 | 7,579,348,283 | 50% | ||
tiyumtaba | 0 | 772,054,561 | 10% | ||
andriko | 0 | 609,863,037 | 100% | ||
rauti | 0 | 4,398,632,840 | 100% | ||
iamleicester | 0 | 508,980,097 | 80% | ||
avidez | 0 | 744,923,475 | 50% | ||
lucianaabrao | 0 | 683,590,010 | 25% | ||
sovstar | 0 | 2,509,960,133 | 50% | ||
elyelma | 0 | 1,754,788,951 | 50% | ||
seed-treasury | 0 | 779,231,131 | 100% | ||
thu172 | 0 | 9,468,883,428 | 100% | ||
quycmf8 | 0 | 735,794,472 | 20% | ||
tanzil2024 | 0 | 792,509,224 | 1% | ||
blackman15 | 0 | 559,932,426 | 100% | ||
seattlea | 0 | 982,980,304 | 5% | ||
hyun-soo | 0 | 2,584,276,255 | 50% | ||
thaddeusprime | 0 | 2,386,613,736 | 50% | ||
onewolfe | 0 | 1,011,795,467 | 50% | ||
elderdark | 0 | 1,506,302,015 | 12.5% | ||
banzafahra | 0 | 6,916,346,861 | 50% | ||
kitsuki | 0 | 2,342,901,059 | 100% | ||
victoradebiyiart | 0 | 5,273,763,756 | 100% | ||
momongja | 0 | 769,169,190 | 100% | ||
dml28 | 0 | 2,243,789,034 | 100% | ||
snaqz | 0 | 13,148,076,100 | 60% | ||
mcgilli | 0 | 827,788,521 | 100% | ||
astrocat-3663 | 0 | 951,640,361 | 50% | ||
trasto | 0 | 5,891,175,072 | 50% | ||
lynnnguyen | 0 | 6,314,316,734 | 100% | ||
kimloan | 0 | 7,202,783,602 | 50% | ||
winnietran | 0 | 3,926,226,733 | 50% | ||
blockheadgames | 0 | 23,707,159,961 | 100% | ||
gejzep | 0 | 756,853,918 | 100% | ||
jkp.nisha | 0 | 4,229,323,034 | 100% | ||
dstampede | 0 | 835,187,895 | 100% | ||
dawan | 0 | 2,159,588,269 | 100% | ||
dora381 | 0 | 33,017,973,366 | 100% | ||
cogie88 | 0 | 1,115,708,899 | 50% | ||
whynotcamp | 0 | 6,026,765,487 | 100% | ||
techguard | 0 | 582,926,318 | 9.1% | ||
michupa | 0 | 10,262,592,957 | 25% | ||
lauti | 0 | 3,757,081,012 | 100% | ||
innfauno12 | 0 | 2,444,456,380 | 100% | ||
thercek | 0 | 547,749,382 | 50% | ||
nane-qts | 0 | 4,734,676,777 | 100% | ||
crazy-bee | 0 | 32,216,641,216 | 100% | ||
epicur0 | 0 | 2,779,307,059 | 100% | ||
marcinxyz | 0 | 1,150,446,830 | 50% | ||
h3m4n7 | 0 | 19,752,139,870 | 90% | ||
rammargarita | 0 | 82,040,883,218 | 100% | ||
spiritverve | 0 | 13,588,561,478 | 100% | ||
thedoc07 | 0 | 3,162,464,864 | 50% | ||
tillmea | 0 | 565,382,682 | 100% | ||
weone | 0 | 280,791,010 | 100% | ||
meltysquid | 0 | 42,084,708,073 | 100% | ||
kqaosphreak | 0 | 8,371,298,072 | 100% | ||
hungryfortacos | 0 | 1,141,689,399 | 100% | ||
heutorybr | 0 | 521,370,084 | 12.5% | ||
violator101 | 0 | 70,856,538,388 | 100% | ||
baibuaza | 0 | 312,481,419,701 | 100% | ||
khoola | 0 | 2,186,145,468 | 50% | ||
dkidfit | 0 | 10,312,846,796 | 100% | ||
sunnyvo | 0 | 14,699,667,602 | 50% | ||
drexlord | 0 | 2,469,703,254 | 5% | ||
cherute | 0 | 2,947,370,728 | 50% | ||
anandkj611 | 0 | 3,328,155,968 | 50% | ||
hyhy93 | 0 | 4,562,441,208 | 100% | ||
trostparadox.vyb | 0 | 749,967,458 | 50% | ||
vyb.pob | 0 | 1,650,073,504 | 50% | ||
thgaming | 0 | 1,062,767,402 | 5% | ||
crypt0gnome | 0 | 25,399,120,375 | 25% | ||
lothbrox | 0 | 1,421,216,638 | 100% | ||
zeclipse | 0 | 2,995,111,269 | 100% | ||
lamphuong | 0 | 1,756,365,380 | 50% | ||
saboin.pob | 0 | 274,951,672 | 50% | ||
vyb.curation | 0 | 941,790,936 | 50% | ||
femcy-willcy | 0 | 487,854,897 | 10% | ||
blocktunes | 0 | 4,998,774,210 | 10% | ||
eijibr | 0 | 1,260,981,092 | 12.5% | ||
ivypham | 0 | 17,997,050,927 | 100% | ||
zuun.net | 0 | 4,860,723,133 | 32% | ||
drceeyou | 0 | 10,499,322,243 | 100% | ||
winly | 0 | 3,054,157,147 | 100% | ||
bacon-dub | 0 | 573,584,176 | 100% | ||
studio3141 | 0 | 509,206,333 | 50% | ||
netvalar | 0 | 5,305,938,695 | 50% | ||
gwajnberg | 0 | 6,518,975,203 | 20% | ||
kei30 | 0 | 394,480,137 | 100% | ||
diehardknocks | 0 | 27,609,782,598 | 100% | ||
killerwot | 0 | 134,328,279,219 | 100% | ||
investinfreedom | 0 | 27,096,387,863 | 50% | ||
rafzat | 0 | 3,103,849,345 | 100% | ||
nicklewis | 0 | 2,783,555,508 | 5% | ||
ripusun | 0 | 22,923,247,267 | 100% | ||
henrietta27 | 0 | 4,555,972,480 | 50% | ||
abelfotografia | 0 | 131,358,779,318 | 52% | ||
friendmoose.pob | 0 | 481,737,217 | 100% | ||
ryosai | 0 | 6,108,534,273 | 100% | ||
dalekma | 0 | 1,551,186,157 | 100% | ||
elkingplayer | 0 | 2,359,150,050 | 100% | ||
vyb.fund | 0 | 985,262,738 | 50% | ||
prosocialise | 0 | 81,570,645,049 | 50% | ||
ahleap | 0 | 23,459,635,665 | 100% | ||
money.finance | 0 | 16,963,693,877 | 100% | ||
splinterob | 0 | 3,269,745,441 | 50% | ||
toohip | 0 | 162,504,362,995 | 98.6% | ||
nthtv | 0 | 122,555,723,264 | 100% | ||
archangel21 | 0 | 13,314,361,652 | 100% | ||
hurtlocker | 0 | 104,951,709,337 | 100% | ||
yisusth | 0 | 23,168,817,863 | 100% | ||
plicc8 | 0 | 9,381,488,863 | 100% | ||
mannimanccadm | 0 | 8,456,941,236 | 100% | ||
serpent7776 | 0 | 0 | 100% | ||
rondonsleezy | 0 | 1,666,753,661 | 50% | ||
ersusoficial | 0 | 2,931,188,694 | 100% | ||
mdasein | 0 | 370,202,511 | 100% | ||
resonator | 0 | 14,796,846,492,444 | 50% | ||
anna-newkey | 0 | 30,620,802,460 | 50% | ||
abouttodie | 0 | 2,110,280,236 | 50% | ||
shaggoth | 0 | 1,942,999,546 | 100% | ||
mamaemigrante | 0 | 5,780,365,555 | 10% | ||
nazom | 0 | 555,826,296 | 25% | ||
caelum1infernum | 0 | 1,747,888,535 | 20% | ||
fefe99 | 0 | 515,418,408 | 100% | ||
hivewp | 0 | 10,388,626,251 | 100% | ||
franzpaulie | 0 | 39,520,499,433 | 100% | ||
sieghard1990 | 0 | 2,279,592,842 | 100% | ||
mryoung1979 | 0 | 12,471,496,086 | 100% | ||
dutchchemist | 0 | 948,719,228 | 100% | ||
mukadder | 0 | 22,044,070,001 | 100% | ||
lordshah | 0 | 20,852,685,407 | 69.41% | ||
tzae | 0 | 1,725,856,099 | 100% | ||
lyamalfonzo23 | 0 | 4,405,749,867 | 100% | ||
osamabinhamid13 | 0 | 0 | 100% | ||
the13anarchist | 0 | 1,019,769,224 | 6% | ||
brutus22 | 0 | 1,057,636,566 | 100% | ||
eyewaa | 0 | 7,220,413,962 | 100% | ||
incublus | 0 | 193,637,923,765 | 50% | ||
justbabybee | 0 | 37,812,122,785 | 100% | ||
bgmoha | 0 | 2,308,209,055 | 55% | ||
callmesmile | 0 | 50,287,914,161 | 100% | ||
nazrul70 | 0 | 10,230,003,055 | 100% | ||
xerox94 | 0 | 8,448,216,252 | 100% | ||
biyaawnur | 0 | 1,114,020,685 | 100% | ||
thelastofcat | 0 | 2,487,466,382 | 100% | ||
queercoin | 0 | 77,054,720,938 | 100% | ||
charmingcherry | 0 | 1,226,720,540 | 10% | ||
treytrillionaire | 0 | 2,018,644,236 | 100% | ||
celestegray | 0 | 55,042,891,105 | 50% | ||
artefactoestudio | 0 | 486,126,849 | 20% | ||
machalavienici | 0 | 2,398,752,059 | 100% | ||
workaholic666 | 0 | 1,554,549,928 | 100% | ||
diding | 0 | 3,118,719,707 | 100% | ||
masterfarmer | 0 | 1,214,627,190 | 100% | ||
ambicrypto | 0 | 4,716,025,600,056 | 100% | ||
elnauta | 0 | 0 | 100% | ||
hive-122727 | 0 | 1,896,260,166 | 100% | ||
slothbuzz | 0 | 1,688,897,048 | 5% | ||
nftfrappe | 0 | 408,139,627,012 | 100% | ||
actordontee | 0 | 5,766,069,210 | 50% | ||
blocktunesdao | 0 | 2,380,663,465 | 10% | ||
ksjegw | 0 | 575,242,891 | 100% | ||
beauty197 | 0 | 813,399,378 | 10% | ||
lu1sa | 0 | 11,209,747,915 | 10% | ||
incublus.hivegc | 0 | 2,414,733,276 | 50% | ||
slothburn | 0 | 19,836,162,954 | 50% | ||
thiskava | 0 | 1,844,036,357 | 100% | ||
josewil | 0 | 1,525,423,576 | 100% | ||
gollumkp | 0 | 14,768,109,091 | 20% | ||
rgnrc2023 | 0 | 2,164,574,154 | 100% | ||
a-r-crypto | 0 | 0 | 100% | ||
iamersus | 0 | 3,419,470 | 100% | ||
pit3r | 0 | 3,660,579,285 | 20% | ||
mrbonkers | 0 | 14,604,620,063 | 50% | ||
y3ssi | 0 | 2,106,062,108 | 20% | ||
hive-bounty | 0 | 5,470,813,900 | 20% | ||
foodchunk | 0 | 192,963,805,195 | 60% | ||
aquilaemax | 0 | 6,612,800,543 | 100% | ||
thezyppi | 0 | 3,016,147,583 | 20% | ||
coinjoe | 0 | 7,477,448,196 | 12.5% | ||
hivetoolsio | 0 | 828,972,110 | 20% | ||
scamforest | 0 | 2,138,891,290 | 2.5% | ||
an-old-warlock | 0 | 56,825,811,205 | 100% | ||
lovver | 0 | 4,273,080,035 | 100% | ||
davidjesuscd | 0 | 860,197,648 | 100% | ||
b1ng1 | 0 | 0 | 100% | ||
wadhwas | 0 | 3,355,247,137 | 100% | ||
meday | 0 | 3,890,464,367 | 100% |
Awesome work. Thanks for all you do!
author | dysonsphere |
---|---|
permlink | re-blocktrades-202372t204253567z |
category | hive-139531 |
json_metadata | {"tags":["hive","blockchain","software","blocktrades"],"app":"ecency/3.0.33-vision","format":"markdown+html"} |
created | 2023-07-03 03:42:54 |
last_update | 2023-07-03 03:42:54 |
depth | 1 |
children | 0 |
last_payout | 2023-07-10 03:42: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 | 37 |
author_reputation | 2,070,730,473,764 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 124,989,900 |
net_rshares | 0 |
>Publish more documentation for various new tools What I think is important (at least for me) is to come up with a standard way to run and maintain HAF apps. Maybe some kind of boilerplate script to run/stop/update/resync it. I'm afraid every dapp dev will come up with a different way, making it super hard for node operators to maintain custom apps, therefore limiting the HAF usage. Also, some advice on how to actually write a HAF app would be great (especially apps that need to broadcast some transactions on user interactions). But I will gather some example use cases in a separate thread/posts with specific questions.
author | engrave |
---|---|
permlink | re-blocktrades-rx7pp4 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.6.5"} |
created | 2023-07-03 08:46:18 |
last_update | 2023-07-03 08:46:18 |
depth | 1 |
children | 1 |
last_payout | 2023-07-10 08:46:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.462 HBD |
curator_payout_value | 0.461 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 630 |
author_reputation | 318,719,797,600,724 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 124,994,717 |
net_rshares | 2,115,367,618,356 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 355,922,654,010 | 1% | ||
justinw | 0 | 1,499,057,081 | 0.33% | ||
dalz | 0 | 438,478,058,525 | 34% | ||
russia-btc | 0 | 98,717,185,259 | 7.7% | ||
ecency | 0 | 1,220,750,663,481 | 3.4% |
We are working on boilerplate scripts for various operations like you described. Looking forward to your example use case questions.
author | blocktrades |
---|---|
permlink | rx8580 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-07-03 14:21:36 |
last_update | 2023-07-03 14:21:36 |
depth | 2 |
children | 0 |
last_payout | 2023-07-10 14:21:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.116 HBD |
curator_payout_value | 0.117 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | 1,278,355,776,041,298 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,000,720 |
net_rshares | 535,617,253,284 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
engrave | 0 | 535,617,253,284 | 10% |
Saludos.
author | giuliovalentino |
---|---|
permlink | re-blocktrades-rycacl |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.7.1"} |
created | 2023-07-25 06:36:24 |
last_update | 2023-07-25 06:36:24 |
depth | 1 |
children | 0 |
last_payout | 2023-08-01 06:36: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 | 8 |
author_reputation | 1,526,831,264,573 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,623,552 |
net_rshares | 0 |
Congratulations @blocktrades! 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/@blocktrades/posts.png?202307030354"></td><td>You published more than 250 posts.<br>Your next target is to reach 300 posts.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@blocktrades) 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 our last posts:** <table><tr><td><a href="/hive-122221/@hivebuzz/pum-202306-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202306-delegations">Our Hive Power Delegations to the June PUM Winners</a></td></tr><tr><td><a href="/hivebuzz/@hivebuzz/yearly-author-202306"><img src="https://images.hive.blog/64x128/https://i.imgur.com/ogVqE0F.png"></a></td><td><a href="/hivebuzz/@hivebuzz/yearly-author-202306">Yearly Authors Challenge Status</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202307-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202307-feedback">Feedback from the July Hive Power Up Day</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-blocktrades-20230703t042128 |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2023-07-03 04:21:27 |
last_update | 2023-07-03 04:21:27 |
depth | 1 |
children | 0 |
last_payout | 2023-07-10 04:21: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 | 1,447 |
author_reputation | 369,196,304,736,348 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 124,990,414 |
net_rshares | 0 |
Congratulations @blocktrades! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge <table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutday.png"></td><td>Post with the highest payout of the day.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@blocktrades) 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 our last posts:** <table><tr><td><a href="/hive-122221/@hivebuzz/pum-202306-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202306-delegations">Our Hive Power Delegations to the June PUM Winners</a></td></tr><tr><td><a href="/hivebuzz/@hivebuzz/yearly-author-202306"><img src="https://images.hive.blog/64x128/https://i.imgur.com/ogVqE0F.png"></a></td><td><a href="/hivebuzz/@hivebuzz/yearly-author-202306">Yearly Authors Challenge Status</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202307-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202307-feedback">Feedback from the July Hive Power Up Day</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-blocktrades-20230704t012049 |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2023-07-04 01:20:51 |
last_update | 2023-07-04 01:20:51 |
depth | 1 |
children | 0 |
last_payout | 2023-07-11 01:20: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 | 1,395 |
author_reputation | 369,196,304,736,348 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,016,696 |
net_rshares | 0 |
Hey king! We need you, you're a such valuable member of the HIVE community and we need your help to bring the most advanced NFT market to HIVE that will integrate all the games and offer a new level experience to the NFT traders on all our blockchain. We're running a proposal and your vote is necessary to reach the goal. Thanks in advance king!
author | hivekings |
---|---|
permlink | re-4th-update-of-2023-putting-haf-apps-through-their-paces-seac2o8a0up8bv0oainqgv |
category | hive-139531 |
json_metadata | {"tags":["hivedev"]} |
created | 2023-07-21 18:27:36 |
last_update | 2023-07-21 18:27:36 |
depth | 1 |
children | 0 |
last_payout | 2023-07-28 18:27: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 | 346 |
author_reputation | 19,248,046,166,225 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,519,741 |
net_rshares | -550,315,248,186 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freebornsociety | 0 | -1,080,664,937 | -2.01% | ||
themarkymark | 0 | -504,003,927,708 | -1% | ||
gogreenbuddy | 0 | -43,925,961,316 | -1% | ||
scamforest | 0 | -1,304,694,225 | -2.5% |
I wonder what will come of it.
author | patrickit |
---|---|
permlink | re-blocktrades-rx9nwu |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.6.5"} |
created | 2023-07-04 10:02:54 |
last_update | 2023-07-04 10:02:54 |
depth | 1 |
children | 0 |
last_payout | 2023-07-11 10:02: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 | 30 |
author_reputation | 4,111,711,185 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,026,637 |
net_rshares | 0 |
I wonder what will come of it
author | patrickit |
---|---|
permlink | re-blocktrades-rx9nz5 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.6.5"} |
created | 2023-07-04 10:04:18 |
last_update | 2023-07-04 10:04:18 |
depth | 1 |
children | 0 |
last_payout | 2023-07-11 10:04: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 | 4,111,711,185 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,026,667 |
net_rshares | 0 |
<center>PIZZA! The Hive.Pizza team manually curated this post. <sub>Learn more at https://hive.pizza.</sub></center>
author | pizzabot |
---|---|
permlink | re-4th-update-of-2023-putting-haf-apps-through-their-paces-20230703t041256z |
category | hive-139531 |
json_metadata | "{"app": "pizzabot"}" |
created | 2023-07-03 04:12:57 |
last_update | 2023-07-03 04:12:57 |
depth | 1 |
children | 0 |
last_payout | 2023-07-10 04:12: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 | 118 |
author_reputation | 7,437,250,246,728 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 124,990,305 |
net_rshares | 0 |
Hive is unveiling so many features. There was a time someone told me about clive and now you are talking about it too. I believe that it is becoming more popular
author | rafzat |
---|---|
permlink | rx9e5c |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-07-04 06:32:03 |
last_update | 2023-07-04 06:32:03 |
depth | 1 |
children | 0 |
last_payout | 2023-07-11 06:32: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 | 161 |
author_reputation | 183,560,271,702,716 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,022,620 |
net_rshares | 0 |
Awesome stuff. Now that it seems the query supervisor is getting closer to done (after some real world testing), does that mean the pieces are close to in place to start development on the layer 2 smart contract code? I believe I remember you saying in the past that the query supervisor was one of the first major hurdles you all needed to finish first before you could seriously focus on smart contracts.
author | sepracore |
---|---|
permlink | re-blocktrades-rx92ok |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.6.5"} |
created | 2023-07-04 02:24:21 |
last_update | 2023-07-04 02:24:21 |
depth | 1 |
children | 1 |
last_payout | 2023-07-11 02:24:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.047 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 407 |
author_reputation | 19,888,382,618,059 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,017,832 |
net_rshares | 212,978,540,094 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
engrave | 0 | 212,978,540,094 | 4% |
Yes, it means we're close to starting on it. In a way, I consider all this work (HAF improvements, query supervisor, dev ops work with docker deployments to ease development and testing) part of the smart contract code development as it is the foundation for it.
author | blocktrades |
---|---|
permlink | rx9lfd |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-07-04 09:09:21 |
last_update | 2023-07-04 09:09:21 |
depth | 2 |
children | 0 |
last_payout | 2023-07-11 09:09:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 263 |
author_reputation | 1,278,355,776,041,298 |
root_title | "4th update of 2023: Putting HAF apps through their paces" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,025,615 |
net_rshares | 0 |
Looks like a whole lot of gibberish that the community doesn't even comprehend or show much excitement for. Now that your money scheme in USA is under arrest... let's see if you can actually make something of this other money scheme you got going.. this thing called HIVE. It's an interesting time in the Crypto Blockchain world though.. where the mergence of technologies could really see tangible things come from the phantom 'superior tech' called "web3". The dilemma might then be that humans that have for years bunkered down with the "BUILDING" of perfect systems, will for once have to compete with new ideas and systems backed by actual superior tech that emerged out of the so called evil "web2" big tech development frontiers. In other words.. I don't see Hive achieving anything disruptive if all you're delivering is reports on what code you've tinckered with. Specially when the END USER sees absolutely no changes and the rest of the Internet Geek World also don't see anything impressive that could become something mainstream or gain high utility. But I wonder if that was ever the plan with Hive. Pirates after all never did need to find land... they just needed to intercept those that possesed anything of value. Yet another HiveFest on the horizon too.. Don't you guys get a bit embarrassed pitching the same ideas to each other year after year..? I mean money gains aside... you got to have some pride and higher standards in the work you produce. Anyway as I said. Let's see if you can deliver now that you've said Hive development will be your full focus. What's the excuse for all the other HIVE projects stuck in "BUIDL" then.
author | xiko | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | rx7l7s | ||||||||||||
category | hive-139531 | ||||||||||||
json_metadata | {"app":"hiveblog/0.1"} | ||||||||||||
created | 2023-07-03 07:09:30 | ||||||||||||
last_update | 2023-07-03 07:09:30 | ||||||||||||
depth | 1 | ||||||||||||
children | 0 | ||||||||||||
last_payout | 2023-07-10 07:09:30 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 0.270 HBD | ||||||||||||
curator_payout_value | 0.275 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 1,663 | ||||||||||||
author_reputation | -2,275,684,584,966 | ||||||||||||
root_title | "4th update of 2023: Putting HAF apps through their paces" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 124,993,137 | ||||||||||||
net_rshares | 1,264,281,867,777 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
russia-btc | 0 | 1,264,281,867,777 | 98.7% |