create account

Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more! by steemitblog

View this thread on: hive.blogpeakd.comecency.com
· @steemitblog ·
Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!
https://i.imgur.com/42RYoRS.jpg

Today’s @steemitblog post is brought to you by Steemit’s Blockchain team. 
We have been extremely busy over the past several months, and wanted to share with you some of the things we have been up to. This post includes news of our plans for an improved bandwidth formula, updates on AppBase, RocksDB, and Hardfork 20 (HF20), as well as the latest developments for Smart Media Tokens (SMTs).

<h1>Scalability</h1>

As many of you already know from our previous [scalability post](https://steemit.com/steem/@steemitblog/exploring-steem-scalability), the Blockchain team has been very focused on scalability over the past year. We know that these types of changes are not as exciting as new features and platform enhancements, but ensuring that the blockchain is ready to scale to 100x or even 1,000x usage is something that is important to do _before_ we actually scale to that degree. Neglecting scalability until it is actually needed is a recipe for disaster.

<h2>AppBase</h2>

AppBase provides a robust foundation for meeting all of our future scaling needs, and will allow us to grow the platform while at the same time managing the resource requirements for third-party application developers, witnesses, and exchanges to grow along with it.

It does this by enabling many components of the Steem blockchain to become modular by creating additional non-consensus blockchains as dedicated plugins. These plugins can be updated much more rapidly because they do not require replaying the entire blockchain.

The pre-release for [AppBase](https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin) was announced about three months ago and we appreciate all of the testing that the community has done since that announcement. We have also been testing extensively, and have been working on several changes to resolve some of the minor issues that were detected/reported. We are very close to having the official `19.4` AppBase release ready for witnesses and node operators to start safely using in production, and we will post as soon as it is ready.

<h2>RocksDB</h2>

As we mentioned in our [Exploring Steem Scalability post](https://steemit.com/steem/@steemitblog/exploring-steem-scalability), we have been spending a lot of time researching various ways to store the steemd data more efficiently. One of those approaches is using a technology called RocksDB. We are pleased to announce that we have decided to go with the RocksDB solution, and have already successfully converted the “account history” plugin to use RocksDB.

[RocksDB](https://rocksdb.org/) is a fast-on-disk data store with an advanced caching layer, which could further minimize latency when reading/writing to and from the disk as it is optimized for fast, low-latency storage. Used in production systems at multiple web-scale entreprises (Facebook, Yahoo, LinkedIn), RocksDB is based on LevelDB but with increased performance thanks to its ability to exploit multiple CPU cores and SSD storage for input/output bound workloads. Its use in MyRocks, for example, led to less SSD storage use, longer SSD endurance, and more available IO capacity for handling queries.

In comparison with the previous account history implementation:
- An account history node can now efficiently be run by storing the state file on a nVME SSD drive, instead of having to keep the entire state file in RAM. This has allowed us to start running account history nodes on 32-64 GB RAM servers, instead of the 488 GB instances we were required to use before.
- An account history node can now re-index in about 10 hours, compared to the multiple days that it took before.
- The state file is much smaller, as RocksDB has built-in compression.

We completed extensive testing of these changes in the development/staging environments, and have been running the changes in production for a little over three weeks. Any users who have been querying account history data from the `api.steemit.com` endpoint over the past three weeks have been getting their data from the RocksDB plugin.

Account history was used as a test of the RocksDB technology to determine if it fits our needs. We are more than happy with the results of this test and are working on a drop-in replacement for Chainbase that relies on RocksDB instead of memory mapped files.  This will dramatically improve the performance of steemd, and we are very excited to complete the transition.

<h1>Bandwidth</h1>

As we continue to scale the blockchain to more and more users, the bandwidth formula that we use to allocate resource usage across all of those users becomes more and more important. The bandwidth formula that we are currently using has been adequate for the level of usage we have had so far, but there is a lot of room for improvement. Our goal is to try to find the right balance between allowing new users to have an amazing experience using Steem-powered applications like steemit.com, while at the same time preventing them from using an unreasonable amount of the network’s resources or spamming the network. We would also like to simplify the mental model behind understanding how much Steem Power is required for certain levels of use.  

Our current bandwidth formula makes a somewhat crude approximation of the cost of a transaction, based on the size of the transaction. While size is one important metric, the improved bandwidth formula should try to take into consideration all of the different resource constraints that a transaction may place on the network. 

We have been researching ways to classify transactions based on their impact on several different factors. By taking all of these items into consideration, we hope to come up with a much better representation of a transaction’s true cost with respect to:
- Blockchain history size
- Reindex time
- State file size
- Memory usage
- Disk iops
- Network bandwidth

We are currently working to integrate a new tool called StatsD that measures statistics into steemd, so that we can acquire superior metrics. We are also researching different bandwidth implementations that can be used to allocate usage based on these metrics. 

Once we have gathered all of the necessary data and settled on the best bandwidth algorithm design, we will share all of the details with the community.

<h1>Miscellaneous changes</h1>

<h2>Security Changes</h2>

The team has worked on several security patches to improve the stability of the network, which were released under [Steem 0.19.3](https://github.com/steemit/steem/releases/tag/v0.19.3). The majority of witnesses and node operators have already picked up these changes and are running them in production. If any node operators are still running version `19.2`, it is recommended that they upgrade to `19.3`.

<h2>cli_wallet testing</h2>

The cli_wallet is a tool that is used by many witnesses, exchanges, and application developers to interface with the Steem blockchain. As we continue to make changes to the blockchain architecture (such as with AppBase and RocksDB), we felt it was important to design a suite of tests that could be used to ensure that the new version of code remains backwards-compatible with the old version, and doesn’t break any functionality with the cli_wallet.

It should be noted that once SMTs are released, the cli_wallet tool will remain backwards-compatible with previously existing functionality, but it will **not** be upgraded to support the new SMT functionality. We will be providing a new tool before then (and instructions on how to use it) that will act as a full replacement for the cli_wallet, as well as support all of the new SMT functionality via the command line.

<h2>Code style guidelines</h2>

In [GitHub issue 2366](https://github.com/steemit/steem/issues/2366) we are working on a code style document, so that developers have a guideline to inform style decisions and the codebase has a unified set of style rules. These will be useful for any developer making contributions to steemd, and will help keep the source code clean and reliable.

<h2>Transaction confirmation API</h2>

On rare occasions an action made on Steemit.com appears to work, only to disappear a few seconds later.  There are some edge cases where the current transaction submission logic breaks down and results in this undesirable situation due to the transaction not making it into an accepted block. 

We are working on a new API to better determine the status of a transaction. It is not only more efficient than the current transaction submission process, but will allow steemit.com to detect these scenarios and ensure your actions make it on the blockchain.  

The discussion for this has been ongoing [here](https://github.com/steemit/steem/issues/486), and our goal is to have a design finalized soon, so we can start work on the implementation. 

<h1>Hardfork 20</h1>

Hardfork 20 has been on the back burner for a while as we focused on scalability-related solutions, but it is time to put it back on the front burner. We don’t have an exact date for the hardfork yet, but we are targeting early Q3 of 2018. More details will be shared on HF20 as the development progresses.

<h1>SMTs</h1>

We have several full-time developers dedicated to working on SMTs, and a lot of progress is being made. While many of the changes being worked on so far are highly technical, and basically serve the purpose of updating much of the existing functionality in steemd (which was designed for a single token: STEEM) to work for multiple tokens, there is still a lot of interesting functionality that is beginning to take shape. 

Here are 10 of the interesting changes that have been completed so far:
- In [1508](https://github.com/steemit/steem/issues/1508) the initial work was done to allow the creation of a new SMT.
- In [1653](https://github.com/steemit/steem/issues/1653) and [1729](https://github.com/steemit/steem/issues/1729), test cases were created to ensure that all of the SMT creation logic works as expected.
- In [1683](https://github.com/steemit/steem/issues/1683) the foundation was laid for SMTs to integrate with the internal market, so that users can trade SMTs for STEEM and STEEM for SMTs.
- In [2029](https://github.com/steemit/steem/issues/2029) the structure that will be used for the SMT Market Makers to run on the internal market was defined.
- In [1682](https://github.com/steemit/steem/issues/1682), the transfer operation that is used to send tokens between accounts was updated to support SMTs.
- In [1843](https://github.com/steemit/steem/issues/1843) posts/comments were updated to allow users to specify up to two SMT tokens for which the post/comment will be eligible (in addition to STEEM).
- In [1856](https://github.com/steemit/steem/issues/1856) the vote operator was updated to support vote operations on posts/comments that include multiple voting assets (SMTs).
- In [1896](https://github.com/steemit/steem/issues/1896) the operation for users to claim tokens after a post/comment that includes SMT payouts is paid out was created.
- In [2056](https://github.com/steemit/steem/issues/2056) support was added for the `smt_refund_operation`, which can be used by contributors of an ICO to (optionally) cancel their contribution to an ICO and receive a refund if the ICO launch date is postponed. 
- In [2021](https://github.com/steemit/steem/issues/2021), [2160](https://github.com/steemit/steem/issues/2160), and [2085](https://github.com/steemit/steem/issues/2085), support was added for “vesting” SMTs (SMT Power).

<h2>More Technical Details</h2>

For those of you who are interested in the technical details, the team is also spending a lot of time on important design decisions in addition to coding. Many of these discussions are documented in GitHub. 

One example can be found in [this issue](https://github.com/steemit/steem/issues/2241), where we discussed how to handle automatic actions such as SMT emissions and Market Maker transactions. In another, [2212](https://github.com/steemit/steem/issues/2212), we discussed the corner cases of SMT vesting to prevent integer overflows and rounding errors.

<h2>Testnet</h2>

We know that everyone is eager and excited to have SMTs completed and launched into production as soon as possible. So are we! Our dedicated team is working around the clock to make this happen. The first major milestone we are aiming to achieve is to have an SMT testnet (called “Forerunner”) up and running, where developers can start to play around with some of the implemented features. 

We will continue to keep you up to date on our progress and will let you know as soon as the Forerunner testnet is ready for use. 

Steem on,

_The Steemit Blockchain Team_
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 401 others
👎  , , , , , , , ,
properties (23)
authorsteemitblog
permlinksteemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more
categorysteem
json_metadata{"tags":["steem","steemit","blockchain","smt","hf20"],"users":["steemitblog"],"image":["https://i.imgur.com/42RYoRS.jpg"],"links":["https://steemit.com/steem/@steemitblog/exploring-steem-scalability","https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin","https://rocksdb.org/","https://github.com/steemit/steem/releases/tag/v0.19.3","https://github.com/steemit/steem/issues/2366","https://github.com/steemit/steem/issues/486","https://github.com/steemit/steem/issues/1508","https://github.com/steemit/steem/issues/1653","https://github.com/steemit/steem/issues/1729","https://github.com/steemit/steem/issues/1683","https://github.com/steemit/steem/issues/2029","https://github.com/steemit/steem/issues/1682","https://github.com/steemit/steem/issues/1843","https://github.com/steemit/steem/issues/1856","https://github.com/steemit/steem/issues/1896","https://github.com/steemit/steem/issues/2056","https://github.com/steemit/steem/issues/2021","https://github.com/steemit/steem/issues/2160","https://github.com/steemit/steem/issues/2085","https://github.com/steemit/steem/issues/2241","https://github.com/steemit/steem/issues/2212"],"app":"steemit/0.1","format":"markdown"}
created2018-05-22 18:59:33
last_update2018-05-22 18:59:33
depth0
children183
last_payout2018-05-29 18:59:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,793
author_reputation332,472,558,821,177
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id57,128,288
net_rshares145,532,524,033,121
author_curate_reward""
vote details (474)
@aashishkandel ·
$0.09
It looks like a significant update to me!
steem on!!
👍  , ,
properties (23)
authoraashishkandel
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t020908374z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 02:09:06
last_update2018-05-24 02:09:06
depth1
children0
last_payout2018-05-31 02:09:06
cashout_time1969-12-31 23:59:59
total_payout_value0.086 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation4,731,147,170,715
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,371,550
net_rshares23,849,473,305
author_curate_reward""
vote details (3)
@adarshh ·
as you mentioned, Rocksdb is heavily optimized for machines with SSD/flash storage because it has a mmtable + sstable approach where  writes first go to the mmtable and batched writes go to the sstable. this process can be write through as well. 

doesn't this approach necessitate presence of SSD drives all the time just because of the expectation of minimal persistence latencies. am i correct in assuming that we are okay with this approach because only the witnesses need to run rocksdb in combination with reasonable RAM and higher SSD capacities? 



thanks
properties (22)
authoradarshh
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t163143423z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 16:31:45
last_update2018-05-24 16:31:45
depth1
children0
last_payout2018-05-31 16:31:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length564
author_reputation1,909,676,117,380
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,485,847
net_rshares0
@advocatemighty ·
Well done guys, great future ahead for steemit
👍  
properties (23)
authoradvocatemighty
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193610823z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:36:30
last_update2018-05-22 19:36:30
depth1
children0
last_payout2018-05-29 19:36:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation768,946,249
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,133,596
net_rshares0
author_curate_reward""
vote details (1)
@anderson09 ·
I think it's a big problem right now that there are so few full RPC nodes available and it's getting prohibitively expensive and time consuming to set up new ones. Obviously these changes are aimed at changing that (which is awesome!), and I think it would also be good to have a clear guide on how to set a full RPC node up, what the various options are, etc.

Probably a good thing for the developer portal I guess (which I also love btw!)

Anyway, I could not be more excited about all of this and the future of the Steem blockchain. Keep up the great work!
👍  
properties (23)
authoranderson09
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180525t162743646z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-25 16:27:45
last_update2018-05-25 16:27:45
depth1
children0
last_payout2018-06-01 16:27:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length560
author_reputation68,723,479,243
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,664,453
net_rshares0
author_curate_reward""
vote details (1)
@angellija ·
hii friends
👍  ,
properties (23)
authorangellija
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t192017287z
categorysteem
json_metadata{"tags":["steem"],"community":"busy","app":"busy/2.4.0"}
created2018-05-23 19:20:18
last_update2018-05-23 19:20:18
depth1
children0
last_payout2018-05-30 19:20:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation139,981,877,199
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,320,646
net_rshares326,692,272
author_curate_reward""
vote details (2)
@arcange ·
Congratulations @steemitblog!
Your post was mentioned in the [Steemit Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20180522) in the following category:

* Pending payout - Ranked 3 with $ 699,82
👍  
properties (23)
authorarcange
permlinkre-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t180333000z
categorysteem
json_metadata""
created2018-05-23 16:11:00
last_update2018-05-23 16:11:00
depth1
children0
last_payout2018-05-30 16:11:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation1,146,606,601,469,178
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,292,712
net_rshares0
author_curate_reward""
vote details (1)
@bahagia-arbi · (edited)
SMTs is the main key of this update I really love to read. Thanks for your works the best teams of Steemin Inch. 

Warmest from Bireuen, Aceh Province, Indonesia.
@bahagia-arbi
*A Steem and Fundition Ambassador*
👍  
properties (23)
authorbahagia-arbi
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190525141z
categorysteem
json_metadata{"tags":["steem"],"users":["bahagia-arbi"],"app":"steemit/0.1"}
created2018-05-22 19:05:27
last_update2018-05-22 19:06:00
depth1
children0
last_payout2018-05-29 19:05:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length211
author_reputation62,544,888,098,801
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,129,114
net_rshares0
author_curate_reward""
vote details (1)
@boyelleq ·
Update information...
Thanks for you @steemitblog...
Success is always for you...
👍  
properties (23)
authorboyelleq
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t194712032z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"}
created2018-05-23 19:47:15
last_update2018-05-23 19:47:15
depth1
children0
last_payout2018-05-30 19:47:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation2,112,654,729,102
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,324,385
net_rshares0
author_curate_reward""
vote details (1)
@brianphobos ·
$0.04
It is great to see a detailed update!  It is also great to hear there will be a SMT Testnet in the future.
👍  ,
properties (23)
authorbrianphobos
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t224736134z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 22:47:36
last_update2018-05-22 22:47:36
depth1
children0
last_payout2018-05-29 22:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation170,165,475,805,004
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,158,778
net_rshares9,510,988,363
author_curate_reward""
vote details (2)
@businesswri ·
Thanks for the amazing update. I look forward to SMT's and the HF20. Keep up the great work !!!
👍  ,
properties (23)
authorbusinesswri
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t123540335z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 12:35:42
last_update2018-05-23 12:35:42
depth1
children0
last_payout2018-05-30 12:35:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation16,587,613,850,587
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,259,009
net_rshares2,859,021,813
author_curate_reward""
vote details (2)
@calabozocriollo · (edited)
we wait the best from you, as we give the best of us to this good proyect! 

keep doing #steemitwetrust @steemitblog

![Logo Calabozo 2018.png](https://cdn.steemitimages.com/DQmRVBrT9cxFoKuDUBiRAW5tYubEzsajMPNZEG4SxgxX5z8/Logo%20Calabozo%202018.png)
👍  
properties (23)
authorcalabozocriollo
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t055637443z
categorysteem
json_metadata{"tags":["steem","steemitwetrust"],"app":"steemit/0.1","users":["steemitblog"],"image":["https://cdn.steemitimages.com/DQmRVBrT9cxFoKuDUBiRAW5tYubEzsajMPNZEG4SxgxX5z8/Logo%20Calabozo%202018.png"]}
created2018-05-24 05:56:42
last_update2018-05-24 05:57:30
depth1
children0
last_payout2018-05-31 05:56:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation942,410,485,043
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,399,397
net_rshares296,214,512
author_curate_reward""
vote details (1)
@calprut ·
I hope HF20 makes a better change to the steemit
properties (22)
authorcalprut
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t034910433z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 03:48:54
last_update2018-05-23 03:48:54
depth1
children0
last_payout2018-05-30 03:48:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation70,348,854,373,895
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,193,292
net_rshares0
@cardboard · (edited)
$0.02
Omg, finally an update!
👍  ,
properties (23)
authorcardboard
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190241871z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:02:42
last_update2018-05-22 19:09:48
depth1
children1
last_payout2018-05-29 19:02:42
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation31,522,757,177,122
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,128,728
net_rshares6,723,655,203
author_curate_reward""
vote details (2)
@dang007 ·
Yea , but no date on when smt will come out, more of the bs again.
👍  
properties (23)
authordang007
permlinkre-cardboard-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t220246678z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 22:02:45
last_update2018-05-23 22:02:45
depth2
children0
last_payout2018-05-30 22:02:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation11,401,014,276,268
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,341,870
net_rshares0
author_curate_reward""
vote details (1)
@chrismadcboy2016 ·
Thanks to let us know specially your teams. I wil keep on posting and trading with blackchains specially smartcash thank you sir for you good informations.
👍  
properties (23)
authorchrismadcboy2016
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t065655034z
categorysteem
json_metadata{"tags":["steem"],"community":"busy","app":"busy/2.4.0"}
created2018-05-23 06:55:03
last_update2018-05-23 06:55:03
depth1
children0
last_payout2018-05-30 06:55:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation16,548,318,786,819
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,216,305
net_rshares0
author_curate_reward""
vote details (1)
@clumsysilverdad ·
$0.04
https://i.pinimg.com/736x/1f/a2/71/1fa271885bfc9378697695f604e07210.jpg
👍  ,
properties (23)
authorclumsysilverdad
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193556046z
categorysteem
json_metadata{"tags":["steem"],"image":["https://i.pinimg.com/736x/1f/a2/71/1fa271885bfc9378697695f604e07210.jpg"],"app":"steemit/0.1"}
created2018-05-22 19:35:54
last_update2018-05-22 19:35:54
depth1
children0
last_payout2018-05-29 19:35:54
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation28,166,630,869,767
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,133,515
net_rshares9,037,419,526
author_curate_reward""
vote details (2)
@coinelius ·
This update was very informative. As a developer of community websites, I'm looking forward to this side of steem in full operation. My mind is bustin loose with all the possibilities to come.![source.gif](https://cdn.steemitimages.com/DQmeqLPRsrSTficN4mT3h8bSirMXDPgh92U3kVU13tcLqg3/source.gif)
properties (22)
authorcoinelius
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180527t122656959z
categorysteem
json_metadata{"tags":["steem"],"image":["https://cdn.steemitimages.com/DQmeqLPRsrSTficN4mT3h8bSirMXDPgh92U3kVU13tcLqg3/source.gif"],"app":"steemit/0.1"}
created2018-05-27 12:26:57
last_update2018-05-27 12:26:57
depth1
children0
last_payout2018-06-03 12:26:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length295
author_reputation4,122,064,261
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,938,872
net_rshares0
@crypto-france ·
thank you for share!
👍  
properties (23)
authorcrypto-france
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t092025545z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 09:20:27
last_update2018-05-23 09:20:27
depth1
children0
last_payout2018-05-30 09:20:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation-9,289,032,366
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,234,399
net_rshares0
author_curate_reward""
vote details (1)
@cryptohazard ·
Cool for RocksDB if it will reduce the charge of the witnesses.

I am Still not convinced by the SMT. I mean it is all nice and all to promote Token creation but if there is no community behind, it will be like token on bitshares, nxt, waves, ... We should have focused on promoting content **first**.  In 2 years here I fell like the community is less active.
👍  
properties (23)
authorcryptohazard
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t082234210z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 08:22:33
last_update2018-05-23 08:22:33
depth1
children2
last_payout2018-05-30 08:22:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length360
author_reputation17,111,780,434,071
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,227,549
net_rshares0
author_curate_reward""
vote details (1)
@timcliff ·
All content that will be eligible for SMTs will be eligible for STEEM too.
👍  
properties (23)
authortimcliff
permlinkre-cryptohazard-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t200748852z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 20:07:54
last_update2018-05-23 20:07:54
depth2
children1
last_payout2018-05-30 20:07:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation272,954,445,077,789
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,327,110
net_rshares0
author_curate_reward""
vote details (1)
@cryptohazard ·
$0.03
sure but are we doing anything to push good content here? I really don't think so.

I believe what makes people come back is the content or the community. You come here for the interactions.  That's what keeps you here when the money is low. Or least that how I always felt. This is the part I wish was put first.
👍  ,
properties (23)
authorcryptohazard
permlinkre-timcliff-re-cryptohazard-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t203059360z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 20:31:00
last_update2018-05-23 20:31:00
depth3
children0
last_payout2018-05-30 20:31:00
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length313
author_reputation17,111,780,434,071
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,330,125
net_rshares9,024,318,752
author_curate_reward""
vote details (2)
@dandesign86 ·
$0.10
Music to my ears ! I was just telling a fellow Steemian that the SMT will be launched when we least expect it and I'm glad to see that we are getting closer now :) Awesome Job you guys !
👍  , ,
properties (23)
authordandesign86
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190801870z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:08:03
last_update2018-05-22 19:08:03
depth1
children2
last_payout2018-05-29 19:08:03
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation73,987,517,574,321
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,129,478
net_rshares26,441,189,142
author_curate_reward""
vote details (3)
@andrarchy ·
$0.43
Thanks! Don't worry, you'll be getting more information about SMTs as we go and should be able to begin getting a better sense of when they will be available, though we still don't have anything to announce yet.

Content Director, Steemit
👍  , , , ,
properties (23)
authorandrarchy
permlinkre-dandesign86-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190953578z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:09:54
last_update2018-05-22 19:09:54
depth2
children1
last_payout2018-05-29 19:09:54
cashout_time1969-12-31 23:59:59
total_payout_value0.349 HBD
curator_payout_value0.085 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation230,168,201,522,782
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,129,755
net_rshares108,318,403,761
author_curate_reward""
vote details (5)
@mexbit ·
Hi @andrarchy, great video you did in december... It got me all hyped up...
those rumors that SMTs will come out in July, are they reasonable at all, or could it be that SMTs will come out for example in 2019?
👍  
properties (23)
authormexbit
permlinkre-andrarchy-re-dandesign86-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180527t020025071z
categorysteem
json_metadata{"tags":["steem"],"users":["andrarchy"],"app":"steemit/0.1"}
created2018-05-27 02:00:24
last_update2018-05-27 02:00:24
depth3
children0
last_payout2018-06-03 02:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation9,339,355,784,161
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,882,889
net_rshares0
author_curate_reward""
vote details (1)
@dogimage ·
$0.02
Thank you for your update. It is nive to see that steemit is still growing with possibilities
👍  , ,
properties (23)
authordogimage
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t205958935z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 20:59:06
last_update2018-05-23 20:59:06
depth1
children0
last_payout2018-05-30 20:59:06
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation338,493,164,177
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,333,673
net_rshares6,578,781,995
author_curate_reward""
vote details (3)
@edb1984 ·
Can you support other chains like Bitcoin or Etherem on the internet market?
👍  
properties (23)
authoredb1984
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t215548235z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 21:55:48
last_update2018-05-22 21:55:48
depth1
children1
last_payout2018-05-29 21:55:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation465,647,102,445
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,152,351
net_rshares0
author_curate_reward""
vote details (1)
@timcliff ·
No
👍  ,
👎  
properties (23)
authortimcliff
permlinkre-edb1984-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t050347961z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 05:03:48
last_update2018-05-23 05:03:48
depth2
children0
last_payout2018-05-30 05:03:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation272,954,445,077,789
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,202,228
net_rshares-1,256,090,557
author_curate_reward""
vote details (3)
@edibersah ·
Thank you for sharing something useful, warm greetings from a height.
👍  
properties (23)
authoredibersah
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t210930559z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 21:09:39
last_update2018-05-22 21:09:39
depth1
children0
last_payout2018-05-29 21:09:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation1,214,772,355,849
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,146,506
net_rshares0
author_curate_reward""
vote details (1)
@ender · (edited)
$0.06
Are communities in hf20? That will cause us to need all the scaling we can get!
👍  ,
properties (23)
authorender
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t211919043z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 21:19:21
last_update2018-05-24 21:19:45
depth1
children0
last_payout2018-05-31 21:19:21
cashout_time1969-12-31 23:59:59
total_payout_value0.062 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation1,104,157,879,002
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,524,452
net_rshares17,233,726,555
author_curate_reward""
vote details (2)
@enginewitty ·
$0.04
Initially, I was against the use and creation of SMT's because I feared it would deter new users and hinder the retention rate for new STEEMpeeps. The more I read about them and am seeing what is actually being implemented, the more I am in agreement and now even, excited, to see them come about!
👍  ,
properties (23)
authorenginewitty
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t234127810z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 23:41:33
last_update2018-05-22 23:41:33
depth1
children1
last_payout2018-05-29 23:41:33
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length297
author_reputation693,845,391,004,857
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,165,155
net_rshares9,511,067,289
author_curate_reward""
vote details (2)
@andrarchy ·
Glad to hear that. We would never do anything that would detract from Steem, but I certainly can understand the skepticism.
👍  
properties (23)
authorandrarchy
permlinkre-enginewitty-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t133857398z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 13:38:57
last_update2018-05-23 13:38:57
depth2
children0
last_payout2018-05-30 13:38:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation230,168,201,522,782
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id57,268,263
net_rshares0
author_curate_reward""
vote details (1)
@eurogee ·
Updates like this make us to be very confident in what we do here. This has shown us that steem blockchain team is actually working round the clock to ensure we have a seamless experience. Thanks
👍  
properties (23)
authoreurogee
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t201248015z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 20:12:48
last_update2018-05-22 20:12:48
depth1
children0
last_payout2018-05-29 20:12:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length195
author_reputation38,260,360,943,030
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,138,839
net_rshares0
author_curate_reward""
vote details (1)
@felander ·
$0.02
this is very good news, 

as a member of a recently set up witness called @swisswitness we had a full node on our roadmap somewhere but I will admit it was far in the future.  This change in using RocksDB will bring this a lot closer to the present not only for us but for a lot of witnesses out there. 

This will make running a full node at least an option for top 50 - 70 witnesses and not just top 30 ish. *(very rough estimate)*

We are currently only 114th in the ranking so anyone out there with some spare or unused witness votes: 
https://steemconnect.com/sign/account-witness-vote?witness=swisswitness&approve=1

thanks @steemitblog / @andrarchy  for the update
👍  ,
properties (23)
authorfelander
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t225206061z
categorysteem
json_metadata{"tags":["steem"],"users":["swisswitness","steemitblog","andrarchy"],"links":["https://steemconnect.com/sign/account-witness-vote?witness=swisswitness&amp;approve=1"],"app":"steemit/0.1"}
created2018-05-22 22:52:06
last_update2018-05-22 22:52:06
depth1
children0
last_payout2018-05-29 22:52:06
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length671
author_reputation191,230,907,725,589
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,159,297
net_rshares5,733,145,070
author_curate_reward""
vote details (2)
@forsure ·
With RocksDB, what is the size of server where you begin to see the benefits?  Does it improve the performance of a 2GB server or are the benefits only seen on a scale of 32+GB?
👍  
properties (23)
authorforsure
permlinkre-steemitblog-2018524t82551379z
categorysteem
json_metadata{"tags":["steem","steemit","blockchain","smt","hf20"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-05-24 14:25:57
last_update2018-05-24 14:25:57
depth1
children0
last_payout2018-05-31 14:25:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation9,487,056
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,465,948
net_rshares607,171,597
author_curate_reward""
vote details (1)
@georgemales ·
Well done!
Looking forward for the SMT's as i think they will be the beginning of Steem reaching the Moon!
👍  
properties (23)
authorgeorgemales
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190742525z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:07:33
last_update2018-05-22 19:07:33
depth1
children0
last_payout2018-05-29 19:07:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation11,440,001,785,692
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,129,415
net_rshares0
author_curate_reward""
vote details (1)
@gold84 ·
Thanks for this grea update @steemitblog @andrarchy and @ned !
Hope SMTs and Hardfork 20 happens asap. Many things will change for the good of Steem and Steemit by then!

Regards, @gold84
👍  ,
properties (23)
authorgold84
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193644802z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitblog","andrarchy","ned","gold84"],"app":"steemit/0.1"}
created2018-05-22 19:36:42
last_update2018-05-22 19:36:42
depth1
children0
last_payout2018-05-29 19:36:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation20,903,401,478,476
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,133,635
net_rshares1,272,982,175
author_curate_reward""
vote details (2)
@hanen ·
Keep up the good work :)
👍  ,
properties (23)
authorhanen
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t184159828z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:41:15
last_update2018-05-22 19:41:15
depth1
children0
last_payout2018-05-29 19:41:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation27,392,840,099,536
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,134,287
net_rshares602,442,419
author_curate_reward""
vote details (2)
@hanshotfirst ·
$1.91
Due to the fact that I am a complete novice when it comes to the tech involved, I typically avoid making comments on these types of posts. First of all I want to compliment you on how this was presented. Although I would be lying if I said I understood every detail, I understood quite a bit of this post (great job explaining it to a layman!).  

It gives the impression that significant progress is being made in one of the (if not the) biggest areas of need... scalability. Thank you for including the names of huge recognizable companies using RocksDB. Even if I don't fully understand it, knowing that sites with a huge user base use it makes me excited that we are planning to have a similar (or even bigger) user base. 

It also seems that there has been significant progress on SMTs. Including the details of the significant changes was a great idea. 

My favorite piece is the revelation that HF 20 is being pushed to the forefront again. That signals to me that significant progress has been made in many other areas that will allow manpower and resources to be spent on it. 

I can't wait for the launch of these so that we can use them to help the community to grow and thrive.
👍  , , , , , ,
properties (23)
authorhanshotfirst
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t204332726z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 20:43:30
last_update2018-05-22 20:43:30
depth1
children7
last_payout2018-05-29 20:43:30
cashout_time1969-12-31 23:59:59
total_payout_value1.437 HBD
curator_payout_value0.468 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,189
author_reputation656,658,812,498,658
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,143,087
net_rshares475,003,944,372
author_curate_reward""
vote details (7)
@andrarchy ·
Thanks so much for that thoughtful response @hanshotfirst. It's really helpful to know which parts of the post you found most useful.
👍  
properties (23)
authorandrarchy
permlinkre-hanshotfirst-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t214609799z
categorysteem
json_metadata{"tags":["steem"],"users":["hanshotfirst"],"app":"steemit/0.1"}
created2018-05-22 21:46:09
last_update2018-05-22 21:46:09
depth2
children4
last_payout2018-05-29 21:46:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation230,168,201,522,782
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id57,151,146
net_rshares0
author_curate_reward""
vote details (1)
@bbrewer ·
$0.04
Did you write this @andrarchy? Man, you were a great pick for this position!
👍  ,
properties (23)
authorbbrewer
permlinkre-andrarchy-re-hanshotfirst-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t052210972z
categorysteem
json_metadata{"tags":["steem"],"users":["andrarchy"],"app":"steemit/0.1"}
created2018-05-23 05:22:12
last_update2018-05-23 05:22:12
depth3
children3
last_payout2018-05-30 05:22:12
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation7,852,511,958,185
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,204,518
net_rshares12,086,274,279
author_curate_reward""
vote details (2)
@mexbit ·
The question remains... when will SMTs come out... seems like Q3 is not likely anymore... I heard those rumors that it would be beginning of July... after reading this my doubts increased... 33 tickets open for SMTs...
👍  
properties (23)
authormexbit
permlinkre-hanshotfirst-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180527t015352124z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-27 01:53:51
last_update2018-05-27 01:53:51
depth2
children0
last_payout2018-06-03 01:53:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length218
author_reputation9,339,355,784,161
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,882,334
net_rshares0
author_curate_reward""
vote details (1)
@shortsegments ·
What can I say, you said it all, I agree, these are important points as many Steemians are not writers of code or proficient at translating technical terms to everyday language, but this article did a very good job and this comment sums that sentiment up nicely.
Bravo
👍  
properties (23)
authorshortsegments
permlinkre-hanshotfirst-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t001115519z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-29 00:11:24
last_update2018-05-29 00:11:24
depth2
children0
last_payout2018-06-05 00:11:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length268
author_reputation668,508,621,504,890
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,191,359
net_rshares0
author_curate_reward""
vote details (1)
@hiroyamagishi ·
$1.61
Thank for this great update. SMT is the update we are waiting for. The society is excited for this new wonderful thing to create a token for your own platform. This is the reason why this community is awesome because working developers in this platform.
👍  ,
properties (23)
authorhiroyamagishi
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t031612420z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 03:16:12
last_update2018-05-23 03:16:12
depth1
children0
last_payout2018-05-30 03:16:12
cashout_time1969-12-31 23:59:59
total_payout_value1.612 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length253
author_reputation71,901,302,671,995
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,189,513
net_rshares414,738,820,585
author_curate_reward""
vote details (2)
@hms818 ·
$0.26
Excellent  and exciting news, looking forward for Hardfork 20 in early 2018.
👍  ,
properties (23)
authorhms818
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t091200053z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 09:12:03
last_update2018-05-23 09:12:03
depth1
children1
last_payout2018-05-30 09:12:03
cashout_time1969-12-31 23:59:59
total_payout_value0.193 HBD
curator_payout_value0.062 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation11,503,740,391,093
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,233,367
net_rshares66,873,325,070
author_curate_reward""
vote details (2)
@mexbit ·
early 2018 or 2019?
👍  
properties (23)
authormexbit
permlinkre-hms818-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180527t015737967z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-27 01:57:39
last_update2018-05-27 01:57:39
depth2
children0
last_payout2018-06-03 01:57:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation9,339,355,784,161
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,882,637
net_rshares0
author_curate_reward""
vote details (1)
@hungryhustle ·
$0.05
Brilliant. Thank you so much Steemit Inc. for the wonderful updates. Can we have these kind of updates every week or so. Especially about the progress of HF20 and SMTs? I know a lot of work has been done in the background but it would be really great to showcase/flaunt it every now and then. 

**Also one more feedback**, even though I understand technical language to some extent but most what is written in this post goes over my head. I am sure several other people feel the same thing, so it would be great to add more pictures or videos while making such updates. Everything textual is boring and monotonous. I had seen a video by @andrarchy on SMTs when I first started my research on what they actually are. It was very informative, short and crisp. Producing such kind of content to provide updates would be very interactive. Cheers guys!
👍  , , ,
properties (23)
authorhungryhustle
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193439403z
categorysteem
json_metadata{"tags":["steem"],"users":["andrarchy"],"app":"steemit/0.1"}
created2018-05-22 19:34:39
last_update2018-05-22 19:34:39
depth1
children5
last_payout2018-05-29 19:34:39
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length847
author_reputation52,761,276,015,392
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,133,333
net_rshares13,351,449,134
author_curate_reward""
vote details (4)
@phoneinf ·
$0.10
I love text it's the best clean and simple. SMT in short will just be so people have the ability to add a comment section like we see on Steemit on your own website. So people can upvote content all over the web and earn real Token value. 

Tokenize the Internet that will say. We will probably eventually see some developer make so you will be able to upvote everywhere eventually. For example Telegram and Discord are currently un-monetized places at the moment. In a logical future it would be no place that would be un-monetized.
👍  , , , ,
properties (23)
authorphoneinf
permlinkre-hungryhustle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t195919026z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:59:18
last_update2018-05-22 19:59:18
depth2
children4
last_payout2018-05-29 19:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.085 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length533
author_reputation201,286,258,274,191
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,136,843
net_rshares24,387,817,908
author_curate_reward""
vote details (5)
@hungryhustle ·
$0.03
You have explained SMTs in a non-technical manner that can be understood by anyone @phoneinf. Cheers to you buddy. No wonder why people are dying to see them getting released. :-D Haha! Money Money everywhere. It will change the game for real content creators using services that are not making them money from the day one itself.
👍  ,
properties (23)
authorhungryhustle
permlinkre-phoneinf-re-hungryhustle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t201234067z
categorysteem
json_metadata{"tags":["steem"],"users":["phoneinf"],"app":"steemit/0.1"}
created2018-05-22 20:12:33
last_update2018-05-22 20:12:33
depth3
children1
last_payout2018-05-29 20:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length330
author_reputation52,761,276,015,392
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,138,806
net_rshares6,548,463,046
author_curate_reward""
vote details (2)
@valued-customer · (edited)
I can't wait for the revolution SMTs will usher in!  The potential Steemit has created for society to become masters of their creations/content will, I believe, change the world.  I have basically given up on the wider internet since I discovered that potential, using it merely as a reference to back up the content I discover here on Steemit, because I think in the future, and Steemit/Steem/SMT's is the future.

I have kinda missed the internet, a little, though, and can't wait for SMTs to make it worthwhile to contribute to the posts and comments that have become little more than trollbait.

Monetized upvotes make civility relevant again, and practically eliminate the incessant denigration of pseudonymity that has threatened free speech in the wake of what is little more than verbal vandalism pseudonymity has potentiated.

Some may think it odd, but I believe SMTs existentially critical to protecting free speech, countering both corporate/enemedia profiteering and trolling, leaving but true security threats and spam as reasons to attack anonymity/pseudonymity.  

It is hard to imagine how the potential of monetization will impact cesspits like the chans and Youtool, but I expect the same impact on trolling that has been evident on Steemit will utterly transform those platforms particularly.

I, for one, can't wait.
👍  
properties (23)
authorvalued-customer
permlinkre-phoneinf-re-hungryhustle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t052505717z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 05:25:12
last_update2018-05-24 05:26:57
depth3
children1
last_payout2018-05-31 05:25:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,337
author_reputation354,315,926,679,123
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,395,738
net_rshares0
author_curate_reward""
vote details (1)
@ilyastarar ·
This excellent piece of communication is what we all need to stay positive and hopeful. My circle knows I was upset with little progress but reading this post helps a lot. Early Q3 is not that far and there's a lot happening in SMTs space as well. 

Best of luck to the core blockchain team. May you complete all your projects perfectly!
👍  , ,
properties (23)
authorilyastarar
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t192217998z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:22:21
last_update2018-05-22 19:22:21
depth1
children0
last_payout2018-05-29 19:22:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length337
author_reputation22,538,822,918,099
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,131,531
net_rshares3,376,499,736
author_curate_reward""
vote details (3)
@iparamedic ·
I’m very excited about BlockOne and everything Dan Larimer has done for the blockchain community. EOS i’m All In!! Check out Dan Larimer’s interview here and please follow me as we will show you the throughput technology in real time and daily updates on how my organization is helping gentrify Los Angeles , pushing the homeless out into the suburbs and raise property values via crypto currencies and un blocking the chains!!

https://youtu.be/xkXuFeN-KMw

For any of you who feel pitty for my lil bro, DONT!! His life is probably a whole lot funner than yours...


https://youtu.be/EHtYEoDgTIs
👍  
properties (23)
authoriparamedic
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t062027623z
categorysteem
json_metadata{"tags":["steem"],"image":["https://img.youtube.com/vi/xkXuFeN-KMw/0.jpg","https://img.youtube.com/vi/EHtYEoDgTIs/0.jpg"],"links":["https://youtu.be/xkXuFeN-KMw","https://youtu.be/EHtYEoDgTIs"],"app":"steemit/0.1"}
created2018-05-24 06:20:27
last_update2018-05-24 06:20:27
depth1
children0
last_payout2018-05-31 06:20:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length596
author_reputation1,059,700,874
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,402,247
net_rshares326,469,150
author_curate_reward""
vote details (1)
@ipoelkip ·
Hi thank you very much for helping to spread awareness about AppBase, RocksDB, Bandwidth, HF20, SMTs, and more! :)
properties (22)
authoripoelkip
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t084839805z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 08:48:42
last_update2018-05-24 08:48:42
depth1
children0
last_payout2018-05-31 08:48:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation41,655,562,990
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,420,871
net_rshares0
@jassennessaj ·
$0.18
As mentioned by a lot of users here, I love how the thoughts were presented in a professional manner. It helps us understand (non-developers) in layman's term :)
👍  ,
properties (23)
authorjassennessaj
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t005317958z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 00:53:15
last_update2018-05-23 00:53:15
depth1
children0
last_payout2018-05-30 00:53:15
cashout_time1969-12-31 23:59:59
total_payout_value0.138 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation158,167,711,482,591
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,172,969
net_rshares47,555,336,447
author_curate_reward""
vote details (2)
@jocaste ·
Hello, you have my sincere congratulations for this post. Thank you for your update.
properties (22)
authorjocaste
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t163624731z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 16:50:39
last_update2018-05-24 16:50:39
depth1
children0
last_payout2018-05-31 16:50:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation6,365,794,749
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,488,672
net_rshares0
@karenmckersie · (edited)
Wow! what an awesome, long awaited update @steemitblog ! Cant wait for the forerunner test net, then the SMTs To launch! 💕✌👍😀 Upped and resteemed!
https://render.bitstrips.com/v2/cpanel/ae4f9f91-e7ec-4c37-9c70-aec28391312f-2b851cb9-3222-436b-9bb7-ff7645be9ace-v1.png?transparent=1&palette=1
👍  
properties (23)
authorkarenmckersie
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t044525261z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitblog"],"image":["https://render.bitstrips.com/v2/cpanel/ae4f9f91-e7ec-4c37-9c70-aec28391312f-2b851cb9-3222-436b-9bb7-ff7645be9ace-v1.png?transparent=1&amp;palette=1"],"app":"steemit/0.1"}
created2018-05-23 04:45:27
last_update2018-05-23 04:45:48
depth1
children0
last_payout2018-05-30 04:45:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length290
author_reputation280,862,618,735,740
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,200,124
net_rshares0
author_curate_reward""
vote details (1)
@kennybll ·
Woohoo can't wait! Great work Steemit Blockchain Team. Thank you for all your hard work. This is truly a great blockchain.
👍  
properties (23)
authorkennybll
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t171415208z
categorysteem
json_metadata{"tags":["steem"],"community":"busy","app":"busy/2.4.0"}
created2018-05-23 17:14:18
last_update2018-05-23 17:14:18
depth1
children0
last_payout2018-05-30 17:14:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation7,036,168,261,879
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,302,220
net_rshares0
author_curate_reward""
vote details (1)
@leotrap · (edited)
Love to see this changes in the near future, in the meantime, in here for many of us is not a matter of time, so don' t rush guys and enjoy life, cause the Blockchain is growing in the way it shoulds and everytime I see one of your videos you look so stressed! ;) 

Just enjoy the dev and keep on doing what you do... 

<center>[![follow_leotrap.gif](https://steemitimages.com/DQmPkYYBjxXYoftM755TyTYhUjCuefqzX3frzURto6SZd7B/follow_leotrap.gif)](https://steemit.com/@leotrap)</center>

<center>***Peace V!***</center>
👍  , ,
properties (23)
authorleotrap
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t203227979z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmPkYYBjxXYoftM755TyTYhUjCuefqzX3frzURto6SZd7B/follow_leotrap.gif"],"links":["https://steemit.com/@leotrap"]}
created2018-05-22 20:32:27
last_update2018-05-22 20:35:33
depth1
children0
last_payout2018-05-29 20:32:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length517
author_reputation180,053,236,596,755
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,141,641
net_rshares1,858,842,042
author_curate_reward""
vote details (3)
@luisjoeyf ·
Good to know where we are going! since we all push toward the same side to make great content

keep doing on the steemjob
properties (22)
authorluisjoeyf
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t080919727z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 08:09:24
last_update2018-05-24 08:09:24
depth1
children0
last_payout2018-05-31 08:09:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation9,610,239,376
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,415,949
net_rshares0
@lukestokes ·
$0.49
Excellent update and on the steemitblog, no less! I'm glad to see the tech details get some love here and not just @steemitdev.

Thanks for continuing to communicate about the work you're doing. We really appreciate it.
👍  , , , ,
properties (23)
authorlukestokes
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t212300072z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"}
created2018-05-22 21:23:00
last_update2018-05-22 21:23:00
depth1
children5
last_payout2018-05-29 21:23:00
cashout_time1969-12-31 23:59:59
total_payout_value0.372 HBD
curator_payout_value0.117 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation554,601,966,217,919
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,148,285
net_rshares122,567,489,985
author_curate_reward""
vote details (5)
@andrarchy ·
That's really useful feedback @lukestokes. It is an ongoing discussion about where to publish updates like this, and whether steemitdev or steemitblog is more appropriate, so glad to know your thoughts on this.
👍  
properties (23)
authorandrarchy
permlinkre-lukestokes-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t133735341z
categorysteem
json_metadata{"tags":["steem"],"users":["lukestokes"],"app":"steemit/0.1"}
created2018-05-23 13:37:33
last_update2018-05-23 13:37:33
depth2
children2
last_payout2018-05-30 13:37:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation230,168,201,522,782
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id57,268,068
net_rshares0
author_curate_reward""
vote details (1)
@lukestokes ·
Steemit, inc is a tech heavy company after all, and I say embrace it instead of trying to explain to bloggers why Steemit (your reference implementation of what’s possible on STEEM) hasn’t become the next Facebook yet with free money for everyone. STEEM has some solid devs working on important stuff. The more we highlight that, the more we can educate people on what’s going on and prepare them for a future where Steemit is just one among many sites on this chain.

Keep it up, man! We appreciate your efforts and the team taking time to put these updates together.
👍  
properties (23)
authorlukestokes
permlinkre-andrarchy-re-lukestokes-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t141038040z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 14:10:39
last_update2018-05-23 14:10:39
depth3
children1
last_payout2018-05-30 14:10:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length568
author_reputation554,601,966,217,919
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,273,093
net_rshares0
author_curate_reward""
vote details (1)
@felander ·
as a new witness (@swisswitness) I really like the full node news... this will make it much more affordable for the smaller teams to set them up as well... This will really boost the blockchain strength and stability
👍  
properties (23)
authorfelander
permlinkre-lukestokes-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t225651790z
categorysteem
json_metadata{"tags":["steem"],"users":["swisswitness"],"app":"steemit/0.1"}
created2018-05-22 22:56:51
last_update2018-05-22 22:56:51
depth2
children0
last_payout2018-05-29 22:56:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation191,230,907,725,589
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,159,861
net_rshares0
author_curate_reward""
vote details (1)
@shortsegments ·
agreed.
👍  
properties (23)
authorshortsegments
permlinkre-lukestokes-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t001349426z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-29 00:13:57
last_update2018-05-29 00:13:57
depth2
children0
last_payout2018-06-05 00:13:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation668,508,621,504,890
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,191,632
net_rshares0
author_curate_reward""
vote details (1)
@mahdiyari ·
We just want to see good things. Keep them up!
👍  ,
properties (23)
authormahdiyari
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194826883z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:48:30
last_update2018-05-22 19:48:30
depth1
children0
last_payout2018-05-29 19:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation199,858,416,089,067
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,135,322
net_rshares4,627,168,550
author_curate_reward""
vote details (2)
@mahfuz42 ·
This is a fantastic update.
👍  ,
properties (23)
authormahfuz42
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t062330965z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 06:23:42
last_update2018-05-23 06:23:42
depth1
children0
last_payout2018-05-30 06:23:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation-5,663,065,507
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,212,235
net_rshares318,022,758
author_curate_reward""
vote details (2)
@marc99 · (edited)
The future is quickly changing. Well done.
👍  
properties (23)
authormarc99
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190400856z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:04:00
last_update2018-05-22 19:04:15
depth1
children0
last_payout2018-05-29 19:04:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation2,577,073,356,117
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,128,911
net_rshares0
author_curate_reward""
vote details (1)
@masterly ·
Cool!
properties (22)
authormasterly
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t153435176z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 15:34:45
last_update2018-05-24 15:34:45
depth1
children0
last_payout2018-05-31 15:34:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation2,870,923,596
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,476,743
net_rshares0
@mejustandrew · (edited)
$0.09
Guys, again you are doing a very good job keeping us informed and especially working on so many important things. 

1. The size needed to run the blockchain - decreased by using RocksDB

2. The problems with bandwidth - in progress

3. Hard Fork 20 (which I personally thought it got canceled, looking at [its status on github](https://github.com/steemit/steem/projects?query=is%3Aclosed)

4. SMTs

5. Major changes like scalability, which can't be seen directly, but it is one of the most important.

I guess that @andrarchy was right when he said that your team is working continuously to make improvements on the Steem blockchain as they do.

You have my sincere congratulations for this!

### *Now the bad part...*

What I personally am concerned about, when you have time to address it, is the fact that 11 days ago there was a downtime of Steem blockchain, if I remember well. It was a 504 error when trying to access steemit.com. The problem was also present on busy.org or when trying to run condenser locally.

My concerns are really big about it, since I am not so sure why this happened or if the blockchain was still running well at that time. I remember that steemd.com was also not responding so I think about this as a potential centralization problem of the blockchain. If this affected the whole blockchain, then can we really rely on Steem as completely safe and resistant to attacks?

<sub><sup>PS: sorry for the self-vote, I am trying to make this visible...</sup></sub>
👍  ,
properties (23)
authormejustandrew
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t204549871z
categorysteem
json_metadata{"tags":["steem"],"users":["andrarchy"],"links":["https://github.com/steemit/steem/projects?query=is%3Aclosed"],"app":"steemit/0.1"}
created2018-05-22 20:45:48
last_update2018-05-22 20:47:27
depth1
children4
last_payout2018-05-29 20:45:48
cashout_time1969-12-31 23:59:59
total_payout_value0.085 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,490
author_reputation6,245,491,946,485
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,143,353
net_rshares21,445,993,038
author_curate_reward""
vote details (2)
@yabapmatt ·
$1.11
There was no downtime of the steem blockchain, but there was a downtime of the steemit RPC node that the majority of sites and services built on the steem blockchain use to get their data.

This is exactly the type of problem these developments will help to solve. With Appbase and RocksDB it will be much cheaper and easier to run a full node so hopefully there will be many more available that the sites and services can use if one of them goes down.
👍  , , , , ,
properties (23)
authoryabapmatt
permlinkre-mejustandrew-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t210339331z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 21:03:39
last_update2018-05-22 21:03:39
depth2
children3
last_payout2018-05-29 21:03:39
cashout_time1969-12-31 23:59:59
total_payout_value0.916 HBD
curator_payout_value0.197 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length452
author_reputation160,224,638,135,630
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,145,701
net_rshares277,765,406,218
author_curate_reward""
vote details (6)
@andrarchy · (edited)
Couldn't have said it better myself @yabapmatt
👍  
properties (23)
authorandrarchy
permlinkre-yabapmatt-re-mejustandrew-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t211435563z
categorysteem
json_metadata{"tags":["steem"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-05-22 21:14:36
last_update2018-05-22 21:20:30
depth3
children0
last_payout2018-05-29 21:14:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation230,168,201,522,782
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id57,147,183
net_rshares0
author_curate_reward""
vote details (1)
@mejustandrew ·
$0.65
Okay, thanks a lot for the reply, apparently it is not that easy to find somebody who knows what happened with that let's call it downtime of steemit.com. 

So the apps that are connecting to the Steemit RPC node could somehow check if this node is down and switch to another one during the downtime? Is that possible or I am talking nonsense?
👍  ,
properties (23)
authormejustandrew
permlinkre-yabapmatt-re-mejustandrew-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t211002008z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 21:10:03
last_update2018-05-22 21:10:03
depth3
children1
last_payout2018-05-29 21:10:03
cashout_time1969-12-31 23:59:59
total_payout_value0.485 HBD
curator_payout_value0.160 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length343
author_reputation6,245,491,946,485
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,146,557
net_rshares161,138,028,453
author_curate_reward""
vote details (2)
@meno ·
$0.12
YES!!!! I have to confess I was a bit worried about the RAM requirements... Now I don't feel so bad when I say that I believe all top 20 Witnesses should run a full Node.

I know, that its not required, I get that, but to me it's about leading by example. I welcome disagreements, I do. But when the nodes go down and we have thousands of users not able to use the blockchain, It drives me nuts.

We are all shooting for mass adoption, as much as most users won't know the significance of this upgrade, we should all be celebrating.
👍  , ,
properties (23)
authormeno
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194534802z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:45:27
last_update2018-05-22 19:45:27
depth1
children3
last_payout2018-05-29 19:45:27
cashout_time1969-12-31 23:59:59
total_payout_value0.109 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length532
author_reputation506,032,115,725,186
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,134,845
net_rshares30,764,453,513
author_curate_reward""
vote details (3)
@sircork ·
Most of us witnesses don't disagree, but most of us can't afford it. If they can push HF20, we can, and then you'll see vast relief on resource utilizations system wide. Even if we just doubled from the dozen or so public ones now, to double that, it would be huge right now.
👍  
properties (23)
authorsircork
permlinkre-meno-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t222225987z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 22:22:24
last_update2018-05-22 22:22:24
depth2
children2
last_payout2018-05-29 22:22:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length275
author_reputation40,884,085,696,666
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,155,756
net_rshares0
author_curate_reward""
vote details (1)
@meno ·
$0.04
I'm aware that a witness that is not in the top 20 would struggle to do this. Some witnesses can't cover costs of operation from month to month and I'm sensitive to that of course. I guess my request is exclusively for those at the top.
👍  ,
properties (23)
authormeno
permlinkre-sircork-re-meno-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t222922656z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 22:29:15
last_update2018-05-22 22:29:15
depth3
children1
last_payout2018-05-29 22:29:15
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length236
author_reputation506,032,115,725,186
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,156,589
net_rshares8,945,694,462
author_curate_reward""
vote details (2)
@musicfromsoul · (edited)
$0.03
Steemit must be mainstream media. Thanks guys!
👍  ,
properties (23)
authormusicfromsoul
permlinkre-steemitblog-2018523t182211988z
categorysteem
json_metadata{"tags":["steem","steemit","blockchain","smt","hf20"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-05-23 14:22:15
last_update2018-05-23 14:25:03
depth1
children0
last_payout2018-05-30 14:22:15
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation146,364,039,331
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,274,869
net_rshares7,643,011,305
author_curate_reward""
vote details (2)
@nairadaddy ·
### Great! We always appreciate a detailed update like this which only shows that a lot of work is being done in the background.
Cheers!
---
*STeem to the moon!*
👍  
properties (23)
authornairadaddy
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190823924z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:09:30
last_update2018-05-22 19:09:30
depth1
children0
last_payout2018-05-29 19:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation33,307,954,247,617
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,129,695
net_rshares0
author_curate_reward""
vote details (1)
@nathanmars ·
Thank you very much for the updates... Exciting times ahead!!!

Personally I can't wait for SMT go live, so that we can see more innovation coming out of Steem blockchain
👍  
properties (23)
authornathanmars
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t063640488z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 06:36:39
last_update2018-05-23 06:36:39
depth1
children0
last_payout2018-05-30 06:36:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation336,354,946,115,368
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,213,862
net_rshares0
author_curate_reward""
vote details (1)
@naysayer ·
$0.04
Great news! Cannot wait to see how steemit will do in future.
👍  ,
properties (23)
authornaysayer
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t015434362z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 01:54:36
last_update2018-05-23 01:54:36
depth1
children0
last_payout2018-05-30 01:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.043 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation1,659,918,707,480
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,180,177
net_rshares11,684,763,295
author_curate_reward""
vote details (2)
@osariemen ·
Nice one team steemit blockchain

For the fact that you can always bring updates and be transparent with the users means alot to us and we are grateful and we hope steemit lives long
properties (22)
authorosariemen
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t205050854z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 20:50:57
last_update2018-05-22 20:50:57
depth1
children0
last_payout2018-05-29 20:50:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation2,245,392,442,084
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,143,984
net_rshares0
@phodogo ·
Thanks you update
👍  
properties (23)
authorphodogo
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t034029356z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 03:40:30
last_update2018-05-23 03:40:30
depth1
children0
last_payout2018-05-30 03:40:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation399,656,002
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id57,192,288
net_rshares0
author_curate_reward""
vote details (1)
@prameshtyagi ·
Very good information. Personally I would prefer that hf20 comes as quickly as possible and we increase our user size to 19mn before even we launch SMTs for real impact
👍  
👎  
properties (23)
authorprameshtyagi
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t104341216z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 10:43:39
last_update2018-05-24 10:43:39
depth1
children0
last_payout2018-05-31 10:43:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation133,698,299,152,872
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,434,872
net_rshares-1,326,343,241
author_curate_reward""
vote details (2)
@redencion123 ·
can i translate this information for spanish users?
👍  
properties (23)
authorredencion123
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180526t114836120z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-26 11:17:57
last_update2018-05-26 11:17:57
depth1
children0
last_payout2018-06-02 11:17:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation224,184,057,446
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,785,258
net_rshares0
author_curate_reward""
vote details (1)
@reseller ·
$0.04
### <center>Congrats, you made the #steemitminute for today!
Click the Image Below to see the Video!
<center><a href='https://d.tube/#!/v/reseller/k4u781al'><img src='https://ipfs.io/ipfs/QmeCtFQwbDVeHdjvRdcRPND2fEMb5Z1MAa4bYHsnTGiRTz'></a></center>
👍  ,
properties (23)
authorreseller
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t195541778z
categorysteem
json_metadata{"tags":["steem","steemitminute"],"image":["https://ipfs.io/ipfs/QmeCtFQwbDVeHdjvRdcRPND2fEMb5Z1MAa4bYHsnTGiRTz"],"links":["https://d.tube/#!/v/reseller/k4u781al"],"app":"steemit/0.1"}
created2018-05-22 19:55:45
last_update2018-05-22 19:55:45
depth1
children0
last_payout2018-05-29 19:55:45
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation396,642,162,962,533
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,136,334
net_rshares8,855,898,717
author_curate_reward""
vote details (2)
@resteemmuse ·
Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more! has been resteemed by @resteemmuse http://www.christiansutter.com/wp-content/uploads/2018/05/ResteemMuse-300x300.jpg
👍  
properties (23)
authorresteemmuse
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180526t003358187z
categorysteem
json_metadata{"tags":["steem"],"users":["resteemmuse"],"image":["http://www.christiansutter.com/wp-content/uploads/2018/05/ResteemMuse-300x300.jpg"],"app":"steemit/0.1"}
created2018-05-26 00:33:57
last_update2018-05-26 00:33:57
depth1
children0
last_payout2018-06-02 00:33:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation265,191,043,102
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,724,270
net_rshares141,798,128
author_curate_reward""
vote details (1)
@rickyislam ·
I think it's a big problem right now that there are so few full RPC nodes available and it's getting prohibitively expensive and time consuming to set up new ones. Obviously these changes are aimed at changing that (which is awesome!), and I think it would also be good to have a clear guide on how to set a full RPC node up, what the various options are, etc.

Probably a good thing for the developer portal I guess (which I also love btw!)

Anyway, I could not be more excited about all of this and the future of the Steem blockchain. Keep up the great work!!
👍  
properties (23)
authorrickyislam
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t104324068z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 10:43:36
last_update2018-05-23 10:43:36
depth1
children4
last_payout2018-05-30 10:43:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length561
author_reputation207,818,679,877
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,244,300
net_rshares0
author_curate_reward""
vote details (1)
@crimsonclad ·
$0.06
Copying comments from the same post you're commenting on. No one will ever notice that!

Seriously. If you're new to the platform and resulting to this type of shitty behaviour, you won't make it too far. If you're willing to work and would like help becoming a contributing member of the community, you're welcome to contact me and I'll give you some pointers. You'll find your whole STEEM experience more valuable because of it.

If you keep going down this particular road, I imagine your account will be nuked in a few days. Hopefully you choose wisely.
👍  ,
properties (23)
authorcrimsonclad
permlinkre-rickyislam-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t190338356z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 19:03:36
last_update2018-05-23 19:03:36
depth2
children3
last_payout2018-05-30 19:03:36
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length557
author_reputation323,726,516,486,570
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,318,281
net_rshares17,081,526,856
author_curate_reward""
vote details (2)
@valued-customer ·
You are so kind!  And, hardworking.

Do you even sleep?
👍  
properties (23)
authorvalued-customer
permlinkre-crimsonclad-re-rickyislam-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t061203669z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 06:12:12
last_update2018-05-24 06:12:12
depth3
children2
last_payout2018-05-31 06:12:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation354,315,926,679,123
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,401,285
net_rshares0
author_curate_reward""
vote details (1)
@rickyislam ·
Me too for new docs on building and selecting modules for a full or partial rpc node install, with the rocksdb build and lowered ram utilization configs and optimized disc strategies and all that. Get us to where we can get nodes online affordably, at lower witness levels and we will, and that will take a lot of pressure off the plumbing here....
👍  
properties (23)
authorrickyislam
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t150858177z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 15:09:12
last_update2018-05-23 15:09:12
depth1
children0
last_payout2018-05-30 15:09:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length348
author_reputation207,818,679,877
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,282,633
net_rshares0
author_curate_reward""
vote details (1)
@rocksg ·
People will really know the value of money generated out of thin air after SMTs launch. They wanna see the real proof and its application in our life which really have some value.
👍  
properties (23)
authorrocksg
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t214346377z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 21:43:51
last_update2018-05-22 21:43:51
depth1
children0
last_payout2018-05-29 21:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation116,981,533,538,953
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,150,874
net_rshares0
author_curate_reward""
vote details (1)
@rose98734 ·
$0.03
Can you give us some hints as to what will be in Hardfork 20? Are you going to change the curation algorithm?
👍  , , , , , ,
properties (23)
authorrose98734
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t232932549z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 23:29:24
last_update2018-05-22 23:29:24
depth1
children1
last_payout2018-05-29 23:29:24
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation22,729,504,745,018
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,163,758
net_rshares7,404,026,896
author_curate_reward""
vote details (7)
@timcliff ·
https://steemit.com/steem/@steemitblog/hardfork-20-velocity-development-update
👍  
👎  
properties (23)
authortimcliff
permlinkre-rose98734-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t050528323z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/steem/@steemitblog/hardfork-20-velocity-development-update"],"app":"steemit/0.1"}
created2018-05-23 05:05:30
last_update2018-05-23 05:05:30
depth2
children0
last_payout2018-05-30 05:05:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation272,954,445,077,789
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,202,441
net_rshares-1,275,615,281
author_curate_reward""
vote details (2)
@sathyasankar ·
I don't understand anything. Maybe I should learn a lot of technical stuffs. Anyway, this post seems to have come up with some great resolutions. Best wishes to steemit inc.
👍  
properties (23)
authorsathyasankar
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194654192z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:47:00
last_update2018-05-22 19:47:00
depth1
children0
last_payout2018-05-29 19:47:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation25,037,930,470,038
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,135,081
net_rshares0
author_curate_reward""
vote details (1)
@scandinavianlife ·
$0.59
Steem blockchain is a protocol like Ethereum, Waves, EOS etc. 

Steem has 1,8 million feeless transactions per day, as much or more than ALL other blockchains combined, using only 0,15% of total capacity. 

Now, ethereum is transacting 800,000 transactions per day at 100% capacity - and is valued at $60 billion USD. It cant even handle a stupid cat game. 

Steem is only at $800 million USD. If it is valued half that of Ethereum we are talking 90-100$ Steem. Do you see the price of Steem today? It is not falling like all other cryptos. It's up 3%. It is probably waiting to go off the roof once there is a more bullish sentiment in the market. 

Steem has been overlooked and undervalued IMO. 

I am more bullish on Steem now than ever. 

Great to see all these projects being built and all the innovation on Steem. I'm very very happy to be investing long term in Steem!
👍  , , , , ,
properties (23)
authorscandinavianlife
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t102533262z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 10:25:33
last_update2018-05-24 10:25:33
depth1
children1
last_payout2018-05-31 10:25:33
cashout_time1969-12-31 23:59:59
total_payout_value0.575 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length876
author_reputation59,925,771,741,748
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,432,640
net_rshares157,321,617,409
author_curate_reward""
vote details (6)
@shortsegments ·
Very interesting statistics, thank you, I will use that information in future posts.
👍  
properties (23)
authorshortsegments
permlinkre-scandinavianlife-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t001309699z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-29 00:13:18
last_update2018-05-29 00:13:18
depth2
children0
last_payout2018-06-05 00:13:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation668,508,621,504,890
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,191,564
net_rshares0
author_curate_reward""
vote details (1)
@sebastian1903 ·
Hello friend, excellent publication, I liked it a lot. Count on me, I invite you to visit my profile and count on you too, Regards
👎  
properties (23)
authorsebastian1903
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t185124272z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 22:15:06
last_update2018-05-22 22:15:06
depth1
children1
last_payout2018-05-29 22:15:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation102,048,995,198
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,154,791
net_rshares-772,275,576
author_curate_reward""
vote details (1)
@sublimate ·
count on you? what? read the post, spammer!

i love to flag spam! 
thanks! :)
👍  
properties (23)
authorsublimate
permlinkre-sebastian1903-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t011952471z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 01:20:27
last_update2018-05-23 01:20:27
depth2
children0
last_payout2018-05-30 01:20:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation444,869,625,757
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,176,106
net_rshares0
author_curate_reward""
vote details (1)
@shibleehossain ·
help me for promoted
properties (22)
authorshibleehossain
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t181211097z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 18:12:30
last_update2018-05-24 18:12:30
depth1
children0
last_payout2018-05-31 18:12:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation-11,305,863,071
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,500,410
net_rshares0
@siachen ·
Feels good to know that great efforts on to democratize and build a platform that is willing to incentivize the content creator.
properties (22)
authorsiachen
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t032419009z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 03:24:00
last_update2018-05-24 03:24:00
depth1
children0
last_payout2018-05-31 03:24:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation172,479,354
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,381,015
net_rshares0
@steemero · (edited)
$0.34
What language should I learn to develop something on Steem platform?
👍  , , ,
properties (23)
authorsteemero
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t181535789z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 18:16:15
last_update2018-05-23 18:16:48
depth1
children2
last_payout2018-05-30 18:16:15
cashout_time1969-12-31 23:59:59
total_payout_value0.257 HBD
curator_payout_value0.080 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation20,511,836,500,265
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,311,554
net_rshares89,228,468,710
author_curate_reward""
vote details (4)
@timcliff ·
$0.14
You should start by checking out the devportal: https://developers.steem.io/
👍  , ,
properties (23)
authortimcliff
permlinkre-steemero-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t201134086z
categorysteem
json_metadata{"tags":["steem"],"links":["https://developers.steem.io/"],"app":"steemit/0.1"}
created2018-05-23 20:11:33
last_update2018-05-23 20:11:33
depth2
children1
last_payout2018-05-30 20:11:33
cashout_time1969-12-31 23:59:59
total_payout_value0.108 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation272,954,445,077,789
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,327,581
net_rshares37,695,279,781
author_curate_reward""
vote details (3)
@steemero ·
$0.08
thank you
👍  ,
properties (23)
authorsteemero
permlinkre-timcliff-re-steemero-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180525t043409737z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-25 04:34:12
last_update2018-05-25 04:34:12
depth3
children0
last_payout2018-06-01 04:34:12
cashout_time1969-12-31 23:59:59
total_payout_value0.062 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation20,511,836,500,265
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,573,357
net_rshares22,890,489,751
author_curate_reward""
vote details (2)
@steemnaira ·
>  but it is time to put it back on the front burner. We don’t have an exact date for the hardfork yet, but we are targeting early Q3 of 2018. More details will be shared on HF20 as the development progresses.

Good news!!! Communities like Steemnaira will be patintly waiting
👍  
properties (23)
authorsteemnaira
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194936488z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:49:57
last_update2018-05-22 19:49:57
depth1
children0
last_payout2018-05-29 19:49:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length276
author_reputation2,352,514,706,828
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,135,533
net_rshares0
author_curate_reward""
vote details (1)
@street.yoga ·
$0.03
>the foundation was laid for SMTs to integrate with the internal market, so that users can trade SMTs for STEEM and STEEM for SMTs.

Another question answerd for me. Also vesting of SMT's sounds interesting, token diversification may be a good thing and competition is good for business. Superlinear account based voting will win in the long run.
👍  ,
properties (23)
authorstreet.yoga
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t140506720z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 14:05:06
last_update2018-05-23 14:05:06
depth1
children0
last_payout2018-05-30 14:05:06
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length346
author_reputation2,738,791,069,636
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,272,195
net_rshares8,325,758,842
author_curate_reward""
vote details (2)
@stresskiller · (edited)
$0.09
with all the Phising scams going on on steemit i would have expected to see a 2FA option on the wallets by now to protect the users .
👍  , , ,
properties (23)
authorstresskiller
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t093834855z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 09:38:33
last_update2018-05-23 09:38:54
depth1
children0
last_payout2018-05-30 09:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.071 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation104,364,021,616,058
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id57,236,600
net_rshares23,346,980,259
author_curate_reward""
vote details (4)
@suhardi ·
a very useful post for me as a steemian who does not know what Steemit Blockchain is.
with the existence of this post provides knowledge for me some new things that I never knew before. thanks @steemitblog
👍  
properties (23)
authorsuhardi
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t214323551z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"}
created2018-05-22 21:43:36
last_update2018-05-22 21:43:36
depth1
children0
last_payout2018-05-29 21:43:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length205
author_reputation480,452,456,129
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,150,852
net_rshares0
author_curate_reward""
vote details (1)
@surpassinggoogle ·
this bottom portion practically played out and summarized and simplified the smt whitepaper among other nice things. the ram for history drastically reduced is awesome too as I am longing to have a full node for steemgigs.org 
it's playing out. and a dex, how awesome? imagining not going out of steem at all, is awesome. there is a kind of safety, even homely feeling, if one rarely has to go out of steem, when there are tons of token with potential value and perhaps even pegged smts etc. I have one question though, will smts also be able to appear on places like coinmarketcap or its likes?
👍  
properties (23)
authorsurpassinggoogle
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t094535545z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 09:45:39
last_update2018-05-23 09:45:39
depth1
children5
last_payout2018-05-30 09:45:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length595
author_reputation527,661,560,108,742
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id57,237,484
net_rshares0
author_curate_reward""
vote details (1)
@andrarchy ·
That's actually a great question and the answer is "yes." Coinmarkecap just lists the prices from exchanges, but exchanges will be free to feature any token on Steem just as they now feature Steem and SBD. Here's the really cool part though: if the exchange is already running a Steem exchange node, they will already have access to all the tokens that are featured on it. That means that when an SMT creator is trying to get their token listed on exchanges, they can say to any exchange that already has Steem, "You don't even need to set up a dedicated node for our token," because they're already running the Steem node! In short, it will actually be much easier for SMTs to get onto exchanges because they will be able to "piggyback" off of Steem's nodes!
👍  
properties (23)
authorandrarchy
permlinkre-surpassinggoogle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t164015543z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 16:40:15
last_update2018-05-23 16:40:15
depth2
children1
last_payout2018-05-30 16:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length759
author_reputation230,168,201,522,782
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id57,297,133
net_rshares0
author_curate_reward""
vote details (1)
@surpassinggoogle · (edited)
hahaha really beautiful and you know the amazing thing bro, there was excitement resounding from your undertone. you have been awesome since day one. you know I did a 9 hour talk on steemgigs discord last weekend (the talks happen weekly)  and I was asked about smt and I told them what I envisioned because looking at it closely, steem does have a working dex and upon reaching this post, my envisionnment as I related to them just played out. my smt will be teardrops smt. so I will ask one or two more questions and so thank you for the first answer. I really plan on 3 steem-based interfaces this year and the teardrops token spanning across all three. do you think that is possible. the way I see it, it looks possible as the model can follow steem's behavior where desired etc but I just want to clarify. also with regards to communities (hivemind) and its launch, when I was asked last weekend, I told them that I do see smt very closely related to hivemind or communities so to speak. is that the case. cos smt is bringing about capabilities to grow communities and spur the creation of new ones like ico, growth etc so is smt tied to hivemind?
👍  
properties (23)
authorsurpassinggoogle
permlinkre-andrarchy-re-surpassinggoogle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t215310354z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 21:53:12
last_update2018-05-23 21:57:00
depth3
children0
last_payout2018-05-30 21:53:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,152
author_reputation527,661,560,108,742
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id57,340,573
net_rshares0
author_curate_reward""
vote details (1)
@steemero ·
$0.10
I came to know about steemgigs.org through your comment. Is the websites already started its operations? Thank you for the great platform.
👍  , ,
properties (23)
authorsteemero
permlinkre-surpassinggoogle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t182150916z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 18:22:30
last_update2018-05-23 18:22:30
depth2
children2
last_payout2018-05-30 18:22:30
cashout_time1969-12-31 23:59:59
total_payout_value0.078 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation20,511,836,500,265
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,312,459
net_rshares26,409,374,622
author_curate_reward""
vote details (3)
@surpassinggoogle ·
$0.07
it has already been tested and used by some thousands (steemians) but it is still underworks. it covers freelancing marketplace but has paradigms that tries to explore other facets of content discovery and curation in relation to steem and also exploring other facets of the reputation system. we also having knowledge-bank for steemians incentivize learning and incite experts to contribute specialized knowledge, expertise etc so that everyone can have shot at becoming dream-builders (steemgiggers). basically, the aim is to build every noble dream. you will notice that there are also free gigs, cos we want to incentivize that too by virtue of the beauty steem offers. plus, we want to keep it evergreen as gigs can really have a halt as there is only a few gigs one can offer. so we are going to keep testimonialstestimonial, reviews etc full-blown posts that are curatable and even adds a dimesion to the reputation paradigm of steem. a core model is serving the search engines daily with thousands of posts, prompting steem and its beauty organically in new ways. steemgigs is also the sandbox for 3 other projects. teardrops, surpassinggoogle and the more recent ULOG or you know ulogging where u is you. the tag bore 2029 posts and 6k plus comments in the first 6 days. so steemgigs.org will be the slow one but when it is ready, the other two or 3 steem-based interfaces will happen pretty fast. we are trying put specialized editors too. basically, steemgigs.org development has been a bit slow but it has been in use still. a core part of what will keep steemgigs evergreen use-wise, while incentivizing learning and adding real-life paradigm or (mining the substance of the human) so that each steemgigger is not only talent but with character and reputable; is our knowledge-bank here: https://steemgigs.org/surpassing-google
when it is all fully functional, there will be promotion for it. it the meantime, the steemgigs community is growing as we are around 5k on the discord and many gigs have taken place successfully in its many months since it started as a tag. my witness is also called "steemgigs" to rep community. the overall paradigm for steemgigs is "everyone has something to offer". so there will be an area for non-experts to offer perhaps free or lower rate gigs to hone their expertise on the go. these will be known to steemiana looking to build their noble dreams. on steemgigs we will make sure to know reputable steemgiggers in every possible niche and we will be proactive in directing or linking up steemians who do custom requests to reputable steemgiggers or dreambuilders
👍  , ,
properties (23)
authorsurpassinggoogle
permlinkre-steemero-re-surpassinggoogle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t221619957z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemgigs.org/surpassing-google"],"app":"steemit/0.1"}
created2018-05-23 22:16:24
last_update2018-05-23 22:16:24
depth3
children1
last_payout2018-05-30 22:16:24
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,612
author_reputation527,661,560,108,742
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id57,343,621
net_rshares17,505,644,849
author_curate_reward""
vote details (3)
@sutter ·
Looking forward to StatsD. It's always fun to view statistical data. Looks like the Steemit team has been hard at work! The community can only benefit with hard working professionals accomplishing more goals from week to week! Thanks again for creating Steemit! I really enjoy this website and the engagement with fellow Steemians.
👍  , , ,
properties (23)
authorsutter
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t001202630z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 00:12:03
last_update2018-05-24 00:12:03
depth1
children0
last_payout2018-05-31 00:12:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length331
author_reputation4,455,302,617,675
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,357,779
net_rshares850,254,821
author_curate_reward""
vote details (4)
@svamiva ·
Could it be made possible to create "internal SMT markets" ?
I mean, for example I create tokens X,Y and Z.
While token X could be traded for Steem and SBD, tokens Y and Z could be traded only for token X ?
👍  
properties (23)
authorsvamiva
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t083443383z
categorysteem
json_metadata{"tags":["steem"],"community":"busy","app":"busy/2.4.0"}
created2018-05-23 08:34:48
last_update2018-05-23 08:34:48
depth1
children1
last_payout2018-05-30 08:34:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation9,635,062,598,275
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,228,966
net_rshares0
author_curate_reward""
vote details (1)
@andrarchy ·
I believe the answer is "no." On the internal exchange, STEEM will be the base currency.
👍  
properties (23)
authorandrarchy
permlinkre-svamiva-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t164142966z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 16:41:42
last_update2018-05-23 16:41:42
depth2
children0
last_payout2018-05-30 16:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation230,168,201,522,782
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id57,297,362
net_rshares0
author_curate_reward""
vote details (1)
@tarekadam ·
Thank you for the update, very much appreciated!
👍  
properties (23)
authortarekadam
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t212030545z
categorysteem
json_metadata{"tags":["steem"],"community":"busy","app":"busy/2.4.0"}
created2018-05-22 21:20:30
last_update2018-05-22 21:20:30
depth1
children0
last_payout2018-05-29 21:20:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation50,131,776,387,207
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,147,989
net_rshares0
author_curate_reward""
vote details (1)
@therealwolf ·
$0.03
That's amazing progress guys!!

Especially this:

![](https://steemitimages.com/DQmcQLMxq9tgoG2gxTRj4GRAug1J3j4anHMTzJXjZVz7o96/image.png)

I wanted to set up a RPC recently but @someguy123 warned me beforehand that 512 GB RAM would be sufficient for only a few more weeks.

But now ...

https://media.giphy.com/media/l0HlFZ3c4NENSLQRi/giphy.gif
👍  , ,
properties (23)
authortherealwolf
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193844934z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"image":["https://steemitimages.com/DQmcQLMxq9tgoG2gxTRj4GRAug1J3j4anHMTzJXjZVz7o96/image.png","https://media.giphy.com/media/l0HlFZ3c4NENSLQRi/giphy.gif"],"app":"steemit/0.1"}
created2018-05-22 19:38:45
last_update2018-05-22 19:38:45
depth1
children8
last_payout2018-05-29 19:38:45
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation581,207,180,122,024
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,133,953
net_rshares7,886,467,070
author_curate_reward""
vote details (3)
@akintunde ·
Waoh! Your comment sort of made everything clearer to me. This means less server bills. Cool!!
👍  
properties (23)
authorakintunde
permlinkre-therealwolf-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t103321716z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 10:33:24
last_update2018-05-23 10:33:24
depth2
children0
last_payout2018-05-30 10:33:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation16,541,536,778,040
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,243,146
net_rshares0
author_curate_reward""
vote details (1)
@phoneinf ·
Curious when we will see phones with 32GB of RAM. I mean in theory you would be able to run a server on that right? But it may take some time to get there since I suspect that it draws a lot of electricity.
👍  
properties (23)
authorphoneinf
permlinkre-therealwolf-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t200305722z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 20:03:06
last_update2018-05-22 20:03:06
depth2
children6
last_payout2018-05-29 20:03:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation201,286,258,274,191
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,137,392
net_rshares0
author_curate_reward""
vote details (1)
@sircork · (edited)
$0.04
drive space on static storage wont last for the rewrites very long. nor easily hold the blockchain on telephony devices for now, its possible to frankenstein up an android to do it probably, but not wise, yet... then there's the bandwidth if not wi-fing it. Bet we can within two years tho. A small laptop could do it right now.

If there was a cell-net protocol to distribute processing on many cell phones you might be onto something, that I believe is done with malicious mining scripts now.
👍  , ,
properties (23)
authorsircork
permlinkre-phoneinf-re-therealwolf-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t222425584z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 22:24:24
last_update2018-05-22 22:25:12
depth3
children5
last_payout2018-05-29 22:24:24
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length494
author_reputation40,884,085,696,666
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,156,003
net_rshares10,841,592,546
author_curate_reward""
vote details (3)
@tibfox ·
Thanks for all your work and transparency ! You are such a great team (if not the best) and I am rly happy to be here :) Peace !
👍  
properties (23)
authortibfox
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194711016z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:47:12
last_update2018-05-22 19:47:12
depth1
children0
last_payout2018-05-29 19:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation191,586,727,867,779
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,135,115
net_rshares0
author_curate_reward""
vote details (1)
@tipu ·
<p><strong>Hi @steemitblog! You have received 0.3 SBD tip from @cardboard!</strong></p><p>Earn daily income on steem: <a href="https://steemit.com/steem/@tipu/tipu-is-looking-for-steem-power-delegators-pays-out-100-of-profit-50-of-curation-rewards-to-investors" rel="noopener">@tipU distributes 100% profit + 60% curation rewards to all investors</a>.</p>
👍  
properties (23)
authortipu
permlinkre-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t201332
categorysteem
json_metadata""
created2018-05-22 20:13:45
last_update2018-05-22 20:13:45
depth1
children0
last_payout2018-05-29 20:13:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length355
author_reputation55,904,946,846,198
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,138,976
net_rshares0
author_curate_reward""
vote details (1)
@triablot ·
Why was you Payout denied?   Just curious @steemitblog
👍  
properties (23)
authortriablot
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t204825892z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"}
created2018-05-22 20:49:39
last_update2018-05-22 20:49:39
depth1
children2
last_payout2018-05-29 20:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation9,478,325,333,003
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,143,834
net_rshares1,034,777,435
author_curate_reward""
vote details (1)
@andrarchy ·
This is the Official Account for Steemit Inc. and we prefer to leave as much of the Reward Pool as possible for Steemians! That's why we don't accept rewards on our posts :)

Content Director, Steemit
👍  
properties (23)
authorandrarchy
permlinkre-triablot-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t214023483z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 21:40:24
last_update2018-05-22 21:40:24
depth2
children1
last_payout2018-05-29 21:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation230,168,201,522,782
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id57,150,479
net_rshares95,925,654,356
author_curate_reward""
vote details (1)
@triablot ·
Ok, good to know.  Following!   Thanks....
properties (22)
authortriablot
permlinkre-andrarchy-re-triablot-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t221234198z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 22:13:48
last_update2018-05-22 22:13:48
depth3
children0
last_payout2018-05-29 22:13:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation9,478,325,333,003
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,154,628
net_rshares0
@umutkarakus ·
Yeeey update!!
👍  
properties (23)
authorumutkarakus
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190818362z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:08:21
last_update2018-05-22 19:08:21
depth1
children0
last_payout2018-05-29 19:08:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation6,791,921,573,199
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,129,518
net_rshares0
author_curate_reward""
vote details (1)
@valth ·
$0.06
Thanks for the update! I'm glad to hear that things are getting closer to being finished, and like everyone else I'm really excited for SMTs now. Really looking forward to testing it out on Forerunner when it's ready!
👍  , , , ,
properties (23)
authorvalth
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t203809882z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 20:38:12
last_update2018-05-22 20:38:12
depth1
children0
last_payout2018-05-29 20:38:12
cashout_time1969-12-31 23:59:59
total_payout_value0.059 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation74,218,254,347,006
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,142,410
net_rshares15,212,854,426
author_curate_reward""
vote details (5)
@valued-customer ·
I very much appreciate the update!  I'm looking forward to the revolution that Steemit has enabled being exported into the WWW =D.  

Thanks!
properties (22)
authorvalued-customer
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t061753196z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 06:18:00
last_update2018-05-24 06:18:00
depth1
children0
last_payout2018-05-31 06:18:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation354,315,926,679,123
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,401,934
net_rshares0
@warpedpoetic ·
I am just excited about the SMT. To have access to tokens besides steem, will definitely make communities much more interesting and engaging. 

I may not have understanding of the techie stuff dropped here but I see progress and I am happy to be a part of it. I hope these plans and developments bring about greater things for the platform.
👍  
properties (23)
authorwarpedpoetic
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t092535085z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 09:24:21
last_update2018-05-23 09:24:21
depth1
children0
last_payout2018-05-30 09:24:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length340
author_reputation109,516,835,772,032
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id57,234,813
net_rshares0
author_curate_reward""
vote details (1)
@whatsup ·
Thank you very much for the updates on what is happening at SteemIt, Inc!  Exciting things.  I think everyone feels better when we have an idea of what is happening!
👍  
properties (23)
authorwhatsup
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t054930932z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 05:49:33
last_update2018-05-23 05:49:33
depth1
children0
last_payout2018-05-30 05:49:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation519,839,651,581,670
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,207,959
net_rshares0
author_curate_reward""
vote details (1)
@yabapmatt ·
$4.47
This is a fantastic update...my head feels like it's exploding trying to process all of this and imagining all of the possibilities that will soon be available on the Steem platform!

Once appbase and rocksDB are at a good point (which it sounds like they might already be at?) I would love to see a post or guide about the best way to set up a full RPC node/cluster using these new technologies and what type of hardware requirements are necessary.

I think it's a big problem right now that there are so few full RPC nodes available and it's getting prohibitively expensive and time consuming to set up new ones. Obviously these changes are aimed at changing that (which is awesome!), and I think it would also be good to have a clear guide on how to set a full RPC node up, what the various options are, etc.

Probably a good thing for the developer portal I guess (which I also love btw!)

Anyway, I could not be more excited about all of this and the future of the Steem blockchain. Keep up the great work!
👍  , , , , , , , , , , , , , , , , , ,
👎  , , , , , , , ,
properties (23)
authoryabapmatt
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t192906559z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:29:06
last_update2018-05-22 19:29:06
depth1
children35
last_payout2018-05-29 19:29:06
cashout_time1969-12-31 23:59:59
total_payout_value3.412 HBD
curator_payout_value1.055 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,011
author_reputation160,224,638,135,630
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,132,544
net_rshares1,110,512,356,999
author_curate_reward""
vote details (28)
@bluefoxy · (edited)
I like the sound of reduced latency for use with the use of rocksdb :D. Will there be additional recovery options for our keys in HF20? And what is to be expected when this version is rolled out? Thank you for all the hard work of improving this platform. Cheers! @STEEMITBLOG
👍  ,
properties (23)
authorbluefoxy
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t001110598z
categorysteem
json_metadata{"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"}
created2018-05-24 00:11:12
last_update2018-05-24 00:12:09
depth2
children0
last_payout2018-05-31 00:11:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length276
author_reputation184,859,463,331
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,357,663
net_rshares113,466,743
author_curate_reward""
vote details (2)
@cambridgeport90 ·
same here! I want to see more languages support officially with the API; I'm a .NET type of person, and some of my goals include making Steem integrate with [DNN CMS](htts://dnnsoftware.com) via a module.
👍  
properties (23)
authorcambridgeport90
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180602t211641973z
categorysteem
json_metadata{"tags":["steem"],"links":["htts://dnnsoftware.com"],"app":"steemit/0.1"}
created2018-06-02 21:19:21
last_update2018-06-02 21:19:21
depth2
children4
last_payout2018-06-09 21:19:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation1,401,167,981,030
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,962,243
net_rshares0
author_curate_reward""
vote details (1)
@moisesmcardona ·
I'm also a .NET developer. What I did was setup some Python stuff with DJango using the library and then I write my software in .NET calling the API 🙂
👍  ,
properties (23)
authormoisesmcardona
permlinkre-cambridgeport90-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180607t125949751z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-06-07 12:59:51
last_update2018-06-07 12:59:51
depth3
children3
last_payout2018-06-14 12:59:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation30,544,308,668,193
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,687,098
net_rshares607,829,733
author_curate_reward""
vote details (2)
@clumsysilverdad ·
If I could understand more.... my head would explode too.
👍  , ,
properties (23)
authorclumsysilverdad
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193736023z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:37:36
last_update2018-05-22 19:37:36
depth2
children6
last_payout2018-05-29 19:37:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation28,166,630,869,767
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,133,787
net_rshares1,093,320,351
author_curate_reward""
vote details (3)
@berniesanders ·
$0.35
There’s nothing to understand, @yabapmatt is just a fanboy who will jerk off any moron with promises.
👍  , , , , , ,
👎  , , , , , , , , , , , ,
properties (23)
authorberniesanders
permlinkre-clumsysilverdad-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t195845208z
categorysteem
json_metadata{"tags":["steem"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-05-22 19:58:45
last_update2018-05-22 19:58:45
depth3
children5
last_payout2018-05-29 19:58:45
cashout_time1969-12-31 23:59:59
total_payout_value0.270 HBD
curator_payout_value0.077 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation600,251,775,828,524
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,136,776
net_rshares86,968,921,529
author_curate_reward""
vote details (20)
@donkeypong ·
$0.08
Yes, I agree. It's one of their most successful summaries and it demonstrates a great effort to communicate the progress to us.
👍  , , ,
properties (23)
authordonkeypong
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t002850892z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 00:28:54
last_update2018-05-23 00:28:54
depth2
children0
last_payout2018-05-30 00:28:54
cashout_time1969-12-31 23:59:59
total_payout_value0.063 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation431,667,636,679,304
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,170,287
net_rshares19,473,624,874
author_curate_reward""
vote details (4)
@doon ·
I am feeling the same way. Amazing update guys, lots of great and reassuring items being presented. I am extremely excited about the future opportunities the Steem platform will provide, especially as it supports SMTs and scales out to support all us app devs!
👍  
properties (23)
authordoon
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t223314304z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 22:33:12
last_update2018-05-22 22:33:12
depth2
children0
last_payout2018-05-29 22:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length260
author_reputation543,590,246,837
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id57,157,083
net_rshares0
author_curate_reward""
vote details (1)
@neddykelly ·
I'm learning but it all looks interesting
👍  
properties (23)
authorneddykelly
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t204446864z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 20:44:48
last_update2018-05-22 20:44:48
depth2
children1
last_payout2018-05-29 20:44:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation5,509,490,288,180
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,143,222
net_rshares0
author_curate_reward""
vote details (1)
@nathanmars ·
Good luck with your learning :)
👍  
properties (23)
authornathanmars
permlinkre-neddykelly-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t063149268z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 06:31:48
last_update2018-05-23 06:31:48
depth3
children0
last_payout2018-05-30 06:31:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation336,354,946,115,368
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,213,286
net_rshares0
author_curate_reward""
vote details (1)
@omitaylor ·
$0.07
Agreed @yabapmatt @sircork it would be helpful if clear documentation were available for setting up full RPC nodes, as well as, ways to make them more affordable and how to manage them well. I've been chugging along trying to learn but there's so much information (much outdated) that its confusing and overwhelming.
👍  ,
properties (23)
authoromitaylor
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t113729524z
categorysteem
json_metadata{"tags":["steem"],"users":["yabapmatt","sircork"],"app":"steemit/0.1"}
created2018-05-23 11:37:33
last_update2018-05-23 11:37:33
depth2
children5
last_payout2018-05-30 11:37:33
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length316
author_reputation3,986,872,420,584
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,250,961
net_rshares17,430,129,445
author_curate_reward""
vote details (2)
@moisesmcardona ·
What I'd like to know is how to setup jussi to redirect the API calls to different nodes. That would help me load-balance between different machines 🙂
👍  
properties (23)
authormoisesmcardona
permlinkre-omitaylor-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180607t125816702z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-06-07 12:58:18
last_update2018-06-07 12:58:18
depth3
children0
last_payout2018-06-14 12:58:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation30,544,308,668,193
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,686,890
net_rshares621,188,628
author_curate_reward""
vote details (1)
@sircork ·
$1.00
Welcome to the game
👍  ,
properties (23)
authorsircork
permlinkre-omitaylor-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t002759005z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-29 00:27:57
last_update2018-05-29 00:27:57
depth3
children3
last_payout2018-06-05 00:27:57
cashout_time1969-12-31 23:59:59
total_payout_value0.750 HBD
curator_payout_value0.246 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation40,884,085,696,666
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,193,081
net_rshares246,188,773,423
author_curate_reward""
vote details (2)
@phoneinf ·
I'm curious why so many nodes are offline do you know? It looks a bit strange. For my logical brain I would expect that they should all be up and running. So would you be able to run your own Steemit server to keep the page up or is it only witnesses that are allowed to do that?
👍  ,
properties (23)
authorphoneinf
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t195537416z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 19:55:36
last_update2018-05-22 19:55:36
depth2
children7
last_payout2018-05-29 19:55:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length279
author_reputation201,286,258,274,191
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,136,318
net_rshares452,653,777
author_curate_reward""
vote details (2)
@schattenjaeger ·
Because no one gives a shit.
👍  
properties (23)
authorschattenjaeger
permlinkre-phoneinf-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t140954245z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 14:09:54
last_update2018-05-23 14:09:54
depth3
children1
last_payout2018-05-30 14:09:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation132,607,893,972,093
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,272,978
net_rshares0
author_curate_reward""
vote details (1)
@timcliff ·
$0.48
Anyone can run their own Steem blockchain instances as well as condenser (the code that runs steemit.com).

There is a cost to running the servers though.
👍  , , , , ,
👎  
properties (23)
authortimcliff
permlinkre-phoneinf-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t200624910z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 20:06:24
last_update2018-05-22 20:06:24
depth3
children2
last_payout2018-05-29 20:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.375 HBD
curator_payout_value0.105 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation272,954,445,077,789
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,137,894
net_rshares119,653,884,866
author_curate_reward""
vote details (7)
@yabapmatt ·
What nodes are you talking about exactly? There is a list of steem full nodes here: http://geo.steem.pl/ and most of them are up.
👍  
properties (23)
authoryabapmatt
permlinkre-phoneinf-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t200144098z
categorysteem
json_metadata{"tags":["steem"],"links":["http://geo.steem.pl/"],"app":"steemit/0.1"}
created2018-05-22 20:01:42
last_update2018-05-22 20:01:42
depth3
children1
last_payout2018-05-29 20:01:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation160,224,638,135,630
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,137,185
net_rshares0
author_curate_reward""
vote details (1)
@shortsegments ·
I agree this was a fantastic update about many things we were waiting to here more news about. This is very reassuring that Steemit continues to improve its infrastructure so transactions and other functions will proceed without delays or incidents. The steady march towards completion of the SMT is also great news as this feature promises both greater exposure of Steemit and greater exposure of everyday businesses to the blockchain and how it can help them survive to movement from brick & mortar shops to the internet. Bravo
👍  
properties (23)
authorshortsegments
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t000655560z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-29 00:07:03
last_update2018-05-29 00:07:03
depth2
children0
last_payout2018-06-05 00:07:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length529
author_reputation668,508,621,504,890
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,190,929
net_rshares0
author_curate_reward""
vote details (1)
@sircork ·
$0.98
Me too for new docs on building and selecting modules for a full or partial rpc node install, with the rocksdb build and lowered ram utilization configs and optimized disc strategies and all that. Get us to where we can get nodes online affordably, at lower witness levels and we will, and that will take a lot of pressure off the plumbing here.
👍  , , , , , ,
properties (23)
authorsircork
permlinkre-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t221935982z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-22 22:19:33
last_update2018-05-22 22:19:33
depth2
children2
last_payout2018-05-29 22:19:33
cashout_time1969-12-31 23:59:59
total_payout_value0.741 HBD
curator_payout_value0.240 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation40,884,085,696,666
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,155,373
net_rshares244,787,309,912
author_curate_reward""
vote details (7)
@mahbub6213 ·
Me too
👍  
properties (23)
authormahbub6213
permlinkre-sircork-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t094717753z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 09:47:21
last_update2018-05-23 09:47:21
depth3
children0
last_payout2018-05-30 09:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation838,513,332
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,237,672
net_rshares0
author_curate_reward""
vote details (1)
@shortsegments ·
I agree that these changes bring great capabilities which will be useful as Steemit continues to grow and SMT become more common.
👍  ,
properties (23)
authorshortsegments
permlinkre-sircork-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t000241015z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-29 00:02:48
last_update2018-05-29 00:02:48
depth3
children0
last_payout2018-06-05 00:02:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation668,508,621,504,890
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,190,558
net_rshares0
author_curate_reward""
vote details (2)
@youraverageguy ·
At what point do you step in and start to correct the spread between SBD and Steem? 1 SBD is suppose to be the equivalent of $1 (USD) of Steem, if I understand it correctly. Yet it is currently at roughly $0.50 of Steem.
👍  , ,
properties (23)
authoryouraverageguy
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t005121274z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 00:51:21
last_update2018-05-23 00:51:21
depth1
children1
last_payout2018-05-30 00:51:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length220
author_reputation48,846,679,188
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id57,172,774
net_rshares1,330,584,158
author_curate_reward""
vote details (3)
@timcliff ·
There have been a lot of discussions on this, but there is not yet consensus on what changes to make.
👍  
👎  
properties (23)
authortimcliff
permlinkre-youraverageguy-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t050256312z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-23 05:02:57
last_update2018-05-23 05:02:57
depth2
children0
last_payout2018-05-30 05:02:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation272,954,445,077,789
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,202,119
net_rshares-1,230,057,592
author_curate_reward""
vote details (2)
@zakia ·
$0.14
It is very glad to know that steemit is developing. And your team always do it with success. Thanks steemitblog.
👍  ,
properties (23)
authorzakia
permlinkre-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t174731967z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-24 17:48:03
last_update2018-05-24 17:48:03
depth1
children0
last_payout2018-05-31 17:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.106 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation134,657,668,551,116
root_title"Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,496,824
net_rshares38,297,846,714
author_curate_reward""
vote details (2)