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_
author | steemitblog |
---|---|
permlink | steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more |
category | steem |
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"} |
created | 2018-05-22 18:59:33 |
last_update | 2018-05-22 18:59:33 |
depth | 0 |
children | 183 |
last_payout | 2018-05-29 18:59:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12,793 |
author_reputation | 332,472,558,821,177 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 57,128,288 |
net_rshares | 145,532,524,033,121 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten1 | 0 | 38,467,474,261 | 100% | ||
analisa | 0 | 220,862,221,252 | 5% | ||
berniesanders | 0 | -218,868,407,169 | -100% | ||
blocktrades | 0 | 31,882,079,468,210 | 50% | ||
proskynneo | 0 | 33,512,664,469,060 | 100% | ||
ned | 0 | 76,796,547,333,023 | 100% | ||
wackou | 0 | 3,204,267,995,844 | 70% | ||
nextgencrypto | 0 | -1,879,194,605,046 | -100% | ||
boy | 0 | 63,816,358 | 100% | ||
bue | 0 | 28,099,048,999 | 100% | ||
steemservices | 0 | -237,865,453,245 | -100% | ||
donkeypong | 0 | 763,758,539,417 | 5% | ||
noisy | 0 | 1,546,306,410,550 | 100% | ||
morning | 0 | 1,193,428,602,976 | 100% | ||
nico-dounavis | 0 | 4,570,047,082 | 100% | ||
steemitblog | 0 | 1,870,813,909,383 | 100% | ||
dan-atstarlite | 0 | 598,327,525,621 | 100% | ||
oaldamster | 0 | 373,282,306 | 1% | ||
kevinwong | 0 | 77,160,651,632 | 1.15% | ||
murh | 0 | 3,705,476,720 | 100% | ||
gniewomir-sotel | 0 | 2,914,648,092 | 100% | ||
the-alien | 0 | 101,842,900,229 | 100% | ||
hedge-x | 0 | 216,830,450,723 | 100% | ||
juanmiguelsalas | 0 | 10,100,703,072 | 14% | ||
knopki | 0 | 171,130,598 | 100% | ||
stealthtrader | 0 | 14,780,886,836 | 100% | ||
ausbitbank | 0 | 2,473,023,930,437 | 42% | ||
vortac | 0 | 3,813,829,244,937 | 100% | ||
thelindvall | 0 | 16,308,093,105 | 100% | ||
igster | 0 | 2,130,066,346 | 1% | ||
meesterboom | 0 | 11,155,808,506 | 1% | ||
karenmckersie | 0 | 4,696,742,355 | 23% | ||
inertia | 0 | 2,169,956,983,372 | 100% | ||
geronimo | 0 | 3,875,530,103 | 100% | ||
bustillo | 0 | 5,326,667,717 | 100% | ||
james212 | 0 | 406,151,654 | 100% | ||
rfresh | 0 | 5,762,630,069 | 100% | ||
arconite | 0 | 603,264,489 | 0.57% | ||
alsprinting | 0 | 7,243,635,592 | 50% | ||
gavinthegreat | 0 | 1,408,726,290 | 100% | ||
brianphobos | 0 | 9,022,264,987 | 6% | ||
remlaps | 0 | 15,056,109,020 | 100% | ||
vandeberg | 0 | 4,028,276,975,382 | 100% | ||
timcliff | 0 | 596,353,046,700 | 84% | ||
gammagooblin | 0 | 30,771,502,270 | 100% | ||
jsantana | 0 | 3,993,244,644 | 100% | ||
protegeaa | 0 | 251,015,661,258 | 100% | ||
steevc | 0 | 16,667,905,085 | 6% | ||
albensilverberg | 0 | 101,140,756 | 100% | ||
hilarski | 0 | 5,087,636,949 | 6% | ||
steemitpatina | 0 | 23,384,515,249 | 80% | ||
themonetaryfew | 0 | 108,715,741,604 | 100% | ||
etcmike | 0 | 53,039,620,186 | 25% | ||
stephenkendal | 0 | 620,080,854,495 | 100% | ||
alaqrab | 0 | 52,318,377,116 | 100% | ||
wesleybos | 0 | 0 | 100% | ||
thecyclist | 0 | -2,017,512,256,911 | -100% | ||
leunghakkwun | 0 | 162,254,495 | 100% | ||
unblogd | 0 | 2,394,751,129 | 100% | ||
abh12345 | 0 | 3,428,572,131 | 1% | ||
whatsup | 0 | 169,500,197,537 | 56% | ||
tarekadam | 0 | 624,298,458,277 | 75% | ||
dylanhobalart | 0 | 326,898,680 | 4% | ||
jenkinrocket | 0 | 8,514,239,075 | 10% | ||
tomino | 0 | 531,179,655 | 100% | ||
blhz | 0 | 19,635,111,361 | 100% | ||
thejohalfiles | 0 | 269,982,774,490 | 100% | ||
nigelmarkdias | 0 | 1,498,659,110 | 1% | ||
ntnhoa1981 | 0 | 810,179,599 | 100% | ||
phuongthao | 0 | 79,232,615 | 100% | ||
engagement | 0 | -16,221,333,997,483 | -100% | ||
cardboard | 0 | 252,949,542 | 100% | ||
eddiekollar | 0 | 1,838,624,084 | 100% | ||
josemanuelparri | 0 | 177,238,456 | 100% | ||
iflagtrash | 0 | -1,272,638,842,408 | -100% | ||
sisterray | 0 | 349,316,310 | 100% | ||
rr2qie | 0 | 1,450,523,097 | 100% | ||
yougotflagged | 0 | -107,069,107,702 | -100% | ||
ackza | 0 | 2,025,214,747 | 1% | ||
elviento | 0 | 228,560,667 | 1% | ||
elmetro | 0 | 14,936,698,138 | 100% | ||
melip | 0 | 25,987,307,601 | 25% | ||
selected | 0 | 8,657,584,641 | 100% | ||
frieswiththat | 0 | 476,965,977 | 15% | ||
fityan | 0 | 98,647,372 | 100% | ||
freebornsociety | 0 | 446,768,020 | 1% | ||
brahma | 0 | 31,207,225,985 | 10% | ||
michael-fagundes | 0 | 56,107,539,750 | 100% | ||
tocox | 0 | 4,320,310,546 | 100% | ||
ylgv | 0 | 1,110,184,072 | 30% | ||
schlees | 0 | 30,276,594,820 | 25% | ||
yeaho | 0 | 940,585,867 | 25% | ||
opinizeunltd | 0 | 19,728,677,215 | 100% | ||
steemchiller | 0 | 127,305,418,525 | 100% | ||
woosungchoi | 0 | 1,945,890,756 | 100% | ||
andybets | 0 | 20,786,494,651 | 100% | ||
sekhmet | 0 | 111,323,518,123 | 100% | ||
drag33 | 0 | 41,671,496,194 | 100% | ||
mblain | 0 | 152,974,715 | 25% | ||
mys | 0 | 1,005,035,272 | 1% | ||
jakipatryk | 0 | 50,997,119,385 | 100% | ||
diogogomes | 0 | 190,999,791 | 70% | ||
tytran | 0 | 98,213,340,329 | 100% | ||
helo | 0 | 24,370,948,062 | 100% | ||
shawshank-steem | 0 | 177,925,972 | 100% | ||
petal-power | 0 | 563,636,713 | 100% | ||
mahdiyari | 0 | 104,288,555,097 | 100% | ||
boyelleq | 0 | 4,008,892,073 | 100% | ||
mangoose | 0 | 268,571,775 | 100% | ||
dandesign86 | 0 | 15,136,874,361 | 20% | ||
sensation | 0 | 125,403,383 | 100% | ||
ragepeanut | 0 | 33,513,610,275 | 100% | ||
nainus | 0 | 235,153,106 | 100% | ||
thedelegator | 0 | -1,085,179,126,928 | -100% | ||
maitland | 0 | 0 | 0% | ||
funnyfaces | 0 | 2,733,382,337 | 100% | ||
steemreports | 0 | 14,259,946,461 | 100% | ||
jpederson96 | 0 | 2,887,673,579 | 100% | ||
hope-on-fire | 0 | 1,572,383,436 | 100% | ||
ankarlie | 0 | 2,199,737,015 | 100% | ||
highme | 0 | 2,724,855,784 | 100% | ||
yanes94 | 0 | 18,565,552,127 | 100% | ||
agawolf | 0 | 8,016,065,108 | 1% | ||
nafazul | 0 | 896,115,499 | 100% | ||
stanhopeofficial | 0 | 47,547,047,563 | 100% | ||
bosveldtzaneen | 0 | 0 | 100% | ||
leotrap | 0 | 20,940,975,356 | 50% | ||
vimukthi | 0 | 1,016,275,497 | 1% | ||
sharelovenothate | 0 | 464,392,194 | 25% | ||
faustofraser | 0 | 211,746,950 | 10% | ||
plainoldme | 0 | 32,086,468,279 | 100% | ||
koltregaskes | 0 | 599,305,659 | 100% | ||
my451r | 0 | 1,446,252,352 | 100% | ||
elenasteem | 0 | 807,695,280 | 100% | ||
gray00 | 0 | 2,081,080,334 | 100% | ||
bahagia-arbi | 0 | 3,997,488,701 | 100% | ||
ponpase | 0 | 643,853,200 | 10.4% | ||
salim001 | 0 | 387,860,345 | 100% | ||
nurhayati | 0 | 50,051,858 | 0.57% | ||
nako1337 | 0 | 152,651,894 | 25% | ||
capx | 0 | 152,821,018 | 25% | ||
travel-ok | 0 | 2,669,371,245 | 100% | ||
eastmael | 0 | 3,105,320,675 | 10% | ||
magnat | 0 | 4,093,424,747 | 5% | ||
marc99 | 0 | 314,958,252 | 100% | ||
netlabs | 0 | 153,660,983 | 100% | ||
moemyint | 0 | 672,824,446 | 100% | ||
filipino | 0 | 351,636,672 | 10% | ||
yabapmatt | 0 | 1,151,644,680,015 | 100% | ||
hurghada | 0 | 564,821,583 | 100% | ||
micaldaviddin | 0 | 437,700,625 | 100% | ||
synergy-now | 0 | 16,932,636,665 | 100% | ||
nor1 | 0 | 0 | 0% | ||
doinglean | 0 | 228,687,432 | 100% | ||
bluabaleno | 0 | 3,043,674,425 | 100% | ||
jrawsthorne | 0 | 6,131,675,250 | 100% | ||
bobdos | 0 | 2,985,544,347 | 7% | ||
fedesox | 0 | 13,613,273,044 | 100% | ||
ngc | 0 | -1,512,523,724,857 | -100% | ||
sawchha | 0 | 577,857,791 | 100% | ||
abuzaki | 0 | 347,905,812 | 100% | ||
shyshy | 0 | 661,159,633 | 100% | ||
kansa | 0 | 661,148,847 | 100% | ||
simarlar | 0 | 661,237,822 | 100% | ||
parpar | 0 | 661,137,399 | 100% | ||
monewar | 0 | 663,312,344 | 100% | ||
sharnsharn | 0 | 660,928,831 | 100% | ||
poungpoung | 0 | 661,065,247 | 100% | ||
aiteran | 0 | 675,324,744 | 100% | ||
davidsmith1 | 0 | 661,150,978 | 100% | ||
samuelpoh | 0 | 116,478,746 | 100% | ||
abbak7 | 0 | 1,626,270,376 | 100% | ||
shaungyan | 0 | 661,159,635 | 100% | ||
seanlloyd | 0 | 830,622,067 | 2% | ||
dizzyapple | 0 | 219,933,257 | 50% | ||
jhiecortez | 0 | 275,512,684 | 50% | ||
dzivenu | 0 | 8,230,026,672 | 100% | ||
canhoch | 0 | 153,285,082 | 25% | ||
chireerocks | 0 | 1,151,630,578 | 12% | ||
amaiman | 0 | 1,765,670,386 | 100% | ||
serenoblues | 0 | 804,918,078 | 100% | ||
rdvn | 0 | 16,141,142,478 | 100% | ||
neel0199 | 0 | 0 | 100% | ||
b00m | 0 | 457,697,759 | 1% | ||
coindzs | 0 | 143,242,111 | 100% | ||
idikuci | 0 | 27,065,044,720 | 53% | ||
funt33 | 0 | 842,769,157 | 100% | ||
tommy-gun | 0 | 219,410,355 | 100% | ||
vintageverve | 0 | 54,394,015 | 100% | ||
quinlan131 | 0 | 492,214,551 | 100% | ||
rantar | 0 | 19,321,717,298 | 100% | ||
steemblogger | 0 | 569,789,101 | 100% | ||
jim888 | 0 | 269,803,940 | 100% | ||
steemgreen | 0 | 1,202,722,728 | 100% | ||
georgelucas | 0 | 222,914,015 | 100% | ||
patchi02 | 0 | 219,699,319 | 50% | ||
minestein | 0 | 531,958,583 | 100% | ||
wehmoen | 0 | 27,179,875,351 | 100% | ||
tikhub | 0 | 6,374,854,818 | 100% | ||
ludji | 0 | 484,219,607 | 100% | ||
fachrul21 | 0 | 1,268,146,382 | 100% | ||
boggan | 0 | 270,707,405 | 52% | ||
smjn | 0 | 19,369,390,110 | 100% | ||
brosol | 0 | 639,137,693 | 75% | ||
elmac | 0 | 421,854,905 | 100% | ||
susano | 0 | 378,871,284 | 100% | ||
culgin | 0 | 19,943,446,930 | 100% | ||
dailythoughts | 0 | 149,804,959 | 50% | ||
jarvie | 0 | 1,206,360,774 | 1% | ||
valski | 0 | 92,449,268 | 100% | ||
analogpusher | 0 | 0 | 0% | ||
edgardojr23 | 0 | 543,137,613 | 100% | ||
hashas120 | 0 | 413,294,778 | 100% | ||
umutkarakus | 0 | 1,777,739,001 | 100% | ||
allexpire | 0 | 519,888,279 | 100% | ||
jinhwanlazy | 0 | 8,156,962,096 | 100% | ||
i5heu | 0 | 575,656,365 | 100% | ||
hamzaameer470 | 0 | 203,483,978 | 100% | ||
movement19 | 0 | 1,735,502,903 | 100% | ||
ponsaya | 0 | 498,044,991 | 100% | ||
corteskulot | 0 | 601,118,651 | 100% | ||
deeledonio | 0 | 263,953,237 | 50% | ||
asrul.aziz | 0 | 271,582,664 | 100% | ||
yunyun3014 | 0 | 278,589,791 | 50% | ||
sagitta6 | 0 | 343,274,353 | 100% | ||
shredz7 | 0 | 452,601,578 | 100% | ||
killercobra | 0 | 92,089,928 | 15% | ||
cauac | 0 | 308,236,119 | 100% | ||
teechizzy | 0 | 575,071,507 | 100% | ||
kilianparadise | 0 | 572,014,807 | 100% | ||
phoethar01 | 0 | 660,253,360 | 100% | ||
nycex | 0 | 549,414,619 | 100% | ||
lost-tiger-films | 0 | 156,151,994 | 100% | ||
jnlhen05 | 0 | 305,195,199 | 50% | ||
scott-pilgrim | 0 | 633,113,373 | 100% | ||
rogerver1 | 0 | 614,053,854 | 100% | ||
ipoelkip | 0 | 54,968,090 | 0% | ||
riskynanda | 0 | 429,153,404 | 100% | ||
spederson | 0 | 1,889,798,759 | 100% | ||
norinke | 0 | 595,130,638 | 100% | ||
doon | 0 | 601,171,290 | 100% | ||
dnaingkhan | 0 | 589,741,590 | 100% | ||
mukta9988 | 0 | 381,513,243 | 50% | ||
tompi | 0 | 210,633,701 | 100% | ||
elizah | 0 | 249,572,307 | 50% | ||
sagitta | 0 | 302,748,823 | 50% | ||
jemjewl | 0 | 246,599,865 | 100% | ||
pynchon | 0 | 204,480,783 | 100% | ||
yawdespite | 0 | 335,650,008 | 100% | ||
maryjohnson | 0 | 238,052,255 | 50% | ||
etorid | 0 | 585,292,768 | 100% | ||
realseb | 0 | 19,803,948,091 | 100% | ||
barbie.doll | 0 | 345,480,022 | 50% | ||
laimarkan | 0 | 662,562,543 | 100% | ||
thihan | 0 | 661,041,986 | 100% | ||
salanlan | 0 | 661,288,725 | 100% | ||
fulflet | 0 | 565,020,466 | 100% | ||
projecthome | 0 | 608,517,662 | 100% | ||
abulaot | 0 | 601,402,845 | 100% | ||
serylt | 0 | 254,055,875 | 1% | ||
jocaste | 0 | 601,171,290 | 100% | ||
necatii | 0 | 512,540,614 | 100% | ||
charlotteroze | 0 | 61,095,871 | 10% | ||
isyfilmz | 0 | 485,252,286 | 100% | ||
ballpin | 0 | 663,312,342 | 100% | ||
dazzy | 0 | 222,919,969 | 50% | ||
chanhon | 0 | 661,645,670 | 100% | ||
jayzel | 0 | 0 | 100% | ||
aerhielle | 0 | 266,439,125 | 50% | ||
bjsj0517 | 0 | 0 | 0% | ||
ainede | 0 | 663,902,219 | 100% | ||
technotroll | 0 | 2,068,721,565 | 100% | ||
mitch0403 | 0 | 448,527,662 | 100% | ||
nikkimariel | 0 | 398,533,292 | 50% | ||
abbyzd | 0 | 168,524,796 | 50% | ||
fadmer | 0 | 661,401,085 | 100% | ||
salynn | 0 | 661,631,178 | 100% | ||
rishi-sayz | 0 | 308,643,084 | 100% | ||
nazarj | 0 | 85,494,605 | 100% | ||
mcnil | 0 | 224,055,989 | 50% | ||
marklester23 | 0 | 223,328,699 | 50% | ||
annelaurie | 0 | 89,522,851 | 50% | ||
amitrawat | 0 | 536,642,105 | 100% | ||
steemkinderkanal | 0 | 65,109,042 | 100% | ||
dolor198 | 0 | 52,115,378 | 50% | ||
binterest | 0 | 61,032,938 | 10% | ||
jdcandio36 | 0 | 610,361,074 | 100% | ||
abby462 | 0 | 98,501,721 | 50% | ||
miaka | 0 | 67,773,704 | 50% | ||
vampirgarfield | 0 | 191,171,559 | 100% | ||
twodragon | 0 | 570,000,341 | 100% | ||
castil | 0 | 104,515,436 | 100% | ||
kol4ak | 0 | 4,374,637,256 | 100% | ||
valentin86 | 0 | 219,586,246 | 100% | ||
freelancetitan | 0 | 610,313,425 | 100% | ||
kamer1337 | 0 | 610,431,088 | 100% | ||
lpge2392 | 0 | 2,263,659,089 | 100% | ||
deltakm | 0 | 578,916,281 | 100% | ||
jazzsassyone | 0 | 603,629,439 | 100% | ||
calonimam | 0 | 460,116,350 | 100% | ||
mr-chuckles | 0 | 652,672,978 | 100% | ||
jonalynurcales | 0 | 226,357,201 | 50% | ||
sobrietystuntin | 0 | 143,358,420 | 50% | ||
soehtike | 0 | 527,172,655 | 100% | ||
cambridgeport90 | 0 | 0 | 100% | ||
fatesick | 0 | 570,424,540 | 100% | ||
bmotives | 0 | 390,544,577 | 100% | ||
fresherworld87 | 0 | 85,441,279 | 100% | ||
vaijoy | 0 | 582,407,975 | 100% | ||
decbay | 0 | 485,373,986 | 100% | ||
sinayla | 0 | 514,525,841 | 100% | ||
pusheenosaurus | 0 | 934,265,533 | 100% | ||
rinis | 0 | 545,334,583 | 100% | ||
crypto-masochist | 0 | 4,420,803,164 | 100% | ||
nfaith | 0 | 1,356,190,748 | 50% | ||
rsmartt777 | 0 | 122,794,676 | 100% | ||
proxyaccount | 0 | 146,352,907 | 50% | ||
debjgriffin | 0 | 612,438,622 | 100% | ||
yantirahel | 0 | 437,528,507 | 100% | ||
cryptonoticias | 0 | 17,037,467,335 | 100% | ||
annatefo | 0 | 363,136,693 | 100% | ||
bobos0303 | 0 | 489,561,744 | 81.06% | ||
ashir-zuhaib | 0 | 85,753,201 | 100% | ||
dlayshan | 0 | 663,821,863 | 100% | ||
stater | 0 | 663,821,859 | 100% | ||
tharshan | 0 | 661,674,894 | 100% | ||
galannar | 0 | 661,715,394 | 100% | ||
mahfuz42 | 0 | 324,138,580 | 100% | ||
alikumis | 0 | 199,580,617 | 100% | ||
usdmarketing | 0 | 523,136,944 | 100% | ||
usdtrading | 0 | 259,335,482 | 100% | ||
preciologya | 0 | 88,487,739 | 100% | ||
ahmed.hussein | 0 | 5,729,340,119 | 100% | ||
arinherbz | 0 | 571,857,467 | 100% | ||
commander.ubas | 0 | 354,946,418 | 100% | ||
coolioskipper | 0 | 611,616,669 | 100% | ||
ninnowbooster | 0 | 510,923,226 | 100% | ||
bahlia | 0 | 492,334,982 | 100% | ||
cmplxty | 0 | 306,547,992 | 100% | ||
sakurasui | 0 | 192,467,589 | 100% | ||
manja | 0 | 456,353,759 | 100% | ||
marcothony | 0 | 0 | 0% | ||
astrofilosof | 0 | 497,468,174 | 100% | ||
ridor5301 | 0 | 589,004,026 | 100% | ||
glanter22 | 0 | 526,130,912 | 100% | ||
ntamntam | 0 | 521,581,268 | 100% | ||
calicabre | 0 | 531,325,177 | 100% | ||
moelout | 0 | 528,109,245 | 100% | ||
theambitiousgeek | 0 | 611,285,176 | 100% | ||
zabatar | 0 | 522,974,180 | 100% | ||
konlon | 0 | 528,271,438 | 100% | ||
atalgyi | 0 | 529,111,749 | 100% | ||
schlunior | 0 | 10,405,858,045 | 25% | ||
winewinelal | 0 | 528,122,651 | 100% | ||
siachen | 0 | 611,249,345 | 100% | ||
shibleehossain | 0 | 248,034,097 | 100% | ||
hussamr | 0 | 577,575,275 | 100% | ||
measureable | 0 | 529,920,690 | 100% | ||
victoriavperezz | 0 | 589,839,169 | 100% | ||
mxpuck | 0 | 1,028,454,029 | 100% | ||
solomonandrew | 0 | 614,360,088 | 100% | ||
taserdre31 | 0 | 122,144,477 | 100% | ||
crypto-france | 0 | 341,978,423 | 100% | ||
subarta | 0 | 576,722,498 | 100% | ||
stephenthorburn | 0 | 598,578,863 | 100% | ||
n0problem404 | 0 | 519,862,810 | 100% | ||
chris.geese | 0 | 603,553,491 | 100% | ||
anttn | 0 | 152,667,415 | 100% | ||
definemurder | 0 | 611,117,226 | 100% | ||
cytowarrior | 0 | 573,668,096 | 100% | ||
masterly | 0 | 610,669,662 | 100% | ||
vindevins | 0 | 393,879,966 | 100% | ||
jk6276 | 0 | 544,253,718 | 100% | ||
alexipd | 0 | 394,273,685 | 100% | ||
rayhan6969 | 0 | 0 | 0% | ||
nareshbhatt | 0 | 512,957,404 | 100% | ||
blackcattt | 0 | 244,264,223 | 100% | ||
steem.moon | 0 | 479,368,539 | 100% | ||
stavgeffen | 0 | 577,074,228 | 100% | ||
vala01 | 0 | 470,203,975 | 100% | ||
svetoslavwradkov | 0 | 523,533,294 | 100% | ||
mdolasco | 0 | 555,690,126 | 100% | ||
traflork | 0 | 589,275,793 | 100% | ||
khaidir1990 | 0 | 134,257,260 | 100% | ||
julia1sama | 0 | 360,255,054 | 100% | ||
borshaislam | 0 | 598,384,054 | 100% | ||
cryptomazin | 0 | 522,198,717 | 100% | ||
wai1 | 0 | 662,866,001 | 100% | ||
code06 | 0 | 369,405,295 | 100% | ||
smartdhaka | 0 | 0 | 100% | ||
collect1 | 0 | 663,177,868 | 100% | ||
ddmouse | 0 | 663,177,865 | 100% | ||
shorelee | 0 | 663,461,374 | 100% | ||
payi | 0 | 663,174,919 | 100% | ||
andtal | 0 | 663,174,917 | 100% | ||
beelin | 0 | 607,525,737 | 100% | ||
land1 | 0 | 607,525,737 | 100% | ||
alan369 | 0 | 611,947,519 | 100% | ||
matpetar | 0 | 607,502,806 | 100% | ||
dvice | 0 | 607,499,849 | 100% | ||
lucacroce | 0 | 0 | 100% | ||
jarqdigital | 0 | 546,361,575 | 100% | ||
sheegay74 | 0 | 607,404,591 | 100% | ||
davids90xs | 0 | 323,540,554 | 100% | ||
sammeyboj | 0 | 329,610,815 | 100% | ||
kosynier | 0 | 119,026,127 | 100% | ||
cryptorigged | 0 | 152,628,111 | 100% | ||
jupiterhead | 0 | 64,088,893 | 100% | ||
grarek12 | 0 | 454,690,639 | 100% | ||
blocksparks | 0 | 122,061,308 | 100% | ||
khaidir1234 | 0 | 585,883,056 | 100% | ||
sotie-jg | 0 | 271,581,208 | 100% | ||
sangpencerah | 0 | 518,713,310 | 100% | ||
digiibit.coin | 0 | 530,896,535 | 100% | ||
liamrabbitt | 0 | 617,868,170 | 100% | ||
matheusrotela | 0 | 543,098,213 | 100% | ||
xionglei | 0 | 87,707,694 | 100% | ||
sherwher | 0 | 308,934,083 | 100% | ||
bboyash | 0 | 559,170,688 | 100% | ||
goferux | 0 | 353,929,172 | 100% | ||
graceasare | 0 | 598,018,257 | 0% | ||
chad.smith | 0 | 610,222,711 | 100% | ||
ivanosei | 0 | 605,510,793 | 100% | ||
thedoubleace123 | 0 | 617,868,140 | 100% | ||
ujjwalrajput | 0 | 608,600,116 | 0% | ||
mhel0728 | 0 | 469,868,898 | 100% | ||
snazzyboii | 0 | 605,510,771 | 100% | ||
paopaoza | 0 | 506,482,058 | 100% | ||
joybanik | 0 | 564,452,896 | 100% | ||
akaczynsky | 0 | 469,865,896 | 100% | ||
paulsunard | 0 | 429,418,340 | 100% | ||
understando | 0 | 360,027,115 | 100% | ||
yahwahim | 0 | 552,244,982 | 100% | ||
sumonflair | 0 | 427,150,814 | 100% | ||
reiber18 | 0 | 361,452,844 | 100% | ||
opti9 | 0 | 546,142,827 | 100% | ||
wasishah33 | 0 | 583,885,358 | 100% | ||
nyllon | 0 | 601,058,643 | 100% | ||
acroorigami | 0 | 571,527,983 | 100% | ||
kreeecik | 0 | 426,328,981 | 100% | ||
diaxpl | 0 | 146,450,837 | 100% | ||
t0mke | 0 | 610,211,820 | 100% | ||
janek062484 | 0 | 57,970,122 | 100% | ||
dhishertanto | 0 | 617,868,087 | 100% | ||
tzoana | 0 | 610,211,820 | 100% | ||
eliash | 0 | 607,160,761 | 100% | ||
cutelace | 0 | 0 | 0% | ||
yone4life | 0 | 515,919,841 | 100% | ||
biladen1994 | 0 | 327,470,077 | 100% | ||
markstark | 0 | 617,868,067 | 100% | ||
szip | 0 | 515,625,854 | 100% | ||
peterokolo | 0 | 579,697,706 | 100% | ||
kuksio | 0 | 537,545,202 | 100% | ||
naiferafonso | 0 | 506,651,798 | 100% | ||
endrjus | 0 | 528,277,178 | 100% | ||
emmahandsome | 0 | 605,510,676 | 100% | ||
uchihadesendent | 0 | 293,487,313 | 100% | ||
hazi94 | 0 | 521,724,816 | 100% | ||
latte.mp3 | 0 | 518,670,964 | 100% | ||
fl4pcio | 0 | 424,089,788 | 100% | ||
rindblowd89 | 0 | 367,631,464 | 100% | ||
goku24 | 0 | 339,827,402 | 100% | ||
mariadelfi | 0 | 356,963,625 | 100% | ||
ronbolivar | 0 | 103,733,019 | 100% | ||
daminhok1ng | 0 | 339,827,393 | 100% | ||
kuros1700 | 0 | 225,521,812 | 100% | ||
zapall | 0 | 330,559,361 | 100% | ||
mrs.bakijan | 0 | 549,902,478 | 100% | ||
dondimaric | 0 | 0 | 100% | ||
morel123 | 0 | 398,524,699 | 100% | ||
pielson | 0 | 228,542,515 | 100% | ||
xandeshalom | 0 | 0 | 100% | ||
dmit878 | 0 | 0 | 100% | ||
elescritorpoeta | 0 | 0 | 100% |
It looks like a significant update to me! steem on!!
author | aashishkandel |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t020908374z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 02:09:06 |
last_update | 2018-05-24 02:09:06 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 02:09:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.086 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 4,731,147,170,715 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,371,550 |
net_rshares | 23,849,473,305 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aashishkandel | 0 | 4,318,700,081 | 100% | ||
deepapoudel | 0 | 19,530,773,224 | 100% | ||
lucacroce | 0 | 0 | 100% |
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
author | adarshh |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t163143423z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 16:31:45 |
last_update | 2018-05-24 16:31:45 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 16:31:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 564 |
author_reputation | 1,909,676,117,380 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,485,847 |
net_rshares | 0 |
Well done guys, great future ahead for steemit
author | advocatemighty |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193610823z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:36:30 |
last_update | 2018-05-22 19:36:30 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:36:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 768,946,249 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,133,596 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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!
author | anderson09 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180525t162743646z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-25 16:27:45 |
last_update | 2018-05-25 16:27:45 |
depth | 1 |
children | 0 |
last_payout | 2018-06-01 16:27:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 560 |
author_reputation | 68,723,479,243 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,664,453 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cambridgeport90 | 0 | 0 | 100% |
hii friends
author | angellija |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t192017287z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-23 19:20:18 |
last_update | 2018-05-23 19:20:18 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 19:20:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 139,981,877,199 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,320,646 |
net_rshares | 326,692,272 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alomgirkhan | 0 | 326,692,272 | 100% | ||
lucacroce | 0 | 0 | 100% |
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
author | arcange |
---|---|
permlink | re-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t180333000z |
category | steem |
json_metadata | "" |
created | 2018-05-23 16:11:00 |
last_update | 2018-05-23 16:11:00 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 16:11:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 219 |
author_reputation | 1,146,606,601,469,178 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,292,712 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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*
author | bahagia-arbi |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190525141z |
category | steem |
json_metadata | {"tags":["steem"],"users":["bahagia-arbi"],"app":"steemit/0.1"} |
created | 2018-05-22 19:05:27 |
last_update | 2018-05-22 19:06:00 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:05:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 211 |
author_reputation | 62,544,888,098,801 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,129,114 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
Update information... Thanks for you @steemitblog... Success is always for you...
author | boyelleq |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t194712032z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"} |
created | 2018-05-23 19:47:15 |
last_update | 2018-05-23 19:47:15 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 19:47:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 2,112,654,729,102 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,324,385 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
It is great to see a detailed update! It is also great to hear there will be a SMT Testnet in the future.
author | brianphobos |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t224736134z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 22:47:36 |
last_update | 2018-05-22 22:47:36 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 22:47:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 170,165,475,805,004 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,158,778 |
net_rshares | 9,510,988,363 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 9,510,988,363 | 1% | ||
lucacroce | 0 | 0 | 100% |
Thanks for the amazing update. I look forward to SMT's and the HF20. Keep up the great work !!!
author | businesswri |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t123540335z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 12:35:42 |
last_update | 2018-05-23 12:35:42 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 12:35:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 16,587,613,850,587 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,259,009 |
net_rshares | 2,859,021,813 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
businesswri | 0 | 2,859,021,813 | 100% | ||
lucacroce | 0 | 0 | 100% |
we wait the best from you, as we give the best of us to this good proyect! keep doing #steemitwetrust @steemitblog 
author | calabozocriollo |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t055637443z |
category | steem |
json_metadata | {"tags":["steem","steemitwetrust"],"app":"steemit/0.1","users":["steemitblog"],"image":["https://cdn.steemitimages.com/DQmRVBrT9cxFoKuDUBiRAW5tYubEzsajMPNZEG4SxgxX5z8/Logo%20Calabozo%202018.png"]} |
created | 2018-05-24 05:56:42 |
last_update | 2018-05-24 05:57:30 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 05:56:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 249 |
author_reputation | 942,410,485,043 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,399,397 |
net_rshares | 296,214,512 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
calabozocriollo | 0 | 296,214,512 | 100% |
I hope HF20 makes a better change to the steemit
author | calprut |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t034910433z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 03:48:54 |
last_update | 2018-05-23 03:48:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 03:48:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 70,348,854,373,895 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,193,292 |
net_rshares | 0 |
Omg, finally an update!
author | cardboard |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190241871z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:02:42 |
last_update | 2018-05-22 19:09:48 |
depth | 1 |
children | 1 |
last_payout | 2018-05-29 19:02:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 31,522,757,177,122 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,128,728 |
net_rshares | 6,723,655,203 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jakipatryk | 0 | 5,266,006,893 | 10% | ||
clumsysilverdad | 0 | 1,457,648,310 | 3% |
Yea , but no date on when smt will come out, more of the bs again.
author | dang007 |
---|---|
permlink | re-cardboard-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t220246678z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 22:02:45 |
last_update | 2018-05-23 22:02:45 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 22:02:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 11,401,014,276,268 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,341,870 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | chrismadcboy2016 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t065655034z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-23 06:55:03 |
last_update | 2018-05-23 06:55:03 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 06:55:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 155 |
author_reputation | 16,548,318,786,819 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,216,305 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
https://i.pinimg.com/736x/1f/a2/71/1fa271885bfc9378697695f604e07210.jpg
author | clumsysilverdad |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193556046z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://i.pinimg.com/736x/1f/a2/71/1fa271885bfc9378697695f604e07210.jpg"],"app":"steemit/0.1"} |
created | 2018-05-22 19:35:54 |
last_update | 2018-05-22 19:35:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:35:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 28,166,630,869,767 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,133,515 |
net_rshares | 9,037,419,526 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clumsysilverdad | 0 | 9,037,419,526 | 19% | ||
lucacroce | 0 | 0 | 100% |
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.
author | coinelius |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180527t122656959z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://cdn.steemitimages.com/DQmeqLPRsrSTficN4mT3h8bSirMXDPgh92U3kVU13tcLqg3/source.gif"],"app":"steemit/0.1"} |
created | 2018-05-27 12:26:57 |
last_update | 2018-05-27 12:26:57 |
depth | 1 |
children | 0 |
last_payout | 2018-06-03 12:26:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 295 |
author_reputation | 4,122,064,261 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,938,872 |
net_rshares | 0 |
thank you for share!
author | crypto-france |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t092025545z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 09:20:27 |
last_update | 2018-05-23 09:20:27 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 09:20:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | -9,289,032,366 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,234,399 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | cryptohazard |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t082234210z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 08:22:33 |
last_update | 2018-05-23 08:22:33 |
depth | 1 |
children | 2 |
last_payout | 2018-05-30 08:22:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 360 |
author_reputation | 17,111,780,434,071 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,227,549 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
All content that will be eligible for SMTs will be eligible for STEEM too.
author | timcliff |
---|---|
permlink | re-cryptohazard-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t200748852z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 20:07:54 |
last_update | 2018-05-23 20:07:54 |
depth | 2 |
children | 1 |
last_payout | 2018-05-30 20:07:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 272,954,445,077,789 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,327,110 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | cryptohazard |
---|---|
permlink | re-timcliff-re-cryptohazard-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t203059360z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 20:31:00 |
last_update | 2018-05-23 20:31:00 |
depth | 3 |
children | 0 |
last_payout | 2018-05-30 20:31:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 313 |
author_reputation | 17,111,780,434,071 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,330,125 |
net_rshares | 9,024,318,752 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 9,024,318,752 | 1% | ||
lucacroce | 0 | 0 | 100% |
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 !
author | dandesign86 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190801870z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:08:03 |
last_update | 2018-05-22 19:08:03 |
depth | 1 |
children | 2 |
last_payout | 2018-05-29 19:08:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.082 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 186 |
author_reputation | 73,987,517,574,321 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,129,478 |
net_rshares | 26,441,189,142 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clumsysilverdad | 0 | 1,457,648,310 | 3% | ||
itshim | 0 | 24,983,540,832 | 100% | ||
lucacroce | 0 | 0 | 100% |
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
author | andrarchy |
---|---|
permlink | re-dandesign86-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190953578z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:09:54 |
last_update | 2018-05-22 19:09:54 |
depth | 2 |
children | 1 |
last_payout | 2018-05-29 19:09:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.349 HBD |
curator_payout_value | 0.085 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 238 |
author_reputation | 230,168,201,522,782 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,129,755 |
net_rshares | 108,318,403,761 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
themonetaryfew | 0 | 98,057,335,564 | 100% | ||
dandesign86 | 0 | 7,568,437,180 | 10% | ||
clumsysilverdad | 0 | 1,457,648,310 | 3% | ||
my451r | 0 | 1,234,982,707 | 100% | ||
lucacroce | 0 | 0 | 100% |
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?
author | mexbit |
---|---|
permlink | re-andrarchy-re-dandesign86-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180527t020025071z |
category | steem |
json_metadata | {"tags":["steem"],"users":["andrarchy"],"app":"steemit/0.1"} |
created | 2018-05-27 02:00:24 |
last_update | 2018-05-27 02:00:24 |
depth | 3 |
children | 0 |
last_payout | 2018-06-03 02:00:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 209 |
author_reputation | 9,339,355,784,161 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,882,889 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
Thank you for your update. It is nive to see that steemit is still growing with possibilities
author | dogimage |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t205958935z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 20:59:06 |
last_update | 2018-05-23 20:59:06 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 20:59:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 338,493,164,177 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,333,673 |
net_rshares | 6,578,781,995 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dogimage | 0 | 6,123,119,534 | 100% | ||
gr4s1u | 0 | 455,662,461 | 100% | ||
lucacroce | 0 | 0 | 100% |
Can you support other chains like Bitcoin or Etherem on the internet market?
author | edb1984 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t215548235z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 21:55:48 |
last_update | 2018-05-22 21:55:48 |
depth | 1 |
children | 1 |
last_payout | 2018-05-29 21:55:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 465,647,102,445 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,152,351 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
author | timcliff |
---|---|
permlink | re-edb1984-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t050347961z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 05:03:48 |
last_update | 2018-05-23 05:03:48 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 05:03:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2 |
author_reputation | 272,954,445,077,789 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,202,228 |
net_rshares | -1,256,090,557 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edb1984 | 0 | 0 | 100% | ||
apple64 | 0 | -1,256,090,557 | -100% | ||
lucacroce | 0 | 0 | 100% |
Thank you for sharing something useful, warm greetings from a height.
author | edibersah |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t210930559z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 21:09:39 |
last_update | 2018-05-22 21:09:39 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 21:09:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 1,214,772,355,849 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,146,506 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
author | ender |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t211919043z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 21:19:21 |
last_update | 2018-05-24 21:19:45 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 21:19:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.062 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 1,104,157,879,002 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,524,452 |
net_rshares | 17,233,726,555 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ender | 0 | 17,233,726,555 | 100% | ||
lucacroce | 0 | 0 | 100% |
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!
author | enginewitty |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t234127810z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 23:41:33 |
last_update | 2018-05-22 23:41:33 |
depth | 1 |
children | 1 |
last_payout | 2018-05-29 23:41:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 297 |
author_reputation | 693,845,391,004,857 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,165,155 |
net_rshares | 9,511,067,289 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 9,511,067,289 | 1% | ||
lucacroce | 0 | 0 | 100% |
Glad to hear that. We would never do anything that would detract from Steem, but I certainly can understand the skepticism.
author | andrarchy |
---|---|
permlink | re-enginewitty-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t133857398z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 13:38:57 |
last_update | 2018-05-23 13:38:57 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 13:38:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 230,168,201,522,782 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 57,268,263 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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
author | eurogee |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t201248015z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 20:12:48 |
last_update | 2018-05-22 20:12:48 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 20:12:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 195 |
author_reputation | 38,260,360,943,030 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,138,839 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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
author | felander |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t225206061z |
category | steem |
json_metadata | {"tags":["steem"],"users":["swisswitness","steemitblog","andrarchy"],"links":["https://steemconnect.com/sign/account-witness-vote?witness=swisswitness&approve=1"],"app":"steemit/0.1"} |
created | 2018-05-22 22:52:06 |
last_update | 2018-05-22 22:52:06 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 22:52:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 671 |
author_reputation | 191,230,907,725,589 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,159,297 |
net_rshares | 5,733,145,070 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
felander | 0 | 5,733,145,070 | 30% | ||
lucacroce | 0 | 0 | 100% |
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?
author | forsure | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018524t82551379z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemit","blockchain","smt","hf20"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-05-24 14:25:57 | ||||||
last_update | 2018-05-24 14:25:57 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-05-31 14:25:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 177 | ||||||
author_reputation | 9,487,056 | ||||||
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 57,465,948 | ||||||
net_rshares | 607,171,597 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
forsure | 0 | 607,171,597 | 100% |
Well done! Looking forward for the SMT's as i think they will be the beginning of Steem reaching the Moon!
author | georgemales |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190742525z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:07:33 |
last_update | 2018-05-22 19:07:33 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:07:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 11,440,001,785,692 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,129,415 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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
author | gold84 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193644802z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitblog","andrarchy","ned","gold84"],"app":"steemit/0.1"} |
created | 2018-05-22 19:36:42 |
last_update | 2018-05-22 19:36:42 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:36:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 187 |
author_reputation | 20,903,401,478,476 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,133,635 |
net_rshares | 1,272,982,175 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
my451r | 0 | 1,272,982,175 | 100% | ||
lucacroce | 0 | 0 | 100% |
Keep up the good work :)
author | hanen |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t184159828z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:41:15 |
last_update | 2018-05-22 19:41:15 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:41:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 27,392,840,099,536 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,134,287 |
net_rshares | 602,442,419 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
coolioskipper | 0 | 602,442,419 | 100% | ||
lucacroce | 0 | 0 | 100% |
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.
author | hanshotfirst |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t204332726z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 20:43:30 |
last_update | 2018-05-22 20:43:30 |
depth | 1 |
children | 7 |
last_payout | 2018-05-29 20:43:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.437 HBD |
curator_payout_value | 0.468 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,189 |
author_reputation | 656,658,812,498,658 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,143,087 |
net_rshares | 475,003,944,372 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
donkeypong | 0 | 169,724,119,870 | 1% | ||
timcliff | 0 | 146,885,712,872 | 20% | ||
themonetaryfew | 0 | 104,452,379,188 | 100% | ||
drpuffnstuff | 0 | 12,086,274,279 | 5% | ||
extremeromance | 0 | 27,349,039,917 | 30% | ||
shortsegments | 0 | 14,506,418,246 | 97% | ||
lucacroce | 0 | 0 | 100% |
Thanks so much for that thoughtful response @hanshotfirst. It's really helpful to know which parts of the post you found most useful.
author | andrarchy |
---|---|
permlink | re-hanshotfirst-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t214609799z |
category | steem |
json_metadata | {"tags":["steem"],"users":["hanshotfirst"],"app":"steemit/0.1"} |
created | 2018-05-22 21:46:09 |
last_update | 2018-05-22 21:46:09 |
depth | 2 |
children | 4 |
last_payout | 2018-05-29 21:46:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | 230,168,201,522,782 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 57,151,146 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
Did you write this @andrarchy? Man, you were a great pick for this position!
author | bbrewer |
---|---|
permlink | re-andrarchy-re-hanshotfirst-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t052210972z |
category | steem |
json_metadata | {"tags":["steem"],"users":["andrarchy"],"app":"steemit/0.1"} |
created | 2018-05-23 05:22:12 |
last_update | 2018-05-23 05:22:12 |
depth | 3 |
children | 3 |
last_payout | 2018-05-30 05:22:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 7,852,511,958,185 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,204,518 |
net_rshares | 12,086,274,279 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drpuffnstuff | 0 | 12,086,274,279 | 5% | ||
lucacroce | 0 | 0 | 100% |
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...
author | mexbit |
---|---|
permlink | re-hanshotfirst-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180527t015352124z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-27 01:53:51 |
last_update | 2018-05-27 01:53:51 |
depth | 2 |
children | 0 |
last_payout | 2018-06-03 01:53:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 218 |
author_reputation | 9,339,355,784,161 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,882,334 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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
author | shortsegments |
---|---|
permlink | re-hanshotfirst-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t001115519z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-29 00:11:24 |
last_update | 2018-05-29 00:11:24 |
depth | 2 |
children | 0 |
last_payout | 2018-06-05 00:11:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 268 |
author_reputation | 668,508,621,504,890 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,191,359 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | hiroyamagishi |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t031612420z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 03:16:12 |
last_update | 2018-05-23 03:16:12 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 03:16:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.612 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 253 |
author_reputation | 71,901,302,671,995 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,189,513 |
net_rshares | 414,738,820,585 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hiroyamagishi | 0 | 414,738,820,585 | 100% | ||
lucacroce | 0 | 0 | 100% |
author | hms818 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t091200053z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 09:12:03 |
last_update | 2018-05-23 09:12:03 |
depth | 1 |
children | 1 |
last_payout | 2018-05-30 09:12:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.193 HBD |
curator_payout_value | 0.062 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 11,503,740,391,093 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,233,367 |
net_rshares | 66,873,325,070 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hms818 | 0 | 66,873,325,070 | 100% | ||
lucacroce | 0 | 0 | 100% |
early 2018 or 2019?
author | mexbit |
---|---|
permlink | re-hms818-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180527t015737967z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-27 01:57:39 |
last_update | 2018-05-27 01:57:39 |
depth | 2 |
children | 0 |
last_payout | 2018-06-03 01:57:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 9,339,355,784,161 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,882,637 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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!
author | hungryhustle |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193439403z |
category | steem |
json_metadata | {"tags":["steem"],"users":["andrarchy"],"app":"steemit/0.1"} |
created | 2018-05-22 19:34:39 |
last_update | 2018-05-22 19:34:39 |
depth | 1 |
children | 5 |
last_payout | 2018-05-29 19:34:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 847 |
author_reputation | 52,761,276,015,392 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,133,333 |
net_rshares | 13,351,449,134 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tshering-tamang | 0 | 3,213,268,652 | 100% | ||
blockchainttmft | 0 | 3,182,980,600 | 77% | ||
phoneinf | 0 | 6,955,199,882 | 100% | ||
lucacroce | 0 | 0 | 100% |
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.
author | phoneinf |
---|---|
permlink | re-hungryhustle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t195919026z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:59:18 |
last_update | 2018-05-22 19:59:18 |
depth | 2 |
children | 4 |
last_payout | 2018-05-29 19:59:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.085 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 533 |
author_reputation | 201,286,258,274,191 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,136,843 |
net_rshares | 24,387,817,908 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
valued-customer | 0 | 17,430,129,445 | 25% | ||
edb1984 | 0 | 657,005,261 | 100% | ||
hungryhustle | 0 | 5,721,566,633 | 13% | ||
jazzsassyone | 0 | 579,116,569 | 100% | ||
lucacroce | 0 | 0 | 100% |
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.
author | hungryhustle |
---|---|
permlink | re-phoneinf-re-hungryhustle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t201234067z |
category | steem |
json_metadata | {"tags":["steem"],"users":["phoneinf"],"app":"steemit/0.1"} |
created | 2018-05-22 20:12:33 |
last_update | 2018-05-22 20:12:33 |
depth | 3 |
children | 1 |
last_payout | 2018-05-29 20:12:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 330 |
author_reputation | 52,761,276,015,392 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,138,806 |
net_rshares | 6,548,463,046 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
phoneinf | 0 | 6,548,463,046 | 100% | ||
lucacroce | 0 | 0 | 100% |
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.
author | valued-customer |
---|---|
permlink | re-phoneinf-re-hungryhustle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t052505717z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 05:25:12 |
last_update | 2018-05-24 05:26:57 |
depth | 3 |
children | 1 |
last_payout | 2018-05-31 05:25:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,337 |
author_reputation | 354,315,926,679,123 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,395,738 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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!
author | ilyastarar |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t192217998z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:22:21 |
last_update | 2018-05-22 19:22:21 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:22:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 337 |
author_reputation | 22,538,822,918,099 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,131,531 |
net_rshares | 3,376,499,736 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ilyastarar | 0 | 1,918,851,426 | 5% | ||
clumsysilverdad | 0 | 1,457,648,310 | 3% | ||
lucacroce | 0 | 0 | 100% |
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
author | iparamedic |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t062027623z |
category | steem |
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"} |
created | 2018-05-24 06:20:27 |
last_update | 2018-05-24 06:20:27 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 06:20:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 596 |
author_reputation | 1,059,700,874 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,402,247 |
net_rshares | 326,469,150 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
iparamedic | 0 | 326,469,150 | 100% |
Hi thank you very much for helping to spread awareness about AppBase, RocksDB, Bandwidth, HF20, SMTs, and more! :)
author | ipoelkip |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t084839805z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 08:48:42 |
last_update | 2018-05-24 08:48:42 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 08:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 41,655,562,990 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,420,871 |
net_rshares | 0 |
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 :)
author | jassennessaj |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t005317958z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 00:53:15 |
last_update | 2018-05-23 00:53:15 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 00:53:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.138 HBD |
curator_payout_value | 0.046 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 161 |
author_reputation | 158,167,711,482,591 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,172,969 |
net_rshares | 47,555,336,447 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 47,555,336,447 | 6% | ||
lucacroce | 0 | 0 | 100% |
Hello, you have my sincere congratulations for this post. Thank you for your update.
author | jocaste |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t163624731z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 16:50:39 |
last_update | 2018-05-24 16:50:39 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 16:50:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 6,365,794,749 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,488,672 |
net_rshares | 0 |
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
author | karenmckersie |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t044525261z |
category | steem |
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&palette=1"],"app":"steemit/0.1"} |
created | 2018-05-23 04:45:27 |
last_update | 2018-05-23 04:45:48 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 04:45:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 290 |
author_reputation | 280,862,618,735,740 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,200,124 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
Woohoo can't wait! Great work Steemit Blockchain Team. Thank you for all your hard work. This is truly a great blockchain.
author | kennybll |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t171415208z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-23 17:14:18 |
last_update | 2018-05-23 17:14:18 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 17:14:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 7,036,168,261,879 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,302,220 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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>[](https://steemit.com/@leotrap)</center> <center>***Peace V!***</center>
author | leotrap |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t203227979z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmPkYYBjxXYoftM755TyTYhUjCuefqzX3frzURto6SZd7B/follow_leotrap.gif"],"links":["https://steemit.com/@leotrap"]} |
created | 2018-05-22 20:32:27 |
last_update | 2018-05-22 20:35:33 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 20:32:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 517 |
author_reputation | 180,053,236,596,755 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,141,641 |
net_rshares | 1,858,842,042 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
my451r | 0 | 1,291,981,909 | 100% | ||
jazzsassyone | 0 | 566,860,133 | 100% | ||
lucacroce | 0 | 0 | 100% |
Good to know where we are going! since we all push toward the same side to make great content keep doing on the steemjob
author | luisjoeyf |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t080919727z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 08:09:24 |
last_update | 2018-05-24 08:09:24 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 08:09:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 9,610,239,376 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,415,949 |
net_rshares | 0 |
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.
author | lukestokes |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t212300072z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"} |
created | 2018-05-22 21:23:00 |
last_update | 2018-05-22 21:23:00 |
depth | 1 |
children | 5 |
last_payout | 2018-05-29 21:23:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.372 HBD |
curator_payout_value | 0.117 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 219 |
author_reputation | 554,601,966,217,919 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,148,285 |
net_rshares | 122,567,489,985 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
karenmckersie | 0 | 2,719,166,626 | 13% | ||
themonetaryfew | 0 | 100,189,016,772 | 100% | ||
felander | 0 | 5,733,145,070 | 30% | ||
shortsegments | 0 | 13,926,161,517 | 97% | ||
lucacroce | 0 | 0 | 100% |
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.
author | andrarchy |
---|---|
permlink | re-lukestokes-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t133735341z |
category | steem |
json_metadata | {"tags":["steem"],"users":["lukestokes"],"app":"steemit/0.1"} |
created | 2018-05-23 13:37:33 |
last_update | 2018-05-23 13:37:33 |
depth | 2 |
children | 2 |
last_payout | 2018-05-30 13:37:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 210 |
author_reputation | 230,168,201,522,782 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 57,268,068 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | lukestokes |
---|---|
permlink | re-andrarchy-re-lukestokes-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t141038040z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 14:10:39 |
last_update | 2018-05-23 14:10:39 |
depth | 3 |
children | 1 |
last_payout | 2018-05-30 14:10:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 568 |
author_reputation | 554,601,966,217,919 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,273,093 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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
author | felander |
---|---|
permlink | re-lukestokes-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t225651790z |
category | steem |
json_metadata | {"tags":["steem"],"users":["swisswitness"],"app":"steemit/0.1"} |
created | 2018-05-22 22:56:51 |
last_update | 2018-05-22 22:56:51 |
depth | 2 |
children | 0 |
last_payout | 2018-05-29 22:56:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | 191,230,907,725,589 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,159,861 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
agreed.
author | shortsegments |
---|---|
permlink | re-lukestokes-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t001349426z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-29 00:13:57 |
last_update | 2018-05-29 00:13:57 |
depth | 2 |
children | 0 |
last_payout | 2018-06-05 00:13:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 668,508,621,504,890 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,191,632 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
author | mahdiyari |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194826883z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:48:30 |
last_update | 2018-05-22 19:48:30 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:48:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 199,858,416,089,067 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,135,322 |
net_rshares | 4,627,168,550 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
meno | 0 | 4,627,168,550 | 16% | ||
lucacroce | 0 | 0 | 100% |
author | mahfuz42 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t062330965z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 06:23:42 |
last_update | 2018-05-23 06:23:42 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 06:23:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | -5,663,065,507 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,212,235 |
net_rshares | 318,022,758 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahfuz42 | 0 | 318,022,758 | 100% | ||
lucacroce | 0 | 0 | 100% |
The future is quickly changing. Well done.
author | marc99 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190400856z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:04:00 |
last_update | 2018-05-22 19:04:15 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:04:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 2,577,073,356,117 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,128,911 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
Cool!
author | masterly |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t153435176z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 15:34:45 |
last_update | 2018-05-24 15:34:45 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 15:34:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 2,870,923,596 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,476,743 |
net_rshares | 0 |
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>
author | mejustandrew |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t204549871z |
category | steem |
json_metadata | {"tags":["steem"],"users":["andrarchy"],"links":["https://github.com/steemit/steem/projects?query=is%3Aclosed"],"app":"steemit/0.1"} |
created | 2018-05-22 20:45:48 |
last_update | 2018-05-22 20:47:27 |
depth | 1 |
children | 4 |
last_payout | 2018-05-29 20:45:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.085 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,490 |
author_reputation | 6,245,491,946,485 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,143,353 |
net_rshares | 21,445,993,038 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mejustandrew | 0 | 21,445,993,038 | 100% | ||
lucacroce | 0 | 0 | 100% |
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.
author | yabapmatt |
---|---|
permlink | re-mejustandrew-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t210339331z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 21:03:39 |
last_update | 2018-05-22 21:03:39 |
depth | 2 |
children | 3 |
last_payout | 2018-05-29 21:03:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.916 HBD |
curator_payout_value | 0.197 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 452 |
author_reputation | 160,224,638,135,630 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,145,701 |
net_rshares | 277,765,406,218 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 146,883,266,139 | 20% | ||
themonetaryfew | 0 | 102,320,697,980 | 100% | ||
edb1984 | 0 | 670,910,134 | 100% | ||
extremeromance | 0 | 26,877,504,746 | 30% | ||
mxpuck | 0 | 1,013,027,219 | 100% | ||
lucacroce | 0 | 0 | 100% |
Couldn't have said it better myself @yabapmatt
author | andrarchy |
---|---|
permlink | re-yabapmatt-re-mejustandrew-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t211435563z |
category | steem |
json_metadata | {"tags":["steem"],"users":["yabapmatt"],"app":"steemit/0.1"} |
created | 2018-05-22 21:14:36 |
last_update | 2018-05-22 21:20:30 |
depth | 3 |
children | 0 |
last_payout | 2018-05-29 21:14:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 230,168,201,522,782 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 57,147,183 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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?
author | mejustandrew |
---|---|
permlink | re-yabapmatt-re-mejustandrew-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t211002008z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 21:10:03 |
last_update | 2018-05-22 21:10:03 |
depth | 3 |
children | 1 |
last_payout | 2018-05-29 21:10:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.485 HBD |
curator_payout_value | 0.160 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 343 |
author_reputation | 6,245,491,946,485 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,146,557 |
net_rshares | 161,138,028,453 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 161,138,028,453 | 22% | ||
lucacroce | 0 | 0 | 100% |
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.
author | meno |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194534802z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:45:27 |
last_update | 2018-05-22 19:45:27 |
depth | 1 |
children | 3 |
last_payout | 2018-05-29 19:45:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.109 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 532 |
author_reputation | 506,032,115,725,186 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,134,845 |
net_rshares | 30,764,453,513 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 13,334,324,068 | 5% | ||
valued-customer | 0 | 17,430,129,445 | 25% | ||
lucacroce | 0 | 0 | 100% |
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.
author | sircork |
---|---|
permlink | re-meno-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t222225987z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 22:22:24 |
last_update | 2018-05-22 22:22:24 |
depth | 2 |
children | 2 |
last_payout | 2018-05-29 22:22:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 275 |
author_reputation | 40,884,085,696,666 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,155,756 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | meno |
---|---|
permlink | re-sircork-re-meno-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t222922656z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 22:29:15 |
last_update | 2018-05-22 22:29:15 |
depth | 3 |
children | 1 |
last_payout | 2018-05-29 22:29:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 236 |
author_reputation | 506,032,115,725,186 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,156,589 |
net_rshares | 8,945,694,462 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sircork | 0 | 8,945,694,462 | 100% | ||
lucacroce | 0 | 0 | 100% |
Steemit must be mainstream media. Thanks guys!
author | musicfromsoul | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018523t182211988z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemit","blockchain","smt","hf20"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-05-23 14:22:15 | ||||||
last_update | 2018-05-23 14:25:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-05-30 14:22:15 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.025 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 46 | ||||||
author_reputation | 146,364,039,331 | ||||||
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 57,274,869 | ||||||
net_rshares | 7,643,011,305 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
musicfromsoul | 0 | 7,643,011,305 | 95.8% | ||
lucacroce | 0 | 0 | 100% |
### 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!*
author | nairadaddy |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190823924z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:09:30 |
last_update | 2018-05-22 19:09:30 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:09:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 161 |
author_reputation | 33,307,954,247,617 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,129,695 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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
author | nathanmars |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t063640488z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 06:36:39 |
last_update | 2018-05-23 06:36:39 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 06:36:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 170 |
author_reputation | 336,354,946,115,368 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,213,862 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
author | naysayer |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t015434362z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 01:54:36 |
last_update | 2018-05-23 01:54:36 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 01:54:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 1,659,918,707,480 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,180,177 |
net_rshares | 11,684,763,295 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
naysayer | 0 | 11,684,763,295 | 100% | ||
lucacroce | 0 | 0 | 100% |
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
author | osariemen |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t205050854z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 20:50:57 |
last_update | 2018-05-22 20:50:57 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 20:50:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 182 |
author_reputation | 2,245,392,442,084 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,143,984 |
net_rshares | 0 |
Thanks you update
author | phodogo |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t034029356z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 03:40:30 |
last_update | 2018-05-23 03:40:30 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 03:40:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 399,656,002 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 57,192,288 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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
author | prameshtyagi |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t104341216z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 10:43:39 |
last_update | 2018-05-24 10:43:39 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 10:43:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 133,698,299,152,872 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,434,872 |
net_rshares | -1,326,343,241 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -2,065,106,000 | -0.08% | ||
prameshtyagi | 0 | 738,762,759 | 100% |
can i translate this information for spanish users?
author | redencion123 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180526t114836120z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-26 11:17:57 |
last_update | 2018-05-26 11:17:57 |
depth | 1 |
children | 0 |
last_payout | 2018-06-02 11:17:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 224,184,057,446 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,785,258 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
### <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>
author | reseller |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t195541778z |
category | steem |
json_metadata | {"tags":["steem","steemitminute"],"image":["https://ipfs.io/ipfs/QmeCtFQwbDVeHdjvRdcRPND2fEMb5Z1MAa4bYHsnTGiRTz"],"links":["https://d.tube/#!/v/reseller/k4u781al"],"app":"steemit/0.1"} |
created | 2018-05-22 19:55:45 |
last_update | 2018-05-22 19:55:45 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:55:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 249 |
author_reputation | 396,642,162,962,533 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,136,334 |
net_rshares | 8,855,898,717 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
reseller | 0 | 8,855,898,717 | 100% | ||
lucacroce | 0 | 0 | 100% |
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
author | resteemmuse |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180526t003358187z |
category | steem |
json_metadata | {"tags":["steem"],"users":["resteemmuse"],"image":["http://www.christiansutter.com/wp-content/uploads/2018/05/ResteemMuse-300x300.jpg"],"app":"steemit/0.1"} |
created | 2018-05-26 00:33:57 |
last_update | 2018-05-26 00:33:57 |
depth | 1 |
children | 0 |
last_payout | 2018-06-02 00:33:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 265,191,043,102 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,724,270 |
net_rshares | 141,798,128 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sutter | 0 | 141,798,128 | 100% |
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!!
author | rickyislam |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t104324068z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 10:43:36 |
last_update | 2018-05-23 10:43:36 |
depth | 1 |
children | 4 |
last_payout | 2018-05-30 10:43:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 561 |
author_reputation | 207,818,679,877 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,244,300 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | crimsonclad |
---|---|
permlink | re-rickyislam-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t190338356z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 19:03:36 |
last_update | 2018-05-23 19:03:36 |
depth | 2 |
children | 3 |
last_payout | 2018-05-30 19:03:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 557 |
author_reputation | 323,726,516,486,570 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,318,281 |
net_rshares | 17,081,526,856 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
valued-customer | 0 | 17,081,526,856 | 25% | ||
lucacroce | 0 | 0 | 100% |
You are so kind! And, hardworking. Do you even sleep?
author | valued-customer |
---|---|
permlink | re-crimsonclad-re-rickyislam-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t061203669z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 06:12:12 |
last_update | 2018-05-24 06:12:12 |
depth | 3 |
children | 2 |
last_payout | 2018-05-31 06:12:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 354,315,926,679,123 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,401,285 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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....
author | rickyislam |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t150858177z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 15:09:12 |
last_update | 2018-05-23 15:09:12 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 15:09:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 348 |
author_reputation | 207,818,679,877 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,282,633 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | rocksg |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t214346377z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 21:43:51 |
last_update | 2018-05-22 21:43:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 21:43:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | 116,981,533,538,953 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,150,874 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
Can you give us some hints as to what will be in Hardfork 20? Are you going to change the curation algorithm?
author | rose98734 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t232932549z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 23:29:24 |
last_update | 2018-05-22 23:29:24 |
depth | 1 |
children | 1 |
last_payout | 2018-05-29 23:29:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 22,729,504,745,018 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,163,758 |
net_rshares | 7,404,026,896 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teatree | 0 | 274,722,000 | 100% | ||
alyssas | 0 | 242,560,490 | 100% | ||
aenor | 0 | 121,627,795 | 100% | ||
candy49 | 0 | 811,569,336 | 100% | ||
alyssasanders | 0 | 324,936,312 | 100% | ||
rose98734 | 0 | 5,628,610,963 | 100% | ||
lucacroce | 0 | 0 | 100% |
author | timcliff |
---|---|
permlink | re-rose98734-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t050528323z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steem/@steemitblog/hardfork-20-velocity-development-update"],"app":"steemit/0.1"} |
created | 2018-05-23 05:05:30 |
last_update | 2018-05-23 05:05:30 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 05:05:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 272,954,445,077,789 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,202,441 |
net_rshares | -1,275,615,281 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
apple64 | 0 | -1,275,615,281 | -100% | ||
lucacroce | 0 | 0 | 100% |
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.
author | sathyasankar |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194654192z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:47:00 |
last_update | 2018-05-22 19:47:00 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:47:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 25,037,930,470,038 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,135,081 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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!
author | scandinavianlife |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t102533262z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 10:25:33 |
last_update | 2018-05-24 10:25:33 |
depth | 1 |
children | 1 |
last_payout | 2018-05-31 10:25:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.575 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 876 |
author_reputation | 59,925,771,741,748 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,432,640 |
net_rshares | 157,321,617,409 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
maryfavour | 0 | 3,799,381,313 | 1% | ||
bearbear613 | 0 | 4,814,070,234 | 12% | ||
drpuffnstuff | 0 | 12,086,274,279 | 5% | ||
scandinavianlife | 0 | 122,463,627,375 | 100% | ||
shortsegments | 0 | 14,158,264,208 | 97% | ||
lucacroce | 0 | 0 | 100% |
Very interesting statistics, thank you, I will use that information in future posts.
author | shortsegments |
---|---|
permlink | re-scandinavianlife-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t001309699z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-29 00:13:18 |
last_update | 2018-05-29 00:13:18 |
depth | 2 |
children | 0 |
last_payout | 2018-06-05 00:13:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 668,508,621,504,890 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,191,564 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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
author | sebastian1903 |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t185124272z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 22:15:06 |
last_update | 2018-05-22 22:15:06 |
depth | 1 |
children | 1 |
last_payout | 2018-05-29 22:15:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 130 |
author_reputation | 102,048,995,198 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,154,791 |
net_rshares | -772,275,576 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sublimate | 0 | -772,275,576 | -100% |
count on you? what? read the post, spammer! i love to flag spam! thanks! :)
author | sublimate |
---|---|
permlink | re-sebastian1903-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t011952471z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 01:20:27 |
last_update | 2018-05-23 01:20:27 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 01:20:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 444,869,625,757 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,176,106 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cambridgeport90 | 0 | 0 | 100% |
help me for promoted
author | shibleehossain |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t181211097z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 18:12:30 |
last_update | 2018-05-24 18:12:30 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 18:12:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | -11,305,863,071 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,500,410 |
net_rshares | 0 |
Feels good to know that great efforts on to democratize and build a platform that is willing to incentivize the content creator.
author | siachen |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t032419009z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 03:24:00 |
last_update | 2018-05-24 03:24:00 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 03:24:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 172,479,354 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,381,015 |
net_rshares | 0 |
What language should I learn to develop something on Steem platform?
author | steemero |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t181535789z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 18:16:15 |
last_update | 2018-05-23 18:16:48 |
depth | 1 |
children | 2 |
last_payout | 2018-05-30 18:16:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.257 HBD |
curator_payout_value | 0.080 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 20,511,836,500,265 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,311,554 |
net_rshares | 89,228,468,710 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 62,265,176,108 | 7% | ||
steemero | 0 | 21,927,360,028 | 100% | ||
coinkaka | 0 | 5,035,932,574 | 100% | ||
lucacroce | 0 | 0 | 100% |
You should start by checking out the devportal: https://developers.steem.io/
author | timcliff |
---|---|
permlink | re-steemero-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t201134086z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://developers.steem.io/"],"app":"steemit/0.1"} |
created | 2018-05-23 20:11:33 |
last_update | 2018-05-23 20:11:33 |
depth | 2 |
children | 1 |
last_payout | 2018-05-30 20:11:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.108 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 272,954,445,077,789 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,327,581 |
net_rshares | 37,695,279,781 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
valued-customer | 0 | 17,430,129,445 | 25% | ||
steemero | 0 | 20,265,150,336 | 100% | ||
lucacroce | 0 | 0 | 100% |
author | steemero |
---|---|
permlink | re-timcliff-re-steemero-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180525t043409737z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-25 04:34:12 |
last_update | 2018-05-25 04:34:12 |
depth | 3 |
children | 0 |
last_payout | 2018-06-01 04:34:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.062 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 20,511,836,500,265 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,573,357 |
net_rshares | 22,890,489,751 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemero | 0 | 22,890,489,751 | 100% | ||
lucacroce | 0 | 0 | 100% |
> 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
author | steemnaira |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194936488z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:49:57 |
last_update | 2018-05-22 19:49:57 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:49:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 276 |
author_reputation | 2,352,514,706,828 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,135,533 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
>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.
author | street.yoga |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t140506720z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 14:05:06 |
last_update | 2018-05-23 14:05:06 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 14:05:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 346 |
author_reputation | 2,738,791,069,636 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,272,195 |
net_rshares | 8,325,758,842 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
street.yoga | 0 | 8,325,758,842 | 100% | ||
lucacroce | 0 | 0 | 100% |
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 .
author | stresskiller |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t093834855z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 09:38:33 |
last_update | 2018-05-23 09:38:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 09:38:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.071 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | 104,364,021,616,058 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 57,236,600 |
net_rshares | 23,346,980,259 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
maryfavour | 0 | 3,799,381,313 | 1% | ||
valued-customer | 0 | 17,430,129,445 | 25% | ||
faustofraser | 0 | 2,117,469,501 | 100% | ||
lucacroce | 0 | 0 | 100% |
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
author | suhardi |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t214323551z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"} |
created | 2018-05-22 21:43:36 |
last_update | 2018-05-22 21:43:36 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 21:43:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 205 |
author_reputation | 480,452,456,129 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,150,852 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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?
author | surpassinggoogle |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t094535545z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 09:45:39 |
last_update | 2018-05-23 09:45:39 |
depth | 1 |
children | 5 |
last_payout | 2018-05-30 09:45:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 595 |
author_reputation | 527,661,560,108,742 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 57,237,484 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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!
author | andrarchy |
---|---|
permlink | re-surpassinggoogle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t164015543z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 16:40:15 |
last_update | 2018-05-23 16:40:15 |
depth | 2 |
children | 1 |
last_payout | 2018-05-30 16:40:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 759 |
author_reputation | 230,168,201,522,782 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 57,297,133 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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?
author | surpassinggoogle |
---|---|
permlink | re-andrarchy-re-surpassinggoogle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t215310354z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 21:53:12 |
last_update | 2018-05-23 21:57:00 |
depth | 3 |
children | 0 |
last_payout | 2018-05-30 21:53:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,152 |
author_reputation | 527,661,560,108,742 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 57,340,573 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
I came to know about steemgigs.org through your comment. Is the websites already started its operations? Thank you for the great platform.
author | steemero |
---|---|
permlink | re-surpassinggoogle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t182150916z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 18:22:30 |
last_update | 2018-05-23 18:22:30 |
depth | 2 |
children | 2 |
last_payout | 2018-05-30 18:22:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.078 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 20,511,836,500,265 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,312,459 |
net_rshares | 26,409,374,622 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemero | 0 | 21,486,609,073 | 100% | ||
coinkaka | 0 | 4,922,765,549 | 100% | ||
lucacroce | 0 | 0 | 100% |
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
author | surpassinggoogle |
---|---|
permlink | re-steemero-re-surpassinggoogle-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t221619957z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemgigs.org/surpassing-google"],"app":"steemit/0.1"} |
created | 2018-05-23 22:16:24 |
last_update | 2018-05-23 22:16:24 |
depth | 3 |
children | 1 |
last_payout | 2018-05-30 22:16:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,612 |
author_reputation | 527,661,560,108,742 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 57,343,621 |
net_rshares | 17,505,644,849 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
valued-customer | 0 | 17,081,526,856 | 25% | ||
afridayanti | 0 | 424,117,993 | 100% | ||
lucacroce | 0 | 0 | 100% |
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.
author | sutter |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t001202630z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 00:12:03 |
last_update | 2018-05-24 00:12:03 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 00:12:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 331 |
author_reputation | 4,455,302,617,675 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,357,779 |
net_rshares | 850,254,821 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brosol | 0 | 620,046,708 | 75% | ||
sutter | 0 | 156,378,265 | 100% | ||
lucacroce | 0 | 0 | 100% | ||
resteemmuse | 0 | 73,829,848 | 100% |
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 ?
author | svamiva |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t083443383z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-23 08:34:48 |
last_update | 2018-05-23 08:34:48 |
depth | 1 |
children | 1 |
last_payout | 2018-05-30 08:34:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 9,635,062,598,275 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,228,966 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
I believe the answer is "no." On the internal exchange, STEEM will be the base currency.
author | andrarchy |
---|---|
permlink | re-svamiva-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t164142966z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 16:41:42 |
last_update | 2018-05-23 16:41:42 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 16:41:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 230,168,201,522,782 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 57,297,362 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
Thank you for the update, very much appreciated!
author | tarekadam |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t212030545z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-22 21:20:30 |
last_update | 2018-05-22 21:20:30 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 21:20:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 50,131,776,387,207 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,147,989 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
That's amazing progress guys!! Especially this:  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
author | therealwolf |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193844934z |
category | steem |
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"} |
created | 2018-05-22 19:38:45 |
last_update | 2018-05-22 19:38:45 |
depth | 1 |
children | 8 |
last_payout | 2018-05-29 19:38:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 345 |
author_reputation | 581,207,180,122,024 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,133,953 |
net_rshares | 7,886,467,070 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
my451r | 0 | 1,215,982,973 | 100% | ||
phoneinf | 0 | 6,670,484,097 | 100% | ||
lucacroce | 0 | 0 | 100% |
Waoh! Your comment sort of made everything clearer to me. This means less server bills. Cool!!
author | akintunde |
---|---|
permlink | re-therealwolf-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t103321716z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 10:33:24 |
last_update | 2018-05-23 10:33:24 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 10:33:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 16,541,536,778,040 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,243,146 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | phoneinf |
---|---|
permlink | re-therealwolf-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t200305722z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 20:03:06 |
last_update | 2018-05-22 20:03:06 |
depth | 2 |
children | 6 |
last_payout | 2018-05-29 20:03:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 201,286,258,274,191 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,137,392 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | sircork |
---|---|
permlink | re-phoneinf-re-therealwolf-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t222425584z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 22:24:24 |
last_update | 2018-05-22 22:25:12 |
depth | 3 |
children | 5 |
last_payout | 2018-05-29 22:24:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 494 |
author_reputation | 40,884,085,696,666 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,156,003 |
net_rshares | 10,841,592,546 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
meno | 0 | 4,627,168,550 | 16% | ||
phoneinf | 0 | 6,214,423,996 | 100% | ||
lucacroce | 0 | 0 | 100% |
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 !
author | tibfox |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t194711016z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:47:12 |
last_update | 2018-05-22 19:47:12 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 191,586,727,867,779 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,135,115 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
<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>
author | tipu |
---|---|
permlink | re-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t201332 |
category | steem |
json_metadata | "" |
created | 2018-05-22 20:13:45 |
last_update | 2018-05-22 20:13:45 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 20:13:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 355 |
author_reputation | 55,904,946,846,198 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,138,976 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
Why was you Payout denied? Just curious @steemitblog
author | triablot |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t204825892z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"} |
created | 2018-05-22 20:49:39 |
last_update | 2018-05-22 20:49:39 |
depth | 1 |
children | 2 |
last_payout | 2018-05-29 20:49:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 9,478,325,333,003 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,143,834 |
net_rshares | 1,034,777,435 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
triablot | 0 | 1,034,777,435 | 100% |
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
author | andrarchy |
---|---|
permlink | re-triablot-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t214023483z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 21:40:24 |
last_update | 2018-05-22 21:40:24 |
depth | 2 |
children | 1 |
last_payout | 2018-05-29 21:40:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 200 |
author_reputation | 230,168,201,522,782 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 57,150,479 |
net_rshares | 95,925,654,356 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
themonetaryfew | 0 | 95,925,654,356 | 100% |
Ok, good to know. Following! Thanks....
author | triablot |
---|---|
permlink | re-andrarchy-re-triablot-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t221234198z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 22:13:48 |
last_update | 2018-05-22 22:13:48 |
depth | 3 |
children | 0 |
last_payout | 2018-05-29 22:13:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 9,478,325,333,003 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,154,628 |
net_rshares | 0 |
Yeeey update!!
author | umutkarakus |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t190818362z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:08:21 |
last_update | 2018-05-22 19:08:21 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 19:08:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 6,791,921,573,199 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,129,518 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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!
author | valth |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t203809882z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 20:38:12 |
last_update | 2018-05-22 20:38:12 |
depth | 1 |
children | 0 |
last_payout | 2018-05-29 20:38:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.059 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 217 |
author_reputation | 74,218,254,347,006 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,142,410 |
net_rshares | 15,212,854,426 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
upvote-me | 0 | 2,506,384,904 | 100% | ||
asimkhokhar | 0 | 4,300,275,855 | 88% | ||
wajahatali | 0 | 3,580,376,695 | 84% | ||
xxxkoenigxxx | 0 | 4,825,816,972 | 100% | ||
lucacroce | 0 | 0 | 100% |
I very much appreciate the update! I'm looking forward to the revolution that Steemit has enabled being exported into the WWW =D. Thanks!
author | valued-customer |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t061753196z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 06:18:00 |
last_update | 2018-05-24 06:18:00 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 06:18:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 141 |
author_reputation | 354,315,926,679,123 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,401,934 |
net_rshares | 0 |
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.
author | warpedpoetic |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t092535085z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 09:24:21 |
last_update | 2018-05-23 09:24:21 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 09:24:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 340 |
author_reputation | 109,516,835,772,032 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 57,234,813 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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!
author | whatsup |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t054930932z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 05:49:33 |
last_update | 2018-05-23 05:49:33 |
depth | 1 |
children | 0 |
last_payout | 2018-05-30 05:49:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 519,839,651,581,670 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,207,959 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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!
author | yabapmatt |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t192906559z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:29:06 |
last_update | 2018-05-22 19:29:06 |
depth | 1 |
children | 35 |
last_payout | 2018-05-29 19:29:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.412 HBD |
curator_payout_value | 1.055 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,011 |
author_reputation | 160,224,638,135,630 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,132,544 |
net_rshares | 1,110,512,356,999 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | -19,897,127,924 | -9% | ||
nextgencrypto | 0 | -170,835,873,186 | -9% | ||
steemservices | 0 | -21,624,132,113 | -9% | ||
donkeypong | 0 | 169,724,119,870 | 1% | ||
gliten | 0 | 490,881,508 | 100% | ||
protegeaa | 0 | 243,924,823,370 | 100% | ||
steevc | 0 | 11,667,533,559 | 4% | ||
aggroed | 0 | 562,423,489,666 | 100% | ||
thecyclist | 0 | -186,400,588,953 | -9% | ||
abh12345 | 0 | 8,571,430,329 | 3% | ||
engagement | 0 | -1,466,822,755,091 | -9% | ||
iflagtrash | 0 | -115,694,440,218 | -9% | ||
yougotflagged | 0 | -9,733,555,245 | -9% | ||
scandinavianlife | 0 | 25,234,929,277 | 20% | ||
sircork | 0 | 9,642,761,563 | 100% | ||
thedelegator | 0 | -98,652,647,902 | -9% | ||
yabapmatt | 0 | 1,140,167,463,279 | 100% | ||
melonman0 | 0 | 1,448,662,488 | 100% | ||
ngc | 0 | -137,502,156,805 | -9% | ||
postpromoter | 0 | 1,141,982,794,917 | 1% | ||
iamankit | 0 | 5,864,473,894 | 100% | ||
phoneinf | 0 | 0 | 0% | ||
doon | 0 | 604,222,921 | 100% | ||
jdcandio36 | 0 | 598,153,853 | 100% | ||
jazzsassyone | 0 | 591,373,004 | 100% | ||
cambridgeport90 | 0 | 0 | 100% | ||
shortsegments | 0 | 14,738,520,938 | 97% | ||
lucacroce | 0 | 0 | 100% |
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
author | bluefoxy |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t001110598z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"} |
created | 2018-05-24 00:11:12 |
last_update | 2018-05-24 00:12:09 |
depth | 2 |
children | 0 |
last_payout | 2018-05-31 00:11:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 276 |
author_reputation | 184,859,463,331 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,357,663 |
net_rshares | 113,466,743 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bluefoxy | 0 | 113,466,743 | 100% | ||
lucacroce | 0 | 0 | 100% |
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.
author | cambridgeport90 |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180602t211641973z |
category | steem |
json_metadata | {"tags":["steem"],"links":["htts://dnnsoftware.com"],"app":"steemit/0.1"} |
created | 2018-06-02 21:19:21 |
last_update | 2018-06-02 21:19:21 |
depth | 2 |
children | 4 |
last_payout | 2018-06-09 21:19:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 204 |
author_reputation | 1,401,167,981,030 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,962,243 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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 🙂
author | moisesmcardona |
---|---|
permlink | re-cambridgeport90-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180607t125949751z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-06-07 12:59:51 |
last_update | 2018-06-07 12:59:51 |
depth | 3 |
children | 3 |
last_payout | 2018-06-14 12:59:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 150 |
author_reputation | 30,544,308,668,193 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 59,687,098 |
net_rshares | 607,829,733 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cambridgeport90 | 0 | 0 | 0% | ||
lucacroce | 0 | 607,829,733 | 100% |
If I could understand more.... my head would explode too.
author | clumsysilverdad |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t193736023z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:37:36 |
last_update | 2018-05-22 19:37:36 |
depth | 2 |
children | 6 |
last_payout | 2018-05-29 19:37:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 28,166,630,869,767 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,133,787 |
net_rshares | 1,093,320,351 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
maximilcriptus | 0 | 613,140,331 | 100% | ||
mahbub6213 | 0 | 480,180,020 | 100% | ||
lucacroce | 0 | 0 | 100% |
There’s nothing to understand, @yabapmatt is just a fanboy who will jerk off any moron with promises.
author | berniesanders |
---|---|
permlink | re-clumsysilverdad-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t195845208z |
category | steem |
json_metadata | {"tags":["steem"],"users":["yabapmatt"],"app":"steemit/0.1"} |
created | 2018-05-22 19:58:45 |
last_update | 2018-05-22 19:58:45 |
depth | 3 |
children | 5 |
last_payout | 2018-05-29 19:58:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.270 HBD |
curator_payout_value | 0.077 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 600,251,775,828,524 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,136,776 |
net_rshares | 86,968,921,529 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
greenman | 0 | -10,281,360,935 | -1% | ||
freebornangel | 0 | 6,946,760,376 | 17% | ||
ocrdu | 0 | 5,404,614,294 | 100% | ||
schattenjaeger | 0 | 19,589,423,377 | 100% | ||
hitwill | 0 | -12,376,154,166 | -100% | ||
yesman1 | 0 | -591,811,380 | -100% | ||
mybestnews | 0 | -143,955,249 | -100% | ||
neutralizer | 0 | 614,874,006 | 3% | ||
randohealer | 0 | 611,796,573 | 3% | ||
camillesteemer | 0 | -52,056,539 | -100% | ||
soma909 | 0 | 77,217,331,582 | 100% | ||
treschouette | 0 | 598,352,928 | 100% | ||
steemittopfan | 0 | -61,020,113 | -100% | ||
azobifly | 0 | -137,296,004 | -100% | ||
aloader | 0 | 0 | -100% | ||
besttopsteemer | 0 | -143,398,049 | -100% | ||
ilikesteemit | 0 | -57,969,424 | -100% | ||
strumo | 0 | -114,305,394 | -100% | ||
oiepassive | 0 | -54,904,354 | -100% | ||
foodstreem | 0 | 0 | -100% |
Yes, I agree. It's one of their most successful summaries and it demonstrates a great effort to communicate the progress to us.
author | donkeypong |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t002850892z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 00:28:54 |
last_update | 2018-05-23 00:28:54 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 00:28:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.063 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 127 |
author_reputation | 431,667,636,679,304 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,170,287 |
net_rshares | 19,473,624,874 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
remlaps | 0 | 12,477,553,293 | 100% | ||
maryfavour | 0 | 3,799,310,936 | 1% | ||
rgkmb-unofficial | 0 | 3,196,760,645 | 100% | ||
lucacroce | 0 | 0 | 100% |
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!
author | doon |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t223314304z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 22:33:12 |
last_update | 2018-05-22 22:33:12 |
depth | 2 |
children | 0 |
last_payout | 2018-05-29 22:33:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 260 |
author_reputation | 543,590,246,837 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 57,157,083 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
I'm learning but it all looks interesting
author | neddykelly |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t204446864z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 20:44:48 |
last_update | 2018-05-22 20:44:48 |
depth | 2 |
children | 1 |
last_payout | 2018-05-29 20:44:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 5,509,490,288,180 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,143,222 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
Good luck with your learning :)
author | nathanmars |
---|---|
permlink | re-neddykelly-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t063149268z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 06:31:48 |
last_update | 2018-05-23 06:31:48 |
depth | 3 |
children | 0 |
last_payout | 2018-05-30 06:31:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 336,354,946,115,368 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,213,286 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | omitaylor |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t113729524z |
category | steem |
json_metadata | {"tags":["steem"],"users":["yabapmatt","sircork"],"app":"steemit/0.1"} |
created | 2018-05-23 11:37:33 |
last_update | 2018-05-23 11:37:33 |
depth | 2 |
children | 5 |
last_payout | 2018-05-30 11:37:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 316 |
author_reputation | 3,986,872,420,584 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,250,961 |
net_rshares | 17,430,129,445 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
valued-customer | 0 | 17,430,129,445 | 25% | ||
lucacroce | 0 | 0 | 100% |
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 🙂
author | moisesmcardona |
---|---|
permlink | re-omitaylor-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180607t125816702z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-06-07 12:58:18 |
last_update | 2018-06-07 12:58:18 |
depth | 3 |
children | 0 |
last_payout | 2018-06-14 12:58:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 150 |
author_reputation | 30,544,308,668,193 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 59,686,890 |
net_rshares | 621,188,628 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 621,188,628 | 100% |
author | sircork |
---|---|
permlink | re-omitaylor-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t002759005z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-29 00:27:57 |
last_update | 2018-05-29 00:27:57 |
depth | 3 |
children | 3 |
last_payout | 2018-06-05 00:27:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.750 HBD |
curator_payout_value | 0.246 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 40,884,085,696,666 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,193,081 |
net_rshares | 246,188,773,423 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 245,868,531,836 | 15% | ||
netizens | 0 | 320,241,587 | 100% |
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?
author | phoneinf |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t195537416z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 19:55:36 |
last_update | 2018-05-22 19:55:36 |
depth | 2 |
children | 7 |
last_payout | 2018-05-29 19:55:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 279 |
author_reputation | 201,286,258,274,191 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,136,318 |
net_rshares | 452,653,777 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mahbub6213 | 0 | 452,653,777 | 100% | ||
lucacroce | 0 | 0 | 100% |
Because no one gives a shit.
author | schattenjaeger |
---|---|
permlink | re-phoneinf-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t140954245z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 14:09:54 |
last_update | 2018-05-23 14:09:54 |
depth | 3 |
children | 1 |
last_payout | 2018-05-30 14:09:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 132,607,893,972,093 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,272,978 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | timcliff |
---|---|
permlink | re-phoneinf-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t200624910z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 20:06:24 |
last_update | 2018-05-22 20:06:24 |
depth | 3 |
children | 2 |
last_payout | 2018-05-29 20:06:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.375 HBD |
curator_payout_value | 0.105 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 154 |
author_reputation | 272,954,445,077,789 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,137,894 |
net_rshares | 119,653,884,866 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
karenmckersie | 0 | 2,719,166,626 | 13% | ||
themonetaryfew | 0 | 106,584,060,396 | 100% | ||
apple64 | 0 | -1,067,351,561 | -100% | ||
mejustandrew | 0 | 7,811,454,418 | 36% | ||
betheonemusic | 0 | 3,144,725,796 | 100% | ||
mahbub6213 | 0 | 461,829,191 | 100% | ||
lucacroce | 0 | 0 | 100% |
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.
author | yabapmatt |
---|---|
permlink | re-phoneinf-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t200144098z |
category | steem |
json_metadata | {"tags":["steem"],"links":["http://geo.steem.pl/"],"app":"steemit/0.1"} |
created | 2018-05-22 20:01:42 |
last_update | 2018-05-22 20:01:42 |
depth | 3 |
children | 1 |
last_payout | 2018-05-29 20:01:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 160,224,638,135,630 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,137,185 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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
author | shortsegments |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t000655560z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-29 00:07:03 |
last_update | 2018-05-29 00:07:03 |
depth | 2 |
children | 0 |
last_payout | 2018-06-05 00:07:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 529 |
author_reputation | 668,508,621,504,890 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,190,929 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
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.
author | sircork |
---|---|
permlink | re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180522t221935982z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-22 22:19:33 |
last_update | 2018-05-22 22:19:33 |
depth | 2 |
children | 2 |
last_payout | 2018-05-29 22:19:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.741 HBD |
curator_payout_value | 0.240 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 345 |
author_reputation | 40,884,085,696,666 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,155,373 |
net_rshares | 244,787,309,912 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jassennessaj | 0 | 22,006,842,978 | 17% | ||
yabapmatt | 0 | 207,338,838,699 | 20% | ||
cambridgeport90 | 0 | 0 | 100% | ||
shortsegments | 0 | 14,970,623,630 | 97% | ||
mahbub6213 | 0 | 471,004,605 | 100% | ||
lucacroce | 0 | 0 | 100% | ||
smallbites | 0 | 0 | 100% |
Me too
author | mahbub6213 |
---|---|
permlink | re-sircork-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t094717753z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 09:47:21 |
last_update | 2018-05-23 09:47:21 |
depth | 3 |
children | 0 |
last_payout | 2018-05-30 09:47:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 838,513,332 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,237,672 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% |
I agree that these changes bring great capabilities which will be useful as Steemit continues to grow and SMT become more common.
author | shortsegments |
---|---|
permlink | re-sircork-re-yabapmatt-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180529t000241015z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-29 00:02:48 |
last_update | 2018-05-29 00:02:48 |
depth | 3 |
children | 0 |
last_payout | 2018-06-05 00:02:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 668,508,621,504,890 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,190,558 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lucacroce | 0 | 0 | 100% | ||
smallbites | 0 | 0 | 100% |
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.
author | youraverageguy |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t005121274z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 00:51:21 |
last_update | 2018-05-23 00:51:21 |
depth | 1 |
children | 1 |
last_payout | 2018-05-30 00:51:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 220 |
author_reputation | 48,846,679,188 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 57,172,774 |
net_rshares | 1,330,584,158 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sirjaxxy | 0 | 607,162,685 | 100% | ||
youraverageguy | 0 | 723,421,473 | 100% | ||
lucacroce | 0 | 0 | 100% |
There have been a lot of discussions on this, but there is not yet consensus on what changes to make.
author | timcliff |
---|---|
permlink | re-youraverageguy-re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180523t050256312z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-23 05:02:57 |
last_update | 2018-05-23 05:02:57 |
depth | 2 |
children | 0 |
last_payout | 2018-05-30 05:02:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 272,954,445,077,789 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,202,119 |
net_rshares | -1,230,057,592 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
apple64 | 0 | -1,230,057,592 | -100% | ||
lucacroce | 0 | 0 | 100% |
It is very glad to know that steemit is developing. And your team always do it with success. Thanks steemitblog.
author | zakia |
---|---|
permlink | re-steemitblog-steemit-blockchain-team-update-appbase-rocksdb-bandwidth-hf20-smts-and-more-20180524t174731967z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-24 17:48:03 |
last_update | 2018-05-24 17:48:03 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 17:48:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.106 HBD |
curator_payout_value | 0.034 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 134,657,668,551,116 |
root_title | "Steemit Blockchain Team Update: AppBase, RocksDB, Bandwidth, HF20, SMTs, and more!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,496,824 |
net_rshares | 38,297,846,714 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zakia | 0 | 38,297,846,714 | 100% | ||
lucacroce | 0 | 0 | 100% |