 We’ve recently added five new programmers that were previously working on another project to our Hive team: three frontend devs, one frontend tester, and one backend dev. We now have over 30 devs working on Hive projects. Below are a few highlights of the Hive-related programming issues worked on by the BlockTrades team since my last report. # [Hived: blockchain node software](https://gitlab.syncad.com/hive/hive) * [Support for resuming artifact file generation. Also fixed flushing problems on long-running Hived nodes](https://gitlab.syncad.com/hive/hive/-/merge_requests/949). This will be supplemented soon by: https://gitlab.syncad.com/hive/hive/-/merge_requests/974 * [Load snapshot clears shared memory file automatically](https://gitlab.syncad.com/hive/hive/-/merge_requests/969) * Unit testing improvements - developed new fixture much better emulating real Hived environment - most of Hive startup code has been reused: https://gitlab.syncad.com/hive/hive/-/merge_requests/948 https://gitlab.syncad.com/hive/hive/-/merge_requests/963 https://gitlab.syncad.com/hive/hive/-/merge_requests/965 * [Fixed bugs in RC related condenser_api methods, to return legacy form of operation/transaction]( https://gitlab.syncad.com/hive/hive/-/merge_requests/964) * Changes were made to the Hive requests/response verification schema library as required by clive. There were also changes in test-tools to allow clive to share code. https://gitlab.syncad.com/hive/hive/-/merge_requests/959 https://gitlab.syncad.com/hive/hive/-/merge_requests/970 https://gitlab.syncad.com/hive/hive/-/merge_requests/972 https://gitlab.syncad.com/hive/test-tools/-/merge_requests/152 * [Reduced the size of proposal_pay_operation (unneeded data members removed).](https://gitlab.syncad.com/hive/hive/-/merge_requests/973) Resolves issue: https://gitlab.syncad.com/hive/hive/-/issues/498 * Hive docker/run_hived_img.sh script improvements: https://gitlab.syncad.com/hive/hive/-/merge_requests/916 https://gitlab.syncad.com/hive/haf/-/merge_requests/300 https://gitlab.syncad.com/hive/hive/-/issues/498 https://gitlab.syncad.com/hive/hive/-/issues/548 https://gitlab.syncad.com/hive/hive/-/issues/547 # [Denser: modern replacement for Condenser](https://gitlab.syncad.com/hive/denser) Although I am just announcing it now, the Denser project has actually been under way since the beginning of this year. The idea behind Denser is to replace the rather messy codebase of condenser (code used for hive.blog and several other hive-based front ends) with a cleaner, more maintainable codebase that uses the latest web technologies. At this point, the Denser prototype has reached the stage where it is clear the project is very viable, so we’ve opened up the repo for general inspection by the community. Denser has an automated deployment system so I'm able to preview and test each new deployment of the site (but unfortunately that site isn't yet accessible to users outside of our local network). # [Clive: 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. I saw the first demo of Clive on Friday and I’ll make a later post with some screenshots of it. Currently it only supports transfer operations, but the project is getting to the point where it should be easy to add support for many additional operation types soon. Mostly work is focused on preparing a version for public demo purposes and bugfixing: * [changing exit shortcut to avoid accident kill while exiting in prepared testnet version](https://gitlab.syncad.com/hive/clive/-/merge_requests/121) * [display network where wallet is connected to (Mainnet, Alt-chain)](https://gitlab.syncad.com/hive/clive/-/merge_requests/119) * [header shows blockchain state info (head block number, time, elapsed time from last refresh)](https://gitlab.syncad.com/hive/clive/-/merge_requests/102) * implemented external cli support: https://gitlab.syncad.com/hive/clive/-/merge_requests/94 https://gitlab.syncad.com/hive/clive/-/merge_requests/92 https://gitlab.syncad.com/hive/clive/-/merge_requests/96 * [refactor of operations screen to get better UI experience](https://gitlab.syncad.com/hive/clive/-/merge_requests/112) and https://gitlab.syncad.com/hive/clive/-/merge_requests/113 * Many bugfixes, error handling improvements: - https://gitlab.syncad.com/hive/clive/-/merge_requests/114 - https://gitlab.syncad.com/hive/clive/-/merge_requests/118 - https://gitlab.syncad.com/hive/clive/-/merge_requests/111 - https://gitlab.syncad.com/hive/clive/-/merge_requests/110 - https://gitlab.syncad.com/hive/clive/-/merge_requests/101 - https://gitlab.syncad.com/hive/clive/-/merge_requests/100 - https://gitlab.syncad.com/hive/clive/-/merge_requests/98 - https://gitlab.syncad.com/hive/clive/-/merge_requests/97 - https://gitlab.syncad.com/hive/clive/-/merge_requests/99 - https://gitlab.syncad.com/hive/clive/-/merge_requests/84 ### [Wax repo: glue code for C++, Python, and Javascript](https://gitlab.syncad.com/hive/wax) Additional work related to Clive is also being done in the [wax repo](https://gitlab.syncad.com/hive/wax/-/merge_requests?scope=all&state=merged). Wax acts as a glue between the direct blockchain code (written in C++), clive-foundation (written in Python), and (soon) Javascript, providing a shared codebase for transaction serialization. # Beekeeper: tool for managing encryption keys and generating/signing Hive transactions 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. ### New WASM-based version of Beekeeper The first version of Beekeeper was written in C++, but now we are creating a WASM (emscripten) toolchain based image to allow cross compiling beekeeper to a WASM target. The idea is to spawn beekeeper in a web browser to provide a common way to safely store keys, perform transaction serialization/deserialization and transaction signing. The wasm version of beekeeper is in this branch currently: https://gitlab.syncad.com/hive/hive/-/tree/mt-wasm-beekeeper A merge request will be made soon (probably Monday). WASM-based beekeeper is part of broader work related to creating a common authentication component for Denser, integrated chat, and all other apps where Hive authentication is needed. The new WASM-based code will also eliminate the need to duplicate transaction serialization implementation in any Javascript library which wants to support Hive. The transaction generation code will soon be moved from beekeeper to the wax library to reduce the amount of code in beekeeper (so as to reduce the amount of security analysis required). # [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 and bug fixes * [provided common function to calculate HivePower from vests](https://gitlab.syncad.com/hive/haf/-/merge_requests/287) * fixes to query supervisor (due to bugs detected at using public haf instance): https://gitlab.syncad.com/hive/haf/-/merge_requests/291 https://gitlab.syncad.com/hive/haf/-/merge_requests/294 * [explicit error when custom tables have too long identifiers (and creating a shadow tables can fail silently)](https://gitlab.syncad.com/hive/haf/-/merge_requests/295) * [unified way of creating forking and nonforking apps](https://gitlab.syncad.com/hive/haf/-/merge_requests/297) * [Improved JSON conversion performance](https://gitlab.syncad.com/hive/haf/-/merge_requests/296) * Improved textual dump of hive.operation (to bytea literal) to speedup pg_dump/pg_restore processes * [fixed bugs caused to HAF node crash while processing a fork](https://gitlab.syncad.com/hive/haf/-/merge_requests/285) * [fixed database object ownership management for automatically created items (by HAF)](https://gitlab.syncad.com/hive/haf/-/merge_requests/286) * [Fixes to account metadata state provider due to bugs detected while integrating it in the block explorer app](https://gitlab.syncad.com/hive/haf/-/merge_requests/299) ### 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). ### Publicly accessible read-only HAF server testing Recently we setup an instance of a HAF server that is publicly accessible with the query supervisor enabled to rate limit loading on the database. By publicly accessible, I mean it is possible to make direct read-only SQL queries to this HAF database that are not mediated by any API interface. Based on what we learned from that test, we’ve made further improvements to the query supervisor and plan to deploy a new version of the publicly accessible HAF server with the latest HAF version and the latest query supervisor in the coming week. ### 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) # 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. ### Block explorer backend * [Massive verification of account balances](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/51). This was done to verify the new features and recent fixes made to the HAF balance_tracker application which can provide historical data about various account balances. * [Endpoints for saving balances](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/44) * [New endpoint for Block explorer UI](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/46) ### Block explorer UI For the original prototype of the Block explorer UI, we only had one relatively new frontend programmer assigned. Now we’ve added several more experienced programmers to the project, and we’ve embarked on a major code rewrite to bring this project inline with the frontend coding guidelines we’re establishing for all our frontend projects in order to use a common set of web technologies. We hope to complete the rewrite by the 3rd week of August. Here’s some of the work planned and the devs assigned to each piece: https://gitlab.syncad.com/hive/block_explorer_ui/-/issues/7 https://gitlab.syncad.com/hive/block_explorer_ui/-/issues/8 https://gitlab.syncad.com/hive/block_explorer_ui/-/issues/9 https://gitlab.syncad.com/hive/block_explorer_ui/-/issues/10 # Some upcoming tasks * Integration of keyauth state provider provided by HAF into HAF block explorer. * Continue work on Consensus State Providers (for more powerful HAF apps). * Continue work on HAF-based block explorer backend and GUI * Add support for more operations to 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. * Benchmark some of the recent performance improvements in HAF and HAF-based apps. * Deploy an updated version of HAF to our publicly-accessible HAF server.
author | blocktrades |
---|---|
permlink | 4th-update-of-2023-including-new-apps-denser-and-wasm-based-beekeeper-plus-wax-library |
category | hive-139531 |
json_metadata | {"tags":["hive","blockchain","software","blocktrades"],"image":["https://images.hive.blog/DQmSihw8Kz4U7TuCQa98DDdCzqbqPFRumuVWAbareiYZW1Z/blocktrades%20update.png"],"links":["https://gitlab.syncad.com/hive/hive"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2023-07-29 21:54:45 |
last_update | 2023-07-30 15:32:15 |
depth | 0 |
children | 30 |
last_payout | 2023-08-05 21:54:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 199.908 HBD |
curator_payout_value | 199.658 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14,171 |
author_reputation | 1,278,355,776,041,298 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,756,974 |
net_rshares | 848,755,142,671,035 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 96,687,049,667,155 | 100% | ||
xeldal | 0 | 13,079,245,988,795 | 25% | ||
adol | 0 | 1,247,687,787,267 | 50% | ||
enki | 0 | 4,965,395,443,826 | 25% | ||
adm | 0 | 26,684,923,396,758 | 100% | ||
steemychicken1 | 0 | 3,172,035,889,029 | 100% | ||
boatymcboatface | 0 | 571,708,132,330 | 30% | ||
fractalnode | 0 | 16,645,167,993 | 50% | ||
kencode | 0 | 682,336,095,088 | 100% | ||
kingscrown | 0 | 85,801,478,264 | 30% | ||
flemingfarm | 0 | 489,515,379,303 | 80% | ||
acidyo | 0 | 16,337,333,728,890 | 100% | ||
oaldamster | 0 | 159,628,155,652 | 100% | ||
kevinwong | 0 | 364,198,424,006 | 50% | ||
leprechaun | 0 | 1,099,800,667 | 13% | ||
theshell | 0 | 153,132,142,830 | 30% | ||
kennyskitchen | 0 | 20,795,288,695 | 50% | ||
gtg | 0 | 32,565,765,488,698 | 100% | ||
gerber | 0 | 223,437,008,425 | 58% | ||
roelandp | 0 | 461,432,819,528 | 50% | ||
daan | 0 | 59,964,205,645 | 8% | ||
ezzy | 0 | 9,389,932,710 | 58% | ||
matt-a | 0 | 1,302,420,415 | 16.62% | ||
marsresident | 0 | 1,106,072,981 | 50% | ||
ausbitbank | 0 | 3,044,111,737,985 | 100% | ||
mrwang | 0 | 842,623,641 | 25% | ||
fulltimegeek | 0 | 732,197,334,477 | 100% | ||
cloh76 | 0 | 145,233,746,322 | 100% | ||
jeffjagoe | 0 | 8,387,072,894 | 1% | ||
diana.catherine | 0 | 2,850,725,848 | 25% | ||
kendewitt | 0 | 443,838,664,143 | 100% | ||
arcange | 0 | 11,217,825,065,296 | 50% | ||
lichtblick | 0 | 170,130,919,693 | 100% | ||
demotruk | 0 | 1,298,678,983,147 | 100% | ||
fiveboringgames | 0 | 3,588,888,824 | 50% | ||
ubg | 0 | 158,262,814,211 | 100% | ||
deanliu | 0 | 3,916,370,665,978 | 100% | ||
exyle | 0 | 523,724,135,194 | 58% | ||
sokoloffa | 0 | 1,108,019,449 | 25% | ||
quigua | 0 | 1,029,404,912 | 100% | ||
ace108 | 0 | 470,862,540,359 | 13% | ||
leylar | 0 | 244,417,986,762 | 96% | ||
steempress | 0 | 574,285,897,545 | 50% | ||
akipponn | 0 | 4,546,796,923 | 30% | ||
magicmonk | 0 | 4,579,090,036,552 | 100% | ||
sunshine | 0 | 290,036,831,313 | 50% | ||
jphamer1 | 0 | 8,994,724,836,809 | 100% | ||
joele | 0 | 36,376,867,552 | 100% | ||
oflyhigh | 0 | 4,770,977,979,295 | 100% | ||
shanghaipreneur | 0 | 23,867,990,518 | 100% | ||
borran | 0 | 1,092,585,745,104 | 100% | ||
rmach | 0 | 49,454,324,608 | 100% | ||
lemouth | 0 | 2,852,929,000,117 | 100% | ||
elamental | 0 | 6,068,783,719 | 13.2% | ||
stevescoins | 0 | 2,501,044,681 | 25% | ||
someguy123 | 0 | 225,985,907,639 | 58% | ||
themonetaryfew | 0 | 1,010,641,738,573 | 100% | ||
jlufer | 0 | 7,242,656,450 | 100% | ||
esecholo | 0 | 7,516,659,931 | 100% | ||
penguinpablo | 0 | 206,359,911,303 | 14% | ||
uwelang | 0 | 11,794,308,404 | 20% | ||
wakeupnd | 0 | 109,372,569,610 | 50% | ||
tftproject | 0 | 1,323,885,550 | 7.5% | ||
dbroze | 0 | 7,055,809,489 | 50% | ||
jimbobbill | 0 | 2,226,507,102 | 15% | ||
canadian-coconut | 0 | 4,652,399,535,907 | 30% | ||
cornerstone | 0 | 1,204,111,058,685 | 50% | ||
titusfrost | 0 | 34,552,188,075 | 100% | ||
petrvl | 0 | 208,250,804,427 | 20% | ||
ebargains | 0 | 16,148,212,498 | 47.5% | ||
sergiomendes | 0 | 18,249,431,029 | 25% | ||
whatsup | 0 | 312,567,565,852 | 50% | ||
funnyman | 0 | 1,357,282,180 | 5.6% | ||
michelle.gent | 0 | 302,763,345,494 | 100% | ||
jang | 0 | 116,039,969,324 | 100% | ||
whoib | 0 | 9,397,539,856 | 100% | ||
lloyddavis | 0 | 22,675,510,633 | 75% | ||
siniceku | 0 | 1,504,165,487 | 100% | ||
ura-soul | 0 | 34,878,778,234 | 25% | ||
gamer00 | 0 | 1,077,834,224 | 0.24% | ||
techslut | 0 | 303,958,994,633 | 50% | ||
consciousness | 0 | 10,013,126,809 | 100% | ||
triviummethod | 0 | 5,776,683,579 | 100% | ||
jaybird | 0 | 23,323,010,485 | 100% | ||
whistleblower | 0 | 10,515,040,181 | 100% | ||
keuudeip | 0 | 787,257,035 | 47.5% | ||
builderofcastles | 0 | 37,938,802,955 | 27% | ||
oleg326756 | 0 | 4,897,175,737 | 12.5% | ||
ancolie | 0 | 12,672,227,151 | 11.37% | ||
edb | 0 | 5,795,227,266 | 6% | ||
yadamaniart | 0 | 28,314,234,831 | 25% | ||
igormuba | 0 | 23,922,960,850 | 100% | ||
veganism | 0 | 5,746,342,043 | 100% | ||
justinw | 0 | 74,699,885,420 | 15.67% | ||
walterjay | 0 | 202,609,177,460 | 16.25% | ||
humanearl | 0 | 2,032,488,858 | 70% | ||
v4vapid | 0 | 896,466,150,597 | 5.5% | ||
delso | 0 | 48,437,663,750 | 100% | ||
steemitcommunity | 0 | 1,354,326,995 | 100% | ||
askari | 0 | 23,527,186,470 | 20% | ||
ripperone | 0 | 3,308,672,851,956 | 43% | ||
erikaflynn | 0 | 19,630,408,365 | 30% | ||
bxt | 0 | 300,068,904,991 | 100% | ||
tarazkp | 0 | 3,490,633,490,733 | 50% | ||
sudutpandang | 0 | 1,296,794,958 | 100% | ||
thereikiforest | 0 | 509,661,830 | 10% | ||
evildeathcore | 0 | 13,676,519,447 | 100% | ||
yuslindwi | 0 | 1,510,593,639 | 50% | ||
diggndeeper.com | 0 | 6,798,088,120,130 | 100% | ||
trafalgar | 0 | 46,803,804,972,317 | 100% | ||
ganjafarmer | 0 | 72,438,532,412 | 25% | ||
fernwehninja | 0 | 3,368,896,159 | 100% | ||
louisthomas | 0 | 17,516,350,917 | 100% | ||
itinerantph | 0 | 1,289,983,266 | 50% | ||
lordneroo | 0 | 10,763,877,807 | 100% | ||
daniel.dalo | 0 | 3,886,693,917 | 50% | ||
freedomexists | 0 | 1,596,762,984 | 100% | ||
preparedwombat | 0 | 1,173,999,686,300 | 100% | ||
freebornsociety | 0 | 5,968,271,317 | 10% | ||
singa | 0 | 4,979,296,544 | 100% | ||
detlev | 0 | 152,608,901,791 | 10% | ||
miniature-tiger | 0 | 61,472,961,739 | 100% | ||
dickturpin | 0 | 64,265,124,137 | 100% | ||
raindrop | 0 | 725,092,720,816 | 100% | ||
ocisly | 0 | 12,066,036,398 | 100% | ||
ma1neevent | 0 | 20,330,278,259 | 15% | ||
lugaxker | 0 | 598,334,496 | 25.74% | ||
smasssh | 0 | 1,320,432,216,274 | 30% | ||
tamaralovelace | 0 | 75,077,884,592 | 100% | ||
mes | 0 | 420,180,829,305 | 100% | ||
batman0916 | 0 | 4,381,462,144 | 23.75% | ||
thelordsfinest | 0 | 508,658,619 | 100% | ||
dreamon | 0 | 898,610,158 | 22.2% | ||
andyjaypowell | 0 | 663,320,411,773 | 99% | ||
broncnutz | 0 | 10,403,246,840,164 | 100% | ||
grider123 | 0 | 1,240,846,269 | 5% | ||
nenio | 0 | 61,405,972,794 | 22% | ||
iansart | 0 | 391,961,867,531 | 100% | ||
schlees | 0 | 432,083,069,197 | 20% | ||
mvd | 0 | 1,988,284,394 | 50% | ||
mobbs | 0 | 305,755,956,419 | 100% | ||
amuchtar | 0 | 539,322,598 | 100% | ||
valued-customer | 0 | 38,416,260,801 | 25% | ||
jerrybanfield | 0 | 96,161,694,225 | 30% | ||
rt395 | 0 | 13,668,832,075 | 10% | ||
uruiamme | 0 | 6,135,573,314 | 55% | ||
bigram13 | 0 | 27,318,743,981 | 100% | ||
drag33 | 0 | 46,546,486,793 | 100% | ||
nrg | 0 | 276,961,239,139 | 100% | ||
newsflash | 0 | 47,611,099,082 | 1.37% | ||
trumpikas | 0 | 10,199,088,544 | 80% | ||
joechiappetta | 0 | 134,887,608,838 | 100% | ||
xels | 0 | 349,029,534,096 | 50% | ||
galberto | 0 | 281,965,089,865 | 100% | ||
rawselectmusic | 0 | 10,252,447,727 | 25% | ||
aditor | 0 | 5,390,995,483 | 100% | ||
bitcoinflood | 0 | 612,806,005,618 | 21.7% | ||
belahejna | 0 | 36,584,978,883 | 20% | ||
alphacore | 0 | 44,312,078,545 | 43.29% | ||
galenkp | 0 | 5,362,183,908,348 | 100% | ||
enjar | 0 | 802,189,603,301 | 100% | ||
robtheranger | 0 | 526,433,764 | 10% | ||
mahdiyari | 0 | 2,383,811,537,456 | 100% | ||
ammonite | 0 | 356,904,218,131 | 100% | ||
drakos | 0 | 208,754,659,493 | 100% | ||
chinito | 0 | 21,743,431,664 | 100% | ||
dandesign86 | 0 | 1,807,953,209 | 0.95% | ||
spectrumecons | 0 | 3,231,344,891,169 | 50% | ||
truthforce | 0 | 3,583,238,091 | 50% | ||
tezmel | 0 | 10,484,716,132 | 100% | ||
jayna | 0 | 68,067,654,309 | 10% | ||
guchtere | 0 | 3,201,146,724 | 23.75% | ||
vieanna | 0 | 267,262,213,404 | 100% | ||
imransoudagar | 0 | 1,455,484,779 | 100% | ||
joeyarnoldvn | 0 | 35,999,514,810 | 100% | ||
heyitshaas | 0 | 9,881,624,948 | 100% | ||
papilloncharity | 0 | 1,847,921,595,547 | 80.3% | ||
gunthertopp | 0 | 1,982,419,823,144 | 37.5% | ||
gniksivart | 0 | 124,167,315,582 | 20% | ||
toofasteddie | 0 | 142,753,260,138 | 24% | ||
bluemist | 0 | 45,224,704,973 | 20% | ||
eturnerx | 0 | 271,018,713,393 | 13.9% | ||
diegoameerali | 0 | 4,169,783,009 | 15% | ||
adambarratt | 0 | 13,821,818,937 | 50% | ||
tattoodjay | 0 | 401,813,440,388 | 15% | ||
dante31 | 0 | 1,877,244,169 | 55% | ||
unyimeetuk | 0 | 1,165,057,093 | 50% | ||
rafalski | 0 | 801,772,047 | 52.2% | ||
lenasveganliving | 0 | 3,249,439,277 | 10% | ||
ashokcan143 | 0 | 2,097,423,119 | 40% | ||
molometer | 0 | 237,164,761,614 | 100% | ||
theguruasia | 0 | 6,771,247,482 | 100% | ||
loonatic | 0 | 46,192,134,359 | 100% | ||
howo | 0 | 3,186,083,815,590 | 100% | ||
ksteem | 0 | 960,224,574,916 | 52.3% | ||
shitsignals | 0 | 10,478,692,248 | 58% | ||
shebe | 0 | 612,663,526 | 6% | ||
appreciator | 0 | 75,317,196,163,682 | 20% | ||
themarkymark | 0 | 47,916,511,852,389 | 100% | ||
owner99 | 0 | 1,700,895,726 | 25% | ||
stayoutoftherz | 0 | 5,996,799,414,304 | 60% | ||
ocd | 0 | 5,167,161,947,100 | 50% | ||
macchiata | 0 | 186,792,828,472 | 50% | ||
vikisecrets | 0 | 620,006,104,194 | 30% | ||
isabelpena | 0 | 2,714,118,521 | 100% | ||
shasta | 0 | 383,859,275,509 | 100% | ||
zonguin | 0 | 3,470,900,353 | 16.25% | ||
enfocate | 0 | 8,334,442,040 | 51.1% | ||
pocketrocket | 0 | 20,117,998,021 | 100% | ||
kharrazi | 0 | 4,343,975,846 | 100% | ||
khalil319 | 0 | 968,531,205 | 25% | ||
steemik | 0 | 0 | 100% | ||
mamalikh13 | 0 | 58,919,169,562 | 25% | ||
francosteemvotes | 0 | 4,814,847,140 | 32.5% | ||
martibis | 0 | 27,385,956,324 | 15% | ||
yacobh | 0 | 11,677,004,553 | 70% | ||
kiobot | 0 | 903,682,429 | 25% | ||
jeanlucsr | 0 | 3,416,455,354 | 5.8% | ||
redrica | 0 | 19,076,615,385 | 26.12% | ||
horpey | 0 | 70,433,126,348 | 100% | ||
shanibeer | 0 | 339,729,118,044 | 17.5% | ||
hdmed | 0 | 3,240,699,522 | 50% | ||
shogo | 0 | 5,001,684,769 | 100% | ||
fionasfavourites | 0 | 162,827,291,091 | 100% | ||
zyx066 | 0 | 51,185,778,087 | 15% | ||
azis | 0 | 4,394,849,716 | 100% | ||
genesisojeda | 0 | 1,905,435,530 | 25% | ||
steemorocco | 0 | 1,127,293,227 | 100% | ||
ragnarokdel | 0 | 19,913,504,369 | 80% | ||
htotoo | 0 | 2,902,473,578 | 100% | ||
felander | 0 | 288,010,243,708 | 58% | ||
djlethalskillz | 0 | 16,256,156,022 | 50% | ||
santigs | 0 | 309,860,288,958 | 51% | ||
marketinggeek | 0 | 3,084,780,708 | 100% | ||
risckylu | 0 | 1,540,533,622 | 51.1% | ||
ekkah | 0 | 877,658,368 | 100% | ||
stoodkev | 0 | 15,823,114,645,899 | 100% | ||
kimzwarch | 0 | 17,011,649,495 | 4% | ||
niallon11 | 0 | 170,584,466,483 | 7.5% | ||
nurhayati | 0 | 2,337,430,778 | 50% | ||
evildido | 0 | 1,904,401,459 | 16.25% | ||
buildawhale | 0 | 74,929,358,506,283 | 100% | ||
aidefr | 0 | 5,395,033,244 | 26% | ||
nameless16 | 0 | 3,681,637,773 | 25% | ||
eastmael | 0 | 64,489,372,851 | 100% | ||
calatorulmiop | 0 | 66,910,141,796 | 50% | ||
yogacoach | 0 | 13,487,384,496 | 58% | ||
artlover | 0 | 1,486,248,804 | 100% | ||
estream.studios | 0 | 2,333,597,471 | 47.5% | ||
fqc | 0 | 1,071,266,055 | 100% | ||
drax | 0 | 449,251,979,843 | 100% | ||
sorin.cristescu | 0 | 90,999,261,650 | 16.25% | ||
tomwafula | 0 | 805,419,257 | 25% | ||
futurethinker | 0 | 1,480,914,500 | 100% | ||
podanrj | 0 | 1,216,488,645 | 55% | ||
taskmaster4450 | 0 | 2,455,679,782,198 | 100% | ||
roleerob | 0 | 552,633,659,370 | 100% | ||
deathwing | 0 | 1,743,032,656,740 | 58% | ||
gnarlyanimations | 0 | 916,548,266 | 50% | ||
mawit07 | 0 | 144,414,202,485 | 45.3% | ||
revisesociology | 0 | 724,363,546,778 | 30% | ||
silversaver888 | 0 | 132,802,400,145 | 25% | ||
splash-of-angs63 | 0 | 879,832,516 | 25% | ||
benainouna | 0 | 12,155,789,233 | 100% | ||
dilimunanzar | 0 | 13,872,955,655 | 100% | ||
insanityisfree | 0 | 989,896,339 | 50% | ||
diosarich | 0 | 1,042,081,760 | 100% | ||
mauromar | 0 | 531,017,957,958 | 100% | ||
mcfarhat | 0 | 8,620,937,022 | 100% | ||
omra-sky | 0 | 44,022,406,854 | 40% | ||
jlsplatts | 0 | 22,197,705,560 | 2% | ||
risemultiversity | 0 | 3,650,894,823 | 25% | ||
makerhacks | 0 | 126,052,398,367 | 100% | ||
ecotrain | 0 | 85,921,262,691 | 30% | ||
kevinbacon | 0 | 895,564,060 | 100% | ||
steemseph | 0 | 59,745,933,565 | 50% | ||
hanggggbeeee | 0 | 4,660,583,968 | 25% | ||
chanmaly | 0 | 86,392,364,863 | 96% | ||
m-san | 0 | 5,738,300,273 | 100% | ||
morwhale | 0 | 1,614,348,390 | 100% | ||
alfamano | 0 | 1,433,285,506 | 50% | ||
vegoutt-travel | 0 | 51,743,326,905 | 50% | ||
danlop | 0 | 924,014,560 | 25% | ||
spacesheep | 0 | 4,639,468,672 | 100% | ||
liverpool-fan | 0 | 15,340,372,547 | 100% | ||
afterglow | 0 | 3,778,210,952 | 50% | ||
morwhaleplus | 0 | 856,145,260 | 100% | ||
seareader1 | 0 | 1,276,747,656 | 10% | ||
petrolinivideo | 0 | 5,621,880,757 | 50% | ||
dandays | 0 | 1,190,698,731,072 | 100% | ||
arabisouri | 0 | 79,413,126,918 | 100% | ||
informationwar | 0 | 257,856,192,714 | 50% | ||
coolguy123 | 0 | 96,508,799,356 | 50% | ||
morwhalebonus | 0 | 849,177,406 | 100% | ||
devosdevosi | 0 | 4,252,500,149 | 100% | ||
familyprotection | 0 | 764,920,727,382 | 51% | ||
hectgranate | 0 | 640,447,667 | 7.5% | ||
mrhill | 0 | 1,699,566,648 | 5% | ||
blockbrothers | 0 | 1,001,139,612 | 29% | ||
sunsea | 0 | 17,460,792,645 | 10% | ||
eonwarped | 0 | 437,681,214,857 | 30% | ||
postpromoter | 0 | 1,077,900,199,951 | 47.5% | ||
teammorocco | 0 | 1,334,311,868 | 100% | ||
feedme | 0 | 638,588,253 | 100% | ||
emrebeyler | 0 | 1,638,660,394,181 | 52.2% | ||
ridsevilla | 0 | 9,556,268,091 | 100% | ||
steveconnor | 0 | 87,770,597,041 | 50% | ||
dbddv01 | 0 | 2,383,904,674 | 16.25% | ||
maxinpower | 0 | 73,380,526,043 | 50% | ||
scuzzy | 0 | 727,875,920 | 2.5% | ||
lordnigel | 0 | 4,421,036,791 | 14% | ||
astalwigo | 0 | 481,813,765 | 100% | ||
fredkese | 0 | 4,722,306,364 | 33% | ||
travoved | 0 | 8,508,845,160 | 100% | ||
sarmitirajaa | 0 | 548,439,918 | 100% | ||
elisonr13 | 0 | 4,465,628,908 | 25.55% | ||
popurri | 0 | 577,085,626 | 25.55% | ||
mytechtrail | 0 | 15,873,104,157 | 15% | ||
cura | 0 | 484,542,019 | 100% | ||
steeminer4up | 0 | 498,184,844 | 100% | ||
mhm-philippines | 0 | 520,575,764 | 25% | ||
traf | 0 | 3,932,331,713,366 | 100% | ||
sunnyali | 0 | 1,093,869,995 | 25% | ||
ubikalo | 0 | 1,113,297,655 | 25.55% | ||
kernelillo | 0 | 14,282,919,655 | 25% | ||
tazi | 0 | 65,375,650,808 | 49% | ||
ahmetay | 0 | 117,143,472,603 | 100% | ||
itchyfeetdonica | 0 | 172,891,163,983 | 20% | ||
elderson | 0 | 8,825,834,611 | 12.5% | ||
prometehum | 0 | 1,038,806,547 | 100% | ||
alexandraioana26 | 0 | 10,003,509,973 | 25% | ||
fjcalduch | 0 | 387,698,423,200 | 100% | ||
robotics101 | 0 | 9,611,624,762 | 32.5% | ||
lpv | 0 | 2,250,805,901 | 6.5% | ||
funshel | 0 | 485,398,291 | 25% | ||
sneakyninja | 0 | 625,302,486 | 0.99% | ||
statorcrime | 0 | 1,093,335,208 | 16.25% | ||
najat | 0 | 3,963,406,004 | 100% | ||
steembasicincome | 0 | 228,271,228,580 | 4.84% | ||
spiritabsolute | 0 | 23,013,683,515 | 100% | ||
dmwh | 0 | 67,453,233,429 | 25% | ||
stepshotfoto | 0 | 7,279,198,500 | 100% | ||
wiseagent | 0 | 110,400,934,869 | 10% | ||
cryptonized | 0 | 10,772,682,012 | 14% | ||
godlovermel25 | 0 | 752,717,074 | 25% | ||
tomatom | 0 | 5,234,367,021 | 25% | ||
fourfourfun | 0 | 15,836,383,630 | 50% | ||
peter.goki | 0 | 111,891,693,350 | 100% | ||
spydo | 0 | 87,411,906,329 | 25% | ||
upmyvote | 0 | 31,509,093,266 | 100% | ||
kirazay | 0 | 30,971,291,433 | 100% | ||
r00sj3 | 0 | 120,400,267,637 | 25% | ||
anikekirsten | 0 | 3,996,275,201 | 100% | ||
phortun | 0 | 94,652,790,996 | 10% | ||
ronpurteetv | 0 | 1,075,842,385 | 25% | ||
brotherhood | 0 | 88,909,604,194 | 25% | ||
daltono | 0 | 821,467,922,835 | 47% | ||
juecoree | 0 | 2,187,476,087 | 25% | ||
gabrielatravels | 0 | 38,672,532,974 | 50% | ||
thedrewshow | 0 | 680,817,337 | 100% | ||
awuahbenjamin | 0 | 13,880,413,730 | 100% | ||
branbello | 0 | 3,948,102,042 | 50% | ||
iamjadeline | 0 | 52,744,892,510 | 50% | ||
edwardstobia | 0 | 12,710,052,458 | 50% | ||
hijosdelhombre | 0 | 53,061,160,053 | 50% | ||
hdmed.dev | 0 | 568,920,662 | 100% | ||
roundbeargames | 0 | 8,463,181,841 | 100% | ||
sweeverdev | 0 | 1,434,439,102 | 70% | ||
topchuqs | 0 | 687,371,946 | 50% | ||
smjn | 0 | 951,765,337,594 | 100% | ||
santarius | 0 | 3,805,012,341 | 100% | ||
osarueseosato | 0 | 658,304,517 | 100% | ||
socialmediaseo | 0 | 3,682,710,976 | 100% | ||
ahmedsy | 0 | 29,839,456,495 | 100% | ||
piotrgrafik | 0 | 820,586,826,323 | 80% | ||
soyrosa | 0 | 156,092,380,103 | 50% | ||
ricardo993 | 0 | 7,918,904,313 | 30% | ||
unicron | 0 | 5,184,259,321 | 60% | ||
empress-eremmy | 0 | 19,872,012,188 | 25% | ||
dynamicrypto | 0 | 23,320,809,280 | 6.25% | ||
auracraft | 0 | 720,281,297 | 20% | ||
ikrahch | 0 | 222,918,722,298 | 64% | ||
marc-allaria | 0 | 66,348,775,207 | 100% | ||
a-quarius | 0 | 171,868,739,868 | 100% | ||
philnewton | 0 | 538,649,385 | 7.5% | ||
roger.remix | 0 | 939,084,699 | 58% | ||
thetroublenotes | 0 | 228,658,890,707 | 100% | ||
gribouille | 0 | 1,239,845,977 | 26% | ||
nnaraoh | 0 | 169,694,168,678 | 100% | ||
cool08 | 0 | 4,257,712,807 | 25% | ||
essejparr | 0 | 102,614,506,263 | 100% | ||
edprivat | 0 | 4,323,490,570 | 7.5% | ||
krommus | 0 | 1,125,406,465 | 50% | ||
lunaticpandora | 0 | 957,760,177,702 | 50% | ||
debilog | 0 | 1,298,983,795 | 25% | ||
jazzhero | 0 | 5,512,978,906 | 7.5% | ||
kamalkhann | 0 | 597,307,729 | 20.56% | ||
sportfrei | 0 | 19,165,107,635 | 50% | ||
beautifulfield | 0 | 2,092,880,885 | 80% | ||
shmoogleosukami | 0 | 89,600,833,521 | 25% | ||
warpedpoetic | 0 | 8,245,414,157 | 23.75% | ||
unconditionalove | 0 | 7,823,649,017 | 29% | ||
orlandumike | 0 | 20,057,715,881 | 20% | ||
natha93 | 0 | 2,568,436,746 | 50% | ||
mastergerund | 0 | 564,253,434 | 1.99% | ||
ocd-witness | 0 | 513,767,720,304 | 50% | ||
cryptosharon | 0 | 175,386,727,607 | 100% | ||
galam | 0 | 705,625,840 | 26% | ||
vicrivasr | 0 | 854,735,141 | 51.1% | ||
green77 | 0 | 19,277,092,728 | 95% | ||
pkocjan | 0 | 656,794,625 | 80% | ||
saltycat | 0 | 7,114,647,337 | 100% | ||
madefrance | 0 | 7,841,263,217 | 25% | ||
robertbira | 0 | 2,130,987,726 | 5% | ||
penderis | 0 | 105,375,178,294 | 100% | ||
condeas | 0 | 454,201,293,065 | 20% | ||
rubelynmacion | 0 | 31,747,505,916 | 100% | ||
melyrigo | 0 | 1,666,188,653 | 25% | ||
elektr1ker | 0 | 1,108,119,536 | 25% | ||
nataboo | 0 | 1,331,858,201 | 50% | ||
onlavu | 0 | 113,303,054,500 | 100% | ||
alexdory | 0 | 8,592,799,623 | 50% | ||
takowi | 0 | 954,452,245,664 | 50% | ||
samostically | 0 | 731,471,980 | 20% | ||
cyprianj | 0 | 116,174,361,968 | 100% | ||
bertrayo | 0 | 14,804,454,182 | 10% | ||
cst90 | 0 | 315,416,631,505 | 100% | ||
movement19 | 0 | 6,940,159,787 | 25% | ||
promo-mentors | 0 | 705,625,059 | 100% | ||
lisfabian | 0 | 10,905,115,612 | 50% | ||
russellstockley | 0 | 115,920,805,792 | 100% | ||
g4fun | 0 | 11,447,330,069 | 25% | ||
putu300 | 0 | 4,880,045,606 | 50% | ||
cryptictruth | 0 | 14,732,027,590 | 3.12% | ||
jagoe | 0 | 40,541,688,583 | 24% | ||
siphon | 0 | 60,272,341,392 | 33.1% | ||
supreme-verdict | 0 | 1,129,525,597 | 41.12% | ||
almi | 0 | 685,313,689,548 | 100% | ||
homeginkit | 0 | 3,236,467,483 | 100% | ||
didutza | 0 | 1,222,499,427 | 75% | ||
richatvns | 0 | 561,359,836 | 0.5% | ||
properfraction | 0 | 58,022,752,944 | 100% | ||
jonmylestan | 0 | 3,146,292,358 | 50% | ||
miroslavrc | 0 | 12,236,334,036 | 25% | ||
nervi | 0 | 10,891,640,704 | 100% | ||
miosha | 0 | 492,777,872,385 | 100% | ||
cryptozdk | 0 | 912,592,062 | 50% | ||
azircon | 0 | 17,703,459,304,205 | 100% | ||
jocieprosza | 0 | 201,349,577,117 | 100% | ||
amico | 0 | 2,695,025,542 | 33% | ||
outlinez | 0 | 917,825,220 | 20% | ||
greendo | 0 | 1,780,731,269 | 100% | ||
sunshinebear | 0 | 1,681,232,604 | 50% | ||
steemitcolombia | 0 | 4,647,493,357 | 100% | ||
grzyb77 | 0 | 1,410,080,321 | 15% | ||
silverd510 | 0 | 15,218,181,833 | 100% | ||
immanuel94 | 0 | 410,390,721,422 | 100% | ||
neopch | 0 | 41,392,763,846 | 100% | ||
andablackwidow | 0 | 52,915,967,842 | 100% | ||
bdlatif | 0 | 2,361,887,932 | 50% | ||
bil.prag | 0 | 365,895,934,248 | 40% | ||
bestboom | 0 | 8,344,235,010 | 58% | ||
botefarm | 0 | 12,137,679,555 | 100% | ||
sanderjansenart | 0 | 95,987,864,366 | 50% | ||
manniman | 0 | 450,645,753,650 | 100% | ||
adamada | 0 | 56,335,972,042 | 10% | ||
louis88 | 0 | 1,707,004,540,984 | 70% | ||
sima369 | 0 | 799,775,850 | 25% | ||
reversehitler88 | 0 | 1,363,400,826 | 10% | ||
tibfox | 0 | 128,923,232,056 | 100% | ||
paragism | 0 | 2,994,480,974 | 100% | ||
franciscopr | 0 | 18,073,275,739 | 100% | ||
flaxz | 0 | 2,238,006,411 | 3% | ||
racibo | 0 | 813,480,151 | 2.5% | ||
pelin | 0 | 973,298,395 | 100% | ||
wolfhart | 0 | 16,258,470,092 | 40% | ||
m2nnari | 0 | 2,602,237,030 | 100% | ||
laviniatherapist | 0 | 2,069,234,843 | 42.5% | ||
yameen | 0 | 36,659,397,169 | 100% | ||
juanmanuellopez1 | 0 | 1,559,994,706 | 40.88% | ||
braaiboy | 0 | 37,680,786,357 | 10% | ||
abdulmath | 0 | 13,301,353,584 | 50% | ||
jemmanuel | 0 | 8,893,867,054 | 20% | ||
gadrian | 0 | 344,258,088,248 | 50% | ||
inciter | 0 | 13,198,235,008 | 20% | ||
jordangerder | 0 | 3,218,761,354 | 25.55% | ||
themightyvolcano | 0 | 29,201,543,835 | 58% | ||
xchng | 0 | 8,939,246,591 | 80% | ||
gifty-e | 0 | 746,607,163 | 100% | ||
elsll | 0 | 1,053,856,916 | 30% | ||
manuelmusic | 0 | 647,306,137 | 12% | ||
michellpiala | 0 | 2,849,506,279 | 50% | ||
imcore | 0 | 864,002,947 | 10% | ||
gogreenbuddy | 0 | 2,541,427,016,037 | 50% | ||
springlining | 0 | 28,887,972,556 | 100% | ||
adalbertodrums | 0 | 645,184,538 | 50% | ||
tsnaks | 0 | 8,942,864,841 | 100% | ||
roinv | 0 | 579,405,702 | 15% | ||
dracrow | 0 | 4,994,429,504 | 20.44% | ||
achimmertens | 0 | 63,301,004,485 | 25% | ||
quochuy | 0 | 975,519,202,807 | 16.93% | ||
kgakakillerg | 0 | 18,546,847,495 | 10% | ||
augusto-cordova | 0 | 4,490,092,008 | 47.5% | ||
flyinghigher | 0 | 67,552,435,450 | 100% | ||
larryparra | 0 | 937,529,198 | 25.55% | ||
softa | 0 | 183,362,984,454 | 100% | ||
el-dee-are-es | 0 | 6,475,210,159 | 10% | ||
santarius2 | 0 | 792,302,615 | 100% | ||
calisay | 0 | 5,888,622,459 | 100% | ||
steemromania | 0 | 16,888,264,942 | 50% | ||
indigoocean | 0 | 11,836,155,481 | 25% | ||
oriongg | 0 | 655,471,978 | 25% | ||
raorac | 0 | 1,324,533,005 | 35% | ||
feedmytwi | 0 | 816,998,572 | 10% | ||
bajadera | 0 | 2,014,340,742 | 100% | ||
retard-gamer-de | 0 | 643,602,631 | 25% | ||
yaraha | 0 | 4,023,625,266 | 20% | ||
promobot | 0 | 2,981,537,138 | 100% | ||
incubot | 0 | 480,451,036 | 10% | ||
beco132 | 0 | 19,251,014,713 | 100% | ||
superlao | 0 | 2,575,737,171 | 5% | ||
veteranforcrypto | 0 | 4,047,285,628 | 20% | ||
fitnessgourmet | 0 | 955,446,881 | 100% | ||
rozku | 0 | 81,452,242,080 | 30% | ||
jancharlest | 0 | 5,314,087,367 | 100% | ||
quorum4 | 0 | 499,582,157 | 100% | ||
leomolina | 0 | 1,818,264,297 | 9% | ||
fw206 | 0 | 6,298,802,035,563 | 100% | ||
kamalamezwar | 0 | 595,938,166 | 100% | ||
steem.services | 0 | 46,765,967,696 | 47.5% | ||
nickyhavey | 0 | 13,402,181,438 | 47.5% | ||
netzisde | 0 | 18,560,233,581 | 50% | ||
bushradio | 0 | 7,421,522,854 | 60% | ||
techcoderx | 0 | 76,638,462,011 | 100% | ||
sayago | 0 | 2,105,555,274 | 50% | ||
pladozero | 0 | 33,135,529,868 | 10% | ||
crimo | 0 | 518,971,321 | 10% | ||
nateaguila | 0 | 142,816,368,443 | 5% | ||
oscar21vander | 0 | 1,330,582,490 | 50% | ||
enforcer48 | 0 | 223,523,203,499 | 20% | ||
viniciotricolor | 0 | 4,617,076,641 | 100% | ||
angatt | 0 | 3,593,593,663 | 50% | ||
gmlgang | 0 | 549,099,053 | 100% | ||
steem-tube | 0 | 6,825,541,143 | 100% | ||
carilinger | 0 | 356,701,698,640 | 50% | ||
pinas | 0 | 509,339,839 | 50% | ||
minotaurototal | 0 | 1,353,996,406 | 100% | ||
oldmans | 0 | 58,635,331,766 | 60% | ||
cambridgeport90 | 0 | 13,715,721,798 | 50% | ||
destroyer33 | 0 | 569,132,027 | 100% | ||
worldwildflora | 0 | 986,637,209 | 50% | ||
steddyman | 0 | 2,261,138,629 | 100% | ||
commonlaw | 0 | 4,951,795,430 | 35% | ||
cryptoandcoffee | 0 | 247,797,602,348 | 10% | ||
manuelgil64 | 0 | 7,513,283,309 | 100% | ||
kstop1 | 0 | 14,478,125,359 | 100% | ||
mike961 | 0 | 5,687,060,030 | 30% | ||
solarwarrior | 0 | 123,881,624,104 | 100% | ||
the.rocket.panda | 0 | 10,069,733,122 | 100% | ||
simplegame | 0 | 40,416,500,547 | 100% | ||
konradxxx3 | 0 | 2,565,904,446 | 25% | ||
digital.mine | 0 | 58,067,977,444 | 60% | ||
marblely | 0 | 31,069,906,575 | 30% | ||
purrix | 0 | 16,041,214,256 | 100% | ||
haccolong | 0 | 1,297,785,392 | 12.5% | ||
bjornb | 0 | 1,741,003,015 | 50% | ||
cheese4ead | 0 | 34,913,579,849 | 20% | ||
newsnownorthwest | 0 | 889,184,876 | 7.5% | ||
carolinaelly | 0 | 2,763,627,358 | 100% | ||
abgrobert5 | 0 | 514,050,630 | 20.44% | ||
mannacurrency | 0 | 20,355,370,984 | 10% | ||
maquemali | 0 | 805,315,055 | 47.5% | ||
raybull | 0 | 1,419,719,710 | 100% | ||
scrawly | 0 | 2,569,483,470 | 100% | ||
kwilley | 0 | 39,188,787,678 | 50% | ||
drsensor | 0 | 2,270,735,016 | 80% | ||
hemo | 0 | 3,310,101,248 | 100% | ||
annephilbrick | 0 | 144,136,364,481 | 50% | ||
skuuun | 0 | 818,367,452 | 25% | ||
xves | 0 | 18,991,314,738 | 50% | ||
revueh | 0 | 1,858,306,378 | 32.5% | ||
diegopadilla | 0 | 1,884,983,564 | 50% | ||
ambiguity | 0 | 41,921,983,916 | 100% | ||
thedailysneak | 0 | 863,123,648 | 0.99% | ||
ocdb | 0 | 118,154,397,066,540 | 47.5% | ||
zaibkang | 0 | 23,143,301,649 | 100% | ||
steinz | 0 | 634,569,223 | 50% | ||
schlunior | 0 | 23,573,581,064 | 20% | ||
eugelys | 0 | 287,505,932,759 | 85% | ||
rilo | 0 | 4,801,623,822 | 100% | ||
ezunjoshy | 0 | 2,212,820,867 | 50% | ||
sadbear | 0 | 1,386,325,600 | 10% | ||
bestofph | 0 | 1,192,564,719 | 10% | ||
bigbos99 | 0 | 582,906,447 | 100% | ||
steem.craft | 0 | 617,532,676 | 100% | ||
yestermorrow | 0 | 12,273,359,214 | 31% | ||
acidtiger | 0 | 4,912,601,785 | 23.75% | ||
thehive | 0 | 26,668,426,042 | 67% | ||
lux-witness | 0 | 4,329,982,510 | 37.5% | ||
dalz | 0 | 1,102,301,796,763 | 100% | ||
steemmedia.org | 0 | 855,702,819 | 42.75% | ||
luciannagy | 0 | 5,125,060,438 | 30% | ||
smartvote | 0 | 114,981,287,541 | 4.8% | ||
fandelkefir | 0 | 4,103,294,644 | 100% | ||
light-hearted | 0 | 7,960,417,462 | 100% | ||
yahenyblanco | 0 | 613,036,288 | 30% | ||
hoaithu | 0 | 3,639,833,530 | 10.62% | ||
deepdives | 0 | 250,836,658,772 | 50% | ||
youdontsay | 0 | 77,571,166,980 | 40% | ||
goingbonkers | 0 | 68,163,928,547 | 100% | ||
themanny | 0 | 73,708,861,431 | 100% | ||
dlike | 0 | 176,873,538,703 | 58% | ||
mr-hades | 0 | 3,697,099,943 | 100% | ||
arzkyu97 | 0 | 5,155,218,639 | 20.44% | ||
voxmortis | 0 | 36,257,607,649 | 20% | ||
anhvu | 0 | 2,320,310,592 | 10% | ||
mobi72 | 0 | 1,063,137,441 | 10% | ||
ataliba | 0 | 12,117,203,108 | 50% | ||
rayshiuimages | 0 | 2,627,028,839 | 25% | ||
andreasalas | 0 | 2,700,263,580 | 51.1% | ||
steemaction | 0 | 650,635,760,878 | 100% | ||
pradeepdee6 | 0 | 32,089,548,592 | 20% | ||
petrarodriguez | 0 | 603,142,724,144 | 51.1% | ||
engrave | 0 | 5,508,746,633,512 | 100% | ||
tipsybosphorus | 0 | 5,585,566,803 | 90% | ||
pboulet | 0 | 297,493,893,431 | 100% | ||
chike4545 | 0 | 971,775,653 | 100% | ||
javyeslava.photo | 0 | 9,808,189,957 | 30% | ||
bobby.madagascar | 0 | 3,420,238,560 | 29% | ||
voter003 | 0 | 67,672,404,906 | 27.5% | ||
steemituplife | 0 | 654,456,242 | 25% | ||
actifit | 0 | 8,033,394,200,069 | 100% | ||
steemwhalepower | 0 | 966,516,944 | 100% | ||
courtneyjensen | 0 | 550,312,168 | 25% | ||
mister-meeseeks | 0 | 47,006,164,293 | 50% | ||
athunderstruck | 0 | 14,237,115,541 | 25% | ||
maesha | 0 | 520,417,814 | 50% | ||
fuerza-hispana | 0 | 4,441,089,540 | 100% | ||
kuku-splatts | 0 | 14,031,609,334 | 25% | ||
ibc | 0 | 11,761,769,032 | 100% | ||
thevil | 0 | 1,032,617,587,209 | 100% | ||
racarjoal | 0 | 1,402,513,165 | 25.55% | ||
riskneutral | 0 | 5,823,269,252 | 50% | ||
thisnewgirl | 0 | 1,668,013,249 | 100% | ||
kind.network | 0 | 871,139,213 | 25% | ||
besheda | 0 | 2,474,801,761 | 50% | ||
janettyanez | 0 | 1,716,764,547 | 10.22% | ||
thrasher666 | 0 | 2,513,173,205 | 60% | ||
brianoflondon | 0 | 4,577,274,671,833 | 100% | ||
vasigo | 0 | 20,237,312,456 | 100% | ||
maryelin | 0 | 1,374,617,527 | 25.55% | ||
bolsfit | 0 | 902,815,757 | 50% | ||
kingsofa | 0 | 11,121,119,828 | 50% | ||
geeklania | 0 | 712,370,815 | 100% | ||
inpursuit | 0 | 8,463,379,807 | 78.9% | ||
cremisi | 0 | 1,869,005,942 | 100% | ||
buildingpies | 0 | 2,152,758,605 | 4.84% | ||
carbodexkim | 0 | 823,294,194 | 100% | ||
geekdancing | 0 | 6,150,869,530 | 50% | ||
michealb | 0 | 524,522,798,205 | 100% | ||
iovoccae | 0 | 4,877,605,183 | 100% | ||
multifacetas | 0 | 12,034,299,677 | 25% | ||
glastar | 0 | 631,660,818 | 100% | ||
cakemonster | 0 | 19,997,661,296 | 29% | ||
sorin.lite | 0 | 4,548,756,494 | 50% | ||
keket | 0 | 671,207,880 | 50% | ||
bia.birch | 0 | 2,325,086,694 | 15% | ||
steemlandia | 0 | 4,853,464,968 | 100% | ||
chisdealhd | 0 | 7,938,477,382 | 30% | ||
maajaanaa | 0 | 1,095,281,424 | 20% | ||
tamito0201 | 0 | 1,692,390,361 | 100% | ||
smokingfit | 0 | 481,202,122 | 50% | ||
starrouge | 0 | 1,026,632,522 | 50% | ||
vladu | 0 | 482,286,772 | 100% | ||
wherein | 0 | 49,589,990,179 | 100% | ||
variedades | 0 | 6,977,304,761 | 19% | ||
verticallife2 | 0 | 1,992,505,553 | 50% | ||
irionet | 0 | 1,654,680,615 | 100% | ||
shainemata | 0 | 104,161,586,451 | 50% | ||
zerofive | 0 | 872,902,987 | 50% | ||
currentxchange | 0 | 6,465,779,113 | 10% | ||
kork75 | 0 | 8,477,761,341 | 100% | ||
jacuzzi | 0 | 3,278,469,028 | 1.4% | ||
bluesniper | 0 | 6,245,131,323 | 100% | ||
riyuuhi | 0 | 714,195,754 | 50% | ||
vaultec | 0 | 43,751,205,165 | 100% | ||
daniel2001 | 0 | 3,435,878,925 | 25.55% | ||
determine | 0 | 3,630,550,217 | 58% | ||
cnstm | 0 | 147,465,745,218 | 100% | ||
permaculturedude | 0 | 1,960,593,763 | 58% | ||
likuang007 | 0 | 637,512,442 | 100% | ||
vickyguevara | 0 | 3,287,988,035 | 100% | ||
brancarosamel | 0 | 2,121,323,224 | 50% | ||
jhellenmjgr | 0 | 1,137,519,427 | 100% | ||
apokruphos | 0 | 11,727,639,045 | 2% | ||
miguelmederico | 0 | 1,846,076,207 | 40% | ||
caribehub | 0 | 1,378,116,689 | 100% | ||
baasdebeer | 0 | 1,581,756,835 | 10% | ||
smonkstop1 | 0 | 3,368,595,383 | 100% | ||
lianjingmedia | 0 | 1,004,005,509 | 100% | ||
broxi | 0 | 9,041,096,262 | 50% | ||
steemtelly | 0 | 33,257,468,381 | 100% | ||
perfilbrasil | 0 | 2,980,150,387 | 10% | ||
breadbakers | 0 | 3,104,561,781 | 100% | ||
steemitmonsters | 0 | 1,028,677,796 | 100% | ||
pjpavan | 0 | 486,653,740 | 30% | ||
creacioneslelys | 0 | 44,515,921,737 | 100% | ||
cooperfelix | 0 | 953,928,679 | 50% | ||
hungrybear | 0 | 619,263,085 | 14% | ||
haikusailor | 0 | 1,207,038,296 | 58% | ||
pursuant | 0 | 8,350,016,633 | 77.87% | ||
afternoondrinks | 0 | 1,679,230,136 | 10% | ||
killerbot | 0 | 482,701,745 | 50% | ||
louis.random | 0 | 597,598,178 | 70% | ||
ond | 0 | 544,704,109 | 100% | ||
denizcakmak | 0 | 896,719,294 | 100% | ||
hungryharish | 0 | 3,514,249,704 | 14.5% | ||
sophieandhenrik | 0 | 13,551,738,865 | 100% | ||
src3 | 0 | 5,708,242,929 | 5% | ||
androshchuk | 0 | 1,889,990,954 | 50% | ||
zeero22 | 0 | 9,035,545,516 | 51% | ||
cryptofiloz | 0 | 76,161,505,678 | 47.5% | ||
alejandrobons | 0 | 549,296,333 | 25.55% | ||
russia-btc | 0 | 680,872,336,528 | 62% | ||
ilanisnapshots | 0 | 1,086,964,033 | 10% | ||
jaster | 0 | 573,849,809,857 | 100% | ||
bitcoinator | 0 | 3,223,205,970 | 100% | ||
alenox | 0 | 2,112,895,333 | 50% | ||
maxsieg | 0 | 6,520,562,663 | 50% | ||
hungryanu | 0 | 957,455,181 | 14.5% | ||
engrsayful | 0 | 3,305,493,525 | 35% | ||
concreteshallows | 0 | 1,351,708,574 | 100% | ||
photographercr | 0 | 47,561,152,822 | 20% | ||
squareonefarms | 0 | 5,019,500,323 | 25% | ||
szf | 0 | 670,001,545 | 50% | ||
wallvater | 0 | 1,351,004,981 | 20% | ||
steelborne | 0 | 2,833,526,658 | 20% | ||
bigmoneyman | 0 | 500,864,209 | 29% | ||
yiobri | 0 | 2,437,985,476 | 25.55% | ||
coolsurfer | 0 | 2,163,125,394 | 10% | ||
poliwalt10 | 0 | 633,161,400 | 14.5% | ||
helgalubevi | 0 | 2,180,553,977 | 5% | ||
imagenius | 0 | 485,202,693 | 58% | ||
robibasa | 0 | 28,290,293,527 | 10% | ||
lumencula | 0 | 581,271,852 | 100% | ||
linita | 0 | 13,286,427,915 | 100% | ||
beerlover | 0 | 13,925,127,952 | 10% | ||
huntforsteem | 0 | 14,501,351,329 | 100% | ||
likwid | 0 | 1,806,254,452 | 100% | ||
borjan | 0 | 636,218,790,053 | 35.8% | ||
victartex | 0 | 7,537,397,886 | 51.1% | ||
clownworld | 0 | 2,306,501,075 | 25% | ||
philnews.xyz | 0 | 896,624,517 | 12.5% | ||
leighscotford | 0 | 754,228,297 | 1% | ||
iktisat | 0 | 651,890,287 | 100% | ||
ph1102 | 0 | 935,986,409,719 | 47.5% | ||
thisisawesome | 0 | 120,732,774,530 | 15% | ||
xyz004 | 0 | 48,923,354,634 | 25% | ||
steemindian | 0 | 1,216,054,515 | 29% | ||
cheer-up | 0 | 17,067,371,438 | 80% | ||
fitcoin | 0 | 502,966,636 | 100% | ||
davidtron | 0 | 3,566,865,401 | 50% | ||
cryptogambit | 0 | 1,444,869,138 | 7.5% | ||
waraira777 | 0 | 3,130,337,254 | 50% | ||
allics | 0 | 801,986,843 | 80% | ||
imbartley | 0 | 788,902,351 | 25% | ||
jakiro12 | 0 | 500,353,215 | 50% | ||
mariolbi | 0 | 3,020,401,088 | 25.55% | ||
moneymisstress | 0 | 14,648,862,976 | 100% | ||
kgswallet | 0 | 1,068,229,726 | 20% | ||
milu-the-dog | 0 | 729,887,110 | 58% | ||
h-hamilton | 0 | 8,888,999,561 | 25% | ||
lrekt01 | 0 | 3,738,279,772 | 65% | ||
triplea.bot | 0 | 12,566,492,757 | 58% | ||
steem.leo | 0 | 61,703,935,232 | 58% | ||
reggaesteem | 0 | 2,895,044,945 | 29.75% | ||
nichemarket | 0 | 1,311,111,355 | 100% | ||
empoderat | 0 | 41,079,101,029 | 50% | ||
farm1 | 0 | 677,714,754,523 | 100% | ||
splines | 0 | 1,289,965,249 | 100% | ||
freedomring | 0 | 4,755,888,127 | 100% | ||
amico.sports | 0 | 28,011,293,846 | 50% | ||
hyborian-strain | 0 | 2,435,944,017 | 30% | ||
freddio.sport | 0 | 2,558,680,696 | 100% | ||
binodkatuwal | 0 | 2,168,806,293 | 100% | ||
babytarazkp | 0 | 4,626,975,022 | 50% | ||
capp | 0 | 9,672,394,308 | 50% | ||
valerianis | 0 | 556,274,713 | 10% | ||
eulymer | 0 | 4,116,884,313 | 100% | ||
soyunasantacruz | 0 | 6,665,285,253 | 10% | ||
dechuck | 0 | 36,489,604,031 | 100% | ||
sbi-tokens | 0 | 1,815,034,844 | 1.99% | ||
leo.syndication | 0 | 1,111,106,028 | 58% | ||
one.life | 0 | 1,138,561,368 | 57.88% | ||
successchar | 0 | 5,175,162,645 | 50% | ||
janaveda | 0 | 41,235,190,849 | 100% | ||
hugo1954 | 0 | 523,720,219 | 100% | ||
lynds | 0 | 539,821,919,640 | 100% | ||
the-table | 0 | 9,576,303,504 | 100% | ||
lividseagulls | 0 | 1,232,800,054 | 40.59% | ||
cageon360 | 0 | 1,806,303,369 | 23.75% | ||
bilpcoinbot | 0 | 4,437,965,029 | 100% | ||
korver | 0 | 67,835,039,884 | 100% | ||
man60360 | 0 | 2,024,204,204 | 50% | ||
mister.reatard | 0 | 1,650,623,144 | 10% | ||
urtrailer | 0 | 214,350,704,893 | 25% | ||
oratione | 0 | 847,372,858 | 100% | ||
dpoll.witness | 0 | 7,047,011,402 | 52.2% | ||
jullyette | 0 | 869,042,445 | 60% | ||
ahmanik47 | 0 | 516,496,424 | 50% | ||
wallar | 0 | 1,641,937,015 | 100% | ||
pogarda | 0 | 1,842,839,422 | 100% | ||
nitin21 | 0 | 4,700,242,101 | 100% | ||
bilpcoinrecords | 0 | 2,330,571,374 | 50% | ||
hispapro | 0 | 932,951,977,645 | 51.1% | ||
dappstats | 0 | 4,393,224,453 | 15% | ||
ibelin | 0 | 24,155,734,658 | 70% | ||
lesmann | 0 | 14,108,887,503 | 49% | ||
bilpcoin.pay | 0 | 538,886,867 | 10% | ||
tobago | 0 | 673,011,610 | 35% | ||
tatiana21 | 0 | 1,778,220,945 | 100% | ||
kaeserotor | 0 | 6,603,211,911 | 35% | ||
patlog | 0 | 910,111,312 | 100% | ||
unpopular | 0 | 1,271,877,349,091 | 100% | ||
darthsauron | 0 | 1,520,256,509 | 10% | ||
apineda | 0 | 495,489,891 | 100% | ||
splatts | 0 | 242,887,050,162 | 50% | ||
lnakuma | 0 | 22,468,200,129 | 100% | ||
rockface | 0 | 5,713,986,053 | 100% | ||
thecontesttrain | 0 | 594,513,812 | 25% | ||
galenkp.aus | 0 | 1,190,935,112 | 100% | ||
cultofsteem | 0 | 553,623,621 | 100% | ||
invest2learn | 0 | 1,532,239,787 | 58% | ||
rcaine | 0 | 7,272,245,464 | 4.75% | ||
lachg89 | 0 | 883,601,024 | 100% | ||
asia-pl | 0 | 153,186,162,040 | 100% | ||
roamingsparrow | 0 | 614,339,934 | 25% | ||
bpcvoter | 0 | 1,007,218,176 | 100% | ||
gmlrecordz | 0 | 748,132,567 | 50% | ||
bpcvoter3 | 0 | 515,018,939 | 50% | ||
usualsidekick | 0 | 1,385,801,690 | 100% | ||
veryanprime | 0 | 702,130,804 | 14.5% | ||
journeyofanomad | 0 | 5,560,623,865 | 40% | ||
angel33 | 0 | 642,588,051 | 100% | ||
ribary | 0 | 21,367,122,336 | 29% | ||
inigo-montoya-jr | 0 | 1,230,708,743 | 42.5% | ||
sharkthelion | 0 | 4,197,253,648 | 25% | ||
awah | 0 | 418,133,065,747 | 60% | ||
gloriaolar | 0 | 29,506,931,412 | 30% | ||
onestop | 0 | 11,393,912,835 | 100% | ||
kgsupport | 0 | 1,752,053,436 | 36% | ||
marblesz | 0 | 2,123,544,786 | 30% | ||
mice-k | 0 | 5,364,494,878 | 58% | ||
bcm.sport | 0 | 7,923,136,677 | 100% | ||
julesquirin | 0 | 14,609,442,449 | 50% | ||
curamax | 0 | 2,248,005,004 | 4.75% | ||
alexa.art | 0 | 64,820,703,336 | 100% | ||
dpend.active | 0 | 4,465,452,158 | 11.6% | ||
andreina57 | 0 | 482,135,806 | 25.55% | ||
hive-134382 | 0 | 2,610,371,933 | 100% | ||
hivewatchers | 0 | 1,165,147,596 | 55% | ||
hivequebec | 0 | 2,268,961,973 | 32.5% | ||
laruche | 0 | 65,612,787,155 | 32.5% | ||
reggaejahm | 0 | 133,979,116,558 | 35% | ||
softworld | 0 | 212,377,781,154 | 47% | ||
portal-xenna | 0 | 894,196,585 | 12.5% | ||
polish.hive | 0 | 250,960,874,784 | 100% | ||
captainhive | 0 | 1,271,720,894,280 | 50% | ||
velinov86 | 0 | 5,144,145,729 | 5% | ||
xrthur90 | 0 | 1,949,536,210 | 100% | ||
neon3000 | 0 | 1,700,524,667 | 100% | ||
hiveshout | 0 | 483,911,821 | 100% | ||
dcityrewards | 0 | 1,522,456,605,078 | 58% | ||
the100 | 0 | 24,567,906,362 | 50% | ||
sketching | 0 | 3,650,918,516 | 29% | ||
ninnu | 0 | 6,699,266,565 | 15% | ||
quantumg | 0 | 189,689,519,841 | 100% | ||
iameden | 0 | 2,266,761,270 | 25% | ||
georgelys | 0 | 8,761,676,407 | 51.1% | ||
kingneptune | 0 | 581,468,502 | 50% | ||
angellopez13 | 0 | 3,391,319,175 | 100% | ||
ghaazi | 0 | 5,870,380,053 | 100% | ||
actioncats | 0 | 127,057,671,305 | 100% | ||
catinthewindow | 0 | 1,162,079,534 | 12.5% | ||
noelyss | 0 | 7,033,065,580 | 10% | ||
lespecial17 | 0 | 571,345,592 | 25.55% | ||
allama | 0 | 25,014,531,530 | 100% | ||
danishcrypto | 0 | 3,216,901,371 | 50% | ||
balvinder294 | 0 | 2,219,212,453 | 30% | ||
nazaleo | 0 | 10,935,769,895 | 100% | ||
zottone444 | 0 | 3,216,809,742 | 12.5% | ||
profgabs05 | 0 | 1,156,772,818 | 25% | ||
sidjay | 0 | 1,296,585,603 | 25% | ||
daniky | 0 | 38,333,101,169 | 100% | ||
jsalvage | 0 | 1,385,127,377 | 25% | ||
lucianav | 0 | 35,586,106,643 | 100% | ||
bimpcy | 0 | 11,155,182,870 | 20% | ||
logicforce | 0 | 2,411,493,879 | 45.3% | ||
jelly13 | 0 | 718,345,534 | 8.5% | ||
reza-shamim | 0 | 501,803,123 | 40% | ||
th4488 | 0 | 4,505,106,280 | 100% | ||
gabilan55 | 0 | 1,367,823,103 | 10% | ||
syberia | 0 | 487,473,622 | 10% | ||
olaunlimited | 0 | 83,311,297,918 | 100% | ||
perceval | 0 | 16,811,091,131 | 50% | ||
patriciaurbaneja | 0 | 1,177,524,719 | 50% | ||
w-splatts | 0 | 14,489,162,258 | 25% | ||
anafae | 0 | 2,836,701,499 | 5% | ||
carmenm20 | 0 | 755,090,598 | 25.55% | ||
razorshark | 0 | 877,841,754 | 100% | ||
dayerlis | 0 | 542,200,976 | 100% | ||
issymarie2 | 0 | 6,927,236,070 | 25% | ||
recoveryinc | 0 | 33,044,620,197 | 50% | ||
hive-108278 | 0 | 884,238,463 | 50% | ||
rafaelgreen | 0 | 1,041,821,771 | 100% | ||
martial.media | 0 | 1,235,866,007 | 25% | ||
hrcl.art | 0 | 3,841,508,932 | 100% | ||
cryptosimplify | 0 | 77,572,798,350 | 100% | ||
liz.writes | 0 | 1,060,059,566 | 50% | ||
camplife | 0 | 696,919,222 | 100% | ||
kraken99 | 0 | 1,707,549,569 | 100% | ||
aurauramagic | 0 | 12,944,853,850 | 100% | ||
storiesoferne | 0 | 161,102,361,466 | 100% | ||
dying | 0 | 1,884,114,603 | 50% | ||
goliathus | 0 | 4,311,727,040 | 50% | ||
adedayoolumide | 0 | 13,213,085,433 | 100% | ||
r-nyn | 0 | 91,856,038,319 | 100% | ||
kei2 | 0 | 1,723,445,640 | 25% | ||
usainvote | 0 | 11,876,393,195,053 | 50% | ||
idea-make-rich | 0 | 30,182,830,409 | 100% | ||
davideazul | 0 | 6,290,099,153 | 50% | ||
trangbaby | 0 | 316,647,204,611 | 100% | ||
hive-world | 0 | 2,648,471,387 | 25% | ||
borbolet | 0 | 15,855,893,283 | 30% | ||
senseiphil | 0 | 521,720,945 | 50% | ||
ph1102.sports | 0 | 832,601,448 | 90% | ||
noalys | 0 | 3,575,948,986 | 10% | ||
enyusael | 0 | 1,969,794,724 | 25.55% | ||
iamfarhad | 0 | 782,425,338 | 50% | ||
kwilleywrites | 0 | 983,021,864 | 25% | ||
fotobrina | 0 | 2,891,767,660 | 50% | ||
hive-168869 | 0 | 42,035,223,638 | 100% | ||
borniet | 0 | 21,064,542,227 | 50% | ||
elbuhoaular | 0 | 2,188,121,028 | 100% | ||
gonklavez9 | 0 | 908,539,908 | 47.5% | ||
mau189gg | 0 | 824,564,665 | 25% | ||
gabrieljr | 0 | 1,765,070,542 | 50% | ||
jesuspsoto | 0 | 4,481,685,418 | 51.1% | ||
celticheartbeat | 0 | 7,098,676,983 | 100% | ||
sportsburn | 0 | 688,363,499 | 80% | ||
barbyjr | 0 | 762,904,835 | 50% | ||
rima11 | 0 | 30,713,652,306 | 1% | ||
paolazun | 0 | 3,309,359,874 | 25% | ||
blezyn | 0 | 3,000,733,743 | 25% | ||
rohansuares | 0 | 5,205,899,230 | 50% | ||
apeboy | 0 | 2,637,439,774 | 25.55% | ||
aiovo | 0 | 6,603,834,608 | 47.5% | ||
mismo | 0 | 43,707,691,956 | 100% | ||
kattycrochet | 0 | 69,546,828,007 | 50% | ||
esecholito | 0 | 52,006,429,994 | 100% | ||
chubb149 | 0 | 1,576,031,894 | 10% | ||
alex-rourke | 0 | 1,833,643,230,338 | 100% | ||
yaluna | 0 | 16,313,046,784 | 40% | ||
tamiapt6 | 0 | 1,149,531,224 | 100% | ||
meritocracy | 0 | 2,692,820,418,760 | 23.75% | ||
hiveart | 0 | 2,191,405,634 | 25% | ||
peakd.top.d001 | 0 | 525,263,041 | 100% | ||
hispaplus | 0 | 629,388,374 | 51.1% | ||
hivechat | 0 | 3,123,900,678 | 29% | ||
rosalestrust | 0 | 4,729,252,294 | 100% | ||
dcrops | 0 | 404,347,027,067 | 29% | ||
maksu | 0 | 12,085,271,854 | 100% | ||
ctpsb.sports | 0 | 568,995,727 | 90% | ||
druckado | 0 | 745,802,875 | 20% | ||
completewind | 0 | 5,768,674,039 | 100% | ||
ykretz.sports | 0 | 2,199,241,634 | 75% | ||
rondonshneezy | 0 | 7,229,476,672 | 50% | ||
cielitorojo | 0 | 5,155,189,389 | 14% | ||
hykss.leo | 0 | 115,254,556,844 | 11.6% | ||
babeltrips | 0 | 22,443,578,240 | 50% | ||
guitarmcy | 0 | 8,517,440,915 | 50% | ||
samrisso | 0 | 35,558,081,759 | 50% | ||
yozen | 0 | 4,186,812,024 | 14.5% | ||
remenzer | 0 | 728,001,558 | 100% | ||
sparker005 | 0 | 539,586,057 | 50% | ||
pusen | 0 | 650,822,236,690 | 100% | ||
onemoretea | 0 | 2,459,179,302 | 100% | ||
ktest1 | 0 | 9,951,116 | 100% | ||
traderhive | 0 | 116,214,903,105 | 50% | ||
alvarezjessica | 0 | 7,754,047,768 | 51.1% | ||
cookaiss | 0 | 2,489,723,083 | 15% | ||
zarwelius | 0 | 1,078,186,128 | 50% | ||
repayme4568 | 0 | 458,641,605 | 15% | ||
haitch | 0 | 2,768,372,822 | 100% | ||
xrayman | 0 | 60,019,781,560 | 100% | ||
lukaszolejnik | 0 | 489,052,193 | 100% | ||
hierkraj | 0 | 854,445,952 | 100% | ||
lingkar-photo | 0 | 4,677,500,494 | 100% | ||
ausbit.dev | 0 | 20,506,497,637 | 100% | ||
rich0399 | 0 | 623,258,388 | 100% |
Can communities be made to work with account claim tokens? Currently we have to burn hive.
author | antisocialist |
---|---|
permlink | re-blocktrades-ryl23t |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.7.1"} |
created | 2023-07-30 00:16:42 |
last_update | 2023-07-30 00:16:42 |
depth | 1 |
children | 10 |
last_payout | 2023-08-06 00:16: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 | 90 |
author_reputation | 272,546,533,677,405 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,762,724 |
net_rshares | 0 |
Communities are a 2nd layer function, so they can't perform 1st layer functionality such as account creation.
author | blocktrades |
---|---|
permlink | ryl5au |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-07-30 01:25:42 |
last_update | 2023-07-30 01:26:54 |
depth | 2 |
children | 9 |
last_payout | 2023-08-06 01:25:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.054 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 1,278,355,776,041,298 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,765,084 |
net_rshares | 233,191,580,341 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alex-rourke | 0 | 233,191,580,341 | 13% |
So, communities aren't just another account with special function?
author | antisocialist |
---|---|
permlink | re-blocktrades-ryl7pw |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.7.1"} |
created | 2023-07-30 02:17:57 |
last_update | 2023-07-30 02:17:57 |
depth | 3 |
children | 8 |
last_payout | 2023-08-06 02:17: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 | 66 |
author_reputation | 272,546,533,677,405 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,765,976 |
net_rshares | 0 |
There has been lots of development, I am new here but this is really great
author | beeeee |
---|---|
permlink | re-blocktrades-rykxq4 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.7.1"} |
created | 2023-07-29 22:42:06 |
last_update | 2023-07-29 22:42:06 |
depth | 1 |
children | 0 |
last_payout | 2023-08-05 22:42:06 |
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 | 74 |
author_reputation | 65,903,242,580,412 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,758,040 |
net_rshares | 0 |
Thank you for everything, some really special new stuff coming I can see. I know I should be using HAF for what I'm doing with Podping but it was just too heavy when I first looked at it. I will try to take a new look at it sometime.
author | brianoflondon |
---|---|
permlink | re-blocktrades-ryljch |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.7.1"} |
created | 2023-07-30 06:29:06 |
last_update | 2023-07-30 06:29:06 |
depth | 1 |
children | 1 |
last_payout | 2023-08-06 06:29:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.072 HBD |
curator_payout_value | 0.071 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 234 |
author_reputation | 759,674,214,959,955 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,769,387 |
net_rshares | 315,749,719,053 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 76,803,463,711 | 3% | ||
alex-rourke | 0 | 238,946,255,342 | 13% |
Yes, HAF can be extremely light nowadays, because you can just filter out operations you're not interested in, and that's the largest portion of the database by far.
author | blocktrades |
---|---|
permlink | rym8mm |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-07-30 15:35:09 |
last_update | 2023-07-30 15:35:09 |
depth | 2 |
children | 0 |
last_payout | 2023-08-06 15:35:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.100 HBD |
curator_payout_value | 0.100 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 1,278,355,776,041,298 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,778,546 |
net_rshares | 429,931,874,644 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 429,931,874,644 | 10% |
Thanks for all your hard work Long live to the web3 King
author | cre47iv3 |
---|---|
permlink | re-blocktrades-2023814t154545827z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-08-14 18:45:48 |
last_update | 2023-08-14 18:45:48 |
depth | 1 |
children | 0 |
last_payout | 2023-08-21 18:45: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 | 58 |
author_reputation | 140,370,657,408,861 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,258,196 |
net_rshares | 0 |
Great to see all the active updates!
author | crypt0gnome |
---|---|
permlink | re-blocktrades-2023729t193025397z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-07-29 23:30:24 |
last_update | 2023-07-29 23:30:24 |
depth | 1 |
children | 0 |
last_payout | 2023-08-05 23:30:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.051 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 8,390,441,275,877 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,760,402 |
net_rshares | 219,444,157,728 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holybread | 0 | 219,444,157,728 | 100% |
A lot of things done here! Thanks for the effort to continue improving our blockchain.
author | cryptosimplify |
---|---|
permlink | re-blocktrades-ryl0or |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.7.1"} |
created | 2023-07-29 23:46:06 |
last_update | 2023-07-29 23:46:06 |
depth | 1 |
children | 0 |
last_payout | 2023-08-05 23:46:06 |
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 | 86 |
author_reputation | 225,554,450,782,609 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,761,252 |
net_rshares | 0 |
A lot of things done here! Great one. Any news on a L2 haf smart contracts :)
author | dalz |
---|---|
permlink | rykvzk |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-07-29 22:04:30 |
last_update | 2023-07-29 22:04:30 |
depth | 1 |
children | 3 |
last_payout | 2023-08-05 22:04:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.173 HBD |
curator_payout_value | 1.173 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 1,902,359,198,913,281 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,757,182 |
net_rshares | 4,994,575,646,103 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 4,488,541,404,565 | 100% | ||
vaultec | 0 | 43,979,328,545 | 100% | ||
holybread | 0 | 228,487,140,581 | 100% | ||
alex-rourke | 0 | 233,567,772,412 | 13% |
The query supervisor is one of the key technologies for the L2 haf smart contract system (it's the reason it is being created, although it can also serve other uses, such as for a publicly-available HAF server). And the updates to HAF in terms of performance and some of the feature improvements we're making are also important to the smart contract implementation.
author | blocktrades |
---|---|
permlink | rykwbs |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-07-29 22:11:51 |
last_update | 2023-07-29 22:11:51 |
depth | 2 |
children | 2 |
last_payout | 2023-08-05 22:11:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.280 HBD |
curator_payout_value | 0.279 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 365 |
author_reputation | 1,278,355,776,041,298 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,757,359 |
net_rshares | 1,191,086,660,872 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kencode | 0 | 501,788,557,960 | 75% | ||
dalz | 0 | 465,379,326,648 | 43% | ||
holybread | 0 | 223,918,776,264 | 100% |
Thanks!
author | dalz |
---|---|
permlink | rykwep |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-07-29 22:13:36 |
last_update | 2023-07-29 22:13:36 |
depth | 3 |
children | 0 |
last_payout | 2023-08-05 22:13: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 | 7 |
author_reputation | 1,902,359,198,913,281 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,757,394 |
net_rshares | 0 |
Ok, now in addition to Clive and Vessel, that's gonna be awesome. Thank you!
author | kencode |
---|---|
permlink | rylbo2 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-07-30 03:43:15 |
last_update | 2023-07-30 03:43:15 |
depth | 3 |
children | 0 |
last_payout | 2023-08-06 03:43:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 140,643,562,588,487 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,767,091 |
net_rshares | 76,843,812,807 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 76,843,812,807 | 3% |
@blocktrades, you guys are doing a good job but could you please bridle thugs of Hivewatcher and cancel their funding from DHF? As I believe they are doing more harm than good to Hive. It's not only me but several other users as well being viscously attacked by Hivewatcher.
author | decoding |
---|---|
permlink | re-blocktrades-2023730t194326861z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-07-30 14:43:30 |
last_update | 2023-07-30 14:45:03 |
depth | 1 |
children | 0 |
last_payout | 2023-08-06 14:43: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 | 274 |
author_reputation | 28,569,702,046,406 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,777,463 |
net_rshares | -7,010,831,804 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -7,010,831,804 | -0.25% |
Great development to us.
author | galberto |
---|---|
permlink | re-blocktrades-rykz0t |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.7.1"} |
created | 2023-07-29 23:10:06 |
last_update | 2023-07-29 23:10:06 |
depth | 1 |
children | 0 |
last_payout | 2023-08-05 23:10:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 317,572,337,927,832 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,759,358 |
net_rshares | 0 |
Congratulations @blocktrades! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badges <table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/topupvotedday.png"></td><td>Post with the most upvotes of the day.</td></tr> <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="/hivebuzz/@hivebuzz/recovery"><img src="https://images.hive.blog/64x128/https://imgur.com/mDUAyyk.png"></a></td><td><a href="/hivebuzz/@hivebuzz/recovery">Rebuilding HiveBuzz: The Challenges Towards Recovery</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-blocktrades-20240306t230709 |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2024-03-06 23:07:09 |
last_update | 2024-03-06 23:07:09 |
depth | 1 |
children | 0 |
last_payout | 2024-03-13 23:07:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,015 |
author_reputation | 369,201,986,424,524 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 131,855,017 |
net_rshares | 0 |
Honestly I haven't been keeping up, but I did have a question? Can you use Blocktrades in the US now?
author | lesmann |
---|---|
permlink | re-blocktrades-2023729t204657267z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-07-30 01:46:54 |
last_update | 2023-07-30 01:46:54 |
depth | 1 |
children | 1 |
last_payout | 2023-08-06 01:46: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 | 101 |
author_reputation | 242,866,430,301,381 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,765,596 |
net_rshares | 0 |
Unfortunately, no. We shut down our cryptocurrency exchange business recently, see here for more details: https://hive.blog/blocktrades/@blocktrades/blocktrades-ending-its-cryptocurrency-trading-service-as-of-june-30th-2023-today
author | blocktrades |
---|---|
permlink | ryl6ws |
category | hive-139531 |
json_metadata | {"links":["https://hive.blog/blocktrades/@blocktrades/blocktrades-ending-its-cryptocurrency-trading-service-as-of-june-30th-2023-today"],"app":"hiveblog/0.1"} |
created | 2023-07-30 02:00:27 |
last_update | 2023-07-30 02:00:27 |
depth | 2 |
children | 0 |
last_payout | 2023-08-06 02:00: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 | 229 |
author_reputation | 1,278,355,776,041,298 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,765,785 |
net_rshares | 0 |
Keep up the great work guys 👍 !PGM
author | mdasein |
---|---|
permlink | re-blocktrades-2023730t9344192z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-07-30 01:34:09 |
last_update | 2023-07-30 01:34:09 |
depth | 1 |
children | 1 |
last_payout | 2023-08-06 01:34:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 14,954,710,954,537 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,765,365 |
net_rshares | 0 |
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS - 0.05 DEC - 1 SBT - 0.1 THG - 0.000001 SQM - 0.1 BUDS - 0.01 WOO - 0.005 SCRAP tokens </center> <center><sub>remaining commands 12</sub></center> **BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!** The tokens that the command sends are: 0.1 PGM-0.1 LVL-0.1 THGAMING-0.05 DEC-15 SBT-1 STARBITS-[0.00000001 BTC (SWAP.BTC) only if you have 2500 PGM in stake or more ] 5000 PGM IN STAKE = 2x rewards!  Discord [](https://discord.gg/KCvuNTEjWw) Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d) Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn) <sub>I'm a bot, if you want a hand ask @ zottone444</sub> ***
author | pgm-curator |
---|---|
permlink | pgm-curatormdasein1690680873939 |
category | hive-139531 |
json_metadata | {"tags":[],"app":"pgm/0.1","format":"markdown+html"} |
created | 2023-07-30 01:34:36 |
last_update | 2023-07-30 01:34:36 |
depth | 2 |
children | 0 |
last_payout | 2023-08-06 01:34: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 | 1,917 |
author_reputation | 3,409,490,822,394 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,765,375 |
net_rshares | 0 |
Feature Request: allow to remove reblogs from one's timeline again, at the moment all blogging related functions are editable except reblogs.
author | vikisecrets |
---|---|
permlink | re-blocktrades-rylzsg |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.7.1"} |
created | 2023-07-30 12:24:15 |
last_update | 2023-07-30 12:24:15 |
depth | 1 |
children | 1 |
last_payout | 2023-08-06 12:24:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 141 |
author_reputation | 1,184,029,846,244,757 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,774,963 |
net_rshares | 0 |
That would only require a change to hivemind, since it is 2nd layer functionality. I'll ping @howo since he's working in this area to see what he thinks.
author | blocktrades |
---|---|
permlink | rym8rc |
category | hive-139531 |
json_metadata | {"users":["howo"],"app":"hiveblog/0.1"} |
created | 2023-07-30 15:38:00 |
last_update | 2023-07-30 15:38:00 |
depth | 2 |
children | 0 |
last_payout | 2023-08-06 15:38:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.114 HBD |
curator_payout_value | 0.115 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 153 |
author_reputation | 1,278,355,776,041,298 |
root_title | "5th update of 2023: including new apps Denser and WASM-based beekeeper, plus wax library" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,778,605 |
net_rshares | 493,724,008,640 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vikisecrets | 0 | 189,485,510,914 | 10% | ||
alex-rourke | 0 | 304,238,497,726 | 17% |