# Release Notes The [BitShares](https://bitshares.org) Core software has been updated to the [5.1.0 Feature Release](https://github.com/bitshares/bitshares-core/milestone/35?closed=1). The codename of the 5.x releases 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 bug fixes but _does not include any changes to the consensus protocol_. 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-1-0) * [Upgrade process](#upgrade-process-5-1-0) * [Binaries for download](#binaries-for-download-5-1-0) * [Changes](#changes-5-1-0) * [Release contributors](#release-contributors-5-1-0) ## <div id="who-should-upgrade-5-1-0"/> Who Should Upgrade? Public API nodes should upgrade to support client software that attempt to use the [new APIs](#api-5-1-0). Private API nodes may or may not upgrade depending on the use cases. Pure validation nodes E.G. block producers and seed nodes are not required to upgrade. ## <div id="upgrade-process-5-1-0"/> Upgrade Process ### Precautions - 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-1-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 * The minimum supported CMake version is 3.2 #### Obtain the Source Code The source code may be obtained by checking out the [5.1.0 tag](https://github.com/bitshares/bitshares-core/releases/tag/5.1.0). Download the source at: * [5.1.0.zip](https://github.com/bitshares/bitshares-core/archive/5.1.0.zip) * [5.1.0.tar.gz](https://github.com/bitshares/bitshares-core/archive/5.1.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-macOS) * [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:5.1.0 ``` # <div id="binaries-for-download-5-1-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.1.0/bitshares-core-5.1.0-win64-bin.zip)|`161c349f2af47894d9458fe5da7922d192c6be97c3bccf760c505c6866b72c65`| |[Mac](https://github.com/bitshares/bitshares-core/releases/download/5.1.0/bitshares-core-5.1.0-macos64-bin.tar.bz2)|`fd077811dff087598e3ba84632b786c53037417ab2c3630ba3d0a3e4380a61cb`| |[Linux](https://github.com/bitshares/bitshares-core/releases/download/5.1.0/bitshares-core-5.1.0-linux-amd64-bin.tar.bz2)|`fb14af10e9b59e28d1e9ff78e23c08fe90bdfe07a1ee0d4e2b443819ad7d9cc8`| # <div id="changes-5-1-0"/> Changes The changes for [5.1.0 Feature Release](https://github.com/bitshares/bitshares-core/milestone/35?closed=1) are summarized below. ## Node Functionality |Description|Issue|Pull Request| |-|-|-| |Add current supply and maximum supply to budget object|[2303](https://github.com/bitshares/bitshares-core/issues/2303)|[2304](https://github.com/bitshares/bitshares-core/pull/2304)| |Update seed nodes|-|[2277](https://github.com/bitshares/bitshares-core/pull/2277), [2309](https://github.com/bitshares/bitshares-core/pull/2309), [2315](https://github.com/bitshares/bitshares-core/pull/2315), [2316](https://github.com/bitshares/bitshares-core/pull/2316)| ## <div id="node-performance-5-1-0">Node Performance and Stability</div> |Description|Issue|Pull Request| |-|-|-| |Fix a crash related to OpenSSL config file path|[2276](https://github.com/bitshares/bitshares-core/issues/2276)|[FC-211](https://github.com/bitshares/bitshares-fc/pull/211), [2288](https://github.com/bitshares/bitshares-core/pull/2288)| ## Node Plug-ins |Description|Issue|Pull Request| |-|-|-| |Expand market history plugin to support liquidity pools|-|[2297](https://github.com/bitshares/bitshares-core/pull/2297)| ## <div id="api-5-1-0"/> API Please check the linked pull requests for more info and documentation. |Description|Issue|Pull Request| |-|-|-| |Add APIs for liquidity pools|[2280](https://github.com/bitshares/bitshares-core/issues/2280), [2284](https://github.com/bitshares/bitshares-core/issues/2284), [2286](https://github.com/bitshares/bitshares-core/issues/2286)|[2285](https://github.com/bitshares/bitshares-core/pull/2285), [2297](https://github.com/bitshares/bitshares-core/pull/2297)| |Add APIs for tickets|[2291](https://github.com/bitshares/bitshares-core/issues/2291)|[2289](https://github.com/bitshares/bitshares-core/pull/2289)| |Add current supply and maximum supply to budget object|[2303](https://github.com/bitshares/bitshares-core/issues/2303)|[2304](https://github.com/bitshares/bitshares-core/pull/2304)| ## Software Design |Description|Issue|Pull Request| |-|-|-| |Force 16-byte alignment on optional class|-|[FC-219](https://github.com/bitshares/bitshares-fc/pull/219)| |Simplify implementation of account and asset lookup APIs|-|[2308](https://github.com/bitshares/bitshares-core/pull/2308)| |Explicitly convert integers to bools|-|[FC-221](https://github.com/bitshares/bitshares-fc/pull/221), [2320](https://github.com/bitshares/bitshares-core/pull/2320)| |Fix compiler warnings|-|[FC-212](https://github.com/bitshares/bitshares-fc/pull/212), [2310](https://github.com/bitshares/bitshares-core/pull/2310)| ## Build Process and Continuous Integration (CI) |Description|Issue|Pull Request| |-|-|-| |Add a check for project submodules|-|[2329](https://github.com/bitshares/bitshares-core/pull/2329)| |Improve testing in parallel in Github Actions CI|[2274](https://github.com/bitshares/bitshares-core/issues/2274)|[FC-217](https://github.com/bitshares/bitshares-fc/pull/217), [FC-209](https://github.com/bitshares/bitshares-fc/pull/209), [FC-210](https://github.com/bitshares/bitshares-fc/pull/210), [2275](https://github.com/bitshares/bitshares-core/pull/2275)| |Run Github Actions CI in Ubuntu 16 and 18|-|[FC-215](https://github.com/bitshares/bitshares-fc/pull/215), [2317](https://github.com/bitshares/bitshares-core/pull/2317)| |Use Boost 1.69 in Github Actions Actions CI macOS build|-|[FC-212](https://github.com/bitshares/bitshares-fc/pull/212), [2301](https://github.com/bitshares/bitshares-core/pull/2301)| |Support macOS 11 Big Sur in Github Actions CI|-|[FC-218](https://github.com/bitshares/bitshares-fc/pull/218), [2322](https://github.com/bitshares/bitshares-core/pull/2322)| |Show more log messages in Github Actions CI|-|[FC-220](https://github.com/bitshares/bitshares-fc/pull/220), [2320](https://github.com/bitshares/bitshares-core/pull/2320)| |Update build status badges|-|[FC-227](https://github.com/bitshares/bitshares-fc/pull/227), [FC-228](https://github.com/bitshares/bitshares-fc/pull/228), [2332](https://github.com/bitshares/bitshares-core/pull/2332)| |Stop using Travis-CI|[2312](https://github.com/bitshares/bitshares-core/issues/2312), [2292](https://github.com/bitshares/bitshares-core/issues/2292)|[FC-214](https://github.com/bitshares/bitshares-fc/pull/214), [FC-213](https://github.com/bitshares/bitshares-fc/pull/213), [2313](https://github.com/bitshares/bitshares-core/pull/2313), [2301](https://github.com/bitshares/bitshares-core/pull/2301), [2294](https://github.com/bitshares/bitshares-core/pull/2294), [2287](https://github.com/bitshares/bitshares-core/pull/2287)| ## Documentation |Description|Issue|Pull Request| |-|-|-| |Improve docs of get_trade_history* database API|-|[2305](https://github.com/bitshares/bitshares-core/pull/2305)| |Add comments for operation types and object types|-|[2306](https://github.com/bitshares/bitshares-core/pull/2306)| |Correct a chain parameter's description|-|[2326](https://github.com/bitshares/bitshares-core/pull/2326)| |Add make_new_plugin.sh script in plugin README|-|[2293](https://github.com/bitshares/bitshares-core/pull/2293)| |Fix Doxygen warnings|-|[FC-223](https://github.com/bitshares/bitshares-fc/pull/223), [2324](https://github.com/bitshares/bitshares-core/pull/2324)| |Update license year and contributors list|-|[FC-225](https://github.com/bitshares/bitshares-fc/pull/225), [FC-229](https://github.com/bitshares/bitshares-fc/pull/229), [FC-230](https://github.com/bitshares/bitshares-fc/pull/230), [2330](https://github.com/bitshares/bitshares-core/pull/2330), [2335](https://github.com/bitshares/bitshares-core/pull/2335), [2336](https://github.com/bitshares/bitshares-core/pull/2336)| ## Unit Tests |Description|Issue|Pull Request| |-|-|-| |Deal with a race condition in logging tests|-|[FC-222](https://github.com/bitshares/bitshares-fc/pull/222)| # <div id="release-contributors-5-1-0"/> Release Contributors @abitmore (https://github.com/abitmore) @bangzi1001 (https://github.com/bangzi1001) @SemenMartynov (https://github.com/SemenMartynov) @sinetek (https://github.com/sinetek) @xiao93 (https://github.com/xiao93) @xloem (https://github.com/xloem)
author | abit |
---|---|
permlink | bitshares-core-splash-5-1-0-release |
category | bitshares |
json_metadata | {"tags":["bitshares","release","splash"],"users":["abitmore","bangzi1001","semenmartynov","sinetek","xiao93","xloem"],"links":["https://bitshares.org"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2021-01-26 14:41:24 |
last_update | 2021-01-26 14:41:24 |
depth | 0 |
children | 7 |
last_payout | 2021-02-02 14:41:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 27.638 HBD |
curator_payout_value | 23.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,148 |
author_reputation | 141,171,499,037,785 |
root_title | "BitShares Core "Splash" 5.1.0 Release" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,566,087 |
net_rshares | 217,519,258,437,679 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 36,990,095,608,480 | 25% | ||
tombstone | 0 | 19,384,660,898 | 0.9% | ||
abit | 0 | 30,439,786,627,540 | 100% | ||
adm | 0 | 35,144,758,073,267 | 100% | ||
oaldamster | 0 | 34,027,535,329 | 100% | ||
mammasitta | 0 | 16,814,601,722 | 2.5% | ||
gtg | 0 | 21,876,540,806,451 | 100% | ||
gerber | 0 | 215,271,333,012 | 13% | ||
roelandp | 0 | 322,153,840,812 | 6.25% | ||
daan | 0 | 54,387,780,416 | 8% | ||
ezzy | 0 | 839,722,684,734 | 13% | ||
vortac | 0 | 5,286,712,984,060 | 100% | ||
fundurian | 0 | 61,568,653,220 | 100% | ||
fixedelineation | 0 | -1,719,014,360 | -100% | ||
kendewitt | 0 | 106,309,762,930 | 30% | ||
arcange | 0 | 208,268,375,181 | 3% | ||
exyle | 0 | 412,179,017,754 | 13% | ||
raphaelle | 0 | 3,395,919,379 | 3% | ||
joythewanderer | 0 | 578,767,947,552 | 100% | ||
lemooljiang | 0 | 32,700,493,434 | 100% | ||
ace108 | 0 | 740,186,614,326 | 27% | ||
logic | 0 | 187,595,300,401 | 75% | ||
magicmonk | 0 | 2,501,097,796,941 | 100% | ||
timcliff | 0 | 1,479,479,192,259 | 100% | ||
laoyao | 0 | 46,476,444,777 | 100% | ||
somebody | 0 | 82,863,910 | 100% | ||
midnightoil | 0 | 163,247,488,465 | 100% | ||
miketr | 0 | 7,522,521,913 | 5% | ||
xiaohui | 0 | 923,876,351,624 | 100% | ||
jphamer1 | 0 | 4,476,499,341,554 | 100% | ||
oflyhigh | 0 | 5,883,711,708,258 | 100% | ||
bert0 | 0 | 829,087,164 | 0.4% | ||
rivalhw | 0 | 2,652,688,175,041 | 100% | ||
helene | 0 | 1,215,219,909,575 | 100% | ||
someguy123 | 0 | 355,073,278,388 | 13% | ||
ebargains | 0 | 882,949,773 | 3.25% | ||
steemcleaners | 0 | 1,553,652,172,866 | 60% | ||
techslut | 0 | 283,401,671,407 | 50% | ||
eroche | 0 | 360,742,920,155 | 100% | ||
edb | 0 | 61,276,241,603 | 50% | ||
walterjay | 0 | 2,313,108,640 | 0.45% | ||
zedikaredirect | 0 | 17,572,287,012 | 74.91% | ||
blackbunny | 0 | 72,968,503,751 | 100% | ||
silviabeneforti | 0 | 159,809,405,771 | 100% | ||
lingfei | 0 | 75,626,848,583 | 100% | ||
ranchorelaxo | 0 | 40,460,896,235,612 | 100% | ||
freebornsociety | 0 | 1,799,533,020 | 10% | ||
passion-fruit | 0 | 10,390,138,531 | 100% | ||
fortune-master | 0 | 10,553,473,421 | 100% | ||
dune69 | 0 | 7,933,490,841 | 13% | ||
grider123 | 0 | 4,033,216,019 | 100% | ||
iansart | 0 | 18,753,598,438 | 13% | ||
mrstaf | 0 | 1,915,629,434 | 50% | ||
roky | 0 | 12,626,867,725 | 100% | ||
exec | 0 | 248,204,027,807 | 100% | ||
eval | 0 | 841,176,041 | 100% | ||
giuatt07 | 0 | 291,454,099,758 | 25% | ||
alphacore | 0 | 155,000,004,801 | 10.42% | ||
swaraj | 0 | 48,385,946,231 | 100% | ||
khaiyoui | 0 | 22,771,908,532 | 100% | ||
travelgirl | 0 | 153,309,522,830 | 100% | ||
shitsignals | 0 | 6,081,471,258 | 13% | ||
themarkymark | 0 | 2,886,303,865,800 | 12% | ||
steemik | 0 | 63,127,381,246 | 100% | ||
ahlawat | 0 | 4,217,908,931 | 24.4% | ||
mangoanddaddy | 0 | 3,254,686,490 | 80% | ||
cn-reader | 0 | 16,210,334,973 | 50% | ||
felander | 0 | 61,601,513,433 | 13% | ||
elenasteem | 0 | 52,817,343,659 | 100% | ||
santigs | 0 | 16,267,670,618 | 31% | ||
floatinglin | 0 | 6,629,754,940 | 100% | ||
kimzwarch | 0 | 10,662,080,425 | 4% | ||
accelerator | 0 | 51,629,382,671 | 5% | ||
buildawhale | 0 | 8,263,997,431,144 | 12% | ||
cconn | 0 | 684,438,615 | 25% | ||
apasia.tech | 0 | 9,534,138,905 | 100% | ||
yogacoach | 0 | 12,017,755,911 | 13% | ||
chenlocus | 0 | 10,508,805,593 | 100% | ||
therealwolf | 0 | 1,088,070,650,110 | 3% | ||
fatman | 0 | 5,107,283,261 | 2% | ||
dancingapple | 0 | 24,314,623,446 | 100% | ||
steembet.asia | 0 | 666,296,583 | 100% | ||
makerhacks | 0 | 34,775,281,775 | 12% | ||
japanguide | 0 | 11,497,081,689 | 100% | ||
kimchi-king | 0 | 1,829,482,817 | 50% | ||
arabisouri | 0 | 92,713,605,126 | 100% | ||
caladan | 0 | 8,562,842,685 | 12.35% | ||
mrsyria | 0 | 1,351,258,919 | 100% | ||
jexus77 | 0 | 1,561,694,724 | 100% | ||
emrebeyler | 0 | 432,368,642,967 | 13% | ||
smartsteem | 0 | 191,463,591,644 | 3% | ||
etherpunk | 0 | 874,394,550 | 50% | ||
itchyfeetdonica | 0 | 442,265,998,784 | 50% | ||
tomatom | 0 | 1,575,962,775 | 12.5% | ||
upmyvote | 0 | 7,912,445,674 | 12% | ||
gabrielatravels | 0 | 10,534,462,548 | 5% | ||
nealmcspadden | 0 | 17,833,362,920 | 13% | ||
suhunter | 0 | 961,902,227 | 50% | ||
belemo | 0 | 75,683,316,783 | 100% | ||
amjadsharif | 0 | 4,586,035,508 | 100% | ||
ahmedsy | 0 | 2,250,838,012 | 100% | ||
purefood | 0 | 12,710,999,671 | 13% | ||
a-quarius | 0 | 13,932,457,316 | 10% | ||
tobias-g | 0 | 4,755,625,664 | 9% | ||
investyourvote | 0 | 3,636,524,289 | 6% | ||
unconditionalove | 0 | 1,015,865,222 | 6.5% | ||
comandoyeya | 0 | 16,043,007,848 | 20% | ||
mgzayyar | 0 | 40,234,653,102 | 100% | ||
darkpylon | 0 | 690,651,559 | 25% | ||
movement19 | 0 | 964,825,808 | 3% | ||
ladysalsa | 0 | 2,249,897,550 | 13% | ||
futurecurrency | 0 | 35,008,010,218 | 59% | ||
idkpdx | 0 | 161,438,915 | 12.5% | ||
frassman | 0 | 2,117,663,661 | 12.5% | ||
simplymike | 0 | 9,125,364,704 | 9.09% | ||
bestboom | 0 | 5,781,250,075 | 13% | ||
manniman | 0 | 148,481,650,509 | 33% | ||
sekhet | 0 | 325,687,001 | 100% | ||
freddio | 0 | 58,818,378,053 | 13% | ||
abdulmath | 0 | 6,755,772,936 | 100% | ||
lordbutterfly | 0 | 532,932,624,540 | 80% | ||
kgakakillerg | 0 | 35,105,267,996 | 10% | ||
steem.services | 0 | 23,444,680,179 | 3.25% | ||
sourav76 | 0 | 0 | 5.21% | ||
swisswitness | 0 | 7,931,092,785 | 13% | ||
emsonic | 0 | 52,034,343,941 | 5.2% | ||
gallerani | 0 | 788,132,869 | 13% | ||
dalz | 0 | 31,360,783,133 | 6.5% | ||
smartvote | 0 | 48,407,513,845 | 2.29% | ||
dlike | 0 | 136,569,921,416 | 13% | ||
voxmortis | 0 | 874,100,982 | 0.5% | ||
pboulet | 0 | 1,042,989,852 | 0.9% | ||
bobby.madagascar | 0 | 2,027,547,834 | 6.5% | ||
quediceharry | 0 | 17,347,274,154 | 100% | ||
jackofcrows | 0 | 6,238,787,780 | 12.5% | ||
ldp | 0 | 1,521,129,000 | 13% | ||
berthold | 0 | 3,224,558,925 | 6% | ||
merlin7 | 0 | 37,930,194,482 | 13% | ||
cwow2 | 0 | 89,901,248,635 | 11.7% | ||
followjohngalt | 0 | 11,142,529,468 | 13% | ||
cakemonster | 0 | 8,482,995,687 | 6.5% | ||
starrouge | 0 | 1,041,023,568 | 50% | ||
wherein | 0 | 322,526,892,225 | 100% | ||
steemfriends | 0 | 10,585,226,015 | 100% | ||
zerofive | 0 | 861,434,903 | 50% | ||
cryptoninja.guru | 0 | 959,418,114 | 100% | ||
flyingbolt | 0 | 954,534,526 | 13% | ||
determine | 0 | 768,264,667 | 13% | ||
cnstm | 0 | 256,383,764,557 | 100% | ||
permaculturedude | 0 | 5,154,522,821 | 13% | ||
likuang007 | 0 | 665,860,519 | 100% | ||
circa | 0 | 135,907,954,465 | 100% | ||
ctime | 0 | 387,209,375,285 | 7% | ||
lianjingmedia | 0 | 1,004,005,509 | 100% | ||
dzentral | 0 | 23,333,403,553 | 100% | ||
haikusailor | 0 | 1,178,505,312 | 13% | ||
dcommerce | 0 | 747,175,284,599 | 100% | ||
abbenay | 0 | 649,390,673 | 3.12% | ||
mfblack | 0 | 6,250,660,348 | 12.35% | ||
gruntprime | 0 | 6,663,884,513 | 50% | ||
epicdice | 0 | 3,809,245,459 | 0.9% | ||
helgalubevi | 0 | 3,078,432,297 | 12.5% | ||
threejay | 0 | 3,395,345,521 | 6.5% | ||
gruntbeta | 0 | 6,538,681,690 | 50% | ||
bitsharesorg | 0 | 33,613,673,287 | 100% | ||
steemindian | 0 | 1,060,965,284 | 6.5% | ||
denisdenis | 0 | 41,645,869,251 | 100% | ||
vxc | 0 | 996,530,685 | 35.75% | ||
shimozurdo | 0 | 1,086,032,030 | 13% | ||
milu-the-dog | 0 | 5,561,150,123 | 13% | ||
triplea.bot | 0 | 4,623,671,638 | 13% | ||
steem.leo | 0 | 163,473,892,249 | 13% | ||
asteroids | 0 | 951,183,292 | 11.7% | ||
botante | 0 | 9,139,550,236 | 2.6% | ||
maxuvd | 0 | 28,061,179,402 | 8% | ||
maxuve | 0 | 31,573,288,508 | 6% | ||
moleah | 0 | 83,705,297,380 | 100% | ||
downvoteme | 0 | 46,226,811,514 | 40% | ||
cnvote | 0 | 7,858,347,794 | 100% | ||
icon123456 | 0 | 16,744,904,756 | 100% | ||
huaren.news | 0 | 36,815,106,392 | 100% | ||
gerbo | 0 | 113,833,884 | 13% | ||
yohjuan | 0 | 2,038,029,784 | 100% | ||
ribary | 0 | 4,388,807,722 | 6.5% | ||
mice-k | 0 | 102,461,909,150 | 13% | ||
troll3838 | 0 | 2,529,353,134 | 13% | ||
curamax | 0 | 7,240,058,765 | 13% | ||
drew0 | 0 | 606,053,869 | 5% | ||
dpend.active | 0 | 2,605,080,900 | 2.6% | ||
fengchao | 0 | 14,077,669,384 | 3% | ||
hivewatchers | 0 | 236,374,228,984 | 60% | ||
laruche | 0 | 40,952,773,951 | 0.9% | ||
folklure | 0 | 950,501,228 | 6.5% | ||
softworld | 0 | 371,794,517,592 | 31% | ||
quello | 0 | 1,224,975,700 | 9% | ||
monster-burner | 0 | 885,176,580 | 6.5% | ||
dcityrewards | 0 | 1,347,548,213,970 | 13% | ||
portraits | 0 | 0 | 50% | ||
hivelist | 0 | 1,542,530,335 | 1.3% | ||
hf18 | 0 | 5,177,624,652 | 100% | ||
poshbot | 0 | 104,925,622,588 | 12% | ||
hivecur | 0 | 27,503,055,063 | 13% | ||
logicforce | 0 | 1,746,249,466 | 50% | ||
patronpass | 0 | 726,960,800 | 25% | ||
hivecur2 | 0 | 29,526,062,053 | 10% | ||
koxmicart | 0 | 361,135,051 | 100% | ||
recoveryinc | 0 | 27,036,862,919 | 6% | ||
hive-108278 | 0 | 13,710,170,787 | 50% | ||
ynah.artchi | 0 | 3,407,488,845 | 100% | ||
dying | 0 | 3,796,484,777 | 6% | ||
discohedge | 0 | 9,750,773,282 | 6.5% | ||
zaynel | 0 | 5,020,174,011 | 100% | ||
nohyperec | 0 | 2,278,417,215 | 100% | ||
hansvonkatte | 0 | 102,953,196 | 100% | ||
gctoys1014 | 0 | 0 | 100% | ||
bosco56 | 0 | 9,585,193,239 | 100% | ||
crypto-index | 0 | 40,783,723,091 | 100% | ||
dengyanping888 | 0 | 0 | 100% | ||
redhive | 0 | 0 | 100% |
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @abit, here is a little bit of <code>BEER</code> from @eii for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-abit-bitshares-core-splash-5-1-0-release-20210202t162312159z |
category | bitshares |
json_metadata | {"app":"beerlover/2.0"} |
created | 2021-02-02 16:23:12 |
last_update | 2021-02-02 16:23:12 |
depth | 1 |
children | 0 |
last_payout | 2021-02-09 16:23: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 | 511 |
author_reputation | 25,764,855,350,472 |
root_title | "BitShares Core "Splash" 5.1.0 Release" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,677,470 |
net_rshares | 0 |
La verdad es un buen alisiente lo que has plasmado, gracias por compartir.
author | comandoyeya |
---|---|
permlink | qnlar5 |
category | bitshares |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2021-01-27 11:04:18 |
last_update | 2021-01-27 11:04:18 |
depth | 1 |
children | 0 |
last_payout | 2021-02-03 11:04:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 574,313,965,306,937 |
root_title | "BitShares Core "Splash" 5.1.0 Release" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,579,404 |
net_rshares | 0 |
Help [vote for Bitshares on the CryptoIndex](https://cryptoindex.org/coin/bitshares)! Bitshares is currently on the front page of the CryptoIndex, where as you have to traverse to the 2nd page of coinmarketcap to find Bitshares.
author | crypto-index |
---|---|
permlink | qnlitj |
category | bitshares |
json_metadata | {"links":["https://cryptoindex.org/coin/bitshares"],"app":"hiveblog/0.1"} |
created | 2021-01-27 13:58:33 |
last_update | 2021-01-27 13:58:33 |
depth | 1 |
children | 0 |
last_payout | 2021-02-03 13:58: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 | 229 |
author_reputation | 106,816,762,541 |
root_title | "BitShares Core "Splash" 5.1.0 Release" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,581,227 |
net_rshares | 0 |
!BEER for you
author | eii |
---|---|
permlink | re-abit-qnwtgh |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"peakd/2021.01.3"} |
created | 2021-02-02 16:21:54 |
last_update | 2021-02-02 16:21:54 |
depth | 1 |
children | 0 |
last_payout | 2021-02-09 16:21:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.116 HBD |
curator_payout_value | 0.115 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 181,211,283,583,274 |
root_title | "BitShares Core "Splash" 5.1.0 Release" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,677,452 |
net_rshares | 1,343,221,229,745 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ua-promoter | 0 | 1,343,221,229,745 | 11.52% |
Just took a look at the website and It looks like there is a lot happening with bitshares in 2021. Where is the best to place to get the inside story?
author | eroche |
---|---|
permlink | qnkelp |
category | bitshares |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2021-01-26 23:29:45 |
last_update | 2021-01-26 23:29:45 |
depth | 1 |
children | 0 |
last_payout | 2021-02-02 23:29:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.128 HBD |
curator_payout_value | 0.129 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 150 |
author_reputation | 70,759,290,299,941 |
root_title | "BitShares Core "Splash" 5.1.0 Release" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,573,559 |
net_rshares | 1,721,933,672,377 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ubg | 0 | 1,523,472,770,841 | 30% | ||
nrg | 0 | 198,460,901,536 | 30% |
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-qzl01f |
category | bitshares |
json_metadata | {"tags":["bitshares"],"app":"peakd/2021.09.1"} |
created | 2021-09-17 13:56:03 |
last_update | 2021-09-17 13:56:03 |
depth | 1 |
children | 0 |
last_payout | 2021-09-24 13:56:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 343 |
author_reputation | -67,597,107,868,724 |
root_title | "BitShares Core "Splash" 5.1.0 Release" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 106,358,037 |
net_rshares | -27,694,584,022 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -5,117,124,556 | -0.25% | ||
mmmmkkkk311 | 0 | -22,577,459,466 | -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/payout.png?202101271403"></td><td>You received more than 206000 as payout for your posts. Your next target is to reach a total payout of 208000</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> **Check out the last post from @hivebuzz:** <table><tr><td><a href="/hivebuzz/@hivebuzz/pud-202102"><img src="https://images.hive.blog/64x128/https://i.imgur.com/805FIIt.jpg"></a></td><td><a href="/hivebuzz/@hivebuzz/pud-202102">Next Hive Power Up Day is February 1st 2021</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-abit-20210127t142505000z |
category | bitshares |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2021-01-27 14:25:03 |
last_update | 2021-01-27 14:25:03 |
depth | 1 |
children | 0 |
last_payout | 2021-02-03 14:25:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 939 |
author_reputation | 369,210,995,025,988 |
root_title | "BitShares Core "Splash" 5.1.0 Release" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,581,502 |
net_rshares | 0 |