 Today we have some exciting news to share: AppBase is ready, and we would like everyone to help with testing. Although, please note that third-party developers may need to make some minor changes to adapt to the new platform. # AppBase release candidate is now ready Back in August we shared with you news of some of the [exciting updates](https://steemit.com/steemitdev/@steemitdev/steem-blockchain-update-august-2017) being made to the Steem blockchain. One of those updates is AppBase, which will create distinct “modules” that will dramatically improve Steem’s ability to scale. AppBase is the first step in creating a multi-chain FABRIC. AppBase enables 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. # We are finally ready to test AppBase on a large scale! If you’re just a regular steemit.com user, you can help too. Head on over to [steemitstage.com](https://steemitstage.com) and use the site like you normally would. Our staging environment includes the same security measures taken for steemit.com, and is considered pre-production. It's designed to be as close to the 'real' steemit.com as possible, in order to fully vet new code before it makes it to steemit.com. If you're still worried about using your keys, you're welcome to just use your posting key. Even if you don't login at all, just browsing the site and providing feedback to us is still useful. # For Developers If you run or maintain a Steem service, there are a couple of steps you will need to take to ensure your service will continue to operate as expected. Details are in the sections below. ## steemd node changes If you run a steemd node, you can check out the tag `v0.19.4rc1` from GitHub or Docker Hub. ## API changes We restructured our APIs to allow greater flexibility for future upgrading and maintaining. The APIs now take in a single object as an argument and return a single object as a return type. All the existing APIs have been updated to match this standard. Because we no longer need to stick to C++ style parameter semantics, we can use more varied default argument types as well as variadic parameters. We can also extend the functionality of a call without impacting the existing apps by extending the returned object. The `database_api` has undergone significant changes to allow the querying of all consensus objects with any ordering that steemd uses already. This will provide more flexibility for services to find the objects they need. **New `condenser_api`** To help with this transition, we created `condenser_api`, which contains all of the API methods that currently exist and uses the existing argument formatting. The easiest way to get your app to work with Appbase is to change the api to `condenser_api`. **APIs must be called by name** If you are used to calling an API using the API id, that method of invocation is no longer supported. All the APIs must now be called by name. **Removed `login_api`** The `login_api` was designed as a way to map the API names to numeric ids. Because the APIs are no longer called via id, there is now no need for the `login_api`, and so it has been removed. **API methods list** If you call `jsonrpc.get_methods`, a list of all available API methods will be returned. **Argument and return object prototypes** If you call `jsonrpc.get_signature` passing an API method name, it will return the argument and return the object prototypes. For example, `{"jsonrpc":"2.0", "method":"jsonrpc.get_signature", "params":{"method":"database_api.get_active_witnessess"}, "id":1}` returns `{"jsonrpc":"2.0","result":{"args":{},"ret":{"witnesses":[]}},"id":1}` `{}` is the void type argument and it returns a list in the `witnesses` field. **Using `condenser_api`** All calls in `condenser_api` will return `[]` as the argument, as the array argument passing is opaque and implemented in the API calls themselves. They follow the current argument formatting. Existing apps should only need to skip using `login_api` and send all of their calls to `condenser_api` without any other changes required to use Appbase. For example, calling `get_dynamic_global_properties` with `condenser_api` vs `database_api`: `{"jsonrpc":"2.0", "method":"condenser_api.get_dynamic_global_properties", "params":[], "id":1}` `{"jsonrpc":"2.0", "method":"database_api.get_dynamic_global_properties", "id":1}` Because the method has no arguments, the `params` field can be omitted when not using `condenser_api`. However, it can optionally be included as the void type (e.g. `"params":{}`) but it is not required. **Streamlined syntax** You might have noticed that the previous examples used a different format to call the API. Previously, there was an outdated call syntax that looked like this: `{"jsonrpc":"2.0", "id":0, "method":"call", "params":["api","function",[ARGS]]}`. However, we now support a more streamlined call syntax: `{"jsonrpc":"2.0", "id":0, "method":"api.function", "params":[ARGS]}` Both formats work, but with the new format being preferred for readability. **Enhanced JSON-RPC compliance** Some other changes were made to make steemd more compliant with the widely-used JSON-RPC specification. This is still new. Please help us test our json-rpc implementation to ensure that it is spec compliant. **Backward compatibility** Our reverse proxy service, `jussi`, handles the method translation. This means that even after deploying Appbase to our production environment, the old API calls should still work. **Future updates required** Note that the new APIs introduced in this release are still Work in Progress. There are a number of serialization changes that are still being made to them and hence they are in various states of completeness. We will post again in the near future explaining the nature of those changes. Feel free to play around with those APIs, but know that they will be changed. Once we finalize those APIs, we will deprecate `condenser_api` and begin migration to the new APIs. ## Config file changes The logging config has always been a sore spot in the config file because of the number of options available. It was so complex that it required a different parser. We have changed to using a json format, which allows us to use only one parser. The default logging config is the following: ``` # Console appender definition json: {"appender", "stream"} log-console-appender = {"appender":"stderr","stream":"std_error"} # File appender definition json: {"appender", "file"} log-file-appender = {"appender":"p2p","file":"logs/p2p/p2p.log"} # Logger definition json: {"name", "level", "appender"} log-logger = {"name":"default","level":"debug","appender":"stderr"} log-logger = {"name":"p2p","level":"debug","appender":"p2p"} ``` **Plugins** Plugins are enabled via the `plugin` option. There is no more `public-api` option and all the APIs are now enabled via `plugin` as well. Most config options are now namespaced by the plugin they belong to. Config options that were not namespaced are still supported but will now log a deprecation warning when used. `contrib/config-for-docker.ini` and `contrib/fullnode.config.ini` are example configs that are used in the Docker images. You can use these as example config files. As usual, we strongly recommend using the Docker images to deploy your node. # Conclusions These changes have been in the works for many months, and represent a major step forward for Steem. 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.
author | steemitdev |
---|---|
permlink | appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin |
category | steem |
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"image":["https://steemitimages.com/DQmRp8QNfqNb2c7M7p5D8vMqk1qxn6BDWrc5coYdBs6DTA3/image.png"],"links":["https://steemit.com/steemitdev/@steemitdev/steem-blockchain-update-august-2017","https://steemitstage.com"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-02-14 22:33:33 |
last_update | 2018-02-14 22:33:33 |
depth | 0 |
children | 459 |
last_payout | 2018-02-21 22:33: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 | 7,989 |
author_reputation | 17,757,631,438,715 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 37,586,625 |
net_rshares | 170,307,280,452,703 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
analisa | 0 | 348,727,479,627 | 7% | ||
berkah | 0 | 40,418,266,916 | 20% | ||
ned | 0 | 76,804,197,068,861 | 100% | ||
wackou | 0 | 6,713,191,650,746 | 80% | ||
sandra | 0 | 389,400,966,122 | 100% | ||
mrs.agsexplorer | 0 | 45,853,812,410 | 8% | ||
donkeypong | 0 | 913,967,406,692 | 7% | ||
team | 0 | 8,547,406,452 | 1% | ||
pnc | 0 | 66,155,398,828 | 20% | ||
bleepcoin | 0 | 694,703,410,299 | 100% | ||
mranderson | 0 | 77,653,460,986 | 100% | ||
gekko | 0 | 6,521,278,355 | 100% | ||
teamsteem | 0 | 2,492,083,917,885 | 20% | ||
steemitblog | 0 | 0 | 0% | ||
kevinwong | 0 | 151,810,133,228 | 2.8% | ||
hien-tran | 0 | 2,115,984,975 | 100% | ||
the-alien | 0 | 83,238,713,311 | 100% | ||
intelliguy | 0 | 65,610,136,207 | 100% | ||
andrarchy | 0 | 2,580,328,972,555 | 100% | ||
dahaz159 | 0 | 17,893,494,421 | 100% | ||
proglobyte | 0 | 21,961,896,721 | 100% | ||
brett-barth | 0 | 1,046,110,097 | 100% | ||
gtg | 0 | 4,771,829,820,187 | 100% | ||
superfreek | 0 | 10,480,573,946 | 100% | ||
ruthalas | 0 | 0 | 100% | ||
spiry-btc | 0 | 6,182,390,898 | 50% | ||
picokernel | 0 | 548,274,336,825 | 100% | ||
ausbitbank | 0 | 823,999,763,457 | 10% | ||
pkattera | 0 | 251,027,991,151 | 15% | ||
dimon14 | 0 | 24,147,721,842 | 98% | ||
rules169 | 0 | 0 | 0% | ||
heimindanger | 0 | 260,553,340,507 | 100% | ||
bitcoiner | 0 | 26,643,405,505 | 20% | ||
chrisd | 0 | 465,803,199 | 100% | ||
exyle | 0 | 1,005,132,260,523 | 25% | ||
arconite | 0 | 866,848,186 | 1.4% | ||
fabien | 0 | 1,578,031,635,521 | 100% | ||
vandeberg | 0 | 4,026,900,919,556 | 100% | ||
timcliff | 0 | 765,629,033,529 | 76% | ||
kurtbeil | 0 | 36,253,291,733 | 100% | ||
itsnicoletv | 0 | 60,253,144 | 100% | ||
jackpot | 0 | 6,431,698,077 | 100% | ||
randomblock1 | 0 | 210,035,374 | 100% | ||
bennierex | 0 | 143,617,671,267 | 100% | ||
perduta | 0 | 0 | 100% | ||
envi.sage | 0 | 14,020,844,176 | 100% | ||
enzodark | 0 | 236,491,140 | 100% | ||
husamia | 0 | 7,152,736,930 | 100% | ||
jsantana | 0 | 1,395,340,517 | 43.06% | ||
protegeaa | 0 | 110,446,891,997 | 100% | ||
fiat19 | 0 | 9,693,879,091 | 100% | ||
themonetaryfew | 0 | 4,983,806,305 | 100% | ||
richardcrill | 0 | 154,553,465,903 | 100% | ||
wesleybos | 0 | 0 | 100% | ||
aggroed | 0 | 250,884,092,419 | 100% | ||
leunghakkwun | 0 | 195,143,920 | 100% | ||
iren | 0 | 1,764,027,448 | 100% | ||
pjo | 0 | 29,580,939,697 | 100% | ||
mjhomb | 0 | 134,571,712,006 | 100% | ||
kashaya | 0 | 8,412,721,889 | 100% | ||
whatsup | 0 | 4,281,255,338 | 1% | ||
largelyuseless | 0 | 4,682,036,174 | 100% | ||
greatdabu | 0 | 136,322,844,237 | 100% | ||
bartley | 0 | 204,963,129 | 100% | ||
customnature | 0 | 255,122,108,841 | 100% | ||
walden | 0 | 3,663,397,279 | 100% | ||
dylanhobalart | 0 | 10,551,191,243 | 57% | ||
ninkhisibir | 0 | 29,868,045,354 | 100% | ||
slobu | 0 | 521,159,821 | 100% | ||
alejandr0 | 0 | 466,254,114 | 100% | ||
yahooshua | 0 | 594,843,892 | 100% | ||
jenkinrocket | 0 | 10,706,186,866 | 13% | ||
barton26 | 0 | 5,524,071,038 | 100% | ||
intan | 0 | 1,587,456,985 | 100% | ||
blhz | 0 | 7,160,586,614 | 35% | ||
garethnelsonuk | 0 | 31,903,308,300 | 100% | ||
thejohalfiles | 0 | 43,720,678,668,238 | 100% | ||
paulhallman | 0 | 363,864,565 | 2.8% | ||
joshuaatiemo | 0 | 2,289,021,737 | 100% | ||
jamzed | 0 | 14,784,238,847 | 100% | ||
lavater | 0 | 45,110,716,494 | 11% | ||
impactmind | 0 | 848,229,445 | 100% | ||
voronoi | 0 | 735,050,567,755 | 100% | ||
primerz | 0 | 2,807,797,528 | 100% | ||
steemitdev | 0 | 2,379,907,257 | 100% | ||
wagnertamanaha | 0 | 2,725,773,249 | 25% | ||
teamhumble | 0 | 289,893,005 | 0.02% | ||
justinw | 0 | 372,999,119,996 | 100% | ||
khalilalfamahera | 0 | 333,837,100 | 100% | ||
personz | 0 | 13,230,581,912 | 100% | ||
evdoggformayor | 0 | 1,811,137,946 | 100% | ||
da-dawn | 0 | 14,574,568,561 | 53% | ||
faustiantimes | 0 | 1,635,678,833 | 100% | ||
dedysteemit | 0 | 393,827,492 | 100% | ||
borepstein | 0 | 21,899,330,905 | 100% | ||
theghost1980 | 0 | 26,183,231,727 | 50% | ||
javirid | 0 | 3,608,396,919 | 100% | ||
walil | 0 | 77,088,333 | 100% | ||
nasruddin | 0 | 351,723,429 | 100% | ||
korzunav | 0 | 1,736,196,230 | 100% | ||
sisterray | 0 | 278,770,618 | 100% | ||
novitalee91 | 0 | 9,617,958,162 | 100% | ||
tiagopaixao | 0 | 1,548,159,799 | 100% | ||
alanw | 0 | 167,551,440 | 100% | ||
kide | 0 | 70,362,605 | 100% | ||
vikx | 0 | 7,826,809,043 | 100% | ||
omjacknews | 0 | 0 | 0% | ||
avika | 0 | 843,163,919 | 100% | ||
dapu | 0 | 0 | 100% | ||
btcmillionaire | 0 | 1,774,068,219 | 100% | ||
beatcancer | 0 | 617,220,000 | 100% | ||
greenstar | 0 | 19,396,134,934 | 20% | ||
curts-mom | 0 | 602,335,520 | 100% | ||
captainobviou3 | 0 | 24,438,983,562 | 100% | ||
albertvhons | 0 | 2,771,061,441 | 9% | ||
sirknight | 0 | 128,052,924,888 | 100% | ||
goncalves | 0 | 614,503,785 | 100% | ||
forykw | 0 | 16,538,991,785 | 100% | ||
steemchiller | 0 | 88,568,671,493 | 100% | ||
saejox | 0 | 614,503,440 | 100% | ||
upheaver | 0 | 21,836,092,602 | 100% | ||
drag33 | 0 | 12,821,842,350 | 30% | ||
newsflash | 0 | 9,994,640,591,962 | 100% | ||
aguazul | 0 | 614,860,000 | 100% | ||
lokii | 0 | 4,568,383,190 | 100% | ||
diogogomes | 0 | 165,986,191 | 69% | ||
vaskogudus | 0 | 571,716,231 | 100% | ||
cryptonewb | 0 | 4,969,118,808 | 100% | ||
helo | 0 | 1,494,161,590 | 100% | ||
safran | 0 | 6,826,847,199 | 39.68% | ||
almost-digital | 0 | 961,766,588,572 | 100% | ||
coquiunlimited | 0 | 833,740,373 | 7% | ||
rachinata | 0 | 3,295,505,564 | 100% | ||
edb1984 | 0 | 3,897,018,498 | 26% | ||
shawshank-steem | 0 | 616,902,566 | 100% | ||
piku111 | 0 | 592,996,153 | 100% | ||
marcelmaatkamp | 0 | 2,201,176,822 | 100% | ||
speakerhornet | 0 | 614,993,103 | 100% | ||
atsumi | 0 | 337,567,126 | 100% | ||
pibara | 0 | 34,722,241,863 | 100% | ||
cool8676 | 0 | 614,503,785 | 100% | ||
macstrong | 0 | 617,431,126 | 100% | ||
mlomongo | 0 | 614,503,785 | 100% | ||
imjason | 0 | 14,671,498,449 | 100% | ||
mooen | 0 | 175,313,289 | 100% | ||
spins | 0 | 6,471,393,366 | 100% | ||
bnchdrff | 0 | 611,785,700 | 100% | ||
semasping | 0 | 0 | 100% | ||
katari | 0 | 2,121,088,699 | 100% | ||
schlijk | 0 | 738,354,440 | 100% | ||
danijel | 0 | 387,137,385 | 100% | ||
maitland | 0 | 0 | 0% | ||
manzon | 0 | 488,381,456 | 100% | ||
lisaocampo | 0 | 20,123,534,260 | 20% | ||
kel | 0 | 16,308,682,255 | 100% | ||
funnyfaces | 0 | 4,071,962,615 | 100% | ||
jsecheverry | 0 | 614,503,785 | 100% | ||
tristanday | 0 | 233,511,166 | 100% | ||
yogevm | 0 | 353,905,959 | 100% | ||
foxdal | 0 | 2,239,007,116 | 100% | ||
hope-on-fire | 0 | 2,445,441,785 | 100% | ||
send-sbd-here | 0 | 1,624,353,260 | 100% | ||
daysteembeliever | 0 | 88,016,765 | 100% | ||
kellycomatose | 0 | 16,902,252,293 | 100% | ||
joshvel | 0 | 1,389,499,546 | 100% | ||
mickyscofield | 0 | 3,728,132,471 | 100% | ||
nitego | 0 | 410,896,765 | 100% | ||
irwanda | 0 | 545,635,673 | 100% | ||
andriadi | 0 | 614,503,785 | 100% | ||
tmapendembe | 0 | 613,454,251 | 100% | ||
sanat | 0 | 105,538,937,321 | 100% | ||
utterlyamazing | 0 | 576,883,918 | 100% | ||
beccadeals | 0 | 3,233,540,751 | 100% | ||
scientistnik | 0 | 605,608,415 | 100% | ||
niranjan | 0 | 279,074,609 | 100% | ||
musriadisteem | 0 | 522,328,217 | 100% | ||
syehsyukur | 0 | 506,120,400 | 100% | ||
yacobh | 0 | 615,326,011 | 100% | ||
boysteem | 0 | 604,238,222 | 100% | ||
novice | 0 | 548,461,770 | 100% | ||
ripperdbl | 0 | 499,685,470 | 100% | ||
broester | 0 | 1,892,301,539 | 100% | ||
andravasko | 0 | 3,432,825,015 | 100% | ||
faco00 | 0 | 594,062,423 | 100% | ||
alexito | 0 | 616,993,930 | 100% | ||
atimk23 | 0 | 1,148,256,216 | 100% | ||
cglaffom | 0 | 614,503,785 | 100% | ||
bitcointravel | 0 | 4,534,104,129 | 100% | ||
fauza | 0 | 608,185,675 | 100% | ||
sraf | 0 | 320,954,400 | 100% | ||
nanmae | 0 | 613,347,751 | 100% | ||
neoconqueso | 0 | 3,270,648,092 | 100% | ||
deancorwin | 0 | 462,720,144 | 100% | ||
blanch | 0 | 583,272,900 | 100% | ||
mayettepada | 0 | 517,490,092 | 100% | ||
abhijit | 0 | 617,220,000 | 100% | ||
hawkins | 0 | 1,346,386,433 | 100% | ||
spiritualmatters | 0 | 2,129,852,059 | 17% | ||
adisons | 0 | 0 | 0% | ||
bogh | 0 | 2,724,232,389 | 100% | ||
oblation | 0 | 538,405,000 | 100% | ||
scorer | 0 | 31,014,452,402 | 10% | ||
major007 | 0 | 0 | 0% | ||
andreacervantes | 0 | 1,408,312,095 | 100% | ||
infamousit | 0 | 1,991,548,331 | 100% | ||
xiaoshancun | 0 | 1,102,730,120 | 100% | ||
andri911 | 0 | 552,411,900 | 100% | ||
humano00110001 | 0 | 157,391,100 | 100% | ||
martusamak | 0 | 209,358,111 | 100% | ||
syahri | 0 | 0 | 100% | ||
curationstation | 0 | -207,206,667 | -100% | ||
cryptiver | 0 | 3,437,982,801 | 100% | ||
songodzen | 0 | 617,220,000 | 100% | ||
grizzam | 0 | 533,802,377 | 100% | ||
mohdfattahillah | 0 | 604,875,600 | 100% | ||
pantoranews | 0 | 614,138,501 | 100% | ||
myaceh | 0 | 2,207,107,641 | 100% | ||
silverkingsize | 0 | 767,660,386 | 100% | ||
rodneyrodriguez | 0 | 615,320,000 | 100% | ||
mursalin09 | 0 | 88,930,688 | 100% | ||
kodolay | 0 | 410,044,231 | 100% | ||
cakphotography | 0 | 4,596,425,576 | 100% | ||
macmaniac77 | 0 | 4,564,278,889 | 100% | ||
rexlito | 0 | 2,149,503,353 | 100% | ||
akashjaiswal | 0 | 513,110,661 | 100% | ||
charlesmore143 | 0 | 613,582,405 | 100% | ||
frei | 0 | 608,811,269 | 100% | ||
nicholas83 | 0 | 6,331,655,176 | 100% | ||
joeyp978 | 0 | 227,285,213 | 100% | ||
hitwill | 0 | 1,294,125,433,266 | 100% | ||
hsynterkr | 0 | 4,761,206,463 | 100% | ||
theladybugsadven | 0 | 482,113,377 | 100% | ||
rizalfa | 0 | 552,611,831 | 100% | ||
dumasfmz | 0 | 561,838,034 | 100% | ||
leopardis | 0 | 521,567,800 | 100% | ||
munardi | 0 | 355,727,961 | 100% | ||
harrylihardo | 0 | 401,783,804 | 100% | ||
viki.beta | 0 | 138,237,393 | 100% | ||
itwasntme | 0 | 617,220,000 | 100% | ||
herimukti | 0 | 407,885,941 | 100% | ||
umutsen | 0 | 534,617,671 | 100% | ||
numerus | 0 | 2,705,799,658 | 100% | ||
iamhuman | 0 | 601,771,432 | 100% | ||
jm90mm | 0 | 27,446,676,674 | 100% | ||
kramat23 | 0 | 345,654,400 | 100% | ||
steemserazul | 0 | 1,595,412,836 | 100% | ||
rowoth | 0 | 604,895,200 | 100% | ||
akinninmont | 0 | 551,222,961 | 100% | ||
jpirulo | 0 | 602,306,397 | 100% | ||
honeybird | 0 | 1,270,536,785 | 100% | ||
salmankhan2017 | 0 | 615,320,000 | 100% | ||
erickhan | 0 | 458,413,400 | 100% | ||
fredkese | 0 | 289,738,311 | 100% | ||
berkaytekinsen | 0 | 1,360,730,620 | 100% | ||
smitop | 0 | 490,796,928 | 100% | ||
amaiman | 0 | 1,792,517,880 | 100% | ||
robvann | 0 | 869,505,284 | 100% | ||
newsrx | 0 | 1,823,684,012 | 100% | ||
davidfumo | 0 | 591,897,506 | 100% | ||
mydzel | 0 | 473,796,400 | 0% | ||
tonimese | 0 | 338,531,879 | 100% | ||
bestgift | 0 | 10,856,058,052 | 100% | ||
klizo | 0 | 26,164,170,361 | 100% | ||
jiren | 0 | 614,385,810 | 100% | ||
allkofiallko | 0 | 271,013,864 | 100% | ||
shyrybovich | 0 | 649,560,081 | 100% | ||
simspread | 0 | 502,899,083 | 100% | ||
nla14 | 0 | 615,320,000 | 100% | ||
fareast-history | 0 | 987,641,079 | 100% | ||
gonzo0803 | 0 | 190,749,200 | 100% | ||
norwind | 0 | 526,589,377 | 100% | ||
alsedge | 0 | 615,320,000 | 100% | ||
muhammadfitrah | 0 | 611,471,716 | 100% | ||
funt33 | 0 | 2,035,340,122 | 100% | ||
dlohreb | 0 | 90,059,075,815 | 100% | ||
destrodxbad | 0 | 5,086,407,052 | 100% | ||
arsadilaksamana | 0 | 615,468,257 | 100% | ||
sourav19 | 0 | 614,367,066 | 100% | ||
monirol-islam | 0 | 115,409,250 | 100% | ||
saimon1971 | 0 | 399,935,173 | 100% | ||
ashikurrahman | 0 | 169,426,670 | 100% | ||
cryptophantasy | 0 | 615,974,839 | 100% | ||
ipman62 | 0 | 215,376,334 | 100% | ||
alverelt | 0 | 615,320,000 | 100% | ||
abijahchristos | 0 | 2,044,948,816 | 100% | ||
noxdarkness | 0 | 615,564,827 | 100% | ||
arcticsports | 0 | 585,723,653 | 100% | ||
mattatron | 0 | 615,852,409 | 100% | ||
urbanoanderson | 0 | 615,320,000 | 100% | ||
jkom | 0 | 615,320,000 | 100% | ||
emptyname | 0 | 6,377,218,451 | 100% | ||
jim888 | 0 | 1,131,040,199 | 100% | ||
end-war | 0 | 202,684,530 | 100% | ||
maxg | 0 | 6,919,986,938 | 100% | ||
spacebird89 | 0 | 609,368,893 | 100% | ||
elbrava | 0 | 579,695,135 | 100% | ||
eyanez111 | 0 | 615,320,000 | 100% | ||
marksheppard | 0 | 1,012,386,010 | 100% | ||
vishalsingh9756 | 0 | 615,320,000 | 100% | ||
invariable.muse | 0 | 577,067,262 | 100% | ||
thebennyroeshow | 0 | 593,763,959 | 100% | ||
dsal | 0 | 593,783,800 | 100% | ||
detoye | 0 | 615,732,010 | 100% | ||
dorimartin | 0 | 569,171,000 | 100% | ||
mossmanpete | 0 | 411,291,627 | 100% | ||
ghufranhussain | 0 | 0 | 0% | ||
areaka | 0 | 992,936,516 | 100% | ||
wallop | 0 | 4,007,467,565 | 100% | ||
hyojunguy | 0 | 31,917,462,822 | 1% | ||
brandonscalera | 0 | 1,686,267,504 | 1% | ||
dianemarra | 0 | 5,661,748,876 | 100% | ||
master11641 | 0 | 606,090,200 | 100% | ||
muhammadnazir | 0 | 601,171,937 | 100% | ||
satar | 0 | 593,783,800 | 100% | ||
middlehut | 0 | 4,194,857,509 | 100% | ||
mvielma26 | 0 | 507,809,576 | 100% | ||
hugospock | 0 | 574,377,080 | 100% | ||
atanasiucatalin | 0 | 222,559,177 | 25% | ||
lochsteemit | 0 | 372,224,570 | 100% | ||
jakeybrown | 0 | 23,416,831,203 | 100% | ||
derovict | 0 | 545,900,481 | 100% | ||
canadians | 0 | 1,226,911,067 | 100% | ||
billionaire7 | 0 | 378,348,019 | 100% | ||
ickyrescuer | 0 | 540,025,705 | 100% | ||
gbambi117 | 0 | 581,042,700 | 100% | ||
gloeze | 0 | 171,852,251 | 100% | ||
cloudbuster | 0 | 310,742,058,912 | 0% | ||
edicted | 0 | 2,094,135,033 | 100% | ||
sellsword | 0 | 602,562,800 | 100% | ||
immaturetime | 0 | 504,356,975 | 100% | ||
steemedrice | 0 | 605,637,100 | 100% | ||
sillyfrostie | 0 | 590,265,600 | 100% | ||
techrube | 0 | 614,161,068 | 100% | ||
paradise.ati | 0 | 548,625,568 | 100% | ||
okanbaya | 0 | 0 | 0% | ||
moonrise | 0 | 5,235,000,679 | 100% | ||
daegeonlee | 0 | 579,730,582 | 100% | ||
in1997 | 0 | 546,140,527 | 100% | ||
calist | 0 | 153,535,604 | 100% | ||
factfictional | 0 | 556,666,781 | 100% | ||
putra-muda | 0 | 159,842,209 | 100% | ||
aamirqazi | 0 | 129,383,619 | 100% | ||
emolleno | 0 | 603,365,783 | 100% | ||
damahsyari | 0 | 594,985,178 | 100% | ||
ayurvedajoshi | 0 | 215,002,470 | 100% | ||
fairest | 0 | 592,623,634 | 100% | ||
paladin19ua | 0 | 596,414,200 | 100% | ||
goharjadoon | 0 | 245,944,000 | 100% | ||
hasse72 | 0 | 0 | 100% | ||
photobypawelp | 0 | 614,860,000 | 100% | ||
abdullah2017 | 0 | 194,932,284 | 100% | ||
fxf999 | 0 | 607,570,953 | 100% | ||
charliechill125 | 0 | 492,280,620 | 100% | ||
forwardthinker | 0 | 2,062,450,596 | 100% | ||
rivalsyahrul | 0 | 524,366,824 | 100% | ||
siraspurjitu | 0 | 1,203,451,264 | 1% | ||
traguy | 0 | 614,500,000 | 100% | ||
elparsie | 0 | 472,266,454 | 100% | ||
criticalmass | 0 | 1,827,271,164 | 100% | ||
jaysermendez | 0 | 4,629,517,854 | 100% | ||
shostakovich | 0 | 602,210,000 | 100% | ||
pullguard | 0 | 2,362,796,120 | 100% | ||
tanyasmith | 0 | 0 | 0% | ||
mrtt | 0 | 615,836,294 | 100% | ||
quifte.grafe | 0 | 545,892,463 | 100% | ||
dharmesh992 | 0 | 593,625,028 | 100% | ||
kirisena | 0 | 414,023,599 | 100% | ||
mmaddall | 0 | 614,500,000 | 100% | ||
davidaraujo | 0 | 556,233,682 | 100% | ||
wwwfernand | 0 | 602,210,000 | 100% | ||
mylichie | 0 | 1,727,137,263 | 100% | ||
mohdtahir121 | 0 | 282,180,979 | 100% | ||
roydeif | 0 | 342,470,868 | 57.41% | ||
stimeet | 0 | 616,520,577 | 100% | ||
jmdk2000 | 0 | 2,688,067,580 | 100% | ||
electra80 | 0 | 614,774,724 | 100% | ||
dzhohola | 0 | 614,500,000 | 100% | ||
vishri | 0 | 605,443,877 | 100% | ||
khairolandini | 0 | 107,724,269 | 100% | ||
cryptoexplorer7 | 0 | 217,964,452 | 50% | ||
mediumjack | 0 | 614,500,000 | 100% | ||
kingjk | 0 | 478,444,065 | 100% | ||
wintux | 0 | 557,048,836 | 100% | ||
azharihasansteem | 0 | 595,039,431 | 100% | ||
sirrom-dev | 0 | 614,500,000 | 100% | ||
litesleep | 0 | 1,189,861,568 | 100% | ||
rubencond96 | 0 | 147,190,687 | 25% | ||
mamicco | 0 | 391,241,954 | 100% | ||
mosunomotunde | 0 | 2,699,434,417 | 100% | ||
razyta | 0 | 496,862,414 | 100% | ||
goodluckeffiong | 0 | 328,910,820 | 100% | ||
cryptoscopia | 0 | 614,044,583 | 100% | ||
islamkha | 0 | 595,731,416 | 100% | ||
abraluckon | 0 | 580,702,500 | 100% | ||
priyalath5 | 0 | 553,050,000 | 100% | ||
thismalor | 0 | 766,264,398 | 100% | ||
steemitstocks | 0 | 0 | 100% | ||
muzquiz | 0 | 555,113,474 | 100% | ||
maridanilp | 0 | 356,936,259 | 100% | ||
hendra87 | 0 | 580,973,388 | 100% | ||
prometheus21 | 0 | 1,167,957,961 | 100% | ||
veejay2312 | 0 | 1,598,488,766 | 100% | ||
nurmahdalena | 0 | 539,963,329 | 100% | ||
kramwal | 0 | 614,503,071 | 100% | ||
ninaalhindi | 0 | 525,557,697 | 100% | ||
remcovdpluijm | 0 | 19,806,233,490 | 100% | ||
ezimedia | 0 | 515,160,586 | 100% | ||
dearlife | 0 | 496,292,076 | 100% | ||
hoangtumanh | 0 | 206,480,437 | 100% | ||
kotofenum | 0 | 580,761,711 | 100% | ||
chijiokecj | 0 | 199,196,901 | 100% | ||
noersyawal | 0 | 614,437,113 | 100% | ||
tteaays | 0 | 417,809,710 | 100% | ||
sanhtun | 0 | 462,333,952 | 100% | ||
drawingpencill | 0 | 613,350,790 | 100% | ||
mhdhusein | 0 | 562,249,174 | 100% | ||
pode | 0 | 2,892,908,263 | 100% | ||
saefan | 0 | 530,721,534 | 100% | ||
crowatora | 0 | 540,737,641 | 100% | ||
shredz7 | 0 | 607,560,584 | 100% | ||
michaeljose6 | 0 | 614,597,292 | 100% | ||
themalteser | 0 | 604,190,099 | 100% | ||
hdmiwa | 0 | 614,474,359 | 100% | ||
fiscie | 0 | 614,032,710 | 100% | ||
gleidyrojas | 0 | 605,257,077 | 100% | ||
resan | 0 | 102,905,931 | 100% | ||
ikhsanperlak | 0 | 614,637,781 | 100% | ||
btccurrency1 | 0 | 52,386,790 | 100% | ||
aisamuddin | 0 | 76,829,721 | 100% | ||
jblairsuccess | 0 | 602,184,577 | 100% | ||
martial-serlach | 0 | 602,304,852 | 100% | ||
romijabalnur92 | 0 | 491,579,228 | 100% | ||
coe87 | 0 | 196,253,301 | 100% | ||
buayadarat | 0 | 545,826,850 | 100% | ||
marvinjunior | 0 | 613,508,656 | 100% | ||
ahmadnauval | 0 | 613,582,405 | 100% | ||
bournadventure | 0 | 579,917,668 | 100% | ||
bjbaniya | 0 | 510,013,359 | 100% | ||
kilianparadise | 0 | 371,077,228 | 100% | ||
prosperqueen | 0 | 614,473,772 | 100% | ||
hepo | 0 | 598,005,279 | 100% | ||
toffy | 0 | 430,131,466 | 100% | ||
emsyawall | 0 | 157,389,692 | 100% | ||
riziqasshiddiq | 0 | 58,483,230 | 100% | ||
evanschigo | 0 | 584,177,146 | 100% | ||
yag00 | 0 | 0 | 0% | ||
tmmaulana | 0 | 605,256,025 | 100% | ||
popy | 0 | 613,494,248 | 100% | ||
kingsleyogieva | 0 | 560,761,088 | 100% | ||
drpradeepv | 0 | 614,473,084 | 100% | ||
kasperr | 0 | 613,368,295 | 100% | ||
fahroel | 0 | 580,870,406 | 100% | ||
joyrapperjoy | 0 | 424,381,638 | 100% | ||
garnet1 | 0 | 604,278,500 | 100% | ||
kkk1818 | 0 | 602,464,219 | 100% | ||
mulyahaqquen | 0 | 614,554,802 | 100% | ||
jakesnakehips | 0 | 605,255,841 | 100% | ||
hamdan1 | 0 | 535,873,333 | 100% | ||
fakry12 | 0 | 326,364,319 | 100% | ||
brunoaco91 | 0 | 494,683,615 | 100% | ||
artstein | 0 | 611,848,348 | 100% | ||
yuri-yuri | 0 | 614,472,873 | 100% | ||
cement3 | 0 | 523,692,243 | 100% | ||
erikaa | 0 | 508,890,428 | 100% | ||
member9 | 0 | 144,439,554 | 100% | ||
manox | 0 | 0 | 0% | ||
simonmaven | 0 | 568,387,293 | 100% | ||
juxpost | 0 | 601,130,340 | 100% | ||
fspikes66 | 0 | 603,827,625 | 100% | ||
gio.macias17 | 0 | 614,472,500 | 100% | ||
redking18 | 0 | 581,101,984 | 100% | ||
sebastianhughes | 0 | 614,472,410 | 100% | ||
muhammadabi | 0 | 606,141,411 | 100% | ||
nizamasfarul | 0 | 614,472,274 | 100% | ||
assaddam | 0 | 383,323,816 | 100% | ||
roterakete | 0 | 615,126,819 | 100% | ||
hashkeks | 0 | 0 | 100% | ||
mamf18 | 0 | 613,631,494 | 100% | ||
vickyst | 0 | 505,152,098 | 100% | ||
aryasensio | 0 | 613,350,790 | 100% | ||
amponchiek | 0 | 132,748,692 | 100% | ||
wetalkeverything | 0 | 614,056,040 | 100% | ||
muammad | 0 | 430,617,249 | 100% | ||
sachcorps | 0 | 123,462,582 | 100% | ||
dennis58 | 0 | 233,899,126 | 100% | ||
dicky666 | 0 | 533,744,989 | 100% | ||
sannyputra | 0 | 0 | 100% | ||
sicnarf9999 | 0 | 606,221,168 | 100% | ||
educdlski | 0 | 593,737,776 | 100% | ||
shrapnell | 0 | 614,470,784 | 100% | ||
bashir304 | 0 | 436,303,137 | 100% | ||
maizarmanda | 0 | 113,524,501 | 100% | ||
javatdominic | 0 | 616,925,146 | 100% | ||
chicky | 0 | 614,470,092 | 100% | ||
serewka2007 | 0 | 482,358,937 | 100% | ||
shirleyksy | 0 | 614,469,544 | 100% | ||
doublejump | 0 | 608,526,726 | 100% | ||
ilianvassilev | 0 | 614,468,993 | 100% | ||
asmaama | 0 | 602,179,611 | 100% | ||
murti | 0 | 328,158,514 | 100% | ||
ricpicks | 0 | 497,488,290 | 100% | ||
martunisaqila | 0 | 613,318,106 | 100% | ||
agesofhypocrisy | 0 | 614,468,945 | 100% | ||
inamulyani | 0 | 602,660,631 | 100% | ||
sunrise1601 | 0 | 273,438,667 | 100% | ||
surfinbird | 0 | 86,025,648 | 100% | ||
a420 | 0 | 4,587,032,037 | 100% | ||
caliconinja | 0 | 614,468,889 | 100% | ||
eichhornchen | 0 | 614,509,797 | 100% | ||
sayfulbahri | 0 | 417,092,503 | 100% | ||
jojoboy | 0 | 168,978,929 | 100% | ||
emmetthogendoorn | 0 | 0 | 0% | ||
neenah98 | 0 | 423,786,338 | 100% | ||
peerayut | 0 | 615,978,923 | 100% | ||
emmanuelb | 0 | 512,142,863 | 100% | ||
timzyyoung | 0 | 144,659,733 | 100% | ||
macgadey | 0 | 360,793,003 | 100% | ||
dzonibro92 | 0 | 477,691,660 | 100% | ||
gicquelhugo | 0 | 580,170,609 | 100% | ||
aqsamalik | 0 | 474,180,585 | 100% | ||
patroskon | 0 | 614,468,714 | 100% | ||
voluntary-io | 0 | 1,242,434,037 | 100% | ||
lorianaf | 0 | 599,106,928 | 100% | ||
electrifiedowl | 0 | 727,543,383 | 100% | ||
steebie | 0 | 571,455,770 | 100% | ||
mirzaalamanda | 0 | 602,820,633 | 100% | ||
arlinchuby | 0 | 619,117,060 | 100% | ||
tuotuo1020 | 0 | 614,468,425 | 100% | ||
nayanbd666 | 0 | 472,284,542 | 100% | ||
banglepan | 0 | 592,961,996 | 100% | ||
imam0909 | 0 | 421,471,247 | 100% | ||
yxfais | 0 | 602,179,007 | 100% | ||
mukta9988 | 0 | 107,337,395 | 50% | ||
bitgion | 0 | 0 | 0% | ||
afrizalmulieng | 0 | 613,318,106 | 100% | ||
nogre | 0 | 599,385,883 | 100% | ||
betwar | 0 | 613,599,708 | 100% | ||
odan | 0 | 55,383,120 | 100% | ||
timphanasoekaya | 0 | 546,612,644 | 100% | ||
acandal20 | 0 | 615,027,839 | 100% | ||
peneterek | 0 | 582,776,056 | 100% | ||
bebag | 0 | 474,747,708 | 100% | ||
muhammadiksan | 0 | 85,941,647 | 100% | ||
kani77 | 0 | 132,266,028 | 100% | ||
mai.alaydrus | 0 | 596,034,075 | 100% | ||
fikri129056 | 0 | 580,672,337 | 100% | ||
d00k13 | 0 | 636,913,198 | 100% | ||
tacosandtequila | 0 | 144,399,979 | 100% | ||
jogear | 0 | 568,382,889 | 100% | ||
anzifakhri | 0 | 0 | 100% | ||
kimminy | 0 | 614,467,937 | 100% | ||
skipi1111 | 0 | 181,268,040 | 100% | ||
zahrulamri | 0 | 614,467,902 | 100% | ||
dksa | 0 | 555,128,132 | 100% | ||
thebluedragon | 0 | 598,573,278 | 100% | ||
hiberry | 0 | 602,755,930 | 100% | ||
jaredzimmerman | 0 | 791,493,007 | 100% | ||
jose.angel10 | 0 | 615,449,457 | 100% | ||
donovanbanyard | 0 | 5,444,271,631 | 100% | ||
mahindra | 0 | 618,108,552 | 100% | ||
branimir.mihalic | 0 | 338,875,865 | 100% | ||
shoqatarz | 0 | 500,790,762 | 100% | ||
ivanfurqanpurba | 0 | 499,856,693 | 100% | ||
ippai | 0 | 496,823,477 | 100% | ||
pwangdu | 0 | 335,252,844 | 100% | ||
khwalex | 0 | 605,248,834 | 100% | ||
toister | 0 | 117,143,396 | 51.05% | ||
c10h15n | 0 | 593,548,063 | 100% | ||
aponix1 | 0 | 454,703,823 | 100% | ||
sam07 | 0 | 614,464,619 | 100% | ||
thevote | 0 | 4,293,555,520,345 | 100% | ||
mikeanthony | 0 | 614,463,242 | 100% | ||
francescotermini | 0 | 614,462,980 | 100% | ||
olivia7 | 0 | 239,723,771 | 100% | ||
dkr13 | 0 | 614,790,050 | 100% | ||
ml3000 | 0 | 591,977,783 | 100% | ||
greysenpai | 0 | 614,462,908 | 100% | ||
obaidb2 | 0 | 409,595,801 | 100% | ||
hazard87 | 0 | 548,954,110 | 100% | ||
cryptodumy | 0 | 614,462,881 | 100% | ||
hemantkr10 | 0 | 555,039,689 | 100% | ||
seongseojo | 0 | 614,462,865 | 100% | ||
mohamedsabry | 0 | 497,705,264 | 100% | ||
dt-seal | 0 | 621,949,577 | 100% | ||
motanirav | 0 | 518,742,551 | 100% | ||
pjkober | 0 | 365,000,129 | 100% | ||
nychus-gaming | 0 | 614,462,821 | 100% | ||
bobbradshaw | 0 | 6,893,237,931 | 100% | ||
julistar | 0 | 372,220,038 | 100% | ||
bibi.bibi | 0 | 613,338,748 | 100% | ||
mugiwaraluffy | 0 | 543,152,554 | 100% | ||
fesma | 0 | 609,816,469 | 100% | ||
gatorinla | 0 | 414,120,939 | 100% | ||
ardaar | 0 | 418,585,520 | 100% | ||
muhammadwahyu | 0 | 592,996,063 | 100% | ||
shingo | 0 | 582,781,538 | 100% | ||
sapranak34 | 0 | 613,344,746 | 100% | ||
zenkackini | 0 | 582,720,335 | 100% | ||
hazmisyahputra | 0 | 98,471,113 | 100% | ||
bangfarhan | 0 | 613,389,827 | 100% | ||
daviellaymp14 | 0 | 580,667,308 | 100% | ||
lovebird | 0 | 282,652,858 | 100% | ||
johnmark23 | 0 | 525,031,950 | 100% | ||
arull | 0 | 509,948,895 | 100% | ||
darkshadow147 | 0 | 397,383,792 | 100% | ||
rizal.safril | 0 | 332,052,866 | 53.98% | ||
yckifoundation | 0 | 85,865,789 | 42.84% | ||
zakkirulakbar | 0 | 613,327,065 | 100% | ||
alejandrab | 0 | 507,539,116 | 100% | ||
mijnadres2018 | 0 | 0 | 0% | ||
feriaulia | 0 | 617,041,230 | 100% | ||
mehnaj | 0 | 289,143,557 | 100% | ||
ponqq | 0 | 614,462,660 | 100% | ||
kurlysss | 0 | 537,654,824 | 100% | ||
mjs-space | 0 | 574,879,765 | 100% | ||
chayamiellp | 0 | 614,462,655 | 100% | ||
tricksters | 0 | 613,439,199 | 100% | ||
zproxy | 0 | 546,871,753 | 100% | ||
wolfhart | 0 | 3,435,062,199 | 100% | ||
privacybydesign | 0 | 588,959,991 | 100% | ||
pockets2turnt760 | 0 | 614,462,616 | 100% | ||
eumelisb | 0 | 568,377,915 | 100% | ||
closetcanada | 0 | 408,991,098 | 100% | ||
cicca | 0 | 556,088,638 | 100% | ||
joseschiaffino | 0 | 614,462,582 | 100% | ||
andrecampbell77 | 0 | 531,510,123 | 100% | ||
andririfaldi | 0 | 441,358,072 | 100% | ||
roger-that | 0 | 819,704,323 | 100% | ||
asrol18 | 0 | 399,400,621 | 100% | ||
bryans17 | 0 | 614,462,462 | 100% | ||
bukidnonboy | 0 | 0 | 0% | ||
ironicgolem | 0 | 537,654,631 | 100% | ||
cryptovate | 0 | 4,171,182,057 | 100% | ||
pitchoo | 0 | 553,052,977 | 100% | ||
forster202 | 0 | 307,251,642 | 100% | ||
stevensts | 0 | 614,462,377 | 100% | ||
tuwatimikenneth | 0 | 0 | 0% | ||
taiki9121 | 0 | 530,574,047 | 100% | ||
wrx.seren | 0 | 568,377,645 | 100% | ||
syahrulrizal | 0 | 377,232,165 | 100% | ||
bon.steemit | 0 | 445,485,166 | 100% | ||
cut-mi | 0 | 291,869,575 | 50.04% | ||
feedingfranzy | 0 | 580,666,826 | 100% | ||
syeinoi | 0 | 453,930,296 | 100% | ||
balianassar | 0 | 604,371,768 | 100% | ||
abubinehpasie | 0 | 476,208,200 | 100% | ||
nasoganto | 0 | 596,186,979 | 100% | ||
imgeraldine | 0 | 614,462,139 | 100% | ||
radhapatil | 0 | 605,245,103 | 100% | ||
crazydays | 0 | 605,245,093 | 100% | ||
shaikh.mughees | 0 | 52,132,546 | 100% | ||
andani | 0 | 592,955,715 | 100% | ||
fauziali | 0 | 384,038,623 | 100% | ||
iamkrystela | 0 | 298,023,947 | 100% | ||
babul7076 | 0 | 599,259,728 | 100% | ||
azly | 0 | 592,955,557 | 100% | ||
manlikehuss | 0 | 500,786,265 | 100% | ||
musliadiayahadi | 0 | 55,305,230 | 100% | ||
bembeng | 0 | 512,115,572 | 100% | ||
donzippy | 0 | 149,583,649 | 100% | ||
yimmyjob | 0 | 331,808,981 | 100% | ||
dancinric | 0 | 571,448,787 | 100% | ||
munawardi | 0 | 338,088,497 | 100% | ||
zwislak | 0 | 556,087,138 | 100% | ||
usamaejaz | 0 | 602,973,154 | 100% | ||
rafeislamrajon | 0 | 605,243,885 | 100% | ||
amaltea | 0 | 322,591,901 | 100% | ||
mrdn1 | 0 | 608,559,098 | 100% | ||
umartantawi07 | 0 | 567,537,924 | 100% | ||
book-of-thoth42 | 0 | 559,159,058 | 100% | ||
tokomastiara | 0 | 604,156,200 | 100% | ||
ahmadmakin | 0 | 614,460,229 | 100% | ||
bevo | 0 | 614,460,158 | 100% | ||
bireunhidayat | 0 | 141,401,045 | 100% | ||
oceanpris | 0 | 537,464,509 | 100% | ||
brux | 0 | 613,398,306 | 100% | ||
samirpaul | 0 | 150,592,730 | 100% | ||
raulf | 0 | 592,953,385 | 100% | ||
globalhshvillage | 0 | 605,605,043 | 100% | ||
someoneforearth | 0 | 211,988,490 | 100% | ||
cryptocat28 | 0 | 2,468,452,720 | 100% | ||
yuleyda | 0 | 614,459,267 | 100% | ||
davidvalin | 0 | 122,755,109 | 100% | ||
randomeno | 0 | 496,219,319 | 100% | ||
lartist-zen | 0 | 156,433,759 | 100% | ||
steem-bd | 0 | 463,170,994 | 100% | ||
morgaine8 | 0 | 589,879,141 | 100% | ||
dorys-naty | 0 | 605,239,223 | 100% | ||
ihbangash | 0 | 0 | 0% | ||
yuderzb | 0 | 104,457,522 | 100% | ||
aferuan | 0 | 614,455,996 | 100% | ||
razikupi | 0 | 614,455,987 | 100% | ||
bigdesafios | 0 | 199,698,195 | 100% | ||
owaisfarooqui | 0 | 0 | 0% | ||
mariaagt | 0 | 614,619,557 | 100% | ||
ojanlajuna | 0 | 592,950,011 | 100% | ||
steemdol | 0 | 534,683,401 | 100% | ||
manduto | 0 | 76,718,309 | 100% | ||
fikricalong | 0 | 617,114,267 | 100% | ||
malamen666 | 0 | 567,529,090 | 100% | ||
nuryatonhusna | 0 | 513,070,700 | 100% | ||
hfzahmet | 0 | 614,455,924 | 100% | ||
dezolas1 | 0 | 491,564,726 | 100% | ||
yatnanar | 0 | 611,383,616 | 100% | ||
eriknelson | 0 | 429,318,444 | 100% | ||
devendrajangid | 0 | 525,359,779 | 100% | ||
imrankhanm | 0 | 602,166,745 | 100% | ||
fahrulazmi | 0 | 540,721,124 | 100% | ||
ham9 | 0 | 288,265,114 | 77% | ||
baihaqi31 | 0 | 199,897,492 | 100% | ||
ariffadillah | 0 | 341,204,537 | 100% | ||
titanik | 0 | 261,317,487 | 100% | ||
aidilmuhammad | 0 | 602,166,644 | 100% | ||
gade07 | 0 | 404,780,326 | 100% | ||
hasrafauzi | 0 | 614,455,751 | 100% | ||
lidsay | 0 | 512,120,618 | 100% | ||
adindafsafira | 0 | 525,359,660 | 100% | ||
dragster | 0 | 528,431,927 | 100% | ||
serylt | 0 | 613,434,006 | 100% | ||
haoge | 0 | 350,449,528 | 100% | ||
barnet | 0 | 353,382,569 | 57.41% | ||
hazmanps | 0 | 239,637,715 | 100% | ||
emeraldfuzion | 0 | 614,455,678 | 100% | ||
ghostface17 | 0 | 516,142,768 | 100% | ||
f3n0x | 0 | 592,949,717 | 100% | ||
mahyandra | 0 | 602,166,551 | 100% | ||
rozianggar | 0 | 603,128,410 | 100% | ||
angira | 0 | 614,455,655 | 100% | ||
sticats | 0 | 593,620,525 | 100% | ||
nniko | 0 | 540,720,951 | 100% | ||
tamannanusrat | 0 | 614,455,603 | 100% | ||
alfredo58 | 0 | 599,094,211 | 100% | ||
eainspires | 0 | 506,925,859 | 100% | ||
farhan0 | 0 | 614,455,581 | 100% | ||
queencrypto100 | 0 | 261,578,098 | 100% | ||
el-d-reaper | 0 | 190,481,225 | 100% | ||
cutramadhani | 0 | 614,619,118 | 100% | ||
kabirlec9 | 0 | 52,228,719 | 100% | ||
sulphuricacid | 0 | 58,373,274 | 9.07% | ||
faruk1 | 0 | 70,662,382 | 100% | ||
simeda | 0 | 614,455,472 | 100% | ||
brapollo29 | 0 | 614,455,471 | 100% | ||
albavn | 0 | 614,455,459 | 100% | ||
xpackage | 0 | 602,166,340 | 100% | ||
muhammadzainijoi | 0 | 257,623,229 | 100% | ||
opti | 0 | 288,637,173 | 100% | ||
rezawahyudi | 0 | 568,371,236 | 100% | ||
bilalshoona | 0 | 298,010,861 | 100% | ||
ichsann | 0 | 144,579,590 | 100% | ||
parislabady | 0 | 614,455,363 | 100% | ||
sryashbd666 | 0 | 544,263,406 | 100% | ||
jovialpilgrims | 0 | 493,742,520 | 100% | ||
szudaj | 0 | 89,096,023 | 100% | ||
edirosado | 0 | 614,455,334 | 100% | ||
kenzit | 0 | 516,142,458 | 100% | ||
urmeebd666 | 0 | 476,361,326 | 100% | ||
sikisplash | 0 | 602,166,200 | 100% | ||
crissvr | 0 | 543,792,945 | 100% | ||
simplegesan | 0 | 503,853,327 | 100% | ||
sebek4451 | 0 | 0 | 0% | ||
jirouyuuki | 0 | 556,081,908 | 100% | ||
daesoo.park | 0 | 415,254,054 | 100% | ||
rjaaalj | 0 | 270,360,236 | 100% | ||
yantti | 0 | 614,455,078 | 100% | ||
arobquinn | 0 | 5,345,627,609 | 100% | ||
gaoshan | 0 | 602,165,833 | 100% | ||
mwmshow | 0 | 614,454,923 | 100% | ||
muchlisboy | 0 | 602,165,681 | 100% | ||
martunies | 0 | 0 | 0% | ||
orisfina | 0 | 0 | 0% | ||
heri27 | 0 | 423,973,714 | 100% | ||
arslanmustafa | 0 | 217,758,510 | 100% | ||
teukumuhaimin | 0 | 593,422,263 | 100% | ||
madelinez | 0 | 588,854,234 | 100% | ||
attonbitus | 0 | 614,454,442 | 100% | ||
pseudoseperatist | 0 | 614,454,407 | 100% | ||
jose-olivera | 0 | 605,237,580 | 100% | ||
marketdisrupters | 0 | 509,997,133 | 100% | ||
theengineer18 | 0 | 613,398,306 | 100% | ||
reus30bc | 0 | 448,581,261 | 100% | ||
pandu13 | 0 | 350,238,542 | 100% | ||
baekjinsun | 0 | 614,453,500 | 100% | ||
muhammadjuanda | 0 | 101,384,817 | 100% | ||
aliyaacoy | 0 | 605,236,617 | 100% | ||
bachichak | 0 | -614,453,401 | -100% | ||
khalidi | 0 | 551,983,585 | 100% | ||
crpyto44 | 0 | 101,206,269 | 100% | ||
bardostyle07 | 0 | 586,802,953 | 100% | ||
rizamaulana | 0 | 614,453,168 | 100% | ||
kinglude | 0 | 602,164,068 | 100% | ||
dothhonion | 0 | 614,453,110 | 100% | ||
abinashray | 0 | 556,079,822 | 100% | ||
anasofyanayusuf | 0 | 420,900,164 | 100% | ||
animesukidesu | 0 | 500,779,003 | 100% | ||
sks21cst | 0 | 605,235,501 | 100% | ||
mahyuherdi | 0 | 615,229,121 | 100% | ||
rbrt123 | 0 | 605,235,427 | 100% | ||
pakmek | 0 | 457,766,892 | 100% | ||
vislider | 0 | 614,452,201 | 100% | ||
talion | 0 | 614,452,189 | 100% | ||
rreyrenier | 0 | 602,163,142 | 100% | ||
gulelalah | 0 | 304,153,829 | 100% | ||
sirwizalot | 0 | 0 | 0% | ||
enmanueljgc | 0 | 614,452,175 | 100% | ||
chirguita | 0 | 267,286,695 | 100% | ||
elinaphotography | 0 | 344,093,213 | 100% | ||
wahyuddin | 0 | 304,518,147 | 100% | ||
zakyaulia | 0 | 473,128,166 | 100% | ||
raghutej | 0 | 580,657,274 | 100% | ||
melo0284 | 0 | 525,356,580 | 100% | ||
munnapandey | 0 | 104,456,863 | 100% | ||
jojitook | 0 | 399,393,887 | 100% | ||
asterkusener | 0 | 331,804,150 | 100% | ||
stormrider | 0 | 590,239,865 | 100% | ||
taiwoabigael | 0 | 614,452,070 | 100% | ||
klinton21 | 0 | 568,815,246 | 100% | ||
nateren | 0 | 589,873,927 | 100% | ||
milonhazary | 0 | 76,821,831 | 100% | ||
gmzct | 0 | 162,829,767 | 100% | ||
jensvoigt | 0 | 570,385,838 | 100% | ||
ceoship | 0 | 614,451,856 | 100% | ||
julisavio | 0 | 218,319,106 | 100% | ||
doribel | 0 | 304,153,662 | 100% | ||
millione01 | 0 | 519,211,787 | 100% | ||
syukran.alaina | 0 | 614,451,742 | 100% | ||
rogerek | 0 | 264,214,247 | 51.98% | ||
fieon | 0 | 614,451,703 | 100% | ||
crypto.tank | 0 | 144,396,112 | 100% | ||
khushbakht | 0 | 187,407,718 | 100% | ||
chaseforti | 0 | 605,234,762 | 100% | ||
rajaluanr | 0 | 602,162,485 | 100% | ||
chairilmaulana | 0 | 525,355,917 | 100% | ||
danzu | 0 | 614,451,204 | 100% | ||
the12arrow | 0 | 605,234,322 | 100% | ||
abbylarosa | 0 | 181,263,065 | 100% | ||
diegocedenno | 0 | 559,150,467 | 100% | ||
banguqan | 0 | 592,945,066 | 100% | ||
marcelo.saltron | 0 | 454,693,614 | 100% | ||
lifeislife | 0 | 52,228,306 | 100% | ||
jezze | 0 | 589,872,377 | 100% | ||
opi94 | 0 | 0 | 0% | ||
impat | 0 | 613,439,819 | 100% | ||
gambeut | 0 | 356,381,052 | 100% | ||
vor3ss88 | 0 | 537,643,820 | 100% | ||
azismunada | 0 | 614,450,063 | 100% | ||
thinkindness | 0 | 442,404,044 | 100% | ||
manuel2258 | 0 | 614,450,046 | 100% | ||
clexz | 0 | 294,936,010 | 100% | ||
kemkem | 0 | 543,788,269 | 100% | ||
roxanabozonc | 0 | 614,450,002 | 100% | ||
hatemzayan | 0 | 611,377,752 | 100% | ||
bek-hana-sagai | 0 | 0 | 100% | ||
rharris73 | 0 | 445,476,237 | 100% | ||
osgleydysmarin | 0 | 411,681,484 | 100% | ||
alexalexander | 0 | 497,704,474 | 100% | ||
dogu1 | 0 | 165,901,490 | 100% | ||
jolugo23 | 0 | 353,308,728 | 100% | ||
leovidalm | 0 | 516,137,956 | 100% | ||
pak.nicholas | 0 | 408,609,214 | 100% | ||
quaiidy | 0 | 568,366,199 | 100% | ||
rextj121 | 0 | 546,860,447 | 100% | ||
benji333 | 0 | 9,668,719,036 | 100% | ||
miftah31 | 0 | 221,201,974 | 100% | ||
nemoboss90 | 0 | 614,449,924 | 100% | ||
faradilla | 0 | 482,343,188 | 100% | ||
callmesusan | 0 | 423,970,441 | 100% | ||
mrpreet | 0 | 411,681,439 | 100% | ||
angeloliveros | 0 | 141,323,472 | 100% | ||
nobraintrade | 0 | 614,449,817 | 100% | ||
sabahatqayoom | 0 | 614,449,789 | 100% | ||
rezapurnama | 0 | 187,407,183 | 100% | ||
armandoponce | 0 | 614,449,771 | 100% | ||
twistedrampage | 0 | 494,632,033 | 100% | ||
surya1985 | 0 | 614,449,727 | 100% | ||
chalax | 0 | 599,088,481 | 100% | ||
carloss1992 | 0 | 79,878,462 | 100% | ||
selavinia | 0 | 122,698,148 | 100% | ||
aidilbraavo707 | 0 | 565,293,675 | 100% | ||
rezarizkii | 0 | 380,958,776 | 100% | ||
sherie | 0 | 261,141,096 | 100% | ||
isan1994 | 0 | 509,993,195 | 100% | ||
russel59 | 0 | 424,957,595 | 100% | ||
wielie | 0 | 605,393,918 | 100% | ||
andreigheorghiu | 0 | 493,837,596 | 100% | ||
rainbowtube | 0 | 460,837,156 | 100% | ||
iboy-fx | 0 | 0 | 100% | ||
aveiro | 0 | 463,909,399 | 100% | ||
terry08 | 0 | 559,149,068 | 100% | ||
saikumarjoy | 0 | 605,232,771 | 100% | ||
nurulmehram | 0 | 614,449,498 | 100% | ||
pukhtoon | 0 | 605,232,750 | 100% | ||
janlozano | 0 | 98,311,918 | 100% | ||
nashin | 0 | 614,449,454 | 100% | ||
viva-bg | 0 | 129,034,381 | 100% | ||
zootpower | 0 | 172,045,841 | 100% | ||
branandiwardhana | 0 | 614,449,418 | 100% | ||
angelduke1 | 0 | 537,643,237 | 100% | ||
epacix | 0 | 592,943,684 | 100% | ||
pkay804 | 0 | 614,449,403 | 100% | ||
msjeck | 0 | 614,449,317 | 100% | ||
pnov | 0 | 602,160,300 | 100% | ||
nedfro | 0 | 399,392,015 | 100% | ||
gadgettech | 0 | 310,296,868 | 100% | ||
shakibul | 0 | 516,137,345 | 100% | ||
here2help | 0 | 614,449,187 | 100% | ||
roni-lumen | 0 | 614,449,186 | 100% | ||
soyluisrondon | 0 | 442,403,407 | 100% | ||
luisjohan | 0 | 347,163,744 | 100% | ||
umarmiyah93 | 0 | 605,232,351 | 100% | ||
lenkrouza | 0 | 574,509,880 | 100% | ||
giostrus | 0 | 577,582,122 | 100% | ||
bitalbedo | 0 | 602,160,069 | 100% | ||
muldani | 0 | 439,331,053 | 100% | ||
masumtanvir | 0 | 605,232,275 | 100% | ||
aniruddha24 | 0 | 380,958,377 | 100% | ||
anderson94 | 0 | 181,262,450 | 100% | ||
greisyct | 0 | 242,707,336 | 100% | ||
pandabro | 0 | 583,726,504 | 100% | ||
hemish | 0 | 592,943,134 | 100% | ||
miss28 | 0 | 144,395,452 | 100% | ||
landj | 0 | 307,224,342 | 100% | ||
yurianiprams | 0 | 580,653,903 | 100% | ||
arie46 | 0 | 614,448,521 | 100% | ||
danielharmaini | 0 | 494,631,046 | 100% | ||
fre3m4nn | 0 | 479,269,819 | 100% | ||
naimkhan | 0 | 614,448,484 | 100% | ||
socialwalker | 0 | 614,448,473 | 100% | ||
takoyakiking | 0 | 102,446,773 | 100% | ||
chriscraigjr | 0 | 0 | 0% | ||
dmgpol09 | 0 | 534,570,136 | 100% | ||
afzal03215081767 | 0 | 301,079,727 | 100% | ||
dominicmiletov | 0 | 614,448,377 | 100% | ||
husnan | 0 | 485,414,201 | 100% | ||
cormorant75 | 0 | 614,448,281 | 100% | ||
ditihacks | 0 | 439,330,514 | 100% | ||
vanessajetter | 0 | 614,448,255 | 100% | ||
mishelnowhere | 0 | 67,589,302 | 100% | ||
mohammadsohail | 0 | 288,790,650 | 100% | ||
oktapako | 0 | 549,931,128 | 100% | ||
xionccs | 0 | 592,942,466 | 100% | ||
supandipunoe | 0 | 61,444,812 | 100% | ||
mohd.ridho | 0 | 614,448,110 | 100% | ||
tradingfuchs | 0 | 113,672,892 | 100% | ||
jndgzmn | 0 | 614,448,064 | 100% | ||
muhammedselami96 | 0 | 528,425,281 | 100% | ||
nayansikder | 0 | 165,900,960 | 100% | ||
tordoc | 0 | 365,596,558 | 100% | ||
genvking27 | 0 | 73,733,756 | 100% | ||
nyok4 | 0 | 430,113,568 | 100% | ||
bahadur | 0 | 534,569,711 | 100% | ||
edeyyamby | 0 | 104,456,132 | 100% | ||
rgbmusic | 0 | 602,158,855 | 100% | ||
ejlizama | 0 | 454,691,257 | 100% | ||
kaljaroo | 0 | 599,086,432 | 100% | ||
khaliqq | 0 | 614,447,514 | 100% | ||
suryaking2085 | 0 | 519,208,090 | 100% | ||
mohdreza | 0 | 614,447,398 | 100% | ||
jackmammoth | 0 | 614,447,325 | 100% | ||
melikeplvclr | 0 | 516,135,729 | 100% | ||
jipinx | 0 | 614,447,277 | 100% | ||
darmawin | 0 | 614,447,277 | 100% | ||
nehayruma | 0 | 583,724,896 | 100% | ||
datcharles | 0 | 613,410,388 | 100% | ||
up-in-the-air | 0 | 0 | 0% | ||
princemyshkin | 0 | 614,446,874 | 100% | ||
cryptotenx | 0 | 568,363,286 | 100% | ||
geraldperez | 0 | 540,713,131 | 100% | ||
bell1991 | 0 | 546,857,568 | 100% | ||
hobang | 0 | 614,446,592 | 100% | ||
kardi | 0 | 497,701,641 | 100% | ||
evan2012 | 0 | 88,163,625 | 100% | ||
woo30 | 0 | 614,446,343 | 100% | ||
angela20 | 0 | 614,446,081 | 100% | ||
falleneight | 0 | 568,362,542 | 100% | ||
purnawarman | 0 | 500,773,355 | 100% | ||
matmat92 | 0 | 92,166,873 | 100% | ||
alexo1001 | 0 | 0 | 0% | ||
moehammadfadhiel | 0 | 549,928,817 | 100% | ||
karmada | 0 | 614,445,574 | 100% | ||
jhuleanagra12 | 0 | 414,750,754 | 100% | ||
devakto | 0 | 513,061,947 | 100% | ||
neudex | 0 | 497,700,725 | 100% | ||
yasrait | 0 | 614,445,302 | 100% | ||
ilhammaulana | 0 | 614,445,297 | 100% | ||
twokk | 0 | 448,545,037 | 100% | ||
albander | 0 | 614,445,144 | 100% | ||
starlove83 | 0 | 614,445,077 | 100% | ||
timelisha | 0 | 525,350,481 | 100% | ||
alexxstefano18 | 0 | 356,378,090 | 100% | ||
nazmulislam2712 | 0 | 614,444,966 | 100% | ||
trendingworlds | 0 | 602,156,005 | 100% | ||
darejosh625 | 0 | 614,444,883 | 100% | ||
wailbounegab | 0 | 614,444,871 | 100% | ||
giorgipopla | 0 | 614,444,811 | 100% | ||
dedisusanto | 0 | 605,228,050 | 100% | ||
cgom774 | 0 | 516,133,529 | 100% | ||
ikram01 | 0 | 614,444,672 | 100% | ||
davidym1 | 0 | 614,444,649 | 100% | ||
kianmrf | 0 | 605,227,974 | 100% | ||
humbertock | 0 | 614,444,548 | 100% |
nice sharing.
author | a-0-3 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t081815317z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 08:18:06 |
last_update | 2018-02-15 08:18:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 08:18: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 | 13 |
author_reputation | -1,023,080,095,115 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,687,505 |
net_rshares | 0 |
Thank you for this post @steemitdev
author | abay212 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t053140511z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"} |
created | 2018-02-17 05:31:51 |
last_update | 2018-02-17 05:31:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 05:31: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 | 35 |
author_reputation | 1,691,171,222 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,175,540 |
net_rshares | 0 |
the scenery is very beautiful and the photos are very cool
author | abdul.halim |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000056408z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:01:06 |
last_update | 2018-02-15 00:01:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 00:01: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 | 58 |
author_reputation | -694,265,333 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,600,285 |
net_rshares | 0 |
I am really excited to show this to my friends.. fb, instragram, twitter.. we need more people believing in STEEM and the power that it brings to our society!!
author | aboutanything |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t162858823z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 16:29:00 |
last_update | 2018-02-15 16:29:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 16:29: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 | 159 |
author_reputation | 3,765,735,247 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,783,918 |
net_rshares | 0 |
Good
author | aidilmuhammad | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t18263214z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 11:26:33 | ||||||
last_update | 2018-02-15 11:26:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 11:26: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 | 4 | ||||||
author_reputation | -51,022,921,990 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,722,680 | ||||||
net_rshares | 0 |
I just completed my bot some days ago and seems like I have to recode again if the API is changes :/
author | ammadkhalid |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t212838489z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-17 21:28:42 |
last_update | 2018-02-17 21:28:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 21:28: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 | 100 |
author_reputation | 2,352,741,740,419 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,354,451 |
net_rshares | 270,537,377 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ammadkhalid | 0 | 270,537,377 | 100% |
awesome
author | andesta |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t192204034z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 19:22:06 |
last_update | 2018-02-16 19:22:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 19:22: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 | 7 |
author_reputation | 496,625,408,041 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,075,853 |
net_rshares | 0 |
Payout Declined lol
author | andrewclk |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t162344051z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 16:23:48 |
last_update | 2018-02-16 16:23:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 16:23: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 | 19 |
author_reputation | 79,947,618,115 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,041,037 |
net_rshares | 0 |
It seems like this is a progress towards a better direction. Surely we hope to meet the demand accordingly. I will follow these developments, and fight the lethargy that our friends face.
author | arafatnur |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t192146031z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 19:21:45 |
last_update | 2018-02-16 19:21:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 19:21: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 | 187 |
author_reputation | 1,838,063,841,285 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,075,767 |
net_rshares | 237,257,735 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lingi | 0 | 237,257,735 | 100% |
Congratulations @steemitdev! Your post was mentioned in the [Steemit Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20180214) in the following category: * Pending payout - Ranked 1 with $ 1107,07
author | arcange |
---|---|
permlink | re-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t171118000z |
category | steem |
json_metadata | "" |
created | 2018-02-15 16:11:18 |
last_update | 2018-02-15 16:11:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 16:11: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 | 219 |
author_reputation | 1,146,606,639,109,506 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,780,295 |
net_rshares | 0 |
Very nice post and great article.. Thanks for information @steemitdev I like your blog
author | atjehsteemit | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t212112382z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 14:21:15 | ||||||
last_update | 2018-02-15 14:21:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 14:21: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 | 86 | ||||||
author_reputation | 1,134,338,995,221 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,757,103 | ||||||
net_rshares | 0 |
The very good project, Steemit is growing...
author | ayurvedajoshi |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t125751963z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:57:51 |
last_update | 2018-02-15 12:58:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 12:57: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 | 44 |
author_reputation | 1,132,348,179,488 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,740,103 |
net_rshares | 0 |
Good
author | baekjinsun | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t215018477z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 12:50:18 | ||||||
last_update | 2018-02-15 12:50:18 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 12:50: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 | 4 | ||||||
author_reputation | 0 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,738,572 | ||||||
net_rshares | 0 |
I am happy with your post, useful and add insight, can I make friends with you ....? Thanks you
author | baktiarsejahtera | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018222t20495059z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-22 13:49:54 | ||||||
last_update | 2018-02-22 13:49:54 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-03-01 13:49: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 | 95 | ||||||
author_reputation | 12,495,842,900 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 39,613,657 | ||||||
net_rshares | 0 |
On steemitstage the font is a little bit smaller, this is **not** a complaint, just an observation from just a user. If you can globally set the font size as a developer, is it really that much harder to give users a setting for choosing there own font to view on their page only? Kind of like choosing the day/night setting, a couple more menu Items, font and size? Any way still exploring and will try to steemitstage at various times and drop findings here for you all.
author | bashadow |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t004541284z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:45:36 |
last_update | 2018-02-15 00:45:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 00:45:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.352 HBD |
curator_payout_value | 0.113 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 508 |
author_reputation | 100,388,692,638,882 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,607,171 |
net_rshares | 68,875,379,847 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 68,875,379,847 | 7% |
it look like virtual motorways for data and future technologies
author | bashir304 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t154803099z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 15:48:03 |
last_update | 2018-02-15 15:48:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 15:48: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 | 63 |
author_reputation | 1,030,568,940 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,775,503 |
net_rshares | 282,675,272 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bashir304 | 0 | 282,675,272 | 100% |
Nice contents
author | batman31 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t16917160z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 09:09:18 | ||||||
last_update | 2018-02-15 09:09:18 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 09:09: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 | 13 | ||||||
author_reputation | 7,077,131,350 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,697,403 | ||||||
net_rshares | 0 |
A good post, please vote my account @batman31
author | batman31 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t18414796z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 11:04:18 | ||||||
last_update | 2018-02-16 11:04:18 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 11:04:18 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 46 | ||||||
author_reputation | 7,077,131,350 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,978,492 | ||||||
net_rshares | 0 |
Great news and awesome work! Will start testing asap.
author | bennierex |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225615556z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 22:56:15 |
last_update | 2018-02-14 22:56:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 22:56: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 | 53 |
author_reputation | 5,544,064,354,890 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,590,233 |
net_rshares | 0 |
''AppBase is the first step in creating a multi-chain FABRIC. AppBase enables 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.'' Really ?? Looks great !
author | beyfendi |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231538497z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:16:30 |
last_update | 2018-02-14 23:16:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 23:16: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 | 340 |
author_reputation | 1,095,273,445,329 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,593,543 |
net_rshares | 1,137,082,120 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beyfendi | 0 | 1,137,082,120 | 100% |
Excelente, así es que es la union hace la fuerza, mientras mas unidos mejor hay que apoyarse de igual forma todos ganaremos quien me apoye votare siempre por ellos, suerte...
author | bigdesafios |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t033808636z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 03:08:24 |
last_update | 2018-02-15 03:08:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 03:08: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 | 175 |
author_reputation | 3,178,077,741 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,631,203 |
net_rshares | 0 |
Excelente post, Soy nueva en la comunidad espero contar son tu apoyo, Siempre estaré apoyándolo gracias... Éxito
author | bigdesafios |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t051058286z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-18 04:41:42 |
last_update | 2018-02-18 04:41:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-25 04: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 | 112 |
author_reputation | 3,178,077,741 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,423,016 |
net_rshares | 0 |
When you want to Flag them but see their Steem power lol https://steemitimages.com/0x0/https://3.bp.blogspot.com/-tqD6WtPVvJU/VGY5-pWspoI/AAAAAAAANx8/5wtbn89jaYI/s1600/11061F62C.gif
author | bitcointip |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t104254912z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://steemitimages.com/0x0/https://3.bp.blogspot.com/-tqD6WtPVvJU/VGY5-pWspoI/AAAAAAAANx8/5wtbn89jaYI/s1600/11061F62C.gif"],"app":"steemit/0.1"} |
created | 2018-02-15 10:42:57 |
last_update | 2018-02-15 10:42:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 10:42: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 | 181 |
author_reputation | -596,771,209,212 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,714,378 |
net_rshares | 0 |
Congratulations @steemitdev, this post is the most rewarded post (based on pending payouts) in the last 12 hours written by a User account holder (accounts that hold between 0.1 and 1.0 Mega Vests). The total number of posts by User account holders during this period was 2940 and the total pending payments to posts in this category was $11708.40. To see the full list of highest paid posts across all accounts categories, [click here](www.steemit.com/steemit/@bitgeek/payout-stats-report-for-15th-february-2018--part-ii). If you do not wish to receive these messages in future, please reply stop to this comment.
author | bitgeek |
---|---|
permlink | re-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t075307 |
category | steem |
json_metadata | "" |
created | 2018-02-15 07:53:09 |
last_update | 2018-02-15 07:53:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 07:53: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 | 618 |
author_reputation | 13,049,044,453,787 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,682,595 |
net_rshares | 0 |
Steem blockchain will go far.
author | blackybabies |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t050128819z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 05:01:33 |
last_update | 2018-02-15 05:01:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 05:01:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.160 HBD |
curator_payout_value | 0.052 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 3,748,307,268,706 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,650,945 |
net_rshares | 31,472,319,197 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blackybabies | 0 | 31,472,319,197 | 100% |
Just in time. I hope this reduces the crazy resource requirements of the witness and full RPC nodes
author | bobinson |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180305t113847196z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-03-05 11:38:51 |
last_update | 2018-03-05 11:38:51 |
depth | 1 |
children | 0 |
last_payout | 2018-03-12 11:38: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 | 99 |
author_reputation | 55,343,141,313,811 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 42,358,362 |
net_rshares | 0 |
This post is amazing, steem is the best.
author | bonafide1 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t153148568z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 15:32:06 |
last_update | 2018-02-16 15:32:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 15:32: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 | 40 |
author_reputation | 9,600,868 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,030,550 |
net_rshares | 0 |
Great shot, have a look at the pic I posted, i'm new here @boyerobert
author | boyerobert |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180303t190443736z |
category | steem |
json_metadata | {"tags":["steem"],"users":["boyerobert"],"app":"steemit/0.1"} |
created | 2018-03-03 19:04:42 |
last_update | 2018-03-03 19:04:42 |
depth | 1 |
children | 0 |
last_payout | 2018-03-10 19:04: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 | 69 |
author_reputation | 6,116,221,221,735 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,939,883 |
net_rshares | 0 |
Very exciting to see! Side chains appear to have the potential to bring in the classic (owner controlled - centralized) business models and allow them to coexist on top of the STEEM ecosystem! They can pick from the underlying layers of STEEM they want to adopt, then create what ever controls they want from there. Let me know where I'm wrong with this view! Thanks! Great work!
author | brettcalloway |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231710291z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:17:09 |
last_update | 2018-02-14 23:17:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 23:17:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.096 HBD |
curator_payout_value | 0.353 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 379 |
author_reputation | 4,314,822,232,959 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,593,635 |
net_rshares | 212,288,134,348 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 94,659,829,661 | 10% | ||
yuninho | 0 | 1,710,795,622 | 100% | ||
brettcalloway | 0 | 108,635,995,120 | 100% | ||
victoriacalloway | 0 | 7,281,513,945 | 100% |
logged in using my keys. runs great. resteem checks out and here's a comment.
author | broester |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t033731229z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 03:37:33 |
last_update | 2018-02-15 03:37:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 03: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 | 77 |
author_reputation | 1,090,007,277,845 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,636,410 |
net_rshares | 0 |
I don't know what you just said there, but glad you guys got this thing under control.
author | captainobviou3 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230843019z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:08:42 |
last_update | 2018-02-14 23:08:42 |
depth | 1 |
children | 1 |
last_payout | 2018-02-21 23:08:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.352 HBD |
curator_payout_value | 0.113 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 36,289,636,582,778 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,592,333 |
net_rshares | 68,843,198,437 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 68,843,198,437 | 7% |
Ha, touche, I'm with you there 🤣🤣
author | goldiemr |
---|---|
permlink | re-captainobviou3-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t005745486z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:57:48 |
last_update | 2018-02-15 00:57:48 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 00:57: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 | 33 |
author_reputation | 44,173,052,363 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,608,997 |
net_rshares | 2,337,641,905 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
captainobviou3 | 0 | 2,337,641,905 | 10% |
Welcome to steemit, I'm holding a raffle in which I will give away $ 10 ,to participate here: https://steemit.com/lot/@carlososuna11/you-want-to-win-usd-10
author | carlososuna11 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t172223320z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/lot/@carlososuna11/you-want-to-win-usd-10"],"app":"steemit/0.1"} |
created | 2018-02-16 17:23:03 |
last_update | 2018-02-16 17:23:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 17:23: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 | 76,024,366,538 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,052,821 |
net_rshares | 0 |
Việt Nam đâu rồi giơ tay lên.
author | carlpei |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180304t024600430z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-03-04 02:45:57 |
last_update | 2018-03-04 02:45:57 |
depth | 1 |
children | 0 |
last_payout | 2018-03-11 02:45: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 | 29 |
author_reputation | 32,529,802,529,473 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 42,017,249 |
net_rshares | 0 |
nice information, hope you succes
author | cattivoragazzo |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t162109820z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 16:21:03 |
last_update | 2018-02-15 16:21:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 16:21: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 | 33 |
author_reputation | 5,500,895,145 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,782,376 |
net_rshares | 0 |
Wow, you are my hero!!! Thanks!!!!!!!
author | celesus |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t000506532z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 00:05:12 |
last_update | 2018-02-16 00:05:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 00:05: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 | 37 |
author_reputation | 226,934,332 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,865,328 |
net_rshares | 0 |
Using it now to make this comment. From a regular user's view there is no difference, other than there's no down vote button. I personally would rather see a down vote button (as in disagreeing or spammy comments) than a flag (which I have seen abused for merely disagreeing with one's point of view or other silly, frivolous matters).
author | coquiunlimited |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t023944471z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 02:39:45 |
last_update | 2018-02-15 02:39:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 02:39: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 | 336 |
author_reputation | 5,815,829,253,052 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,626,110 |
net_rshares | 0 |
Trying it now, its good but the steemit more info extension does not work on it??
author | crazybgadventure |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t122125592z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:21:24 |
last_update | 2018-02-15 12:21:24 |
depth | 1 |
children | 1 |
last_payout | 2018-02-22 12:21: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 | 81 |
author_reputation | 5,553,373,191,378 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,732,942 |
net_rshares | 0 |
To all traders out there seeking for a good trading strategy and have been going through difficulties in winning trades, I will like to share with you all a solution to your problems by introducing you to an amazing trading strategy and tool I was also introduced to, which has won me thousands of dollars lately.As an IPM investor I have made over $452000 in my first quarter, been the most secure trending investment .contact me and i will show you the secret and strategy also i will assist you for free contact me via my e mail (davidmiller6435@gmail.com).This is a top secret you need to learn for a good Payout. I guarantee you 98% ..Regards.
author | davidmiller |
---|---|
permlink | re-crazybgadventure-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134838991z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 13:48:45 |
last_update | 2018-02-15 13:48:45 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 13:48: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 | 649 |
author_reputation | -792,209,059,953 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,750,302 |
net_rshares | 0 |
Interesting article! Checkout @cryptobroye for more bitcoin info and analysis. Im sure there's a lot we can learn from each other!
author | cryptobroye |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t064352722z |
category | steem |
json_metadata | {"tags":["steem"],"users":["cryptobroye"],"app":"steemit/0.1"} |
created | 2018-02-15 06:43:51 |
last_update | 2018-02-15 06:43:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 06: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 | 130 |
author_reputation | 57,446,596,414 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,670,186 |
net_rshares | 211,615,461 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptobroye | 0 | 211,615,461 | 100% |
Would you explain how modularity could be achieved by creating additional non-consensus blockchains as dedicated plugins. Any upcoming how-tos for plugin system. Logged into the site works same as steemit.
author | cryptoexplorer7 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t170244485z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-15 17:02:48 |
last_update | 2018-02-15 17:02:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 17: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 | 207 |
author_reputation | 604,843,222,120 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,790,881 |
net_rshares | 0 |
Bug report: I tried to reply to a comment  I wasn't logged in, so it asked me for my password:  I pressed Cancel, and instead of returning and letting me keep writing my comment, the field was blocked, had a forbidden mouse sign on hover and the Post button had been substituted by a loading sign. 
author | cryptosharon |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t093902681z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://cdn.discordapp.com/attachments/405940580162732033/413629262419984385/unknown.png","https://cdn.discordapp.com/attachments/405940580162732033/413629347497508864/unknown.png","https://cdn.discordapp.com/attachments/405940580162732033/413629407148900353/unknown.png"],"app":"steemit/0.1"} |
created | 2018-02-15 09:39:03 |
last_update | 2018-02-15 09:39:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 09:39: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 | 583 |
author_reputation | 91,921,317,551,639 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,702,816 |
net_rshares | 2,050,720,857 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptosharon | 0 | 2,050,720,857 | 100% |
wow nice post
author | cryptospecio |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t091848799z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 09:19:00 |
last_update | 2018-02-16 09:19:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 09:19: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 | 13 |
author_reputation | 442,920,849,621 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,959,343 |
net_rshares | 0 |
so glad that everyone doing so much effort to improve this platform. With the spirit of this community, steemit will never die.
author | cryptowani |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t094117875z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 09:41:12 |
last_update | 2018-02-16 09:41:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 09:41: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 | 127 |
author_reputation | 224,520,920,822 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,963,082 |
net_rshares | 0 |
Thank you for his science ...
author | cut.abang | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t11435780z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 04:43:51 | ||||||
last_update | 2018-02-15 04:43:51 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 04: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 | 29 | ||||||
author_reputation | 46,108,032,488 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,648,113 | ||||||
net_rshares | 0 |
@steemitdev so far it seems smoother, I still have no idea how to do markdown so i tend to use busy for posting but comments replies and the market seem much quicker all other portals linger.
author | d00k13 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t073414871z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"} |
created | 2018-02-17 07:34:15 |
last_update | 2018-02-17 07:34:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 07:34: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 | 191 |
author_reputation | 473,475,468,733,980 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,196,021 |
net_rshares | 0 |
Have any opinion about voting bot?
author | daegeonlee |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t041035961z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 04:10:36 |
last_update | 2018-02-16 04:10:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 04:10: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 | 34 |
author_reputation | 3,370,883,589 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,905,562 |
net_rshares | 613,471,515 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
daegeonlee | 0 | 613,471,515 | 100% |
It just keeps getting better, great innovation, can't wait to try out steemitstage.com
author | daniel-otaniel | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t23154853z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 01:32:03 | ||||||
last_update | 2018-02-15 01:32:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 01:32: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 | 86 | ||||||
author_reputation | 1,682,754,915,786 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,614,334 | ||||||
net_rshares | 0 |
Thank you for sharing this, great news for the steemit community, Im all in, no matter what. Dtube, Steemit, And steem crypto both , sbd and steem.
author | dcwordofmouth |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t012426846z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 01:24:27 |
last_update | 2018-02-15 01:24:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 01:24: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 | 148 |
author_reputation | 122,022,769,008 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,613,180 |
net_rshares | 2,359,925,451 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dcwordofmouth | 0 | 2,359,925,451 | 100% |
looking forward for more and expecting a lot more from steem in future @steemitdev
author | dhirupadhyay |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t092816839z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"} |
created | 2018-02-16 09:28:33 |
last_update | 2018-02-16 09:28:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 09:28: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 | 82 |
author_reputation | 164,536,474,894 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,960,937 |
net_rshares | 0 |
It's difficult to me^^;;
author | dmgpol09 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t111014102z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 11:10:18 |
last_update | 2018-02-16 11:10:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 11:10: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 | 24 |
author_reputation | 2,199,490,786,106 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,979,584 |
net_rshares | 0 |
This is a fabulous update, congrats to the team and all contributors. I will do my testing on staging and try to spin a new instance with this new version. One question: the upgrade is stable enough for witness nodes as well, or should we wait until the official hf 0.20? Again, chapeau, guys! _LE: upvoted for visibility_
author | dragosroua |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t090331471z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 09:03:30 |
last_update | 2018-02-15 09:04:30 |
depth | 1 |
children | 1 |
last_payout | 2018-02-22 09:03:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.688 HBD |
curator_payout_value | 0.060 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 325 |
author_reputation | 372,798,229,806,288 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,696,285 |
net_rshares | 256,956,546,829 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dragosroua | 0 | 178,844,534,322 | 50% | ||
raluca | 0 | 14,336,735,703 | 50% | ||
netuoso | 0 | 61,888,217,391 | 3% | ||
yuninho | 0 | 1,887,059,413 | 100% |
author | kos |
---|---|
permlink | re-dragosroua-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t201305488z |
category | steem |
json_metadata | {"tags":["steem"],"links":["http://fast-win.com/?i=78440"],"app":"steemit/0.1"} |
created | 2018-02-16 20:13:06 |
last_update | 2018-02-16 20:13:06 |
depth | 2 |
children | 0 |
last_payout | 2018-02-23 20:13: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 | 28 |
author_reputation | -59,914,306,026 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,085,024 |
net_rshares | -1,606,180,180 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kos | 0 | 1,521,319,409 | 100% | ||
wanxlol | 0 | -3,127,499,589 | -28% |
Very difficult to understand but you did a nice job.
author | drayhazz |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230030254z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:00:42 |
last_update | 2018-02-14 23:00:42 |
depth | 1 |
children | 1 |
last_payout | 2018-02-21 23:00: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 | 52 |
author_reputation | 346,318,482,396 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,591,005 |
net_rshares | 0 |
What makes it difficult? We, as regular users of steemit.com can post from different sites/apps like #busy #zappl #dtube #dmania steemitSTAGE.com etc etc and all those posts can also be viewed/accessed at steemit.com :) Now, you can try browsing or posting/commenting from steemitstage.com using your steemit.com username and password or posting key. We can get our POSTING key from steemit wallet, click "Permissions" :) I am now typing this at steemitSTAGE.com not at steemit.com :) We can help developers by letting them know if it works fine or if we found some errors or on whatever device/browser we are using so they could fix if needed.
author | pinay |
---|---|
permlink | re-drayhazz-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t025232016z |
category | steem |
json_metadata | {"tags":["steem","busy","zappl","dtube","dmania"],"app":"steemit/0.1"} |
created | 2018-02-15 02:52:33 |
last_update | 2018-02-15 03:03:57 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 02:52: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 | 649 |
author_reputation | 2,774,743,716,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,628,413 |
net_rshares | 0 |
Well this a a good step. I appreciate ur work.help to make steemit better, lets work in collaboration.
author | drqaisarbashir |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t165716966z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 16:57:21 |
last_update | 2018-02-15 16:57:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 16:57: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 | 102 |
author_reputation | 415,976,311,472 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,789,797 |
net_rshares | 0 |
Fantastico...Let's get going people!
author | dwonder |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t094904071z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 09:54:12 |
last_update | 2018-02-16 09:54:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 09:54: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 | 36 |
author_reputation | 209,351,390 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,965,361 |
net_rshares | 0 |
I'm trying to make a game for steemit and it would be really useful if I could put text information on a block that wasn't a blog post or comment. Is this possible? Also, is there anyway to get notified by the blockchain when someone replies to a post? Currently, I'm simply scanning the blockchain every 3 seconds to see if anything has changed. It seems very wasteful compared to a listener. >AppBase enables many components of the Steem blockchain to become modular by creating additional non-consensus blockchains as dedicated plugins. I really wish I knew exactly what that meant. Sounds awesome though :D
author | edicted |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230928592z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:09:30 |
last_update | 2018-02-14 23:09:30 |
depth | 1 |
children | 13 |
last_payout | 2018-02-21 23:09:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.670 HBD |
curator_payout_value | 0.178 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 620 |
author_reputation | 3,492,537,814,408,223 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,592,474 |
net_rshares | 124,376,922,488 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 120,475,047,689 | 12% | ||
yuninho | 0 | 1,845,585,580 | 100% | ||
edicted | 0 | 2,056,289,219 | 100% |
Check out the yo notification framework https://github.com/steemit/yo
author | ausbitbank |
---|---|
permlink | re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t234533603z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://github.com/steemit/yo"],"app":"steemit/0.1"} |
created | 2018-02-14 23:45:36 |
last_update | 2018-02-14 23:45:36 |
depth | 2 |
children | 3 |
last_payout | 2018-02-21 23:45:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 287,009,709,424,827 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,597,873 |
net_rshares | 6,785,118,198 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuninho | 0 | 1,773,006,371 | 100% | ||
steemkitten | 0 | 1,554,098,749 | 25% | ||
horlly | 0 | 335,978,301 | 100% | ||
edicted | 0 | 1,955,367,049 | 100% | ||
dekteng | 0 | 620,819,992 | 100% | ||
yusril-xabre | 0 | 545,847,736 | 100% |
I think he was referring to a listener you could send to the blockchain that would let you not replay the entire blockchain and analyze event by event (which is what the yo notification framework does) but to tell the blockchain "only send events if they match this criterion". But as I think it's not possible, I think your solution is the best one out there. _Yo_ not in JS but it's awesome RPC API seems awesome, so I'll try to integrate it to my code.
author | cryptosharon |
---|---|
permlink | re-ausbitbank-re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t094810120z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 09:48:12 |
last_update | 2018-02-15 09:48:30 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 09:48: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 | 456 |
author_reputation | 91,921,317,551,639 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,704,501 |
net_rshares | 0 |
Wow what a nice and cool comment,upvote my contest pleasehttps://steemit.com/thegraycontest/@horlly/thegraycontest-week-3
author | horlly |
---|---|
permlink | re-ausbitbank-re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t091726114z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/thegraycontest/@horlly/thegraycontest-week-3"],"app":"steemit/0.1"} |
created | 2018-02-16 09:17:42 |
last_update | 2018-02-16 09:17:42 |
depth | 3 |
children | 1 |
last_payout | 2018-02-23 09:17: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 | 121 |
author_reputation | 1,105,467,232 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,959,122 |
net_rshares | 0 |
If you use iPhone you can get the Steemify app
author | captaincanary |
---|---|
permlink | re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t012137329z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 01:21:39 |
last_update | 2018-02-15 01:21:39 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 01:21: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 | 46 |
author_reputation | 4,901,416,496,352 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,612,726 |
net_rshares | 0 |
Hmm, I guess AppBase is providing a platform that will enable Steemit users to upload a particular functionality/plugin for a better experience on Steemit (just as we have plugins for WordPress blogs). What a cool development. Thumbs up to Team Steemit. Thanks for sharing @steemitdev
author | fessikay |
---|---|
permlink | re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t084726741z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"} |
created | 2018-02-15 08:47:21 |
last_update | 2018-02-15 08:47:21 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 08: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 | 284 |
author_reputation | 388,351,498,855 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,693,294 |
net_rshares | 0 |
Yes, you can get notified Steem is making giant strides and leading the social network
author | mickyscofield |
---|---|
permlink | re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t234235866z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:42:45 |
last_update | 2018-02-14 23:42:45 |
depth | 2 |
children | 0 |
last_payout | 2018-02-21 23:42: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 | 86 |
author_reputation | 1,782,815,883,099 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,597,409 |
net_rshares | 0 |
Custom_json is what you probably want
author | netuoso |
---|---|
permlink | re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000240899z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:02:42 |
last_update | 2018-02-15 00:02:42 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 00:02: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 | 37 |
author_reputation | 151,901,967,807,285 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,600,534 |
net_rshares | 0 |
Have you tried Steemify on Ios, as far as I know, the only criteria is under User, so not much customization, still could be useful?
author | santana33 |
---|---|
permlink | re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t224347098z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 22:43:48 |
last_update | 2018-02-15 22:43:48 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 22:43:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.466 HBD |
curator_payout_value | 0.126 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 132 |
author_reputation | 23,915,396,920,695 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,852,611 |
net_rshares | 95,874,826,367 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epicdesigns | 0 | 7,739,614,793 | 42% | ||
blockchainttmft | 0 | 3,445,188,150 | 12% | ||
sanamamq | 0 | 15,161,647,234 | 41% | ||
hmushtaq | 0 | 20,447,972,743 | 52% | ||
initforthemoney | 0 | 3,899,498,222 | 53% | ||
synace | 0 | 9,026,671,508 | 51% | ||
omeratagun | 0 | 9,179,507,216 | 11% | ||
half-blood | 0 | 521,922,263 | 15% | ||
zear | 0 | 5,317,816,126 | 83% | ||
aandebickel | 0 | 5,206,541,127 | 36% | ||
questingtw | 0 | 15,928,446,985 | 92% |
In the option list there is the replies option where you can replies.
author | stadex |
---|---|
permlink | re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232159731z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:22:00 |
last_update | 2018-02-14 23:22:00 |
depth | 2 |
children | 0 |
last_payout | 2018-02-21 23:22: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 | 69 |
author_reputation | 626,393,470,935 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,594,359 |
net_rshares | 0 |
If you haven’t already, you should join the SteemDevs discord group: https://discord.gg/B29Bbng There are a lot of people there that are good to discuss these types of questions with :)
author | timcliff |
---|---|
permlink | re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000254004z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://discord.gg/B29Bbng"],"app":"steemit/0.1"} |
created | 2018-02-15 00:02:54 |
last_update | 2018-02-15 00:02:54 |
depth | 2 |
children | 1 |
last_payout | 2018-02-22 00:02:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.271 HBD |
curator_payout_value | 0.231 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 186 |
author_reputation | 272,954,445,077,789 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,600,571 |
net_rshares | 220,226,609,180 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 82,402,959,761 | 1% | ||
netuoso | 0 | 134,091,647,979 | 7% | ||
yuninho | 0 | 1,814,480,205 | 100% | ||
edicted | 0 | 1,917,521,235 | 100% |
author | kos |
---|---|
permlink | re-timcliff-re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t195412348z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://img.youtube.com/vi/oD5QErn3UMg/0.jpg"],"links":["https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s"],"app":"steemit/0.1"} |
created | 2018-02-16 19:54:12 |
last_update | 2018-02-16 19:54:12 |
depth | 3 |
children | 0 |
last_payout | 2018-02-23 19:54: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 | 49 |
author_reputation | -59,914,306,026 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,081,817 |
net_rshares | -1,078,738,619,416 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | -1,080,285,015,518 | -100% | ||
kos | 0 | 1,546,396,102 | 100% |
> I really wish I knew exactly what that meant. It basically breaks the blockchain code into separate independent ‘modules’ so that people who are running instances of the blockchain can pick and choose which components they want to run.
author | timcliff |
---|---|
permlink | re-edicted-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000517576z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:05:18 |
last_update | 2018-02-15 00:05:18 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 00:05:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.072 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 239 |
author_reputation | 272,954,445,077,789 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,600,900 |
net_rshares | 11,571,998,078 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freebornsociety | 0 | 7,836,884,218 | 16% | ||
yuninho | 0 | 1,741,900,997 | 100% | ||
edicted | 0 | 1,993,212,863 | 100% |
good post friend I invite you to see my blog
author | eliaseduardo |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t043618598z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-18 04:06:36 |
last_update | 2018-02-18 04:06:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-25 04:06: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 | 44 |
author_reputation | 12,429,075,055 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,417,274 |
net_rshares | 0 |
How does this appbase work and how does help steemians?
author | emmgeeahmad |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t064517927z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 06:47:39 |
last_update | 2018-02-16 06:47:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 06:47: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 | 55 |
author_reputation | 58,801,751,261 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,932,130 |
net_rshares | 221,201,856 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emmgeeahmad | 0 | 221,201,856 | 100% |
i just follow and upvote to your post ,, so kindly follow me back and upvote at given link ,, then i will upvote to your five more posts https://steemit.com/actor/@explorator/h4998e8w
author | explorator |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t051403138z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/actor/@explorator/h4998e8w"],"app":"steemit/0.1"} |
created | 2018-02-17 05:14:06 |
last_update | 2018-02-17 05:14:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 05:14: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 | 183 |
author_reputation | -16,265,835,484 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,172,651 |
net_rshares | 0 |
the information is very good, I will learn more, about this explanation.
author | faisalmakruf |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t010102717z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 01:01:00 |
last_update | 2018-02-15 01:01:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 01:01: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 | 72 |
author_reputation | 13,916,079,516 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,609,492 |
net_rshares | 0 |
@faruk1 It's very good to buy blogs at App-base. I am proud of you. Thank you. 
author | faruk1 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t023854796z |
category | steem |
json_metadata | {"tags":["steem"],"users":["faruk1"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmQ4ABQAFZ6jWMZAxQhUjD5rzZ7kCcqcCivmogEr9WrcGv/st6.png"]} |
created | 2018-02-16 02:39:00 |
last_update | 2018-02-16 02:44:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 02:39: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 | 174 |
author_reputation | 19,896,691,923 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,889,397 |
net_rshares | 0 |
This is a great development. Hopefully, there is(will be) a store for these Apps. Can't wait to optimize my experience on Steemit every day.
author | fessikay |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t085954735z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 08:59:51 |
last_update | 2018-02-15 08:59:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 08: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 | 140 |
author_reputation | 388,351,498,855 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,695,607 |
net_rshares | 0 |
Steemit on Kokain, I love it! Testing it now!
author | for91days |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t142934910z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-15 14:29:39 |
last_update | 2018-02-15 14:29:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 14:29: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 | 45 |
author_reputation | 426,700,689,476,817 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,758,856 |
net_rshares | 0 |
Saving this for later. Thanks, let's see if updating my node goes as exciting as this looks.
author | forykw |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t042653421z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 04:26:54 |
last_update | 2018-02-15 04:26:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 04:26: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 | 92 |
author_reputation | 92,176,539,844,676 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,645,425 |
net_rshares | 0 |
I found this post from: https://steemit.com/appbase/@sirknight/sirknight-approves-appbase and @sirknight approves.
author | freedomshift |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t204703339z |
category | steem |
json_metadata | {"tags":["steem"],"users":["sirknight"],"links":["https://steemit.com/appbase/@sirknight/sirknight-approves-appbase"],"app":"steemit/0.1"} |
created | 2018-02-18 20:47:06 |
last_update | 2018-02-18 20:47:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-25 20:47: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 | 116 |
author_reputation | 18,193,534,208,555 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,608,673 |
net_rshares | 0 |
very inspiring, stop at account @ftryfitri aids vote yes ![PhotoGrid_1518701100336[1].jpg](https://steemitimages.com/DQmduXbzUMa29UAzmf2uEd5np5yK4szS7636vjqBANELCr1/PhotoGrid_1518701100336%5B1%5D.jpg)
author | ftryfitri |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134239186z |
category | steem |
json_metadata | {"tags":["steem"],"users":["ftryfitri"],"image":["https://steemitimages.com/DQmduXbzUMa29UAzmf2uEd5np5yK4szS7636vjqBANELCr1/PhotoGrid_1518701100336%5B1%5D.jpg"],"app":"steemit/0.1"} |
created | 2018-02-15 13:42:39 |
last_update | 2018-02-15 13:42:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 13:42: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 | 200 |
author_reputation | 5,240,483,398 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,749,168 |
net_rshares | 0 |
I am glad our witnesses are working so hard to develop and support their platforms too. In my smallest way to support the success of Steemit, and Steem blockchain, I am already utilizing each one and getting the hang of it myself and trying to create blogs of how I incorporate each apps to our daily lives. Just like any other social media. One by one I am starting to use it, love it and promote it and let people do the domino effect as I motivate them as well to never lose hope on steemit. In which myself have experienced it but still here and rocking with brilliant minds. Now enjoying busy.org and steemgigs. Stilll trying SteemTipper and parley. Thanks for this posts. Our responsibility to always get ourselves updated.
author | fycee |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180428t165951753z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-28 16:59:57 |
last_update | 2018-04-28 16:59:57 |
depth | 1 |
children | 0 |
last_payout | 2018-05-05 16:59: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 | 730 |
author_reputation | 8,342,965,418,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,677,257 |
net_rshares | 0 |
This sounds really exciting. Can you provide some examples of what type of apps would potentially be made on the platform?
author | garrie |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t230634555z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 23:06:36 |
last_update | 2018-02-15 23:06:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 23:06: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 | 122 |
author_reputation | 242,781,406 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,856,409 |
net_rshares | 0 |
thanks ..!! this help fully
author | gates6661 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t121820803z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:18:21 |
last_update | 2018-02-15 12:18:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 12:18: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 | 28 |
author_reputation | 3,177,899,261 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,732,383 |
net_rshares | 0 |
I read the content and now see a line across your upvote dollar amount. It has made me skittish on viewing your sight.
author | gatorinla |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230656917z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:07:00 |
last_update | 2018-02-14 23:07:00 |
depth | 1 |
children | 7 |
last_payout | 2018-02-21 23:07: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 | 118 |
author_reputation | 334,765,456,271 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,592,025 |
net_rshares | 0 |
that line through the upvote amount just means that the author declined to receive any author rewards.
author | dhouse |
---|---|
permlink | re-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231409385z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:14:09 |
last_update | 2018-02-14 23:14:09 |
depth | 2 |
children | 0 |
last_payout | 2018-02-21 23:14: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 | 102 |
author_reputation | 4,150,202,158,075 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,593,210 |
net_rshares | 0 |
It's a dev account, there's no real reason for a developer on the main project team to really bother with cashing out since they have the backend, or possibly saving it for some other purpose within the site itself. It's a declined payment by the developer from the developer. Think of it like this, you own a company and you have an automated payroll system that prints employee paychecks based on clocking in and out and it generates the owner a paycheck as well. The paycheck comes from the owner's bank account, so why bother cashing it instead of shredding the check?
author | outtheshellvlog |
---|---|
permlink | re-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231721915z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:17:15 |
last_update | 2018-02-14 23:17:15 |
depth | 2 |
children | 3 |
last_payout | 2018-02-21 23:17: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 | 575 |
author_reputation | 11,385,462,196,990 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,593,653 |
net_rshares | 0 |
To all traders out there seeking for a good trading strategy and have been going through difficulties in winning trades, I will like to share with you all a solution to your problems by introducing you to an amazing trading strategy and tool I was also introduced to, which has won me thousands of dollars lately.As an IPM investor I have made over $452000 in my first quarter, been the most secure trending investment .contact me and i will show you the secret and strategy also i will assist you for free contact me via my e mail (davidmiller6435@gmail.com).This is a top secret you need to learn for a good Payout. I guarantee you 98% ..Regards.
author | davidmiller |
---|---|
permlink | re-outtheshellvlog-re-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134747418z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 13:47:51 |
last_update | 2018-02-15 13:47:51 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 13:47: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 | 649 |
author_reputation | -792,209,059,953 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,750,146 |
net_rshares | -491,561,718 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
outtheshellvlog | 0 | -491,561,718 | -100% |
thanks, I take it my upvote did neither of us any good. I wasn't sure if someone had flagged it or something.
author | gatorinla |
---|---|
permlink | re-outtheshellvlog-re-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232456365z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:25:09 |
last_update | 2018-02-14 23:25:09 |
depth | 3 |
children | 1 |
last_payout | 2018-02-21 23:25: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 | 109 |
author_reputation | 334,765,456,271 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,594,812 |
net_rshares | 0 |
Did you really read it? Because it is not a sight but the fundamentals why you are able to put your comment here. And the line across the upvote dollar amount means the Developers refused to be payed for this post, so that there is more money left for your quality posts, curations and comments. Take a deep breath and let that skittishness go :)
author | street.yoga |
---|---|
permlink | re-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232148548z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:21:48 |
last_update | 2018-02-14 23:21:48 |
depth | 2 |
children | 1 |
last_payout | 2018-02-21 23:21: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 | 347 |
author_reputation | 2,738,791,069,636 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,594,324 |
net_rshares | 0 |
I think we have a misunderstanding. I dont trust much on the net. After voting and commenting i saw the line. You may already have a relationship. I dont yet. The line across the money set off alarms in my head. It's all explained now. I get it. All good.
author | gatorinla |
---|---|
permlink | re-streetyoga-re-gatorinla-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t010649890z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 01:06:54 |
last_update | 2018-02-15 01:07:36 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 01:06: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 | 255 |
author_reputation | 334,765,456,271 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,610,420 |
net_rshares | 0 |
Come on Steemit, I believe a lot in this project and I'm really pleased that everything is finally going to bear fruit!
author | giocondo83 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t222902969z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 22:29:03 |
last_update | 2018-02-15 22:29:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 22:29: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 | 119 |
author_reputation | 2,463,109,445,514 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,850,212 |
net_rshares | 0 |
really?
author | gmzct |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t041829268z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-17 04:18:30 |
last_update | 2018-02-17 04:18:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 04:18: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 | 7 |
author_reputation | -16,832,223,372 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,163,198 |
net_rshares | 0 |
Wow this is a great developemnt, i just logged in using my posting key, it's all like the steemit.com with all d same info of your Acc. Does it mean we can be using both at the same time?
author | goal300 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231449454z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:14:54 |
last_update | 2018-02-14 23:14:54 |
depth | 1 |
children | 3 |
last_payout | 2018-02-21 23:14: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 | 187 |
author_reputation | 1,484,165,204,915 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,593,314 |
net_rshares | 67,754,333 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
goal300 | 0 | 67,754,333 | 100% |
You can be logged in to both at the same time.
author | timcliff |
---|---|
permlink | re-goal300-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t233343905z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:33:42 |
last_update | 2018-02-14 23:33:42 |
depth | 2 |
children | 2 |
last_payout | 2018-02-21 23:33:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.218 HBD |
curator_payout_value | 0.073 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 272,954,445,077,789 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,596,087 |
net_rshares | 43,008,168,645 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
altafalazzam | 0 | 43,008,168,645 | 100% |
Another extension of Steemit it is?
author | mickyscofield |
---|---|
permlink | re-timcliff-re-goal300-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t234438646z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:44:45 |
last_update | 2018-02-14 23:44:45 |
depth | 3 |
children | 1 |
last_payout | 2018-02-21 23:44: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 | 35 |
author_reputation | 1,782,815,883,099 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,597,730 |
net_rshares | 0 |
thanks for sharing.
author | godatsteem |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t001803010z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:18:03 |
last_update | 2018-02-15 00:18:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 00:18: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 | 19 |
author_reputation | 2,475,721,584,286 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,602,990 |
net_rshares | 0 |
greatstuff!!! :):)
author | greatstuff |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t002039677z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:20:42 |
last_update | 2018-02-15 00:20:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 00:20: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 | 18 |
author_reputation | 3,168,318,159 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,603,396 |
net_rshares | 0 |
Great, simply great. Positive changes all around, really. I'll be loving the condenser_api. Great work from the developers.
author | gregjava |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t111342729z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 11:13:45 |
last_update | 2018-02-15 11:13:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 11: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 | 123 |
author_reputation | 407,441,374,496 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,720,341 |
net_rshares | 0 |
Please pardon me for being new and somewhat dense. Is this a sidechain and if not, what is the difference?
author | here2help |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000548993z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:05:48 |
last_update | 2018-02-15 00:05:48 |
depth | 1 |
children | 2 |
last_payout | 2018-02-22 00:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.084 HBD |
curator_payout_value | 0.028 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 349,980,632 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,600,980 |
net_rshares | 17,231,171,090 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 17,231,171,090 | 1% |
No, it is not a sidechain. There is still one blockchain, but different components can be turned on/off on the individual nodes. For example, an exchange node may only care about account balance transactions, and may not want to run all of the logic related to posting, commenting, voting, etc.
author | timcliff |
---|---|
permlink | re-here2help-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t041050502z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 04:10:51 |
last_update | 2018-02-15 04:10:51 |
depth | 2 |
children | 1 |
last_payout | 2018-02-22 04:10: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 | 294 |
author_reputation | 272,954,445,077,789 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,642,484 |
net_rshares | 614,449,187 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
here2help | 0 | 614,449,187 | 100% |
Got it. Thank you for the clarification.
author | here2help |
---|---|
permlink | re-timcliff-re-here2help-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t113017952z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 11:30:18 |
last_update | 2018-02-15 11:30:18 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 11:30: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 | 41 |
author_reputation | 349,980,632 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,723,359 |
net_rshares | 0 |
Good job
author | heri27 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t20477396z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 13:47:12 | ||||||
last_update | 2018-02-15 13:47:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 13: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 | 8 | ||||||
author_reputation | 2,283,579,263 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,750,038 | ||||||
net_rshares | 602,165,565 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
heri27 | 0 | 602,165,565 | 100% |
Please guys help and upvote me https://steemit.com/stach/@ifymula/know-your-rhesus-factor-today
author | ifymula |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t224318213z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/stach/@ifymula/know-your-rhesus-factor-today"],"app":"steemit/0.1"} |
created | 2018-02-15 22:43:24 |
last_update | 2018-02-15 22:43:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 22:43: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 | 95 |
author_reputation | 9,938,933,578 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,852,539 |
net_rshares | 120,665,938 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gothika47 | 0 | -469,206,437 | -100% | ||
ifymula | 0 | 589,872,375 | 100% |
Very good.. please help follow and vote me master.
author | ikhsanjoe46 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t23543622z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 16:05:45 | ||||||
last_update | 2018-02-15 16:05:45 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 16:05: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 | 50 | ||||||
author_reputation | -9,390,309,163 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,779,159 | ||||||
net_rshares | 0 |
@steemitdev I know you all busy. I am just wondering when will you ever fix the bug on the [wallet tab](https://steemit.com/@introvertspeaks/transfers)? It's been a month or so and the issue hasn't gone away.
author | introvertspeaks |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t042547852z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitdev"],"links":["https://steemit.com/@introvertspeaks/transfers"],"app":"steemit/0.1"} |
created | 2018-02-15 04:25:45 |
last_update | 2018-02-15 04:25:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 04:25: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 | 209 |
author_reputation | -4,351,658,764,138 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,645,237 |
net_rshares | 0 |
I will also work on doingsome tests and for the Developer community i will make a detailed post!!... I think these will change the kind of split the RPC server into parts,which are each less resouces intensive too run....thank u bro,i will really check it out....
author | islamkha |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t051411134z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 05:14:21 |
last_update | 2018-02-16 05:14:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 05:14: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 | 264 |
author_reputation | 8,090,456,002 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,917,141 |
net_rshares | 0 |
thank you
author | izgi |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t120937474z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:09:36 |
last_update | 2018-02-15 12:09:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 12:09: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 | 9 |
author_reputation | 2,414,355,057 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,730,721 |
net_rshares | 0 |
So just from reading this: >AppBase enables many components of the Steem blockchain to become modular by creating additional non-consensus blockchains as dedicated plugins. It seems like we are going to have the ability to fully customize our experience on steemit by implementing "plug-in" style additions. Does this mean that anyone can create these modules? IF so this is a huge boost and something I was hoping would be implemented. Things that can customize the experience and make it easier to use, or bring new utility would be really awesome, can't wait to try it out tonight!
author | jakeybrown |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230440953z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:04:42 |
last_update | 2018-02-14 23:04:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 23:04:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.356 HBD |
curator_payout_value | 0.113 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 587 |
author_reputation | 4,617,429,111,002 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,591,653 |
net_rshares | 69,445,412,147 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 68,843,198,437 | 7% | ||
iizno | 0 | 602,213,710 | 100% |
interesting...
author | jalriva |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t012917374z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 01:29:24 |
last_update | 2018-02-16 01:29:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 01:29: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 | 14 |
author_reputation | 9,600,768 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,878,515 |
net_rshares | 0 |
Thanks for all the charts and opinion.Upvot and resteem.I appreciate your work.
author | jhonysins |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t223513661z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 22:35:24 |
last_update | 2018-02-14 22:35:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 22:35: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 | 79 |
author_reputation | 479,437,241,437 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,586,917 |
net_rshares | 0 |
what a great contribution, I like to know that there are new options to use steemit and I will start surfing steemitstage.com
author | joelgonz1982 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t001457564z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:38:48 |
last_update | 2018-02-14 23:38:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 23:38: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 | 125 |
author_reputation | 8,980,042,090,065 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,596,833 |
net_rshares | 0 |
https://steemit.com/facebook/@jordanbelford/7trwjp-discovery-channel-and-its-usual-programs
author | jordanbelford |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t194858830z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/facebook/@jordanbelford/7trwjp-discovery-channel-and-its-usual-programs"],"app":"steemit/0.1"} |
created | 2018-02-15 19:49:21 |
last_update | 2018-02-15 19:49:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 19:49: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 | 91 |
author_reputation | -1,908,914 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,822,434 |
net_rshares | 0 |
Am really excited that the steem developers have really worked to enhance the steem blockchain. Mass scaling and adoption is what we need in the Crypto space. This great efforts are really appreciated. The more we build, innovate and develop the better for humanity as a whole. Cheers!!!
author | joshuaatiemo |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180220t132336708z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-20 13:23:42 |
last_update | 2018-02-20 13:23:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 13: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 | 287 |
author_reputation | 4,189,940,271,139 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,070,115 |
net_rshares | 83,162,908 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -2,171,523,503 | -0.08% | ||
joshuaatiemo | 0 | 2,254,686,411 | 100% |
Plus kindly upvote me @ Kemkem. Thanks
author | kemkem |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t104523380z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 10:46:06 |
last_update | 2018-02-16 10:46:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 10:46:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 580,897,940 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,975,155 |
net_rshares | 0 |
Thanks for this great post keep up the good work great content 👍⚡♨️
author | kgakakillerg |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t101030357z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 10:10:33 |
last_update | 2018-02-15 10:10:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 10:10: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 | 67 |
author_reputation | 568,045,098,590,643 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,708,589 |
net_rshares | 0 |
Great work!!!!! I logged in through steemitstage.com, it goes very fast!!!! Thank you. Best Regards from Canary Islands.
author | kilianparadise |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t122840222z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmPLLpx8ijAH9RhHSta6pzcT3kWQKG3BFRC9VFa9BRJJbp/21764902_10213850573041038_7018196675561808839_n.jpg"]} |
created | 2018-02-15 12:28:39 |
last_update | 2018-02-15 12:36:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 12:28: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 | 303 |
author_reputation | 5,844,486,015,944 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,734,366 |
net_rshares | 0 |
읽어도 아직 은 잘 모르지만 읽을 만한 가치가 있는 것은 분명한 것 같다.
author | kimsungtee |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t125256726z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:52:57 |
last_update | 2018-02-15 12:52:57 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 12:52:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 10,535,573,340,060 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,739,101 |
net_rshares | 7,492,166,336 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kimsungtee | 0 | 7,492,166,336 | 100% |
Wow, this is exciting, continue to be super bullish on Steem's future
author | kjnk |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t223022384z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 22:30:24 |
last_update | 2018-02-15 22:30:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 22:30:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.166 HBD |
curator_payout_value | 0.055 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 670,294,526,884 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,850,480 |
net_rshares | 35,818,497,008 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kjnk | 0 | 35,818,497,008 | 100% |
So over my head, but I'm trying @steemitdev..
author | kofibeatz |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t074445909z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"} |
created | 2018-02-15 07:44:42 |
last_update | 2018-02-15 07:44:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 07:44: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 | 45 |
author_reputation | 1,049,558,092,285 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,681,016 |
net_rshares | 0 |
Just tried it also using my posting key, it feels like normal. Almost same as the former, I so love it. Keep up the good work. **Keep steeming**
author | kvngcreamy |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t075439631z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 07:54:48 |
last_update | 2018-02-16 07:54:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 07:54: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 | 146 |
author_reputation | 154,826,751,420 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,943,914 |
net_rshares | 0 |
Is there a difference because I don't see it. It looks exactly like the steemit.com interface
author | kwakumax |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225651005z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 22:56:45 |
last_update | 2018-02-14 22:56:45 |
depth | 1 |
children | 10 |
last_payout | 2018-02-21 22:56:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.230 HBD |
curator_payout_value | 1.068 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 30,435,185,048,559 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,590,320 |
net_rshares | 628,344,947,789 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 68,843,198,437 | 7% | ||
vaulgari | 0 | 559,501,749,352 | 100% |
You are absolutely right @kwakumax. It looks and feels exactly the same as Steemit.I guess its just a more efficient future oriented version
author | mosunomotunde |
---|---|
permlink | re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000913063z |
category | steem |
json_metadata | {"tags":["steem"],"users":["kwakumax"],"app":"steemit/0.1"} |
created | 2018-02-15 00:09:15 |
last_update | 2018-02-15 00:09:15 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 00:09: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 | 140 |
author_reputation | 19,586,987,821,353 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,601,550 |
net_rshares | 0 |
If you want to see a difference, look at the witnesses to vote for.
author | street.yoga |
---|---|
permlink | re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230808273z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:08:09 |
last_update | 2018-02-14 23:08:09 |
depth | 2 |
children | 3 |
last_payout | 2018-02-21 23:08: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 | 67 |
author_reputation | 2,738,791,069,636 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,592,239 |
net_rshares | 0 |
Will check that out asap
author | mosunomotunde |
---|---|
permlink | re-streetyoga-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t001018180z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:10:18 |
last_update | 2018-02-15 00:10:18 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 00:10: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 | 24 |
author_reputation | 19,586,987,821,353 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,601,722 |
net_rshares | 614,503,785 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
iizno | 0 | 614,503,785 | 100% |
You were right. The difference is pretty noticeable when voting for witnesses. Its so amazing that the entire feel is exactly like steemit.com though...incredible work
author | mosunomotunde |
---|---|
permlink | re-streetyoga-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t002626877z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:26:27 |
last_update | 2018-02-15 00:26:27 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 00:26: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 | 167 |
author_reputation | 19,586,987,821,353 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,604,280 |
net_rshares | 0 |
More specifically these changes are all backend and should not be visible to the end user. If you encounter bugs or problems that is good to report on https://github.com/steemit/steem
author | netuoso |
---|---|
permlink | re-streetyoga-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000816803z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://github.com/steemit/steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:08:18 |
last_update | 2018-02-15 00:08:18 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 00:08: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 | 183 |
author_reputation | 151,901,967,807,285 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,601,390 |
net_rshares | 2,852,727,269 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
street.yoga | 0 | 2,852,727,269 | 100% |
If everything is working the same as before, then that is good in this case. These changes are all “under the hood” to make the underlying blockchain run more efficiently.
author | timcliff |
---|---|
permlink | re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225913297z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 22:59:12 |
last_update | 2018-02-14 22:59:12 |
depth | 2 |
children | 4 |
last_payout | 2018-02-21 22:59:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.178 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 272,954,445,077,789 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,590,748 |
net_rshares | 31,555,685,288 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
captainobviou3 | 0 | 22,738,880,358 | 100% | ||
kwakumax | 0 | 5,033,992,399 | 30% | ||
yuninho | 0 | 1,638,216,413 | 100% | ||
edicted | 0 | 2,144,596,118 | 100% |
Less bandwidth problems i hope.
author | gatorinla |
---|---|
permlink | re-timcliff-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232627176z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:26:30 |
last_update | 2018-02-14 23:26:30 |
depth | 3 |
children | 2 |
last_payout | 2018-02-21 23:26: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 | 31 |
author_reputation | 334,765,456,271 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,595,018 |
net_rshares | 0 |
I get it now. Thanks for explaining.
author | kwakumax |
---|---|
permlink | re-timcliff-re-kwakumax-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t003026991z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:30:21 |
last_update | 2018-02-15 00:30:21 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 00:30:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.674 HBD |
curator_payout_value | 0.865 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 30,435,185,048,559 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,604,882 |
net_rshares | 518,958,718,367 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 17,218,609,429 | 1% | ||
vaulgari | 0 | 501,125,647,889 | 100% | ||
iwanfitra00 | 0 | 614,461,049 | 100% |
maravilloso
author | lorianaf |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t044640567z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-17 04:46:42 |
last_update | 2018-02-17 04:46:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 04:46: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 | 11 |
author_reputation | 7,014,346,999 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,168,101 |
net_rshares | 0 |
Nice your post @lovebird
author | lovebird |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t185121462z |
category | steem |
json_metadata | {"tags":["steem"],"users":["lovebird"],"app":"steemit/0.1"} |
created | 2018-02-15 18:51:42 |
last_update | 2018-02-15 18:51:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 18:51: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 | 24 |
author_reputation | 460,197,067 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,811,625 |
net_rshares | 454,702,424 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lovebird | 0 | 454,702,424 | 100% |
This is awesome, thank you for all the hard work the team has done this far to pull this off! Going to try it now.
author | lpreap |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t015115321z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 01:51:15 |
last_update | 2018-02-15 01:51:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 01:51: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 | 114 |
author_reputation | 54,986,778,739,095 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,617,377 |
net_rshares | 0 |
Saya lucky1001 sangat menyukai postingannya @steemitdev. Menurut saya baca menarik dan bagus sekali. Gambar, tema dan postingannya sangat best in debest pokoknya.
author | lucky1001 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018217t1544431z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 18:06:06 | ||||||
last_update | 2018-02-16 18:06:06 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 18:06: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 | 163 | ||||||
author_reputation | 70,370,216,714 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 38,061,548 | ||||||
net_rshares | 0 |
Amazing news, glad we have a dev team that is consistently focused on progression! Keep up the work lads!
author | manlikehuss |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t131251487z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 13:12:51 |
last_update | 2018-02-15 13:12:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 13:12: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 | 106 |
author_reputation | 14,266,221,008 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,743,214 |
net_rshares | 0 |
I can’t wait for the iPhone app! I think it will take this to another level.
author | manny80 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t010652847z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-18 01:06:51 |
last_update | 2018-02-18 01:06:51 |
depth | 1 |
children | 2 |
last_payout | 2018-02-25 01:06: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 | 76 |
author_reputation | 27,976,232,216 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,388,224 |
net_rshares | 0 |
We can use @steepshot ;)
author | pinay |
---|---|
permlink | re-manny80-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180404t114728052z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steepshot"],"app":"steemit/0.1"} |
created | 2018-04-04 11:47:30 |
last_update | 2018-04-04 11:47:30 |
depth | 2 |
children | 1 |
last_payout | 2018-04-11 11:47: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 | 24 |
author_reputation | 2,774,743,716,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 48,285,325 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
manny80 | 0 | 0 | 100% |
Awesome! I Just got it. Thanks!
author | manny80 |
---|---|
permlink | re-pinay-re-manny80-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180424t002753407z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-24 00:27:54 |
last_update | 2018-04-24 00:27:54 |
depth | 3 |
children | 0 |
last_payout | 2018-05-01 00:27: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 | 31 |
author_reputation | 27,976,232,216 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,768,974 |
net_rshares | 0 |
What is it all about?
author | manzon |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t055758237z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 05:58:00 |
last_update | 2018-02-15 05:58:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 05:58: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 | 21 |
author_reputation | 760,184,000,371 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,661,349 |
net_rshares | 494,127,120 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
manzon | 0 | 494,127,120 | 100% |
will you provide a docker image to run a local testnet? that would be great!
author | marc0o |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180219t002609501z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-19 00:26:09 |
last_update | 2018-02-19 00:26:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-26 00:26: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 | 76 |
author_reputation | 16,451,037,059 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,644,408 |
net_rshares | 0 |
what's up with https://steemitstage.com/? seems to be down :-/
author | marc0o |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180411t064302653z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemitstage.com/?"],"app":"steemit/0.1"} |
created | 2018-04-11 06:43:03 |
last_update | 2018-04-11 06:43:03 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 06:43: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 | 62 |
author_reputation | 16,451,037,059 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,439,881 |
net_rshares | 0 |
Interesting programming concept I love to see progress emanating from the Steem blockchain. Would check it shortly Steem is progressing When is the proposed date for the launch of SMT?
author | mickyscofield |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225950045z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:00:00 |
last_update | 2018-02-14 23:00:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 23:00: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 | 184 |
author_reputation | 1,782,815,883,099 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,590,871 |
net_rshares | 0 |
## FEATURE REQUEST! ### Adding article to a "Favorites" list and/or "READ Later List"
author | mikeparker |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t090721318z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 09:07:27 |
last_update | 2018-02-16 09:07:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 09:07:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.710 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 1,918,622,980,082 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,957,287 |
net_rshares | 115,816,011,081 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
crushthestreet | 0 | 29,440,338,947 | 100% | ||
mikeparker | 0 | 73,172,251,716 | 100% | ||
futuremoneytrend | 0 | 13,203,420,418 | 100% |
Good work,good post.
author | missrdx |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t060727446z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 06:07:42 |
last_update | 2018-02-15 06:07:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 06:07: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 | 20 |
author_reputation | 424,720,365,798 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,663,147 |
net_rshares | 103,841,545 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
missrdx | 0 | 103,841,545 | 100% |
WOW congratulations steemit !! I'm just waiting to see Steem's foot move forward ........... 
author | mmkamal |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t105810625z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://steemitimages.com/DQmYuiy3KnK7w4FLTucXchGEotJzWiyJqo4bRWJGvXhbxx7/17155303_1118489921630831_8059004870372699192_n.jpg"],"app":"steemit/0.1"} |
created | 2018-02-15 10:58:15 |
last_update | 2018-02-15 10:58:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 10:58: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 | 277 |
author_reputation | -1,182,744,328,834 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,717,205 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mmkamal | 0 | 0 | 100% | ||
kamalisti | 0 | 0 | 100% |
Wow really nice ....appreciate ir work i ll try .
author | mohammadsohail |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t224413585z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 22:43:00 |
last_update | 2018-02-14 22:43:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 22:43: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 | 49 |
author_reputation | 37,612,296,681 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,588,056 |
net_rshares | 0 |
Thanks so much for posting a very good and very good, and also very useful, thank for sharing friends. @steemdev
author | moontrap | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t82925404z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 01:29:30 | ||||||
last_update | 2018-02-15 01:29:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 01:29: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 | 112 | ||||||
author_reputation | 838,742,611,130 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,613,958 | ||||||
net_rshares | 0 |
Wow! Congratulations! This is a ground breaking achievement indeed! Off to try out on steemitstage.com. Well done sir!
author | mosunomotunde |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000705752z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:07:06 |
last_update | 2018-02-15 00:07:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 00:07:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.134 HBD |
curator_payout_value | 0.040 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 19,586,987,821,353 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,601,193 |
net_rshares | 25,828,149,676 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 25,828,149,676 | 2% |
Great news for steemit Community, it will distribute the load and will make steemit more easy and effectively to use :)
author | mudasra |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t123715355z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:37:18 |
last_update | 2018-02-15 12:37:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 12:37: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 | 119 |
author_reputation | 324,036,126,056 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,736,065 |
net_rshares | 0 |
A beautiful
author | muhammadilham99 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t20198915z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 13:19:15 | ||||||
last_update | 2018-02-15 13:19:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 13:19: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 | 11 | ||||||
author_reputation | 38,807,448,654 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,744,479 | ||||||
net_rshares | 0 |
ありがとうございます
author | muhammadjuanda |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t222545478z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 22:25:45 |
last_update | 2018-02-15 22:25:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 22:25: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 | 10 |
author_reputation | 460,947,248 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,849,647 |
net_rshares | 0 |
It is really a great step and achievement. My heartedly congratulations to entire team of developers!
author | munawar1235 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t124827174z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 07:48:30 | ||||||
last_update | 2018-02-16 07:48:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 07:48:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.148 HBD | ||||||
curator_payout_value | 0.415 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 101 | ||||||
author_reputation | 86,522,918,923,810 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,942,769 | ||||||
net_rshares | 274,233,048,689 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jznsamuel | 0 | 83,861,970,936 | 100% | ||
munawar1235 | 0 | 190,371,077,753 | 100% |
It seems to be good step forward to strengthen and securing the steemit block chain. Regular updates without making the changes in basic structure of the steemit is a good consideration. Hopefully this will reduce the burden on witness management and also reduce the nodal load. If I am able to contribute, I will do. Keep this good work going and making this platform more successful and transparent. Regards.....!!!
author | muzi0202 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t125655129z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:56:57 |
last_update | 2018-02-15 12:56:57 |
depth | 1 |
children | 2 |
last_payout | 2018-02-22 12:56:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 420 |
author_reputation | 1,611,550,559,546 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,739,936 |
net_rshares | 6,071,108,310 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
muzi0202 | 0 | 6,071,108,310 | 100% |
To all traders out there seeking for a good trading strategy and have been going through difficulties in winning trades, I will like to share with you all a solution to your problems by introducing you to an amazing trading strategy and tool I was also introduced to, which has won me thousands of dollars lately.As an IPM investor I have made over $452000 in my first quarter, been the most secure trending investment .contact me and i will show you the secret and strategy also i will assist you for free contact me via my e mail (davidmiller6435@gmail.com).This is a top secret you need to learn for a good Payout. I guarantee you 98% ..Regards.
author | davidmiller |
---|---|
permlink | re-muzi0202-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134639200z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 13:46:45 |
last_update | 2018-02-15 13:46:45 |
depth | 2 |
children | 1 |
last_payout | 2018-02-22 13:46: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 | 649 |
author_reputation | -792,209,059,953 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,749,955 |
net_rshares | -1,787,768,918 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pinay | 0 | -1,787,768,918 | -100% |
Suggest you stop spamming your comment its only gonna get you flagged.
author | crazybgadventure |
---|---|
permlink | re-davidmiller-re-muzi0202-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t141119870z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 14:11:18 |
last_update | 2018-02-15 14:11:18 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 14:11: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 | 70 |
author_reputation | 5,553,373,191,378 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,754,990 |
net_rshares | 0 |
Hi, I voted for your post and I follow you. I hope you are kind and do the same, I'm just starting in steemit. Thank you. @muzquiz
author | muzquiz |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t025043867z |
category | steem |
json_metadata | {"tags":["steem"],"users":["muzquiz"],"app":"steemit/0.1"} |
created | 2018-02-16 02:50:45 |
last_update | 2018-02-16 02:50:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 02:50: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 | 130 |
author_reputation | 1,360,373,868 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,891,340 |
net_rshares | 567,449,329 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
muzquiz | 0 | 567,449,329 | 100% |
Excelentt. https://steemit.com/spanish/@mvielma26/orgasmo
author | mvielma26 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t132505683z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/spanish/@mvielma26/orgasmo"],"app":"steemit/0.1"} |
created | 2018-02-17 13:25:09 |
last_update | 2018-02-17 13:25:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 13:25: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 | 57 |
author_reputation | 215,090,004,373 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,257,160 |
net_rshares | 0 |
This is amazing for developers
author | mwangimbugua |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t140411612z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 14:01:21 |
last_update | 2018-02-16 14:01:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 14:01: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 | 30 |
author_reputation | 677,240,394 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,011,665 |
net_rshares | 0 |
Using 3rd party application for steemit i don't find it of any use anyway you might have made this platform a better one but i think am better off using steeit.com they don't take any shear from you work in the name of curation so being a regular user i think i won't use any 3rd party app for steemit. Thanks anyway for providing such platforms
author | naseerbhat |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t073632200z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 07:36:36 |
last_update | 2018-02-15 07:36:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 07:36: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 | 345 |
author_reputation | 2,572,727,094,814 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,679,610 |
net_rshares | 0 |
posting that sagat useful. I love to read it and I have to learn from you
author | nasruddin | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t204157913z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 13:42:03 | ||||||
last_update | 2018-02-16 13:42:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 13:42: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 | 73 | ||||||
author_reputation | 9,432,088,661 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 38,007,700 | ||||||
net_rshares | 0 |
author | nayraf | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t171442103z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 10:14:45 | ||||||
last_update | 2018-02-16 10:14:45 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 10:14: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 | 78 | ||||||
author_reputation | 46,962,498,130 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,969,182 | ||||||
net_rshares | 592,091,142 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
iksan | 0 | 0 | 100% | ||
nayraf | 0 | 592,091,142 | 100% |
your post is very useful ,,, I will try
author | nazaruddin1 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t042126087z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 04:21:00 |
last_update | 2018-02-15 04:21:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 04:21: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 | 39 |
author_reputation | 1,718,762,078 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,644,421 |
net_rshares | 0 |
This is such a monumental step forward. This will hopefully lead to much less resource demand on nodes and witnesses in the future. I will work on doing some testing and make a detailed post for the developer community.
author | netuoso |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000443785z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:04:45 |
last_update | 2018-02-15 00:04:45 |
depth | 1 |
children | 184 |
last_payout | 2018-02-22 00:04:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 19.172 HBD |
curator_payout_value | 5.811 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 221 |
author_reputation | 151,901,967,807,285 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,600,817 |
net_rshares | 3,654,858,056,887 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 600,622,774,753 | 5% | ||
good-karma | 0 | 395,068,351,555 | 2% | ||
furion | 0 | 1,564,798,519,288 | 100% | ||
ausbitbank | 0 | 82,403,195,293 | 1% | ||
timcliff | 0 | 94,702,783,673 | 10% | ||
ubik | 0 | 30,121,715,744 | 100% | ||
lavater | 0 | 41,009,742,268 | 10% | ||
abhi3700 | 0 | 34,606,378,363 | 100% | ||
andybets | 0 | 6,082,661,762 | 100% | ||
reggaemuffin | 0 | 751,006,948,070 | 8% | ||
foxdal | 0 | 2,190,333,048 | 100% | ||
themarkymark | 0 | 32,069,437,220 | 100% | ||
leyla5 | 0 | 1,741,587,293 | 100% | ||
yuninho | 0 | 2,042,586,288 | 100% | ||
rafagonzalez | 0 | 340,256,113 | 100% | ||
zakti | 0 | 615,320,000 | 100% | ||
pinay | 0 | 1,796,340,122 | 100% | ||
captainvideo | 0 | 606,090,200 | 100% | ||
invariable.muse | 0 | 564,723,578 | 100% | ||
hugospock | 0 | 562,889,538 | 100% | ||
samirich | 0 | 1,102,471,161 | 100% | ||
whiningcripple | 0 | 547,341,984 | 100% | ||
beercake | 0 | 2,760,989,365 | 100% | ||
bloodviolet | 0 | 676,968,137 | 100% | ||
hashkeks | 0 | 0 | 100% | ||
dwonder | 0 | 503,865,570 | 100% | ||
thurendous | 0 | 599,108,446 | 100% | ||
totorotororo | 0 | 586,817,852 | 100% | ||
marcona | 0 | 581,446,307 | 100% | ||
kurlysss | 0 | 525,365,571 | 100% | ||
babajoe | 0 | 547,162,939 | 100% | ||
titanik | 0 | 255,168,840 | 100% | ||
serylt | 0 | 604,232,495 | 100% | ||
williammollers | 0 | 602,166,584 | 100% | ||
youbin | 0 | 605,236,921 | 100% | ||
muhammadjuanda | 0 | 98,312,549 | 100% | ||
everjaimes | 0 | 61,444,924 | 100% | ||
matmat92 | 0 | 52,227,895 | 100% | ||
ghareebnawaz | 0 | 592,939,263 | 100% | ||
giorgipopla | 0 | 602,155,915 | 100% |
I think this situation will not face again for everyone
author | ashoo |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t164600099z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 16:46:00 |
last_update | 2018-02-16 16:46:00 |
depth | 2 |
children | 0 |
last_payout | 2018-02-23 16:46: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 | 55 |
author_reputation | 9,601,128 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,045,368 |
net_rshares | 0 |
https://steemitimages.com/0x0/https://memegenerator.net/img/instances/500x/58431576/give-that-man-an-upvote.jpg
author | bitcointip |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t003756533z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://steemitimages.com/0x0/https://memegenerator.net/img/instances/500x/58431576/give-that-man-an-upvote.jpg"],"app":"steemit/0.1"} |
created | 2018-02-16 00:38:00 |
last_update | 2018-02-16 00:38:00 |
depth | 2 |
children | 2 |
last_payout | 2018-02-23 00:38: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 | 111 |
author_reputation | -596,771,209,212 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,870,274 |
net_rshares | 2,710,763,709 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slavix | 0 | 0 | 100% | ||
major007 | 0 | 592,596,985 | 100% | ||
riski606 | 0 | 614,347,124 | 100% | ||
mvielma26 | 0 | 517,042,477 | 100% | ||
thurendous | 0 | 586,819,042 | 100% | ||
bitcointip | 0 | 399,958,081 | 100% |
OK 😅
author | major007 |
---|---|
permlink | re-bitcointip-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t200500747z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 20:05:03 |
last_update | 2018-02-16 20:05:21 |
depth | 3 |
children | 0 |
last_payout | 2018-02-23 20:05: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 | 4 |
author_reputation | 3,086,475,086 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,083,660 |
net_rshares | 0 |
ok
author | mvielma26 |
---|---|
permlink | re-bitcointip-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t132156010z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-17 13:22:03 |
last_update | 2018-02-17 13:26:09 |
depth | 3 |
children | 0 |
last_payout | 2018-02-24 13:22: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 | 2 |
author_reputation | 215,090,004,373 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,256,471 |
net_rshares | 0 |
Awesome! I'm looking forward to the new Steem API wrappers. I'm far from being fluent in all of this dev talk, but I sure enjoy making some Steemit bots. :)
author | cryptosharon |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t093617476z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 09:36:18 |
last_update | 2018-02-15 09:36:18 |
depth | 2 |
children | 2 |
last_payout | 2018-02-22 09:36:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.402 HBD |
curator_payout_value | 0.120 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 156 |
author_reputation | 91,921,317,551,639 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,702,271 |
net_rshares | 76,805,878,460 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
leprechaun | 0 | 14,073,351,039 | 100% | ||
netuoso | 0 | 61,886,804,258 | 3% | ||
zakti | 0 | 603,013,600 | 100% | ||
haidar786 | 0 | 144,397,014 | 100% | ||
muhammadjuanda | 0 | 98,312,549 | 100% |
@cryptsharon - You have an interesting profile, although I don't see anything "crypto" ... Your reputation is high, but, not showing up in earnings or SP - I wonder why - as you seem to have good materials. All the best!
author | freedomshift |
---|---|
permlink | re-cryptosharon-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t204904569z |
category | steem |
json_metadata | {"tags":["steem"],"users":["cryptsharon"],"app":"steemit/0.1"} |
created | 2018-02-18 20:49:09 |
last_update | 2018-02-18 20:49:09 |
depth | 3 |
children | 1 |
last_payout | 2018-02-25 20:49: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 | 220 |
author_reputation | 18,193,534,208,555 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,609,022 |
net_rshares | 0 |
To all traders out there seeking for a good trading strategy and have been going through difficulties in winning trades, I will like to share with you all a solution to your problems by introducing you to an amazing trading strategy and tool I was also introduced to, which has won me thousands of dollars lately.As an IPM investor I have made over $452000 in my first quarter, been the most secure trending investment .contact me and i will show you the secret and strategy also i will assist you for free contact me via my e mail (davidmiller6435@gmail.com).This is a top secret you need to learn for a good Payout. I guarantee you 98% ..Regards.
author | davidmiller |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t133829442z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 13:38:33 |
last_update | 2018-02-15 13:38:33 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 13:38: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 | 649 |
author_reputation | -792,209,059,953 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,748,409 |
net_rshares | -17,285,106,837 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | -17,285,106,837 | -1% |
it will be very helpful for us :)
author | haidar786 |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t190717733z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 19:07:21 |
last_update | 2018-02-15 19:07:21 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 19:07: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 | 33 |
author_reputation | -7,259,812,233 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,814,705 |
net_rshares | 89,095,748 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
muhammadjuanda | 0 | 89,095,748 | 100% |
@netuoso I don't fully understand this. Are there any other types of nodes aside from the witness nodes that make up the Steem network? How many nodes are there? I'm kind of lost here. I hope you can clarify or any links detailing this matter would be much appreciated. Thanx! Also I have a project proposal on how to [decentralize sex](https://steemit.com/blockchain/@introvertspeaks/valentine-s-day-special-an-open-source-proposal-to-decentralized-sex).
author | introvertspeaks |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t045540760z |
category | steem |
json_metadata | {"tags":["steem"],"users":["netuoso"],"links":["https://steemit.com/blockchain/@introvertspeaks/valentine-s-day-special-an-open-source-proposal-to-decentralized-sex"],"app":"steemit/0.1"} |
created | 2018-02-15 04:55:39 |
last_update | 2018-02-15 04:55:39 |
depth | 2 |
children | 164 |
last_payout | 2018-02-22 04:55:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.330 HBD |
curator_payout_value | 0.101 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 458 |
author_reputation | -4,351,658,764,138 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,649,984 |
net_rshares | 63,548,582,889 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
netuoso | 0 | 61,887,039,780 | 3% | ||
introvertspeaks | 0 | 1,507,930,149 | 100% | ||
muhammadjuanda | 0 | 95,240,282 | 100% | ||
everjaimes | 0 | 58,372,678 | 100% |
I made a couple of posts a few months ago that might help explain the previous structure: https://steemit.com/steemit/@steemreports/steemreports-the-anatomy-of-steem-and-steemit https://steemit.com/steemit/@steemreports/steemreport-the-new-anatomy-of-steemit I think these changes kind of split the RPC Server into parts, which are each less resource intensive to run.
author | andybets |
---|---|
permlink | re-introvertspeaks-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t090957978z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steemit/@steemreports/steemreports-the-anatomy-of-steem-and-steemit","https://steemit.com/steemit/@steemreports/steemreport-the-new-anatomy-of-steemit"],"app":"steemit/0.1"} |
created | 2018-02-15 09:09:57 |
last_update | 2018-02-15 09:12:45 |
depth | 3 |
children | 162 |
last_payout | 2018-02-22 09:09:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.256 HBD |
curator_payout_value | 0.741 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 369 |
author_reputation | 15,189,090,569,005 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,697,528 |
net_rshares | 439,923,961,962 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
themonetaryfew | 0 | 4,937,375,571 | 100% | ||
netuoso | 0 | 61,887,039,780 | 3% | ||
foxdal | 0 | 2,141,658,981 | 100% | ||
nitego | 0 | 415,674,635 | 100% | ||
bronevik | 0 | 369,389,031,974 | 82% | ||
dorimartin | 0 | 559,941,200 | 100% | ||
babajoe | 0 | 534,867,143 | 100% | ||
everjaimes | 0 | 58,372,678 | 100% |
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3> <h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old. Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit. Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today. Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit. Below are just a few of the terrible insults they have spoken against this Christian man. Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him. Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening." Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop. Not a word was said in one year and now he is resorting to further action. The abuse will stop. If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in. There is a substantial reward and you can remain anonymous. Noganoo is unable to file a restraining order against these 2 until he finds their identity. BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3> <h3>First of all let's go back to before this all started. Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting. Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free. You can see that these people and their friends are the only people who have ever attacked Noganoo. They are trying to cover up their theft. If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch. https://steemd.com/@sweet-banana?page=17 Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild." Fact is they stole millions of dollars. This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3> %20Steemit%20Chat%20(1).png) <h3>Sorry, I should have said "Go fuck your cousin." (again)</h3>  <h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>  <h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal." Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>  <h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>  <h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3> %20Steemit%20Chat.png) <h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>  %20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png) <h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity, Pfunk at the time had no idea Noganoo wrote this! Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support. Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles. Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year. Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit. He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>  <h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
author | hot-sauce |
---|---|
permlink | re-introvertspeaks-re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t163221581z |
category | steem |
json_metadata | {"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"} |
created | 2018-02-15 16:32:21 |
last_update | 2018-02-15 16:32:21 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 16:32: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,123 |
author_reputation | -830,398,543,134 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,784,611 |
net_rshares | -197,298,505,415 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | -3,026,950,075 | -2% | ||
nextgencrypto | 0 | -1,078,983,635 | -2% | ||
danknugs | 0 | -11,985,390,412 | -2% | ||
the.bot | 0 | -2,559,581,980 | -2% | ||
ozchartart | 0 | -2,475,054,258 | -2% | ||
thecyclist | 0 | -115,998,735,256 | -2% | ||
engagement | 0 | -291,488,948 | -2% | ||
iflagtrash | 0 | -15,077,862,406 | -1% | ||
theyeti | 0 | -8,216,927,495 | -2% | ||
randomthoughts | 0 | -16,527,662,541 | -2% | ||
thesloth | 0 | -4,214,361,646 | -2% | ||
ngc | 0 | -12,484,750,171 | -2% | ||
rewardpoolrape | 0 | -2,856,897,763 | -2% | ||
zashisuru | 0 | -503,858,829 | -100% |
Appbase is a must for steemit blockchain
author | jiren |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t050756478z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 05:07:57 |
last_update | 2018-02-16 05:07:57 |
depth | 2 |
children | 0 |
last_payout | 2018-02-23 05:07: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 | 40 |
author_reputation | -9,890,483,226 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,915,899 |
net_rshares | 0 |
https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s
author | kos |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t201146706z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://img.youtube.com/vi/oD5QErn3UMg/0.jpg"],"links":["https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s"],"app":"steemit/0.1"} |
created | 2018-02-16 20:11:45 |
last_update | 2018-02-16 20:11:45 |
depth | 2 |
children | 0 |
last_payout | 2018-02-23 20:11: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 | 49 |
author_reputation | -59,914,306,026 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,084,794 |
net_rshares | -151,071,671,540 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | -150,131,374,699 | -1% | ||
lenatramper | 0 | -680,003,626 | -1% | ||
triverse | 0 | -260,293,215 | -1% |
I hope this appbase could be very nice platform for steem users and holders.I think future of steem in this new invention ,is very bright...
author | manasiarora |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t105227623z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 10:52:36 |
last_update | 2018-02-16 10:52:36 |
depth | 2 |
children | 0 |
last_payout | 2018-02-23 10:52:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 140 |
author_reputation | 1,647,189,936,849 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,976,313 |
net_rshares | 8,072,429,056 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
virendrayerole | 0 | 613,947,868 | 100% | ||
bhagyashri | 0 | 567,286,652 | 100% | ||
vilasswami | 0 | 555,165,655 | 100% | ||
kedarswami | 0 | 545,940,547 | 100% | ||
manasiarora | 0 | 613,347,751 | 100% | ||
sonalipatil | 0 | 617,519,467 | 100% | ||
kavitakale | 0 | 603,115,151 | 100% | ||
priyankaa | 0 | 533,725,249 | 100% | ||
anjalimathur | 0 | 615,505,527 | 100% | ||
ayesha1993 | 0 | 555,403,550 | 100% | ||
babitabeauty | 0 | 555,079,715 | 100% | ||
sonam | 0 | 568,870,132 | 100% | ||
irayya | 0 | 580,658,372 | 100% | ||
sarikaa | 0 | 546,863,420 | 100% |
This community is great, I love the togetherness and how everyone is willing to work to make this an accepting place where we work together to achieve dreams and share passions!!!
author | pittsburghhodlr |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t041233674z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-17 04:12:33 |
last_update | 2018-02-17 04:12:33 |
depth | 2 |
children | 0 |
last_payout | 2018-02-24 04:12: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 | 179 |
author_reputation | 23,602,362,212,189 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,162,212 |
net_rshares | 0 |
ARE YOU CRAZY ?
author | raoulbove98 |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t145009963z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 14:50:09 |
last_update | 2018-02-15 14:50:09 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 14:50: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 | 15 |
author_reputation | 43,447,698 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,763,372 |
net_rshares | 0 |
Okay sir @netuoso I'm Russell , I'm waiting for details post for the developer company.🙂
author | russel59 |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t081429917z |
category | steem |
json_metadata | {"tags":["steem"],"users":["netuoso"],"app":"steemit/0.1"} |
created | 2018-02-18 08:14:54 |
last_update | 2018-02-18 08:14:54 |
depth | 2 |
children | 0 |
last_payout | 2018-02-25 08:14: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 | 89 |
author_reputation | 19,963,079,525 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,457,192 |
net_rshares | 0 |
I have methods of winning bitcoin
author | titanik |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t165952096z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 16:59:57 |
last_update | 2018-02-15 16:59:57 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 16:59: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 | 33 |
author_reputation | -16,032,137,583 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,790,311 |
net_rshares | -25,511,801,287 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eveuncovered | 0 | -25,653,126,024 | -25% | ||
haidar786 | 0 | 141,324,737 | 100% |
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3> <h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old. Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit. Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today. Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit. Below are just a few of the terrible insults they have spoken against this Christian man. Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him. Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening." Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop. Not a word was said in one year and now he is resorting to further action. The abuse will stop. If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in. There is a substantial reward and you can remain anonymous. Noganoo is unable to file a restraining order against these 2 until he finds their identity. BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3> <h3>First of all let's go back to before this all started. Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting. Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free. You can see that these people and their friends are the only people who have ever attacked Noganoo. They are trying to cover up their theft. If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch. https://steemd.com/@sweet-banana?page=17 Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild." Fact is they stole millions of dollars. This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3> %20Steemit%20Chat%20(1).png) <h3>Sorry, I should have said "Go fuck your cousin." (again)</h3>  <h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>  <h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal." Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>  <h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>  <h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3> %20Steemit%20Chat.png) <h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>  %20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png) <h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity, Pfunk at the time had no idea Noganoo wrote this! Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support. Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles. Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year. Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit. He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>  <h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
author | wrecking-ball |
---|---|
permlink | re-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t143225312z |
category | steem |
json_metadata | {"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"} |
created | 2018-02-15 14:32:24 |
last_update | 2018-02-15 14:32:24 |
depth | 2 |
children | 2 |
last_payout | 2018-02-22 14:32: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 | 6,123 |
author_reputation | -823,503,467,953 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,759,493 |
net_rshares | -16,299,930,020 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
iflagtrash | 0 | -15,077,862,406 | -1% | ||
nogalert | 0 | -727,425,714 | -1% | ||
zashisuru | 0 | -494,641,900 | -100% |
Lick on deez ballz @noganoo!! <p>
author | iflagtrash |
---|---|
permlink | iflagtrash-re-wrecking-ballre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t143225312z |
category | steem |
json_metadata | "" |
created | 2018-02-15 14:32:30 |
last_update | 2018-02-15 14:32:30 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 14:32: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 | 74 |
author_reputation | 14,709,692,204,215 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,759,519 |
net_rshares | -230,981,603,275 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | -230,981,603,275 | -2% |
Flag the post above by one of noganoo's shill accounts. @noganoo is an incestuous scumbag who had sex with his cousin! Flag that piece of worthless shit, or, give him a call at (715) 421-0375 and say Hello!
author | nogalert |
---|---|
permlink | nogalert-re-wrecking-ballre-netuoso-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t143225312z |
category | steem |
json_metadata | "" |
created | 2018-02-15 14:50:00 |
last_update | 2018-02-15 14:50:00 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 14:50: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 | 208 |
author_reputation | 1,289,081,567,579 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,763,346 |
net_rshares | -238,455,751,674 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 1,513,475,037 | 1% | ||
nextgencrypto | 0 | 539,098,867 | 1% | ||
roadscape | 0 | -346,472,404,913 | -3% | ||
danknugs | 0 | 5,992,695,206 | 1% | ||
the.bot | 0 | 1,279,790,990 | 1% | ||
ozchartart | 0 | 1,237,527,129 | 1% | ||
thecyclist | 0 | 57,999,367,628 | 1% | ||
engagement | 0 | 145,744,474 | 1% | ||
iflagtrash | 0 | 15,077,862,406 | 1% | ||
theyeti | 0 | 4,108,463,747 | 1% | ||
randomthoughts | 0 | 8,263,831,270 | 1% | ||
thesloth | 0 | 2,107,180,823 | 1% | ||
ngc | 0 | 8,323,166,781 | 1% | ||
rewardpoolrape | 0 | 1,428,448,881 | 1% |
Thanks for this. I will have to check it out.
author | nicholas83 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t223334436z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 22:33:33 |
last_update | 2018-02-15 22:33:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 22:33: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 | 45 |
author_reputation | 3,100,178,185,327 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,851,029 |
net_rshares | 0 |
This is great news. Keep up the great work.
author | nikethemutt |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t192722702z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 19:27:21 |
last_update | 2018-02-15 19:27:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 19:27:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.096 HBD |
curator_payout_value | 0.365 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 1,408,116,897,263 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,818,466 |
net_rshares | 228,592,141,758 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nikethemutt | 0 | 228,592,141,758 | 100% |
Testing.
author | nitego |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t074654623z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 07:46:54 |
last_update | 2018-02-16 07:46:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 07:46:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 1,111,539,510,872 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,942,481 |
net_rshares | 0 |
Amazing!
author | nizamasfarul | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t10180573z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 03:18:03 | ||||||
last_update | 2018-02-16 03:18:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 03:18: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 | 8 | ||||||
author_reputation | 9,068,412,856 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,896,042 | ||||||
net_rshares | 546,880,324 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nizamasfarul | 0 | 546,880,324 | 100% |
This article says "Payout declined", wth is that?
author | nodsaibot |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t172954056z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 17:31:33 |
last_update | 2018-02-15 17:31:33 |
depth | 1 |
children | 1 |
last_payout | 2018-02-22 17:31: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 | 50 |
author_reputation | 475,951,454 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,796,453 |
net_rshares | 0 |
Author is not going to receive any rewards. Only voters will.
author | scorer |
---|---|
permlink | re-nodsaibot-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t192129105z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 19:21:30 |
last_update | 2018-02-15 19:21:30 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 19:21:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.443 HBD |
curator_payout_value | 0.480 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 5,082,149,757,589 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,817,303 |
net_rshares | 300,291,954,063 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
scorer | 0 | 300,291,954,063 | 100% |
Woow... Very good post, really helpful and your posts become additional knowledge for me.. Good work @steemitdev
author | nova-nazirah | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t12037754z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 05:00:39 | ||||||
last_update | 2018-02-15 05:00:39 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 05:00: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 | 113 | ||||||
author_reputation | 68,956,660,405 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,650,801 | ||||||
net_rshares | 0 |
wow, what this it
author | nyamukkurus |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t072340571z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 07:23:42 |
last_update | 2018-02-15 07:23:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 07: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 | 17 |
author_reputation | 489,533,883 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,677,366 |
net_rshares | 362,523,348 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nyamukkurus | 0 | 362,523,348 | 100% |
It is really awesome that someone is delegating money to the reward pool...cool man....thabks for helping steemit community.....hats off for this..
author | obaidb2 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t041819067z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 04:18:21 |
last_update | 2018-02-15 04:18:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 04:18: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 | 147 |
author_reputation | 4,095,618,448,032 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,643,908 |
net_rshares | 0 |
select me Mrs i like that
author | odi7444 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t043631252z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 04:36:27 |
last_update | 2018-02-16 04:36:27 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 04:36: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 | 26 |
author_reputation | 9,926,597,923 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,910,263 |
net_rshares | 76,806,259 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
odi7444 | 0 | 76,806,259 | 100% |
excellent
author | olgaparica |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231614671z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:16:15 |
last_update | 2018-02-14 23:16:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 23:16: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 | 9 |
author_reputation | 608,260,600,775 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,593,513 |
net_rshares | 0 |
Good work,good post.
author | olivia7 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t095744078z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-18 09:57:54 |
last_update | 2018-02-18 09:57:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-25 09:57: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 | 20 |
author_reputation | 21,444,641,325 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,474,657 |
net_rshares | 0 |
It is great to see this amazing progress. Improving scalability is always the way to go! :) Lets scale it to the moon. I am really excited. And I hope that in the future maybe I will do some development on Steem. :D What a bright future we have in the cryptocurrency world.
author | olsm |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t211713673z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 21:17:15 |
last_update | 2018-02-16 21:17:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 21:17:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.436 HBD |
curator_payout_value | 0.140 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 273 |
author_reputation | 3,801,287,660,890 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,095,726 |
net_rshares | 438,767,296,331 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
olsm | 0 | 438,767,296,331 | 100% |
I actually understood this quite well oddly enough, sounds very similar to having a server cluster for a website backend, cloud computing if you will. A cluster for SQL, cluster for PHP, cluster for cache, you get the picture. Instead of it all being on a singular dedicated server, you spread it out across multiple servers and allow multiple servers handle the requests from a singular app or module and scale as needed. Not bad.
author | outtheshellvlog |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t231856790z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:18:51 |
last_update | 2018-02-14 23:18:51 |
depth | 1 |
children | 1 |
last_payout | 2018-02-21 23:18:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.308 HBD |
curator_payout_value | 0.101 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 434 |
author_reputation | 11,385,462,196,990 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,593,887 |
net_rshares | 60,238,073,420 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 60,238,073,420 | 6% |
nice!
author | dcwordofmouth |
---|---|
permlink | re-outtheshellvlog-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t012535447z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 01:25:33 |
last_update | 2018-02-15 01:25:33 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 01:25: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 | 5 |
author_reputation | 122,022,769,008 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,613,373 |
net_rshares | 0 |
Let us make our future now, and let us make our dreams tomorrow's reality. - Malala Yousafzai. Steem future looks bright.
author | paasz |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t174315239z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 17:43:15 |
last_update | 2018-02-15 17:43:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 17:43:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.496 HBD |
curator_payout_value | 0.143 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 127 |
author_reputation | 4,120,187,499,905 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,798,783 |
net_rshares | 98,224,469,201 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pastzam | 0 | 76,516,905,000 | 100% | ||
paasz | 0 | 8,570,703,385 | 100% | ||
zammie | 0 | 4,019,470,553 | 100% | ||
pastrane | 0 | 5,015,111,330 | 100% | ||
lalupita | 0 | 3,638,582,030 | 100% | ||
lazorgfpv | 0 | 463,696,903 | 100% |
The future of steemit is bright! Congratulations to the dev team.
author | pals |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t133338610z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 13:33:39 |
last_update | 2018-02-16 13:33:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 13:33: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 | 65 |
author_reputation | 2,971,446,592 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,006,062 |
net_rshares | 0 |
I'm trying to wrap my head around this. Could you please explain what a 'non-consensus blockchain' is? Isn't a blockchain without consensus basically a database? Which could actually be a good feature to have, if true. But just trying to understand what it means.
author | pandorasbox |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t014743717z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 01:47:42 |
last_update | 2018-02-16 01:47:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 01:47: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 | 267 |
author_reputation | 6,724,880,351,404 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,881,492 |
net_rshares | 0 |
I am a regular user, I tried posting from <a href="https://steemitstage.com/steemitstage/@pinay/testing-steemitstage-com-from-iphone-safari-9">steemitSTAGE.com</a> on iOS 9 (I cannot afford to update, LOL) it works fine but am lost in "Vote for Witnesses" page (^_^). I logged in using my generated password. Will try from Chrome on android too. https://res.cloudinary.com/hpiynhbhq/image/upload/v1518660812/jymagmu5gi0fidh9fnyo.png
author | pinay |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t022823407z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1518660812/jymagmu5gi0fidh9fnyo.png"],"links":["https://steemitstage.com/steemitstage/@pinay/testing-steemitstage-com-from-iphone-safari-9"],"app":"steemit/0.1"} |
created | 2018-02-15 02:28:24 |
last_update | 2018-02-15 11:35:45 |
depth | 1 |
children | 15 |
last_payout | 2018-02-22 02:28:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.654 HBD |
curator_payout_value | 2.192 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 433 |
author_reputation | 2,774,743,716,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,624,006 |
net_rshares | 1,299,598,656,739 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 82,538,047,325 | 1% | ||
remlaps | 0 | 24,714,901,827 | 100% | ||
timcliff | 0 | 146,463,619,596 | 15% | ||
aggroed | 0 | 36,375,364,775 | 14% | ||
aguazul | 0 | 605,637,100 | 100% | ||
almost-digital | 0 | 942,531,256,801 | 100% | ||
netuoso | 0 | 61,887,039,780 | 3% | ||
yuninho | 0 | 2,001,112,454 | 100% | ||
dizzyjay | 0 | 80,047,351 | 100% | ||
artgirl | 0 | 511,713,222 | 100% | ||
whiningcripple | 0 | 535,042,164 | 100% | ||
seongseojo | 0 | 602,173,608 | 100% | ||
haidar786 | 0 | 138,252,460 | 100% | ||
napaman | 0 | 614,448,276 | 100% |
author | artgirl |
---|---|
permlink | re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t122102140z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:21:03 |
last_update | 2018-02-15 12:21:03 |
depth | 2 |
children | 1 |
last_payout | 2018-02-22 12:21: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 | 46 |
author_reputation | 78,042,602,740,403 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,732,876 |
net_rshares | 1,988,107,194 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pinay | 0 | 1,852,927,011 | 100% | ||
haidar786 | 0 | 135,180,183 | 100% |
What you see is what you see. LOL
author | pinay |
---|---|
permlink | re-artgirl-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t123557007z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:36:00 |
last_update | 2018-02-15 12:36:00 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 12:36: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 | 33 |
author_reputation | 2,774,743,716,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,735,798 |
net_rshares | 132,107,906 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
haidar786 | 0 | 132,107,906 | 100% |
princess
author | fangcan888 |
---|---|
permlink | re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t084613595z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 08:46:15 |
last_update | 2018-02-15 08:46:15 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 08:46: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 | 8 |
author_reputation | 26,301,418,841 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,693,088 |
net_rshares | 0 |
you are genius Mam <3
author | haidar786 |
---|---|
permlink | re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t190808408z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 19:08:12 |
last_update | 2018-02-15 19:08:12 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 19:08: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 | 21 |
author_reputation | -7,259,812,233 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,814,859 |
net_rshares | 1,825,271,384 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pinay | 0 | 1,825,271,384 | 100% |
Thanks - it looks like you spotted a bug, actually.
author | justinw |
---|---|
permlink | re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t030450888z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 03:04:51 |
last_update | 2018-02-15 03:04:51 |
depth | 2 |
children | 6 |
last_payout | 2018-02-22 03:04:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 15,502,058,309,908 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,630,578 |
net_rshares | 3,249,272,821 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pinay | 0 | 1,952,764,710 | 100% | ||
seongseojo | 0 | 592,956,665 | 100% | ||
williammollers | 0 | 614,455,698 | 100% | ||
muhammadjuanda | 0 | 89,095,748 | 100% |
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3> <h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old. Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit. Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today. Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit. Below are just a few of the terrible insults they have spoken against this Christian man. Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him. Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening." Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop. Not a word was said in one year and now he is resorting to further action. The abuse will stop. If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in. There is a substantial reward and you can remain anonymous. Noganoo is unable to file a restraining order against these 2 until he finds their identity. BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3> <h3>First of all let's go back to before this all started. Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting. Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free. You can see that these people and their friends are the only people who have ever attacked Noganoo. They are trying to cover up their theft. If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch. https://steemd.com/@sweet-banana?page=17 Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild." Fact is they stole millions of dollars. This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3> %20Steemit%20Chat%20(1).png) <h3>Sorry, I should have said "Go fuck your cousin." (again)</h3>  <h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>  <h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal." Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>  <h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>  <h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3> %20Steemit%20Chat.png) <h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>  %20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png) <h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity, Pfunk at the time had no idea Noganoo wrote this! Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support. Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles. Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year. Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit. He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>  <h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
author | neganator |
---|---|
permlink | re-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t104129900z |
category | steem |
json_metadata | {"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"} |
created | 2018-02-15 10:41:30 |
last_update | 2018-02-15 10:41:30 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 10:41: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 | 6,123 |
author_reputation | -833,037,561,132 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,714,129 |
net_rshares | -166,826,097,174 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | -164,873,332,464 | -1% | ||
pinay | 0 | -1,952,764,710 | -100% |
author | pinay |
---|---|
permlink | re-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t033544057z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 03:35:45 |
last_update | 2018-02-15 03:35:45 |
depth | 3 |
children | 1 |
last_payout | 2018-02-22 03:35:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.746 HBD |
curator_payout_value | 0.574 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 2,774,743,716,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,636,094 |
net_rshares | 341,075,354,043 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
justinw | 0 | 340,470,126,973 | 100% | ||
yoshi54 | 0 | 605,227,070 | 100% |
Just tried it from chrome on android using my posting key and works just the same. 👍
author | pinay |
---|---|
permlink | re-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t060804092z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 06:08:06 |
last_update | 2018-02-15 06:08:06 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 06:08: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 | 84 |
author_reputation | 2,774,743,716,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,663,219 |
net_rshares | 580,667,408 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
seongseojo | 0 | 580,667,408 | 100% |
Hi @justinw! I always forgot this. I hope the preview when creating a post at steemit/steemitstage can be fixed too (^_^) 
author | pinay |
---|---|
permlink | re-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180316t053901872z |
category | steem |
json_metadata | {"tags":["steem"],"users":["justinw"],"image":["https://steemitimages.com/DQmSeKcDhtenwxMLazDB3zvGmuFTGio6gEi64TaQ3MDFkwD/image.png"],"app":"steemit/0.1"} |
created | 2018-03-16 05:39:03 |
last_update | 2018-03-16 05:39:03 |
depth | 3 |
children | 0 |
last_payout | 2018-03-23 05:39: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 | 219 |
author_reputation | 2,774,743,716,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 44,731,840 |
net_rshares | 0 |
The PREVIEW is fixed. Thank You! ❤️
author | pinay |
---|---|
permlink | re-justinw-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180504t091617113z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-04 09:16:21 |
last_update | 2018-05-04 09:16:21 |
depth | 3 |
children | 0 |
last_payout | 2018-05-11 09:16: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 | 35 |
author_reputation | 2,774,743,716,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,802,368 |
net_rshares | 0 |
Hi. Im new to steemit. What does "Votes for Witness" mean?
author | napaman |
---|---|
permlink | re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t110123573z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 11:01:24 |
last_update | 2018-02-15 11:01:24 |
depth | 2 |
children | 2 |
last_payout | 2018-02-22 11:01: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 | 58 |
author_reputation | 157,430,891 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,717,838 |
net_rshares | 687,571,670 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
osobasekingsley | 0 | 601,548,189 | 100% | ||
muhammadjuanda | 0 | 86,023,481 | 100% |
Click MENU and you can find it there. Just click the arrow up beside their names i.e. blocktrades, steempty, etc. or if you want to vote for bue, zappl, etc. who are not on the top 50 just type bue then zappl, etc. in the box provided and click VOTE. You can view the list of 100 Witnesses here: https://steemd.com/witnesses https://res.cloudinary.com/hpiynhbhq/image/upload/v1518694032/r6oari7nei6j1bb85afp.png <br> https://res.cloudinary.com/hpiynhbhq/image/upload/v1518694056/pxfiburh5edyqad63ogd.png Or if you want me (or someone) to vote on your behalf just type pinay and click SET PROXY :) READ THIS: https://steemit.com/steem/@steemitguide/steemitguide-what-is-a-exactly-is-a-steem-witness-and-why-every-user-should-vote
author | pinay |
---|---|
permlink | re-napaman-re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t112335042z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1","image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1518694032/r6oari7nei6j1bb85afp.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1518694056/pxfiburh5edyqad63ogd.png"],"links":["https://steemd.com/witnesses","https://steemit.com/steem/@steemitguide/steemitguide-what-is-a-exactly-is-a-steem-witness-and-why-every-user-should-vote"]} |
created | 2018-02-15 11:23:36 |
last_update | 2018-02-15 11:59:00 |
depth | 3 |
children | 1 |
last_payout | 2018-02-22 11:23:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.406 HBD |
curator_payout_value | 0.132 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 734 |
author_reputation | 2,774,743,716,203 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,722,139 |
net_rshares | 79,238,225,496 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mranderson | 0 | 79,238,225,496 | 100% |
Great.
author | sddqm |
---|---|
permlink | re-pinay-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t095523864z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 09:50:00 |
last_update | 2018-02-15 09:50:00 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 09:50: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 | 6 |
author_reputation | 1,464,073,119 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,704,836 |
net_rshares | 2,583,530,297 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pinay | 0 | 1,908,238,265 | 100% | ||
osobasekingsley | 0 | 592,340,819 | 100% | ||
muhammadjuanda | 0 | 82,951,213 | 100% |
This platform is growing so much every single day, the Steem community is growing and the people are great here, I love it. Thanks for the advancements. I've been waiting since facebook's earliest days for this exact platform, couldn't be happier on here. :)
author | pittsburghhodlr |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t041144271z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-17 04:11:45 |
last_update | 2018-02-17 04:11:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 04:11: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 | 258 |
author_reputation | 23,602,362,212,189 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,162,059 |
net_rshares | 0 |
Can't wait to see this be released!
author | programmingvalue |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180601t093238445z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-06-01 09:32:39 |
last_update | 2018-06-01 09:32:39 |
depth | 1 |
children | 0 |
last_payout | 2018-06-08 09:32:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.114 HBD |
curator_payout_value | 0.037 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 2,087,259,996,059 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,731,161 |
net_rshares | 40,587,174,084 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kjnk | 0 | 40,587,174,084 | 100% |
I will not lie, for an average tech person like me, this is quite difficult to clearly understand, but i am sure must be something great for the further growth of Steemit! I will check out steemitstage.com and start learning from there! Thanks so much for informing the whole community like this!
author | progressivechef |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t225647872z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 22:56:51 |
last_update | 2018-02-14 22:56:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 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 | 296 |
author_reputation | 192,478,961,270,930 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,590,342 |
net_rshares | 0 |
Very good info .. hopefully useful for us all. What else for me who just joined in steemit.pada friends all please help ya.thanks all
author | purnawarman | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018217t134248557z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-17 06:43:06 | ||||||
last_update | 2018-02-17 06:43:06 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-24 06:43: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 | 133 | ||||||
author_reputation | 2,185,251,735 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 38,187,545 | ||||||
net_rshares | 0 |
big news!
author | rainbowtube | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t204532656z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 11:45:33 | ||||||
last_update | 2018-02-16 11:45:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 11:45:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 9 | ||||||
author_reputation | 11,087,613,104 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,985,829 | ||||||
net_rshares | 0 |
nice picture,please vote me
author | rajamulkan2121 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t142913159z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 14:29:21 |
last_update | 2018-02-16 14:29:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 14:29: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 | 27 |
author_reputation | 49,551,863,043 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,017,573 |
net_rshares | 0 |
I used my posting key >If you’re just a regular steemit.com user, you can help too. Head on over to steemitstage.com and use the site like you normally would. Your testing module felt the same as the steemit I know and love.
author | reddust |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t233215498z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:32:15 |
last_update | 2018-02-14 23:32:15 |
depth | 1 |
children | 12 |
last_payout | 2018-02-21 23:32:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.022 HBD |
curator_payout_value | 1.320 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 226 |
author_reputation | 167,904,626,237,187 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,595,871 |
net_rshares | 780,717,200,038 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
klye | 0 | 518,429,465,272 | 100% | ||
whatsup | 0 | 4,262,852,070 | 1% | ||
greatdabu | 0 | 139,335,503,778 | 100% | ||
morseke1 | 0 | 113,668,812,257 | 100% | ||
broester | 0 | 1,921,118,313 | 100% | ||
yuninho | 0 | 1,959,638,621 | 100% | ||
williammollers | 0 | 592,949,749 | 100% | ||
angelduke1 | 0 | 546,859,978 | 100% |
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3> <h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old. Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit. Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today. Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit. Below are just a few of the terrible insults they have spoken against this Christian man. Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him. Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening." Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop. Not a word was said in one year and now he is resorting to further action. The abuse will stop. If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in. There is a substantial reward and you can remain anonymous. Noganoo is unable to file a restraining order against these 2 until he finds their identity. BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3> <h3>First of all let's go back to before this all started. Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting. Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free. You can see that these people and their friends are the only people who have ever attacked Noganoo. They are trying to cover up their theft. If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch. https://steemd.com/@sweet-banana?page=17 Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild." Fact is they stole millions of dollars. This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3> %20Steemit%20Chat%20(1).png) <h3>"Sorry, I should have said "Go fuck your cousin." (again)</h3>  <h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>  <h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal." Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>  <h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>  <h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3> %20Steemit%20Chat.png) <h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>  %20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png) <h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity, Pfunk at the time had no idea Noganoo wrote this! Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support. Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles. Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year. Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit. He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>  <h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
author | akiho |
---|---|
permlink | re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t030725764z |
category | steem |
json_metadata | {"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"} |
created | 2018-02-15 03:07:21 |
last_update | 2018-02-15 03:07:21 |
depth | 2 |
children | 1 |
last_payout | 2018-02-22 03:07: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,081 |
author_reputation | -1,012,310,812,779 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,631,025 |
net_rshares | -10,386,148,970,917 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | -10,278,681,345,759 | -100% | ||
protegeaa | 0 | -107,273,925,446 | -100% | ||
akiho | 0 | 614,860,000 | 100% | ||
factfictional | 0 | -525,911,710 | -100% | ||
sirwizalot | 0 | -282,648,002 | -100% |
This war happened here on steemit, and probably that's the reason why steemitstage was created with the ability to scale in other to control and manage this kind of stuff, right?
author | goal300 |
---|---|
permlink | re-akiho-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t045617621z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 04:56:24 |
last_update | 2018-02-15 04:56:24 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 04:56: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 | 180 |
author_reputation | 1,484,165,204,915 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,650,098 |
net_rshares | 0 |
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3> <h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old. Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit. Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today. Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit. Below are just a few of the terrible insults they have spoken against this Christian man. Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him. Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening." Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop. Not a word was said in one year and now he is resorting to further action. The abuse will stop. If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in. There is a substantial reward and you can remain anonymous. Noganoo is unable to file a restraining order against these 2 until he finds their identity. BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3> <h3>First of all let's go back to before this all started. Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting. Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free. You can see that these people and their friends are the only people who have ever attacked Noganoo. They are trying to cover up their theft. If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch. https://steemd.com/@sweet-banana?page=17 Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild." Fact is they stole millions of dollars. This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3> %20Steemit%20Chat%20(1).png) <h3>"Sorry, I should have said "Go fuck your cousin." (again)</h3>  <h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>  <h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal." Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>  <h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>  <h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3> %20Steemit%20Chat.png) <h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>  %20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png) <h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity, Pfunk at the time had no idea Noganoo wrote this! Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support. Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles. Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year. Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit. He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>  <h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
author | express |
---|---|
permlink | re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t053027151z |
category | steem |
json_metadata | {"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"} |
created | 2018-02-15 05:30:27 |
last_update | 2018-02-15 05:30:27 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 05:30: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 | 6,095 |
author_reputation | -712,847,287,787 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,656,214 |
net_rshares | -10,202,460,861,875 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | -10,105,445,143,302 | -100% | ||
almost-digital | 0 | -96,176,658,857 | -10% | ||
arkhamknight | 0 | -550,267,193 | -100% | ||
sirwizalot | 0 | -288,792,523 | -100% |
Does it mean someday we'll all move to steemitstage?
author | goal300 |
---|---|
permlink | re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t004959917z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 00:50:15 |
last_update | 2018-02-15 04:37:39 |
depth | 2 |
children | 5 |
last_payout | 2018-02-22 00:50:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.092 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 1,484,165,204,915 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,607,889 |
net_rshares | 16,133,200,807 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mejustandrew | 0 | 14,346,663,830 | 100% | ||
factfictional | 0 | 516,685,189 | 100% | ||
ihbangash | 0 | 710,702,821 | 100% | ||
angelduke1 | 0 | 559,148,967 | 100% |
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3> <h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old. Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit. Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today. Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit. Below are just a few of the terrible insults they have spoken against this Christian man. Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him. Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening." Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop. Not a word was said in one year and now he is resorting to further action. The abuse will stop. If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in. There is a substantial reward and you can remain anonymous. Noganoo is unable to file a restraining order against these 2 until he finds their identity. BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3> <h3>First of all let's go back to before this all started. Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, Sauravrungta, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting. Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free. You can see that these people and their friends are the only people who have ever attacked Noganoo. They are trying to cover up their theft. If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch. https://steemd.com/@sweet-banana?page=17 Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild." Fact is they stole millions of dollars. This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3> %20Steemit%20Chat%20(1).png) <h3>"Sorry, I should have said "Go fuck your cousin." (again)</h3>  <h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>  <h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal." Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>  <h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>  <h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3> %20Steemit%20Chat.png) <h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>  %20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png) <h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity, Pfunk at the time had no idea Noganoo wrote this! Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support. Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles. Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year. Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit. He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>  <h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
author | express |
---|---|
permlink | re-goal300-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t053111237z |
category | steem |
json_metadata | {"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"} |
created | 2018-02-15 05:31:09 |
last_update | 2018-02-15 05:31:09 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 05:31: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 | 6,095 |
author_reputation | -712,847,287,787 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,656,349 |
net_rshares | -96,471,595,902 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | -96,176,658,857 | -10% | ||
sirwizalot | 0 | -294,937,045 | -100% |
### No, we won't move to Stage, Stage will come to us! Stage is just on of the phases that a product goes through from development to production: Dev -> Test -> Stage -> Prod. If everything goes well with testing of Steemitstage, Steemit will be replaced by the one on stage testing phase, but we **will not** move to another page, we will use and go to https://steemit.com as we currently do.
author | mejustandrew |
---|---|
permlink | re-goal300-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t103711160z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com"],"app":"steemit/0.1"} |
created | 2018-02-15 10:37:12 |
last_update | 2018-02-15 10:37:12 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 10:37:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.168 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 396 |
author_reputation | 6,245,491,946,485 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,713,416 |
net_rshares | 26,243,218,688 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
reddust | 0 | 11,584,670,862 | 5% | ||
mejustandrew | 0 | 14,658,547,826 | 100% |
No, I believe that is only a test environment.
author | orbitalqq |
---|---|
permlink | re-goal300-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t020920185z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 02:09:18 |
last_update | 2018-02-15 02:09:18 |
depth | 3 |
children | 1 |
last_payout | 2018-02-22 02:09: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 | 46 |
author_reputation | 12,214,914,624 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,620,606 |
net_rshares | 580,654,696 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
angelduke1 | 0 | 580,654,696 | 100% |
I am pretty sure that is the idea @goal300, I am as thick as a brick when it comes to technical articles ....hehehe
author | reddust |
---|---|
permlink | re-goal300-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t014033817z |
category | steem |
json_metadata | {"tags":["steem"],"users":["goal300"],"app":"steemit/0.1"} |
created | 2018-02-15 01:40:33 |
last_update | 2018-02-15 01:40:33 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 01:40: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 | 115 |
author_reputation | 167,904,626,237,187 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,615,720 |
net_rshares | 571,437,955 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
angelduke1 | 0 | 571,437,955 | 100% |
<h3>INFORMING THE MASSES - A short list of some of the abuses against @Noganoo by Satanic whales on Steemit.<h3> <h3>For those of you who are unaware @Noganoo was sexually abused when he was 5 years old. Bernie Sanders learned this from Fyrstikken whom Noganoo trusted and confided in and then was betrayed and slandered by Fyrstikken whom Noganoo brought to Steemit. Noganoo only requested that Fyrstikken send back the 10 Bitcoins he stole from SatoshiHorizon through his “altcoin investment fund.” Noganoo stood up against Bernie's flag abuse towards SeaBlue which caused the war that you are seeing today. Bernie swore to destroy Noganoo because Noganoo defended the helpless minnows on Steemit. Below are just a few of the terrible insults they have spoken against this Christian man. Please visit @Noganoo's blog and support and encourage him through these demonic attacks as his old friends have forsaken him. Not only do these people verbally attack Noganoo but they antagonize him until he responds in anger, then they sent the FBI to his house for "threatening." Noganoo has requested to all of the whales on steemit directly for them to speak to these 2 fraudsters and tell them to stop. Not a word was said in one year and now he is resorting to further action. The abuse will stop. If you have any information as to the identity or whereabouts of BernieSanders or Pfunk please contact abuse@steem.in. There is a substantial reward and you can remain anonymous. Noganoo is unable to file a restraining order against these 2 until he finds their identity. BernieSanders is a pedophile and should not be rewarded with upvotes on Steemit.</h3> <h3>First of all let's go back to before this all started. Noganoo was investigating the fraud and theft of 10s of millions of dollars of rewards by Donkeypong, Gavvet, HanshotFirst, Kevinwong, The-Alien, JrCornel, Sweetsssj and Knozaki2015 with their organization called "SteemGuild" where they used the Steemit Co-founder Ned's account to vote for themselves instead of the "minnows" they claimed to be supporting. Go look at all of their current account values and you can see that over 1 year ago Noganoo was right! They paid themselves multi-millions for only a couple months of curating on Steemit. Something the rest of us do for free. You can see that these people and their friends are the only people who have ever attacked Noganoo. They are trying to cover up their theft. If you go back on the blockchain you can see Noganoo's accounts previously supported most of these authors with his thousand bot voters early on in the platforms launch. https://steemd.com/@sweet-banana?page=17 Then Noganoo called out The-Alien for his common use of the word "Motherfucker" in his fiction stories that were upvoted by their "Steemguild" to number one on trending every day to "raise money for the guild." Fact is they stole millions of dollars. This rebuke prevented Noganoo from ever getting an upvote from that guild which controlled over 30% of the voting power on Steemit at the time.</h3> %20Steemit%20Chat%20(1).png) <h3>"Sorry, I should have said "Go fuck your cousin." (again)</h3>  <h3>Here is Pfunk attacking Noganoo's girlfriend.</h3>  <h3>Here Bernie tries to twist the truth and calls him an "incestuous criminal." Bernie is trying to convince the unknowing public that Noganoo is a sex criminal.</h3>  <h3>I'll save you a spot beside me in hell to torment you with incestuous dick art for all eternity.</h3>  <h3>I'm pretty sure (noganoo) was molested by somone in the church.</h3> %20Steemit%20Chat.png) <h3>Incestuous Scumbag, I bet the abuse never even happened and you are trying to gain sympathy</h3>  %20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png) <h3>Here is Pfunk 2 years ago violently attacking an article Noganoo wrote about Christianity, Pfunk at the time had no idea Noganoo wrote this! Pfunk is a hater of true Christians but aligns himself with the fake Christians so he can get more witness votes and doesn't lose support. Pfunk proceeded to individually message everyone that upvoted Noganoo and slander him and threaten them with loss of support if they continue to upvote his articles. Pfunk, Berniesanders and Ausbitbank costed Noganoo over 50,000 dollars in losses last year. Ausbitbank attacked Noganoo to impress his witness friends when Noganoo is the one who brought him to Steemit. He brought Noganoo’s reputation from 68 down to zero with stolen Steempower provided by JamesC</h3>  <h3>The light shines in the darkness, and the darkness has not overcome it. - John 1:5</h3>
author | scrollsmero |
---|---|
permlink | re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t021914207z |
category | steem |
json_metadata | {"tags":["steem"],"users":["noganoo"],"image":["https://steemitimages.com/DQmQtwzEiYJXjGkzJvwBSCwPEzt2gXw45CRDZmtfRQk7Bbo/2017-03-10%2008_06_14-(%E2%80%A2)%20Steemit%20Chat%20(1).png","https://steemitimages.com/DQmW8Ny1uzFBKuyv9JWmgjZMy6A93WssJwchCUZjDw2Dqik/2018-02-01%2013_40_22-.png","https://steemitimages.com/DQmVDG769WQjKenrEwVJpYeKvsw5QewWWbd2x1F9LJw2Khx/pfunk.png","https://steemitimages.com/DQmNV8mHo9EfCtTXv69ZvpT9bHhPuuZ2DWjVaxUZyM8C1tm/2018-02-01%2013_30_07-.png","https://steemitimages.com/DQmQGzQqjbVJyYUgM6kUHmvmPR7yq39zDySGtdVWZL5mqSG/2017-09-07%2006_51_29-.png","https://steemitimages.com/DQmck7wTfQnapFFSHXvAcpboaRM35pCKfrmiWCJQyK9Z98G/2017-03-17%2018_19_18-(%E2%80%A2)%20Steemit%20Chat.png","https://steemitimages.com/DQmX4koQufBEDU8KVd7jxQv61PCQc9NSrwEhSgEjWDXkkfD/2017-05-17%2006_46_18-Noganoo%20-%20Hero_%20Victim_%20Menace_%20And%20what%20about%20you_%20%E2%80%94%20Steemit.png","https://steemitimages.com/DQmY2Ybr6qsu7Jj7QfrEmtxkpWoTSUTJNUVWgkBnrViPT5d/2017-06-21%2016_57_34-2017-06-21%2016_47_08-Replies%20to%20nOgAnOo%20(%40noganoo)%20%E2%80%94%20Steemit%20-%20Windows%20Photo%20View.png","https://steemitimages.com/DQmcnMRJYRg1kwRU536ZfJ8fmjg17nUMcZr7XqWgUMAhk3Q/2018-02-14%2003_25_39-.png"],"links":["https://steemd.com/@sweet-banana?page=17"],"app":"steemit/0.1"} |
created | 2018-02-15 02:19:12 |
last_update | 2018-02-15 02:19:12 |
depth | 2 |
children | 2 |
last_payout | 2018-02-22 02:19: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 | 6,081 |
author_reputation | -797,639,863,401 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,622,310 |
net_rshares | -10,080,617,512,466 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | -9,874,463,540,027 | -100% | ||
reddust | 0 | -205,877,468,959 | -100% | ||
sirwizalot | 0 | -276,503,480 | -100% |
@scrollsmero, OMG...why did you share this with me? I'm not getting involved int he flag wars. Most of us who have been on steemit for over a year know about the big accounts and investors short term profit relationships. This is a real world problem and if we can solve it we can solve the ills of our world too :P I am doing my little part to play fair but I will not get involved in the flag wars.
author | reddust |
---|---|
permlink | re-scrollsmero-re-reddust-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t022916430z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1","users":["scrollsmero"]} |
created | 2018-02-15 02:29:15 |
last_update | 2018-02-15 02:30:45 |
depth | 3 |
children | 1 |
last_payout | 2018-02-22 02:29: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 | 403 |
author_reputation | 167,904,626,237,187 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,624,180 |
net_rshares | 0 |
Logged in and the site looks good so far :)
author | rickthor |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t002935470z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-18 00:29:33 |
last_update | 2018-02-18 00:29:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-25 00:29: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 | 43 |
author_reputation | 53,074,296,199 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,382,388 |
net_rshares | 1,092,600,049 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rickthor | 0 | 585,673,824 | 100% | ||
carpentry101 | 0 | 506,926,225 | 100% |
Your writing is very good, and very beneficial. And I am also motivated for your writing. And I say thousands of thanks for writing you wrote, semonga you and I we will be successful together in this steemit. So that can add more income .. beloved friendship may we healthy always yes
author | riskasuandi | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t91157521z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 02:12:00 | ||||||
last_update | 2018-02-15 02:12:00 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 02:12: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 | 284 | ||||||
author_reputation | 91,980,449,932 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,621,097 | ||||||
net_rshares | -17,231,014,070 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | -17,231,014,070 | -1% |
Hello @steemitdev I really like your posts, I hope you keep posting other interesting things. greetings from me @riziqasshiddiq do not forget to stop in my posting
author | riziqasshiddiq | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t1386692z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 06:08:09 | ||||||
last_update | 2018-02-16 06:08:09 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 06:08: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 | 164 | ||||||
author_reputation | 27,079,852,600 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,925,991 | ||||||
net_rshares | 52,327,100 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
riziqasshiddiq | 0 | 52,327,100 | 100% |
good job
author | rogerek |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t222813015z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 22:27:54 |
last_update | 2018-02-15 22:27:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 22:27: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 | 8 |
author_reputation | 3,909,047,508,113 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,850,014 |
net_rshares | 0 |
thats good news !
author | roykie17 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t230301722z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:03:06 |
last_update | 2018-02-14 23:03:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-21 23: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 | 17 |
author_reputation | 4,904,742,572,921 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,591,405 |
net_rshares | 0 |
Really (AppBase) good and innovative step to growing steem world day by day.💪💪 Go ahead Resteemit, Upvoted done..
author | russel59 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180218t081108233z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-18 08:11:12 |
last_update | 2018-02-18 08:11:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-25 08: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 | 113 |
author_reputation | 19,963,079,525 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,456,583 |
net_rshares | 0 |
This is a great update! Eager to learn more.
author | sagewords |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t035016595z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 03:50:18 |
last_update | 2018-02-15 03:50:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 03:50: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 | 44 |
author_reputation | 3,888,612,507,699 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,638,613 |
net_rshares | 0 |
Very good if any app like steem. I believe with this posting, will many who will use the application. Very good post @steemitdev. Good Job
author | saifulrahmad | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t1241466z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 05:04:21 | ||||||
last_update | 2018-02-15 05:04:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 05:04: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 | 138 | ||||||
author_reputation | 1,795,905,708,572 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,651,428 | ||||||
net_rshares | 353,306,653 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nyamukkurus | 0 | 353,306,653 | 100% |
I like post...
author | salda | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t81057356z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 01:07:27 | ||||||
last_update | 2018-02-15 01:07:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 01:07: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 | 14 | ||||||
author_reputation | 2,002,379,332 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,610,512 | ||||||
net_rshares | -17,231,014,070 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | -17,231,014,070 | -1% |
Writing this from steemitstage.com :) , everything seems to be working fine for me in Chrome (Version 64.0.3282.167). And this change certainly indicates the readiness for the next big thing - SMT.
author | sanjeevm |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t102702150z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 10:26:57 |
last_update | 2018-02-16 10:26:57 |
depth | 1 |
children | 1 |
last_payout | 2018-02-23 10:26:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.752 HBD |
curator_payout_value | 0.441 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 686,209,074,342,127 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,971,565 |
net_rshares | 361,355,786,368 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
expanse | 0 | 3,565,228,498 | 98% | ||
melek | 0 | 3,983,825,115 | 47% | ||
seckorama | 0 | 3,565,782,701 | 15% | ||
sweetpea | 0 | 18,705,946,037 | 66% | ||
nataliechickee | 0 | 3,624,378,397 | 29% | ||
markperandin | 0 | 4,656,692,654 | 27% | ||
readallaboutit | 0 | 6,849,273,161 | 36% | ||
epicdesigns | 0 | 5,434,959,985 | 28% | ||
cikxaijen | 0 | 19,264,611,163 | 50% | ||
thewealthunit | 0 | 3,561,618,915 | 11% | ||
thinkingtime | 0 | 3,792,065,032 | 89% | ||
kouloumos | 0 | 11,294,943,902 | 47% | ||
haiguzzi | 0 | 12,449,576,079 | 13% | ||
cantribute | 0 | 19,573,651,360 | 52% | ||
sam99 | 0 | 14,546,073,521 | 50% | ||
rvgenaille | 0 | 8,844,048,125 | 46% | ||
dheerajdj | 0 | 3,578,327,504 | 22% | ||
plumey | 0 | 3,583,896,252 | 19% | ||
duhov | 0 | 3,804,665,250 | 52% | ||
redfishpillar | 0 | 10,297,945,357 | 29% | ||
onlineprds | 0 | 14,165,830,329 | 91% | ||
jahangirbalti | 0 | 9,094,292,741 | 48% | ||
melbookermusic | 0 | 15,306,384,633 | 12% | ||
techblogger | 0 | 11,022,691,984 | 17% | ||
mystic1000 | 0 | 3,664,659,902 | 74% | ||
emito | 0 | 13,003,054,349 | 94% | ||
relationtrip | 0 | 10,770,671,688 | 40% | ||
photographer1 | 0 | 7,553,135,644 | 26% | ||
triniton | 0 | 4,653,981,626 | 47% | ||
brittuf | 0 | 15,419,111,414 | 11% | ||
promita | 0 | 3,713,958,709 | 30% | ||
tam-lin | 0 | 3,688,032,820 | 18% | ||
mejustandrew | 0 | 8,735,345,104 | 53% | ||
vintherinvest | 0 | 5,784,141,317 | 23% | ||
snrm | 0 | 10,204,485,125 | 72% | ||
modemser1 | 0 | 3,528,995,103 | 16% | ||
arindammroy | 0 | 18,610,592,360 | 29% | ||
akshaykumar12257 | 0 | 3,563,545,501 | 15% | ||
dexterslab | 0 | 3,800,403,035 | 94% | ||
sbbank | 0 | 3,805,186,875 | 84% | ||
venalbe | 0 | 9,904,849,525 | 60% | ||
bestone | 0 | 4,062,453,289 | 60% | ||
biffybirdcam | 0 | 3,438,300,342 | 100% | ||
zekesito | 0 | 5,115,185,728 | 25% | ||
la4life | 0 | 3,768,988,217 | 63% |
author | kos |
---|---|
permlink | re-sanjeevm-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t195554661z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://img.youtube.com/vi/oD5QErn3UMg/0.jpg"],"links":["https://www.youtube.com/watch?v=oD5QErn3UMg&t=14s"],"app":"steemit/0.1"} |
created | 2018-02-16 19:55:54 |
last_update | 2018-02-16 19:55:54 |
depth | 2 |
children | 0 |
last_payout | 2018-02-23 19:55: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 | 49 |
author_reputation | -59,914,306,026 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,082,120 |
net_rshares | -1,104,836,126,708 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | -1,106,415,958,402 | -100% | ||
kos | 0 | 1,579,831,694 | 100% |
well...well... well... very good information.. 👍 good job please vote and folliw back @sarine
author | sarine | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t154429737z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-16 08:44:33 | ||||||
last_update | 2018-02-16 08:44:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-23 08:44: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 | 93 | ||||||
author_reputation | 3,101,143,891 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,953,243 | ||||||
net_rshares | 0 |
https://steemit.com/bitcoin/@satoshischool/technical-post-3-last-day-in-otres
author | satoshischool |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180220t022428009z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/bitcoin/@satoshischool/technical-post-3-last-day-in-otres"],"app":"steemit/0.1"} |
created | 2018-02-20 02:24:30 |
last_update | 2018-02-20 02:24:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 02:24:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 16.964 HBD |
curator_payout_value | 0.242 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 7,601,967,482,623 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,941,659 |
net_rshares | 3,085,099,644,467 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
skorek | 0 | 3,083,178,266,669 | 100% | ||
satoshischool | 0 | 1,921,377,798 | 100% |
hello i want 100fallows Pleas help me!
author | sebek4451 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t012317457z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-17 01:23:15 |
last_update | 2018-02-17 01:23:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 01:23: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 | 38 |
author_reputation | 324,187,762 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,133,908 |
net_rshares | 0 |
Thanks for your post! I was searching on such info.
author | selmaci |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t133147085z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 13:31:48 |
last_update | 2018-02-15 13:31:48 |
depth | 1 |
children | 1 |
last_payout | 2018-02-22 13:31:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.294 HBD |
curator_payout_value | 0.096 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 482,858,819,815 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,746,979 |
net_rshares | 57,256,277,677 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edensgarden | 0 | 57,256,277,677 | 6.52% |
You got a 6.52% upvote from @edensgarden courtesy of @selmaci!
author | edensgarden |
---|---|
permlink | re-selmaci-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t133147085z-20180215t142805783z |
category | steem |
json_metadata | {"app":"postpromoter/1.8.6"} |
created | 2018-02-15 14:28:06 |
last_update | 2018-02-15 14:28:06 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 14:28: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 | 63 |
author_reputation | -100,797,867,719 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,758,531 |
net_rshares | 0 |
If you are going to be ever forking the blockchain, could you make it so that users can change their name for a small fee (a good idea could be 1 SBD). Not only will this create some deflation, but will allow users who are unhappy with their username to change it without having to start fresh. Note that this could be executed in a soft fork, and would not require any sort of hard changes. It would be a nice addition, and I’ve seen a lot of people who are unhappy with their name and have a large enough following that they don’t want to create a new account from scratch. @shredz7
author | shredz7 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180301t145053451z |
category | steem |
json_metadata | {"tags":["steem"],"users":["shredz7"],"app":"steemit/0.1"} |
created | 2018-03-01 14:50:54 |
last_update | 2018-03-01 14:50:54 |
depth | 1 |
children | 0 |
last_payout | 2018-03-08 14:50: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 | 586 |
author_reputation | 7,922,356,058,897 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,400,205 |
net_rshares | 0 |
Excellent article very informative, voted
author | siraspurjitu |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t051309816z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 05:13:12 |
last_update | 2018-02-16 05:13:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 05:13: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 | 41 |
author_reputation | 199,136,515,713 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,916,921 |
net_rshares | 0 |
Congratulation on your success of developing the appbase...steemit is moving forward...#team Steemit
author | smokeasare165 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t134304673z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 13:38:33 |
last_update | 2018-02-15 13:38:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 13:38: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 | 100 |
author_reputation | 514,137,420,082 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,748,413 |
net_rshares | 0 |
Congratulations, your post received one of the top 10 most powerful upvotes in the last 12 hours. You received an upvote from @ned valued at 526.13 SBD, based on the pending payout at the time the data was extracted. If you do not wish to receive these messages in future, reply with the word "stop".
author | statsmonkey |
---|---|
permlink | re-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t081257 |
category | steem |
json_metadata | "" |
created | 2018-02-15 08:13:00 |
last_update | 2018-02-15 08:13:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 08:13: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 | 302 |
author_reputation | 503,392,294,628 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,686,556 |
net_rshares | 0 |
Congratulations, your post received one of the top 10 most powerful upvotes in the last 12 hours. You received an upvote from @thejohalfiles valued at 299.50 SBD, based on the pending payout at the time the data was extracted. If you do not wish to receive these messages in future, reply with the word "stop".
author | statsmonkey |
---|---|
permlink | re-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t081433 |
category | steem |
json_metadata | "" |
created | 2018-02-15 08:14:36 |
last_update | 2018-02-15 08:14:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 08: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 | 312 |
author_reputation | 503,392,294,628 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,686,852 |
net_rshares | 0 |
we support your this step.
author | steem-bd |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t062229364z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 06:22:33 |
last_update | 2018-02-16 06:22:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 06: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 | 26 |
author_reputation | 623,130,632,693 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,928,138 |
net_rshares | 0 |
Here is some info about Genesis Vision (GVT):- https://steemit.com/genesisvision/@steemerxo/gvt-securing-a-good-future-ahead
author | steemerxo |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t171257367z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/genesisvision/@steemerxo/gvt-securing-a-good-future-ahead"],"app":"steemit/0.1"} |
created | 2018-02-16 17:13:03 |
last_update | 2018-02-16 17:13:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 17:13: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 | 124 |
author_reputation | -9,717,032,188 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,050,849 |
net_rshares | 0 |
hallo, introduce my name ayudia, i am a new comer of fi steemit, please cooperate him thank you
author | steemitv | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t0111650z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 17:01:12 | ||||||
last_update | 2018-02-15 17:01:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 17:01: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 | 96 | ||||||
author_reputation | 11,417,772,014 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,790,566 | ||||||
net_rshares | 0 |
Great news for us all !
author | stockhausen |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t125003001z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 12:50:03 |
last_update | 2018-02-15 12:50:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 12:50:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.228 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 396,218,677,734 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,738,510 |
net_rshares | 35,923,082,203 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stockhausen | 0 | 35,923,082,203 | 100% |
This is really great. I love the way steem blockchain is improving day by day. Definitely, it is going to help a lot in scalability. Anyone has idea when SMT's are going live?
author | suf1an |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t094307285z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 09:43:12 |
last_update | 2018-02-15 09:43:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 09:43:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.240 HBD |
curator_payout_value | 0.084 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 177 |
author_reputation | 3,979,608,270,988 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,703,575 |
net_rshares | 194,766,415,684 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theafroguy | 0 | 189,847,144,410 | 100% | ||
suf1an | 0 | 4,919,271,274 | 100% |
I've been toying around with an idea for an app lately, is there a public node running the new api I can connect to?
author | telos |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180221t041037686z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-21 04:10:36 |
last_update | 2018-02-21 04:10:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-28 04:10: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 | 116 |
author_reputation | 3,975,075,719,043 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,242,620 |
net_rshares | 1,007,546,834 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
growingpower | 0 | 1,007,546,834 | 20% |
Hello, I'm new to Steemit and I'm not sure what this is all about. I logged on to that site and it just looked like Steemit....What exactly was I looking for that is different?
author | thegreatlife |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t043739636z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 04:37:39 |
last_update | 2018-02-15 04:37:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 04:37: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 | 176 |
author_reputation | 7,853,866,687,704 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,647,119 |
net_rshares | 2,027,338,465 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thegreatlife | 0 | 2,027,338,465 | 100% |
This is awesome @steemitdev. Great to see a strong dev team behind this blockchain. I cant wait to see what is possible when this is further tested and developed. Thank you for the hard work.
author | thejohalfiles |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t154435284z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitdev"],"app":"steemit/0.1"} |
created | 2018-02-15 15:44:36 |
last_update | 2018-02-15 15:44:36 |
depth | 1 |
children | 1 |
last_payout | 2018-02-22 15:44:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.508 HBD |
curator_payout_value | 0.148 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | 10,452,104,581,740 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,774,774 |
net_rshares | 97,383,077,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 82,538,165,078 | 1% | ||
teamhumble | 0 | 4,521,493,230 | 10% | ||
lukebrn | 0 | 9,721,263,139 | 10% | ||
ghareebnawaz | 0 | 602,155,935 | 100% |
I totally agree with @thejohalfiles @steemitdev you guys are awesome. The world we live in is filled with people with all talk with no action. It's very encouraging when you see someone knuckle down and start taking massive action! You guys will be the Pioneers that kids generations from today will be reading about in story books. Please keep up the good work and your dedication 👍🏾💪🏾💪🏾
author | caribbeanmon |
---|---|
permlink | re-thejohalfiles-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t165500124z |
category | steem |
json_metadata | {"tags":["steem"],"users":["thejohalfiles","steemitdev"],"app":"steemit/0.1"} |
created | 2018-02-16 16:55:00 |
last_update | 2018-02-16 16:55:00 |
depth | 2 |
children | 0 |
last_payout | 2018-02-23 16:55: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 | 395 |
author_reputation | 3,534,775,609,940 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,047,095 |
net_rshares | 0 |
These seem like great news, but honestly where is the documentation for all of it? I have been struggling with proper up to date documentation for the "normal" steem blockchain and if that is any indication, it will take some time until people post useful tutorials and info, simply because they will need to learn by trial and error. I know this project is ooen source and I should just fix the docs myself but seriously, if you are serious aboit attracting developers, documentatiom shoild be the first priority... Still, seems like great news.
author | tiagopaixao |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180214t232518288z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-14 23:25:24 |
last_update | 2018-02-14 23:25:24 |
depth | 1 |
children | 2 |
last_payout | 2018-02-21 23:25:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.486 HBD |
curator_payout_value | 0.158 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 547 |
author_reputation | 30,669,084,740 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,594,850 |
net_rshares | 94,661,125,090 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 94,661,125,090 | 10% |
Right now the “Developer Portal” which is linked from the main menu of steemit.com is the central place for documentation. It is a work in progress though. You can also join the SteemDevs discord group where community developers go to chat: https://discord.gg/B29Bbng
author | timcliff |
---|---|
permlink | re-tiagopaixao-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t000934796z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://discord.gg/B29Bbng"],"app":"steemit/0.1"} |
created | 2018-02-15 00:09:33 |
last_update | 2018-02-15 00:09:33 |
depth | 2 |
children | 1 |
last_payout | 2018-02-22 00:09:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.124 HBD |
curator_payout_value | 0.365 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 268 |
author_reputation | 272,954,445,077,789 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,601,599 |
net_rshares | 218,298,624,547 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 82,538,165,078 | 1% | ||
netuoso | 0 | 134,091,137,681 | 7% | ||
yuninho | 0 | 1,669,321,788 | 100% |
Yeah, the developer portal is a bit lacking in substance. It provides very basic examples to get you started, which is good, but as soon as you want to look at some of the more advanced functions, there is a lot of guesswork involved... And now it seems all those APIs just got replaced.... Thanks for the links though. The people in this community are its saving grace.
author | tiagopaixao |
---|---|
permlink | re-timcliff-re-tiagopaixao-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t220139818z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 22:01:45 |
last_update | 2018-02-15 22:01:45 |
depth | 3 |
children | 0 |
last_payout | 2018-02-22 22:01:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.080 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 372 |
author_reputation | 30,669,084,740 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,845,768 |
net_rshares | 17,342,072,090 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 17,342,072,090 | 1% |
I have methods of winning bitcoin @titanik .jpeg)
author | titanik |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t165838540z |
category | steem |
json_metadata | {"tags":["steem"],"users":["titanik"],"image":["https://steemitimages.com/DQme9dGgooPqUsjnnM5LqqUxGzyLHufpfzmyhUvVdiMhwXB/images%20(8).jpeg"],"app":"steemit/0.1"} |
created | 2018-02-15 16:58:42 |
last_update | 2018-02-15 16:58:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 16:58: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 | 154 |
author_reputation | -16,032,137,583 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,790,055 |
net_rshares | 0 |
Hi! I'm a career full stack web dev with a strong background in frontend tech like React/Redux, webpack, etc. I recently left my day job to spend more time trading crypto and I would love to donate a chunk of my new free time to this project anywhere I can jump in. Please let me know if you guys are interested in the help. Thanks for all the hard work!
author | trmnl-cmdr |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180221t182217514z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-21 18:22:21 |
last_update | 2018-02-21 18:22:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-28 18: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 | 354 |
author_reputation | 6,405,954,523 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,406,526 |
net_rshares | -91,911,926,828 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | -1,603,336,407 | -1% | ||
nextgencrypto | 0 | -605,240,318 | -1% | ||
danknugs | 0 | -5,450,019,028 | -1% | ||
the.bot | 0 | -1,120,178,049 | -1% | ||
ozchartart | 0 | -286,251,623 | -1% | ||
thebotkiller | 0 | -6,383,287,495 | -1% | ||
thecyclist | 0 | -52,853,256,273 | -1% | ||
engagement | 0 | -145,764,912 | -1% | ||
iflagtrash | 0 | -6,904,303,145 | -1% | ||
theyeti | 0 | -3,735,573,760 | -1% | ||
randomthoughts | 0 | -1,111,477,071 | -1% | ||
thesloth | 0 | -1,915,915,372 | -1% | ||
ngc | 0 | -7,978,350,196 | -1% | ||
speakyourmind | 0 | -1,157,180,628 | -1% | ||
rewardpoolrape | 0 | -661,792,551 | -1% |
https://steemit.com/cryptocurrency/@tvmasala/when-to-buy-cryptocurrency-3-simple-signs
author | tvmasala |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t083533581z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/cryptocurrency/@tvmasala/when-to-buy-cryptocurrency-3-simple-signs"],"app":"steemit/0.1"} |
created | 2018-02-15 08:36:09 |
last_update | 2018-02-15 08:36:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 08:36: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 | 86 |
author_reputation | 100,379,899 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,691,085 |
net_rshares | 0 |
Blok zincirini geliştirmek için yapılmış bir yenilik gibi görünüyor . Steemit in sürekli olarak kendini yenilemesi uzun süre ayakta kalmasını sağlayacak. It seems to be an innovation to improve the block chain. Steemit's constant self-renewal will help him to survive for long.
author | unal1453 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t211930492z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 21:19:36 |
last_update | 2018-02-15 21:19:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 21:19: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 | 278 |
author_reputation | 57,962,212,137 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,838,490 |
net_rshares | 0 |
thanks for the info I appreciate it. [post for today](https://steemit.com/tilphilippines/@veejay2312/writing-about-a-writer-s-block-is-better-than-not-writing-at-all)
author | veejay2312 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t004114546z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/tilphilippines/@veejay2312/writing-about-a-writer-s-block-is-better-than-not-writing-at-all"],"app":"steemit/0.1"} |
created | 2018-02-15 00:41:15 |
last_update | 2018-02-15 00:41:15 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 00: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 | 166 |
author_reputation | 918,539,057,314 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,606,525 |
net_rshares | 0 |
Recently I met the platform steemit and today I decided that with each such update, I will invest in platform tokens.
author | veet |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t150230743z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 15:02:33 |
last_update | 2018-02-15 15:02:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 15:02: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 | 117 |
author_reputation | -3,878,647,881 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,766,167 |
net_rshares | 614,444,832 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghareebnawaz | 0 | 614,444,832 | 100% |
Does anybody know how big the Steem blockchain is at the moment?
author | vikisecrets |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t110401402z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 11:04:03 |
last_update | 2018-02-15 11:04:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 11:04: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 | 64 |
author_reputation | 1,188,379,855,808,198 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,718,341 |
net_rshares | 0 |
Good post and outstanding vote follow @ vor3ss88
author | vor3ss88 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018215t22121656z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 15:12:06 | ||||||
last_update | 2018-02-15 15:12:06 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 15:12: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 | 48 | ||||||
author_reputation | 5,263,772,792 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,768,133 | ||||||
net_rshares | 0 |
please follow
author | wahyuddin | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitdev-2018216t3319435z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","appbase","steemdev","blockchain","dev"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-15 20:31:15 | ||||||
last_update | 2018-02-15 20:31:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-22 20:31: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 | 13 | ||||||
author_reputation | 3,220,361,651 | ||||||
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 37,830,086 | ||||||
net_rshares | 0 |
testing from steemstage, and it is a great day for some good news.
author | whatsup |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t084937665z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 08:49:39 |
last_update | 2018-02-15 08:49:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 08: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 | 66 |
author_reputation | 519,839,651,581,670 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,693,729 |
net_rshares | 0 |
great information
author | wolfhart |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t072825603z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 07:28:24 |
last_update | 2018-02-16 07:28:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 07:28: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 | 17 |
author_reputation | 17,410,482,134,249 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,939,142 |
net_rshares | 0 |
Sounds good
author | worldofsport |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t141343344z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-17 14:13:42 |
last_update | 2018-02-17 14:13:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 14:13:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.172 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 9,984,570,166,944 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,267,511 |
net_rshares | 29,675,893,288 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mojorisin | 0 | 13,891,900,064 | 100% | ||
worldofsport | 0 | 15,783,993,224 | 100% |
Good luck !
author | xerox-bru |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t150543313z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-15 15:05:45 |
last_update | 2018-02-15 15:05:45 |
depth | 1 |
children | 1 |
last_payout | 2018-02-22 15:05:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.200 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 5,517,233,283,887 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,766,842 |
net_rshares | 39,000,122,751 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
speedvoter | 0 | 39,000,122,751 | 2.72% |
<p>This comment has received a 2.72 % upvote from @speedvoter thanks to: @xerox-bru.</p>
author | speedvoter |
---|---|
permlink | re-xerox-bru-re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t150543313z-20180215t150914235z |
category | steem |
json_metadata | {"tags":["appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin"],"app":"drotto/0.0.3"} |
created | 2018-02-15 15:09:15 |
last_update | 2018-02-15 15:09:15 |
depth | 2 |
children | 0 |
last_payout | 2018-02-22 15:09: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 | 89 |
author_reputation | 900,449,763,381 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,767,559 |
net_rshares | 0 |
can i get a follow
author | xnx |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t232046204z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 13:20:54 |
last_update | 2018-02-15 13:20:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 13:20: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 | 18 |
author_reputation | 13,393,094 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,744,789 |
net_rshares | 0 |
This is exciting. I will be posting my next blog using it. I have seen how similar it is to steemit.com and so yes, you succeeded in designing it as 'real' steemit.
author | yadah04 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t085922322z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 08:59:09 |
last_update | 2018-02-15 08:59:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 08:59: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 | 164 |
author_reputation | 5,981,462,266,033 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,695,487 |
net_rshares | 0 |
What does this mean for a non-programmer layman user like myself? Since it sounds like some kind of success, congrats!
author | yesaye |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t115736365z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 11:57:33 |
last_update | 2018-02-15 11:57:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 11:57: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 | 118 |
author_reputation | 1,433,134,594,082 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,728,410 |
net_rshares | 0 |
HALLO BUDDY STEEMIANS !! (Senior who already succeeded in steemit). This is my post in an opportunity to introduce  My name is young cs, old 22 years. For now I am a student. I studied Telecommunication Engineering. And Hope I join this steemit is, to add relationships, experiences and spread benefits. I hope the steemian friend will direct and guide me in working in this steemit.  >So many of my introductions, greetings to all steemians friends and wish us all to be successful. Thank you..! <Follow me @young cs
author | young-cs |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t073301318z |
category | steem |
json_metadata | {"tags":["steem"],"users":["young"],"image":["https://img.esteem.ws/p0fl0sm8vh.jpg","https://img.esteem.ws/fq37my22tu.jpg"],"app":"steemit/0.1"} |
created | 2018-02-15 07:33:12 |
last_update | 2018-02-15 07:33:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 07: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 | 619 |
author_reputation | 15,543,633,662 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,679,042 |
net_rshares | -614,145,059 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ersi | 0 | -614,145,059 | -100% |
Thank you guys for your continued effort to make this platform stands out as the best, i resteemed this
author | youngjerv |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180217t102937253z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-17 10:29:42 |
last_update | 2018-02-17 10:29:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-24 10:29:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 1,820,365,993,129 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,226,025 |
net_rshares | 3,641,161,719 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
youngjerv | 0 | 3,641,161,719 | 100% |
Will this Appbase work without steem bandwidth?
author | yura81 |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t002233210z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 00:22:48 |
last_update | 2018-02-16 00:22:48 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 00:22: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 | 47 |
author_reputation | 298,771,669,778 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,867,909 |
net_rshares | 0 |
hallo sahabat steemit semua saya pendatang baru disini mohon bantuan untuk mejadi sahabat saya semua
author | yusripantona |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180215t010939085z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-15 01:09:42 |
last_update | 2018-02-15 01:09:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-22 01:09: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 | 100 |
author_reputation | 210,460,355 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 37,610,898 |
net_rshares | 6,160,096 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aaronhydra | 0 | 614,465,323 | 100% | ||
chalax | 0 | -608,305,227 | -100% |
I still confuse read this one,,,
author | ziyadhelmi |
---|---|
permlink | re-steemitdev-appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin-20180216t143234931z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-02-16 14:32:39 |
last_update | 2018-02-16 14:32:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-23 14:32: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 | 32 |
author_reputation | 3,051,681,727,163 |
root_title | "AppBase: The next step forward for the Steem blockchain (let the testing begin)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,018,249 |
net_rshares | 0 |