 # Release Notes The [BitShares](https://bitshares.org) Core software has been updated to the [5.0.0 Protocol Release](https://github.com/bitshares/bitshares-core/milestone/31?closed=1). The code name of the release is *"Splash"*. The Core software is used to build the validation nodes that perform consensus of all transactions on the BitShares blockchain. This release includes additions, improvements, and _changes to the consensus protocol_. The scheduled protocol upgrade time is **`Monday, September 28, 2020 17:00:00 UTC` (`2020-09-28T17:00:00Z`)**. Documentation for users may be be found at [How BitShares Works](https://how.bitshares.works). Documentation for BitShares developers may be found at the [BitShares Developer Portal](https://dev.bitshares.works). * [Who should upgrade](#who-should-upgrade-5-0-0) * [Upgrade process](#upgrade-process-5-0-0) * [Binaries for download](#binaries-for-download-5-0-0) * [Changes](#changes-5-0-0) * [Release contributors](#release-contributors-5-0-0) ## <div id="who-should-upgrade-5-0-0"/> Who Should Upgrade? **All node operators must upgrade** to handle the [protocol upgrade](#protocol-5-0-0). ## <div id="upgrade-process-5-0-0"/> Upgrade Process ### Precautions - All validation nodes must complete their upgrade prior to **Protocol Activation** - A _blockchain replay_ will automatically be performed after the validation node software is restarted. This typically takes a few hours on a modern CPU. ### <div id="upgrade-from-source-5-0-0" /> How to Upgrade from Source Code **Note:** * The code base requires a compiler that supports the C++ 14 standard * The minimum supported boost version is 1.58, the maximum is 1.69.1 * The minimum supported CMake version is 3.2 #### Obtain the Source Code The source code may be obtained by checking out the [5.0.0 tag](https://github.com/bitshares/bitshares-core/releases/tag/5.0.0). Download the source at: * [5.0.0.zip](https://github.com/bitshares/bitshares-core/archive/5.0.0.zip) * [5.0.0.tar.gz](https://github.com/bitshares/bitshares-core/archive/5.0.0.tar.gz) #### Build the Binaries The binaries may be built by using your pre-existing process, or by following the standard instructions that can be found in the wiki: * [Ubuntu](https://github.com/bitshares/bitshares-core/wiki/BUILD_UBUNTU) * [macOS](https://github.com/bitshares/bitshares-core/wiki/Building-on-OS-X) * [Windows](https://github.com/bitshares/bitshares-core/wiki/BUILD_WIN32) #### Deploy the Binaries Your standard process for deploying the node software may be used. No additional requirements or precautions will be required to deploy the new release. ### How to Upgrade with Docker The latest Docker image may be found at [BitShares Core Docker page](https://hub.docker.com/r/bitshares/bitshares-core/) and updated with ``` docker pull bitshares/bitshares-core ``` # <div id="binaries-for-download-5-0-0"/> Binaries for download Binaries of the command line interface (CLI) wallet and the node software are pre-built and available for download. Note: These binary builds are reproducible and were signed using [Gitian](https://github.com/bitshares/bitshares-gitian). Please check the [README](https://github.com/bitshares/bitshares-gitian/blob/master/README.md) if you want to verify and/or contribute. |Platform|SHA256 Checksum| |-|-| |[Microsoft Windows](https://github.com/bitshares/bitshares-core/releases/download/5.0.0/bitshares-core-5.0.0-win64-bin.zip)|`677d46af75827caccbc08f62eea1225d865ed690cea759a608684a8550877684`| |[Mac](https://github.com/bitshares/bitshares-core/releases/download/5.0.0/bitshares-core-5.0.0-macos64-bin.tar.bz2)|`41a50ff84aeef248e66b577cc1a9d1f3cd5c8eb55f33812ac95378adafe54c8e`| |[Linux](https://github.com/bitshares/bitshares-core/releases/download/5.0.0/bitshares-core-5.0.0-linux-amd64-bin.tar.bz2)|`4ccb45bd871fb821328a1e3e8536de3f97f370811c63c2ca3c5ade37652705be`| # <div id="changes-5-0-0"/> Changes The changes for [5.0.0 Protocol Release](https://github.com/bitshares/bitshares-core/milestone/31?closed=1) are summarized below. ## <div id="protocol-5-0-0">Protocol</div> |Description|Issue|Pull Request| |-|-|-| |Automated Market Making (AMM) / Liquidity Pools|[2260](https://github.com/bitshares/bitshares-core/issues/2260)|[2261](https://github.com/bitshares/bitshares-core/pull/2261)| |Remove voting power from liquid BTS and tickets|[2262](https://github.com/bitshares/bitshares-core/issues/2262)|[2263](https://github.com/bitshares/bitshares-core/pull/2263), [2267](https://github.com/bitshares/bitshares-core/pull/2267)| ## Node Functionality |Description|Issue|Pull Request| |-|-|-| |Update websocket to support TLSv1.2|[2255](https://github.com/bitshares/bitshares-core/issues/2255)|[FC-207](https://github.com/bitshares/bitshares-fc/pull/207)| |Improve API logging, especially useful for nodes running behind a reverse proxy|[844](https://github.com/bitshares/bitshares-core/issues/844)|[FC-134](https://github.com/bitshares/bitshares-fc/pull/134), [2167](https://github.com/bitshares/bitshares-core/pull/2167)| |Add voting statistics during maintenance time|-|[2247](https://github.com/bitshares/bitshares-core/pull/2247)| |Fix replay percent calculation|[2020](https://github.com/bitshares/bitshares-core/issues/2020), [2243](https://github.com/bitshares/bitshares-core/issues/2243)|[2246](https://github.com/bitshares/bitshares-core/pull/2246)| |Show "testnet" text when running witness_node for testnet|[1995](https://github.com/bitshares/bitshares-core/issues/1995)|[2257](https://github.com/bitshares/bitshares-core/pull/2257)| ## <div id="node-performance-5-0-0">Node Performance and Stability</div> |Description|Issue|Pull Request| |-|-|-| |Implement simple concurrent_unordered_set, potentially fix node crash issue|[1256](https://github.com/bitshares/bitshares-core/issues/1256)|[FC-204](https://github.com/bitshares/bitshares-fc/pull/204), [1308](https://github.com/bitshares/bitshares-core/pull/1308)| |Fix websocket crash or hang issues|[1784](https://github.com/bitshares/bitshares-core/issues/1784), [1856](https://github.com/bitshares/bitshares-core/issues/1856)|[FC-201](https://github.com/bitshares/bitshares-fc/pull/201), [2204](https://github.com/bitshares/bitshares-core/pull/2204)| |Fix race condition in websocket server close|-|[FC-205](https://github.com/bitshares/bitshares-fc/pull/205)| |Fix reconnect of delayed node|[2034](https://github.com/bitshares/bitshares-core/issues/2034)|[2038](https://github.com/bitshares/bitshares-core/pull/2038)| ## Node Plug-ins |Description|Issue|Pull Request| |-|-|-| |Add extended history tracking for selected accounts|[2258](https://github.com/bitshares/bitshares-core/issues/2258)|[2259](https://github.com/bitshares/bitshares-core/pull/2259)| |Improve ES plugin logging|[1953](https://github.com/bitshares/bitshares-core/issues/1953)|[2189](https://github.com/bitshares/bitshares-core/pull/2189), [2245](https://github.com/bitshares/bitshares-core/pull/2245)| |Rethrow plugin exception|[2241](https://github.com/bitshares/bitshares-core/issues/2241)|[2242](https://github.com/bitshares/bitshares-core/pull/2242)| ## <div id="api-5-0-0"/> API |Description|Issue|Pull Request| |-|-|-| |Add mto_id to ticker data|-|[2237](https://github.com/bitshares/bitshares-core/pull/2237)| |Improve error messages of history APIs, check if required plugins are enabled|[2021](https://github.com/bitshares/bitshares-core/issues/2021)|[2158](https://github.com/bitshares/bitshares-core/pull/2158)| ## Software Design |Description|Issue|Pull Request| |-|-|-| |Support boost 1.72|-|[FC-189](https://github.com/bitshares/bitshares-fc/pull/189), [FC-190](https://github.com/bitshares/bitshares-fc/pull/190)| |Update bloom_filter to an new version in FC|-|[FC-176](https://github.com/bitshares/bitshares-fc/pull/176)| |Make space+type ids constexpr and get rid of useless definition|-|[2073](https://github.com/bitshares/bitshares-core/pull/2073)| |Fix macOS build warning wrt 'tuple_size'|[2197](https://github.com/bitshares/bitshares-core/issues/2197)|[FC-202](https://github.com/bitshares/bitshares-fc/pull/202)| |Fix potential out-of-bounds access in HTTP request parser|-|[FC-178](https://github.com/bitshares/bitshares-fc/pull/178)| |Remove some debug code from account_object.cpp|-|[2189](https://github.com/bitshares/bitshares-core/pull/2189)| |Remove useless code|-|[2086](https://github.com/bitshares/bitshares-core/pull/2086)| ## Build Process and Continuous Integration |Description|Issue|Pull Request| |-|-|-| |Add GitHub Actions auto-build workflow|[2054](https://github.com/bitshares/bitshares-core/issues/2054), [2110](https://github.com/bitshares/bitshares-core/issues/2110), [2253](https://github.com/bitshares/bitshares-core/issues/2253)|[2062](https://github.com/bitshares/bitshares-core/pull/2062), [2112](https://github.com/bitshares/bitshares-core/pull/2112), [FC-180](https://github.com/bitshares/bitshares-fc/pull/180), [FC-187](https://github.com/bitshares/bitshares-fc/pull/187), [2170](https://github.com/bitshares/bitshares-core/pull/2170), [2177](https://github.com/bitshares/bitshares-core/pull/2177), [2178](https://github.com/bitshares/bitshares-core/pull/2178), [2179](https://github.com/bitshares/bitshares-core/pull/2179), [2230](https://github.com/bitshares/bitshares-core/pull/2230), [2254](https://github.com/bitshares/bitshares-core/pull/2254), [FC-206](https://github.com/bitshares/bitshares-fc/pull/206), [FC-208](https://github.com/bitshares/bitshares-fc/pull/208)| |Show more detailed messages when running test cases in CI|-|[FC-197](https://github.com/bitshares/bitshares-fc/pull/197), [2148](https://github.com/bitshares/bitshares-core/pull/2148)| |Improve SonarQube scanning in CI|-|[2218](https://github.com/bitshares/bitshares-core/pull/2218), [2221](https://github.com/bitshares/bitshares-core/pull/2221), [2226](https://github.com/bitshares/bitshares-core/pull/2226)| |Run node test with force-validate option in CI|-|[2251](https://github.com/bitshares/bitshares-core/pull/2251)| |Fix race condition about embed_genesis.cmake|[2188](https://github.com/bitshares/bitshares-core/issues/2188)|[2250](https://github.com/bitshares/bitshares-core/pull/2250)| |Fix for perl issue building cli_wallet on Ubuntu 20 with PERL5LIB in environment|-|[2236](https://github.com/bitshares/bitshares-core/pull/2236)| |Cleanup CMake modules in FC|-|[FC-177](https://github.com/bitshares/bitshares-fc/pull/177)| ## Documentation |Description|Issue|Pull Request| |-|-|-| |Complement license info about the FC library|-|[FC-13](https://github.com/bitshares/bitshares-fc/pull/13)| |Exclude fc/tests from Doxygen docs|-|[2215](https://github.com/bitshares/bitshares-core/pull/2215)| |Update default parameters and config in docker README|-|[2231](https://github.com/bitshares/bitshares-core/pull/2231)| ## Unit Tests |Description|Issue|Pull Request| |-|-|-| |Clean up test suites|[720](https://github.com/bitshares/bitshares-core/issues/720)|[2046](https://github.com/bitshares/bitshares-core/pull/2046)| |Fix static_variant_depth_test|-|[FC-199](https://github.com/bitshares/bitshares-fc/pull/199)| # <div id="release-contributors-5-0-0"/> Release Contributors https://github.com/abitmore https://github.com/christophersanborn https://github.com/ioBanker https://github.com/jmjatlanta https://github.com/Lianantech https://github.com/nathanhourt https://github.com/oxarbitrage https://github.com/pmconrad https://github.com/spartucus https://github.com/syalon https://github.com/xloem
author | abit |
---|---|
permlink | bitshares-core-5-0-0-release-code-name-splash |
category | bitshares |
json_metadata | {"tags":["release","splash"],"links":["https://bitshares.org","https://github.com/bitshares/bitshares-core/milestone/31?closed=1","https://how.bitshares.works","https://dev.bitshares.works","#who-should-upgrade-5-0-0","#upgrade-process-5-0-0","#binaries-for-download-5-0-0","#changes-5-0-0","#release-contributors-5-0-0","#protocol-5-0-0","https://github.com/bitshares/bitshares-core/releases/tag/5.0.0","https://github.com/bitshares/bitshares-core/archive/5.0.0.zip","https://github.com/bitshares/bitshares-core/archive/5.0.0.tar.gz","https://github.com/bitshares/bitshares-core/wiki/BUILD_UBUNTU","https://github.com/bitshares/bitshares-core/wiki/Building-on-OS-X","https://github.com/bitshares/bitshares-core/wiki/BUILD_WIN32","https://hub.docker.com/r/bitshares/bitshares-core/","https://github.com/bitshares/bitshares-gitian","https://github.com/bitshares/bitshares-gitian/blob/master/README.md","https://github.com/bitshares/bitshares-core/releases/download/5.0.0/bitshares-core-5.0.0-win64-bin.zip","https://github.com/bitshares/bitshares-core/releases/download/5.0.0/bitshares-core-5.0.0-macos64-bin.tar.bz2","https://github.com/bitshares/bitshares-core/releases/download/5.0.0/bitshares-core-5.0.0-linux-amd64-bin.tar.bz2","https://github.com/bitshares/bitshares-core/issues/2260","https://github.com/bitshares/bitshares-core/pull/2261","https://github.com/bitshares/bitshares-core/issues/2262","https://github.com/bitshares/bitshares-core/pull/2263","https://github.com/bitshares/bitshares-core/pull/2267","https://github.com/bitshares/bitshares-core/issues/2255","https://github.com/bitshares/bitshares-fc/pull/207","https://github.com/bitshares/bitshares-core/issues/844","https://github.com/bitshares/bitshares-fc/pull/134","https://github.com/bitshares/bitshares-core/pull/2167","https://github.com/bitshares/bitshares-core/pull/2247","https://github.com/bitshares/bitshares-core/issues/2020","https://github.com/bitshares/bitshares-core/issues/2243","https://github.com/bitshares/bitshares-core/pull/2246","https://github.com/bitshares/bitshares-core/issues/1995","https://github.com/bitshares/bitshares-core/pull/2257","https://github.com/bitshares/bitshares-core/issues/1256","https://github.com/bitshares/bitshares-fc/pull/204","https://github.com/bitshares/bitshares-core/pull/1308","https://github.com/bitshares/bitshares-core/issues/1784","https://github.com/bitshares/bitshares-core/issues/1856","https://github.com/bitshares/bitshares-fc/pull/201","https://github.com/bitshares/bitshares-core/pull/2204","https://github.com/bitshares/bitshares-fc/pull/205","https://github.com/bitshares/bitshares-core/issues/2034","https://github.com/bitshares/bitshares-core/pull/2038","https://github.com/bitshares/bitshares-core/issues/2258","https://github.com/bitshares/bitshares-core/pull/2259","https://github.com/bitshares/bitshares-core/issues/1953","https://github.com/bitshares/bitshares-core/pull/2189","https://github.com/bitshares/bitshares-core/pull/2245","https://github.com/bitshares/bitshares-core/issues/2241","https://github.com/bitshares/bitshares-core/pull/2242","https://github.com/bitshares/bitshares-core/pull/2237","https://github.com/bitshares/bitshares-core/issues/2021","https://github.com/bitshares/bitshares-core/pull/2158","https://github.com/bitshares/bitshares-fc/pull/189","https://github.com/bitshares/bitshares-fc/pull/190","https://github.com/bitshares/bitshares-fc/pull/176","https://github.com/bitshares/bitshares-core/pull/2073","https://github.com/bitshares/bitshares-core/issues/2197","https://github.com/bitshares/bitshares-fc/pull/202","https://github.com/bitshares/bitshares-fc/pull/178","https://github.com/bitshares/bitshares-core/pull/2086","https://github.com/bitshares/bitshares-core/issues/2054","https://github.com/bitshares/bitshares-core/issues/2110","https://github.com/bitshares/bitshares-core/issues/2253","https://github.com/bitshares/bitshares-core/pull/2062","https://github.com/bitshares/bitshares-core/pull/2112","https://github.com/bitshares/bitshares-fc/pull/180","https://github.com/bitshares/bitshares-fc/pull/187","https://github.com/bitshares/bitshares-core/pull/2170","https://github.com/bitshares/bitshares-core/pull/2177","https://github.com/bitshares/bitshares-core/pull/2178","https://github.com/bitshares/bitshares-core/pull/2179","https://github.com/bitshares/bitshares-core/pull/2230","https://github.com/bitshares/bitshares-core/pull/2254","https://github.com/bitshares/bitshares-fc/pull/206","https://github.com/bitshares/bitshares-fc/pull/208","https://github.com/bitshares/bitshares-fc/pull/197","https://github.com/bitshares/bitshares-core/pull/2148","https://github.com/bitshares/bitshares-core/pull/2218","https://github.com/bitshares/bitshares-core/pull/2221","https://github.com/bitshares/bitshares-core/pull/2226","https://github.com/bitshares/bitshares-core/pull/2251","https://github.com/bitshares/bitshares-core/issues/2188","https://github.com/bitshares/bitshares-core/pull/2250","https://github.com/bitshares/bitshares-core/pull/2236","https://github.com/bitshares/bitshares-fc/pull/177","https://github.com/bitshares/bitshares-fc/pull/13","https://github.com/bitshares/bitshares-core/pull/2215","https://github.com/bitshares/bitshares-core/pull/2231","https://github.com/bitshares/bitshares-core/issues/720","https://github.com/bitshares/bitshares-core/pull/2046","https://github.com/bitshares/bitshares-fc/pull/199","https://github.com/abitmore","https://github.com/christophersanborn","https://github.com/ioBanker","https://github.com/jmjatlanta","https://github.com/Lianantech","https://github.com/nathanhourt","https://github.com/oxarbitrage","https://github.com/pmconrad","https://github.com/spartucus","https://github.com/syalon","https://github.com/xloem"],"app":"hiveblog/0.1","format":"markdown","image":["https://images.hive.blog/p/C3TZR1g81UNaPs7vzNXHueW5ZM76DSHWEY7onmfLxcK2iPdiAa6tkfVRkpf9tvraQ9z55QS9fmMKbN32DMR4fCUEJKM2bGoquU7xeXZ7ZoKe6yrMrAtFTxA"]} |
created | 2020-09-22 03:20:54 |
last_update | 2020-09-22 03:22:39 |
depth | 0 |
children | 3 |
last_payout | 2020-09-29 03:20:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 20.264 HBD |
curator_payout_value | 16.161 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11,704 |
author_reputation | 141,171,499,037,785 |
root_title | "BitShares Core 5.0.0 Release (code name "Splash")" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,754,691 |
net_rshares | 138,008,671,876,564 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 18,681,068,935 | 0.9% | ||
abit | 0 | 28,828,795,799,694 | 100% | ||
adm | 0 | 34,183,183,034,897 | 100% | ||
kenny-crane | 0 | 346,990,123,681 | 50% | ||
tadakaluri | 0 | 0 | 100% | ||
gtg | 0 | 20,955,489,358,156 | 100% | ||
gerber | 0 | 460,488,926,462 | 8% | ||
ezzy | 0 | 535,924,032,139 | 8% | ||
vortac | 0 | 4,804,826,094,512 | 100% | ||
arcange | 0 | 64,045,483,233 | 2% | ||
deanliu | 0 | 3,885,678,933,003 | 100% | ||
exyle | 0 | 458,861,592,424 | 8% | ||
raphaelle | 0 | 1,699,061,212 | 2% | ||
ace108 | 0 | 1,052,710,554,651 | 27% | ||
logic | 0 | 188,332,156,734 | 75% | ||
magicmonk | 0 | 2,618,141,030,489 | 100% | ||
timcliff | 0 | 1,277,827,688,248 | 100% | ||
laoyao | 0 | 45,309,576,446 | 100% | ||
somebody | 0 | 76,128,874 | 100% | ||
midnightoil | 0 | 159,004,043,652 | 100% | ||
achim86 | 0 | 65,959,038,526 | 100% | ||
miketr | 0 | 7,482,365,570 | 5% | ||
xiaohui | 0 | 899,749,519,198 | 100% | ||
oflyhigh | 0 | 5,183,524,746,955 | 100% | ||
yulan | 0 | 15,585,657,282 | 100% | ||
bert0 | 0 | 2,093,621,112 | 0.4% | ||
rivalhw | 0 | 1,912,615,024,912 | 100% | ||
helene | 0 | 1,183,562,925,656 | 100% | ||
someguy123 | 0 | 263,456,073,622 | 8% | ||
steemcleaners | 0 | 2,104,792,131,115 | 75% | ||
jang | 0 | 228,794,200,279 | 100% | ||
techslut | 0 | 275,056,364,698 | 50% | ||
judasp | 0 | 462,683,867,775 | 100% | ||
edb | 0 | 64,138,073,342 | 50% | ||
teukumukhlis | 0 | 142,879,574,895 | 100% | ||
wagnertamanaha | 0 | 27,698,888,679 | 50% | ||
blackbunny | 0 | 71,111,390,074 | 100% | ||
silviabeneforti | 0 | 136,725,799,021 | 100% | ||
lingfei | 0 | 76,892,859,145 | 100% | ||
steemitboard | 0 | 3,317,931,708 | 2% | ||
freebornsociety | 0 | 1,710,568,982 | 10% | ||
dune69 | 0 | 58,754,972,680 | 8% | ||
iansart | 0 | 9,024,015,748 | 4% | ||
forykw | 0 | 19,718,661,633 | 4% | ||
mrstaf | 0 | 1,885,166,854 | 50% | ||
lenmar | 0 | 497,458,877,931 | 100% | ||
roomservice | 0 | 97,032,953,612 | 2.25% | ||
mys | 0 | 314,249,086 | 0.8% | ||
masterthematrix | 0 | 126,996,012,317 | 100% | ||
exec | 0 | 240,703,217,071 | 100% | ||
eval | 0 | 796,006,679 | 100% | ||
spectrumecons | 0 | 1,995,533,313,707 | 41% | ||
duckmast3r | 0 | 23,252,845,664 | 49% | ||
whd | 0 | 1,053,594,898 | 0.8% | ||
travelgirl | 0 | 81,728,771,701 | 100% | ||
synrg | 0 | 36,770,340,587 | 10% | ||
shitsignals | 0 | 3,406,115,680 | 8% | ||
themarkymark | 0 | 2,696,144,995,498 | 12% | ||
vidafitnessfeliz | 0 | 976,125,452 | 30% | ||
oldman28 | 0 | 61,742,300,952 | 60% | ||
mangoanddaddy | 0 | 3,193,752,445 | 80% | ||
cn-reader | 0 | 14,745,650,847 | 50% | ||
santigs | 0 | 14,102,406,650 | 28% | ||
kimzwarch | 0 | 9,619,882,660 | 4% | ||
accelerator | 0 | 52,044,710,769 | 5% | ||
buildawhale | 0 | 8,758,068,658,821 | 12% | ||
apasia.tech | 0 | 9,534,138,905 | 100% | ||
tomiscurious | 0 | 27,613,720,002 | 7.84% | ||
chenlocus | 0 | 21,025,767,493 | 100% | ||
therealwolf | 0 | 827,419,710,076 | 3% | ||
mawit07 | 0 | 2,255,576,834 | 50% | ||
dancingapple | 0 | 24,068,270,032 | 100% | ||
steembet.asia | 0 | 666,296,583 | 100% | ||
victory622 | 0 | 213,672,236,797 | 100% | ||
makerhacks | 0 | 33,938,618,349 | 12% | ||
investegg | 0 | 26,959,389,911 | 0.73% | ||
vegoutt-travel | 0 | 23,418,576,685 | 41% | ||
japanguide | 0 | 2,680,394,701 | 100% | ||
kimchi-king | 0 | 1,806,401,344 | 50% | ||
winniex | 0 | 314,195,784,861 | 100% | ||
caladan | 0 | 13,839,770,692 | 7.6% | ||
new-world-steem | 0 | 41,494,712,553 | 23% | ||
emrebeyler | 0 | 169,264,363,998 | 8% | ||
smartsteem | 0 | 166,830,681,564 | 3% | ||
lebin | 0 | 187,823,099,565 | 100% | ||
itchyfeetdonica | 0 | 212,258,717,441 | 50% | ||
inalittlewhile | 0 | 101,231,190,050 | 100% | ||
upmyvote | 0 | 8,708,268,888 | 12% | ||
yikloongye | 0 | 0 | 5% | ||
nealmcspadden | 0 | 106,204,099,876 | 8% | ||
suhunter | 0 | 952,570,240 | 50% | ||
purefood | 0 | 7,560,714,963 | 8% | ||
yumisee | 0 | 19,220,215 | 5% | ||
brewery | 0 | 4,472,978,917 | 22% | ||
joeliew | 0 | 129,031,302 | 5% | ||
tobias-g | 0 | 27,358,139,413 | 9% | ||
investyourvote | 0 | 2,151,823,745 | 6% | ||
hkit98 | 0 | 0 | 5% | ||
elvinmas001 | 0 | 0 | 5% | ||
watersoo | 0 | 99,280,567 | 5% | ||
vamos-amigo | 0 | 144,417,801 | 5% | ||
unconditionalove | 0 | 732,200,360 | 4% | ||
florenceboens | 0 | 1,455,296,138 | 10% | ||
iipoh06 | 0 | 0 | 5% | ||
pkocjan | 0 | 3,498,326,988 | 6.4% | ||
annabellenoelle | 0 | 186,105,427 | 5% | ||
movement19 | 0 | 3,985,830,020 | 3% | ||
pizzapai | 0 | 32,432,857,183 | 100% | ||
futurecurrency | 0 | 22,871,022,588 | 40% | ||
dunkman | 0 | 249,756,637 | 100% | ||
yethui | 0 | 0 | 5% | ||
riczlook | 0 | 0 | 5% | ||
andrewnoel | 0 | 236,185,905 | 5% | ||
frassman | 0 | 8,412,700,800 | 50% | ||
josevas217 | 0 | 748,347,999 | 0.32% | ||
bestboom | 0 | 36,627,969,470 | 8% | ||
sekhet | 0 | 320,903,410 | 100% | ||
freddio | 0 | 15,289,251,710 | 15% | ||
abdulmath | 0 | 4,775,511,252 | 100% | ||
lordbutterfly | 0 | 421,211,826,869 | 80% | ||
payroll | 0 | 412,349,990,129 | 10% | ||
steem.services | 0 | 55,477,469,411 | 2% | ||
davidesimoncini | 0 | 12,576,232,321 | 31% | ||
cn-malaysia | 0 | 32,532,413 | 5% | ||
dses | 0 | 33,181,440,898 | 70% | ||
angelica7 | 0 | 72,139,213,666 | 100% | ||
dalz | 0 | 11,881,515,075 | 4% | ||
sunai | 0 | 1,097,861,290 | 100% | ||
dlike | 0 | 96,844,884,272 | 8% | ||
voxmortis | 0 | 1,038,160,516 | 0.5% | ||
engrave | 0 | 116,371,136,618 | 6.4% | ||
bobby.madagascar | 0 | 2,830,920,778 | 4% | ||
laissez-faire | 0 | 103,276,988 | 100% | ||
ldp | 0 | 1,107,001,297 | 8% | ||
berthold | 0 | 2,473,261,060 | 6% | ||
merlin7 | 0 | 103,197,580,122 | 8% | ||
sanjeev021 | 0 | 1,495,862,644 | 50% | ||
pollygonewild | 0 | 0 | 5% | ||
foodblogresteem | 0 | 0 | 5% | ||
maonx | 0 | 3,205,463,155 | 12% | ||
followjohngalt | 0 | 58,553,441,465 | 8% | ||
starrouge | 0 | 609,095,514 | 30% | ||
wherein | 0 | 256,431,661,096 | 60% | ||
steemfriends | 0 | 12,506,369,754 | 100% | ||
muntaharaceh | 0 | 4,218,752,684 | 100% | ||
cryptoninja.guru | 0 | 959,418,114 | 100% | ||
cnstm | 0 | 159,240,874,343 | 60% | ||
permaculturedude | 0 | 3,143,079,486 | 8% | ||
jacoblai | 0 | 0 | 5% | ||
jamesbattler | 0 | 91,799,797,401 | 100% | ||
fusion.lover | 0 | 25,388,828,457 | 100% | ||
lianjingmedia | 0 | 581,072,623 | 60% | ||
goodcontentbot | 0 | 806,822,640 | 15% | ||
bobdavids | 0 | 0 | 5% | ||
chocolatelover | 0 | 6,968,929,335 | 100% | ||
azarmadr3 | 0 | 1,371,548,419 | 100% | ||
hungryharish | 0 | 614,638,647 | 2% | ||
crownbee | 0 | 0 | 1% | ||
mfblack | 0 | 40,647,225,753 | 7.6% | ||
epicdice | 0 | 6,527,390,405 | 0.9% | ||
dailyke20 | 0 | 1,193,429,694 | 5% | ||
threejay | 0 | 1,978,569,008 | 4% | ||
sm-silva | 0 | 891,618,956 | 4% | ||
bitsharesorg | 0 | 19,476,246,385 | 100% | ||
omnivori | 0 | 1,897,810,225 | 90% | ||
steemindian | 0 | 640,743,572 | 4% | ||
shimozurdo | 0 | 769,171,512 | 8% | ||
triplea.bot | 0 | 2,840,685,151 | 8% | ||
steem.leo | 0 | 79,302,491,688 | 8% | ||
freddio.sport | 0 | 4,375,755,322 | 15% | ||
asteroids | 0 | 8,173,475,633 | 7.2% | ||
botante | 0 | 6,838,398,837 | 2% | ||
beta500 | 0 | 9,135,337,806 | 8% | ||
maxuvd | 0 | 21,543,354,179 | 6% | ||
maxuve | 0 | 28,289,565,219 | 6% | ||
moleah | 0 | 28,263,679,810 | 100% | ||
btscn | 0 | 459,349,505,588 | 100% | ||
downvoteme | 0 | 45,099,050,620 | 40% | ||
cnvote | 0 | 9,215,664,926 | 100% | ||
icon123456 | 0 | 9,532,751,954 | 100% | ||
lesmann | 0 | 0 | 100% | ||
dbfoodbank | 0 | 2,740,306,048 | 66.5% | ||
gerbo | 0 | 53,006,266 | 8% | ||
weddinggift | 0 | 3,337,939,140 | 100% | ||
tongchat27 | 0 | 1,894,503,776,428 | 100% | ||
ribary | 0 | 2,634,402,291 | 4% | ||
bilpcoinbpc | 0 | 3,463,695,733 | 37.5% | ||
mice-k | 0 | 39,388,794,487 | 8% | ||
curamax | 0 | 5,016,230,971 | 8% | ||
drew0 | 0 | 609,588,194 | 5% | ||
mehmetfix | 0 | 3,016,577,328 | 5% | ||
gorllara | 0 | 19,775,818,919 | 100% | ||
sujaytechnicals | 0 | 47,577,128 | 100% | ||
dpend.active | 0 | 1,244,662,570 | 1.6% | ||
fengchao | 0 | 2,376,331,284 | 2% | ||
hivewatchers | 0 | 290,260,295,272 | 65% | ||
folklure | 0 | 615,691,669 | 4% | ||
visionaer3003 | 0 | 250,965,236,429 | 8% | ||
softworld | 0 | 631,596,159,155 | 41% | ||
polish.hive | 0 | 21,684,318,192 | 8% | ||
captainhive | 0 | 775,029,410,913 | 41% | ||
quello | 0 | 38,291,703,204 | 9% | ||
dcityrewards | 0 | 230,541,853,259 | 8% | ||
hiveonboard | 0 | 2,867,057,550 | 2.25% | ||
portraits | 0 | 0 | 50% | ||
zarevaneli | 0 | 0 | 100% | ||
hivecur | 0 | 189,585,359,260 | 8% | ||
logicforce | 0 | 1,929,289,640 | 50% | ||
hivecur2 | 0 | 44,799,182,067 | 10% | ||
koxmicart | 0 | 542,963,467 | 100% | ||
recoveryinc | 0 | 224,994,867,175 | 6% | ||
hive-108278 | 0 | 16,700,179,146 | 50% | ||
dying | 0 | 10,956,030,601 | 6% | ||
discohedge | 0 | 2,591,956,762 | 4% | ||
jingjing1616 | 0 | 6,136,594,093 | 100% | ||
dengyanping888 | 0 | 0 | 100% | ||
redhive | 0 | 0 | 100% |
Interesting information, you can always learn something new. Good vibes.
author | angelica7 |
---|---|
permlink | re-abit-qhaupo |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"peakd/2020.09.5"} |
created | 2020-09-27 04:20:15 |
last_update | 2020-09-27 04:20:15 |
depth | 1 |
children | 0 |
last_payout | 2020-10-04 04:20: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 | 72 |
author_reputation | 506,093,293,722,658 |
root_title | "BitShares Core 5.0.0 Release (code name "Splash")" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,837,795 |
net_rshares | 0 |
Electronic-terrorism, voice to skull and neuro monitoring on Hive and Steem. You can ignore this, but your going to wish you didnt soon. This is happening whether you believe it or not. https://ecency.com/fyrstikken/@fairandbalanced/i-am-the-only-motherfucker-on-the-internet-pointing-to-a-direct-source-for-voice-to-skull-electronic-terrorism
author | gangstalking |
---|---|
permlink | re-abit-qzl01m |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"peakd/2021.09.1"} |
created | 2021-09-17 13:56:12 |
last_update | 2021-09-17 13:56:12 |
depth | 1 |
children | 0 |
last_payout | 2021-09-24 13:56:12 |
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 | 343 |
author_reputation | -67,597,107,868,724 |
root_title | "BitShares Core 5.0.0 Release (code name "Splash")" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 106,358,040 |
net_rshares | -27,694,909,928 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -5,117,124,556 | -0.25% | ||
mmmmkkkk311 | 0 | -22,577,785,372 | -0.25% |
Congratulations @abit! 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/@abit/upvotes.png?202010211237"></td><td>You distributed more than 43000 upvotes. Your next target is to reach 44000 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@abit) 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> **Do not miss the last post from @hivebuzz:** <table><tr><td><a href="/hive-120078/@hivebuzz/october-2020-is-the-world-mental-heath-month"><img src="https://images.hive.blog/64x128/https://i.imgur.com/GWiQc2h.png"></a></td><td><a href="/hive-120078/@hivebuzz/october-2020-is-the-world-mental-heath-month">October 2020 is the World Mental Heath Month</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-abit-20201021t124534000z |
category | bitshares |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-10-21 12:45:33 |
last_update | 2020-10-21 12:45:33 |
depth | 1 |
children | 0 |
last_payout | 2020-10-28 12:45:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 992 |
author_reputation | 370,748,835,139,499 |
root_title | "BitShares Core 5.0.0 Release (code name "Splash")" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,193,156 |
net_rshares | 0 |