 I'm not a dev. I've been very clear about this from day 1. That said I've been helping to get some pretty critical apps on this chain and I've had to figure out a decent understanding of how Steem works. I'd like you to know too, so here's some of the basics and I'll do my best to have it be readable by non-devs. tl;dr - There's one program for nodes and data on the chain. As you scale up how many different things you want the node to do you increase the database size, ram, and replay time by turning on plugins. Curation/voting apps need full RPCs, but there's a good chance that apps on chain that aren't about voting can get away with Compact Broadcast nodes ($150 or less per month). ## Decentralization One of the core tenents of the liberty movement is the call for opensource and decentralized programs. Opensource means that anyone can come along and read the code and put it in their own code repository. Decentralized means that there isn't just one server or one team behind something with full control. The control is spread throughout the network by the users themselves. Gaming provides some good examples of why that's important. Some Counter Strike Go guys would play a lot, get custom skins for their guns and avatars worth hundreds of thousands of dollars, speak their mind about the company or game, and then they'd get their gear banned from the market. So, they're out hundreds of thousands of dollars. There's one central server and one authority. It's a small corporate dictatorship. This could still happen in a decentralized system, but it's no longer 1 person or company making the call. It would have to be the whole ecosystem, and if the whole ecosystem didn't agree it either wouldn't go through or the ecosystem would fork and split into two groups. One group would allow the banning to take place, one group wouldn't allow the banning to take place, and because of the nature of opensource and decentralized all people in the community get their say! In New England the phrase is "what's good for the goose is good for the gander." What's good for the leader is good for everybody. But obviously, that's not true in the case of the cs:go guy down a couple hundred thousand bucks. So, crypto is the oppostie. What's good for me is good for me, and that's what I'm gonna do. Having a say in the network protects your ability to chose what's right for you, and having access to opensource code provides ultimate remedy for any decision you don't like. ie "Ok, I don't like that, I'm gonna take this code and go on my own. I'm gonna fork off!" You have a choice of how you want to participate. So, now that you know some of the ethos let's look at how that plays out in the Steem ecosystem through the servers that run it? ## Blockchain Basics **A blockchain is a public database.** If you ever need a short non-techy description of blockchain use that. It's just a database that anyone can access. To make it public devs had to figure out a good way to store data. You have two options: store the whole thing every time you save or just save changes as they happen. Option 1 where you save the whole file works pretty good for your college excel sheet. You do a chemistry lab, you get a few data tables. You save the whole thing. It takes two seconds, and it's pretty quick and works great. The Steem blockchain has 36m Blocks and just shy of 1B transactions in it. You hit save on that database and it takes a long ass time. So, to save time people realized you don't really need to save everything, you just need to save changes to the file. Think about it, if I have a database with 40 M entries but in a given time only 50 things change why save the whole thing? Just save what changed. That's how blockchains are designed. ## Nodes To get your data onto the blockchain you have to use a node. A node is part hardware and part software. A node is a computer that's designed to store data for users on a network and running software meant to facilitate sharing that data. On Steem you will generally hear talk of 4 types of nodes: Witness, Seed, Compact Broadcast Nodes (new), and RPCs. There's only one node software for Steemd. What's happening is that more and more plugins are getting turned on. The node gets beefier and can handle more types of operations for the users. So, in a sense there's only 1 node, but because some of the plugings really unlock new critical features we give the different nodes running different plugins of the same software their own name and describe what they can do. ## Seed Nodes Somehow new servers latching on to this public network have to get data so that they too can share what's going on. The whole point of the blockchain is that it's a decentralized repository of information that anyone in the public can access. Redundancy is key and everyone has to get the same data that wants it. Somehow you have to be able to get the data in the database onto your server and do it in a trusted way. Seed nodes have all the blockchain data on them, they are synched with the chain to show that they are running the same version as everyone else so that you know the data isn't corrupted, and other servers can ping seed nodes and download all the data on the server. Seed nodes are the lighest version of a node with just the one key function: Help other nodes get data to stay current with the blockchain. ## Witness Nodes Seed nodes help disseminate the blockchain, but something actually has to help build the blockchain. That's what witness nodes do. **Witness servers add the witness plugin to a seed node.** So, a witness node is a seed node + 1 plugin. The community votes witnesses using their stake and now witnesses have the authority delegated to them by the community to add new information to the blockchain. Our chain's heart beats every 3 seconds. A new block is stored on the chain every 3 seconds. Inside that block are all the transactions that happened in the last 3 seconds. We're averaging about 40 transactions per block these days. What kinds of data are stored on the blockchain? - Upvote - Downvote - Follow - Post - Comment - Move Steem - Move SBD - Convert SBD to Steem - Internal market for Steem to SBD - Powerup - Powerdown - Custom Json The witnesses check out the data, make sure it's signed with the appropriate keys so no counterfit transactions are made, and use consensus to decide if the block is valid. If it's valid there's a short period of time where it's reversible, editable, or may not be processed and halt the chain. Assuming that it doesn't throw up any major flags then the block is added to the chain and is irreversibly bound to it. ## Compact Broadcast Node So, Seeds get everyone the information on the chain. Witnesses actually build the chain. A compact braodcast node is one of the lightest ways to interact with the steem blockchain and tell witness nodes what data should be added. A Compact Broadcast Node is a Seed node + 5 plugins. Here are the plugins that we're running on a Compact Broadcast Node- plugin = condenser_api network_broadcast_api rc_api account_by_key database_api block_api developers.steem.io has more info than what I'm providing here, but I'm trying to give a high level understanding of what these calls do. network_broadcast_api Broadcast is basically a request to the witness servers to include a transaction. If I want to actually get my transaction recorded on the chain I have to broadcast it with my key. This plugin let's this server broadcast transactions to the full Steem network. block_api Splinterlands and Steem-engine use their own database for a lot of things. What we do is we inspect every block on the Steem blockchain and look for transactions we care about. We take what we need for our database and forget about the rest. Block_api is what allows us to get all the information in a block. account_by_key Required for looking up details about accounts, such as their balances, account keys/authorities, and witness information (such as signing key, and last price feed). rc_api - With HF20 Steemit and the Witnesses introduced a resoruce credit system. If you want to know anythign about an account's current resource credits you have to run the rc_api plugin. database_api Used to query information about accounts, transactions, and blockchain data. So, now instead of looking up all the transactions in a block it's looking up specific information from accounts and individual transactions. condenser_api - This one is kind of the kitchen sink. There's a ton of data that's grouped under here. ``` [ { "id": 0, "name": "", "owner": { "weight_threshold": 0, "account_auths": [], "key_auths": [["", 0], ["", 0], ["", 0]] }, "active": { "weight_threshold": 0, "account_auths": [], "key_auths": [["", 0], ["", 0]] }, "posting": { "weight_threshold": 0, "account_auths": [], "key_auths": [["", 0], ["", 0], ["", 0]] }, "memo_key": "", "json_metadata": "", "proxy": "", "last_owner_update": "2017-03-16T21:17:51", "last_account_update": "2017-03-16T23:10:36", "created": "2016-03-24T17:00:21", "mined": false, "recovery_account": "", "last_account_recovery": "1970-01-01T00:00:00", "reset_account": "null", "comment_count": 0, "lifetime_vote_count": 0, "post_count": 0, "can_vote": false, "voting_power": 0, "last_vote_time": "2016-12-04T23:10:57", "balance": "0.000 STEEM", "savings_balance": "0.0 STEEM", "sbd_balance": "0.0 SBD", "sbd_seconds": "", "sbd_seconds_last_update": "2018-04-10T04:08:36", "sbd_last_interest_payment": "2018-03-15T17:58:24", "savings_sbd_balance": "0.000 SBD", "savings_sbd_seconds": "", "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_withdraw_requests": 0, "reward_sbd_balance": "0.000 SBD", "reward_steem_balance": "0.000 STEEM", "reward_vesting_balance": "0.000000 VESTS", "reward_vesting_steem": "0.000 STEEM", "vesting_shares": "0.000 VESTS", "delegated_vesting_shares": "0.000000 VESTS", "received_vesting_shares": "0.000000 VESTS", "vesting_withdraw_rate": "0.000000 VESTS", "next_vesting_withdrawal": "1969-12-31T23:59:59", "withdrawn": 0, "to_withdraw": 0, "withdraw_routes": 0, "curation_rewards": 0, "posting_rewards": 0, "proxied_vsf_votes": [0, 0, 0, 0], "witnesses_voted_for": 0, "last_post": "2016-03-30T18:30:18", "last_root_post": "2016-03-30T18:30:18", "vesting_balance": "0.000 STEEM", "reputation": "", "transfer_history": [], "market_history": [], "post_history": [], "vote_history": [], "other_history": [], "witness_votes": [], "tags_usage": [], "guest_bloggers": [] } ] ``` ## Why use a Compact Broadcast Node? Well, a full node is a monster. It ranges in price, but can be fairly resource hungry. It also take forever to replay. A compact broadcast node can be used by apps that don't need all the voting/curation features. So, Splinterlands and Steem Engine don't rely on account history. They have their own database for stuff like that, but they do need to get the data from the chain. So, we can use Compact Broadcast Nodes to get the data and fill up our own databases. Currently we're running one of these on a Mira box, and we're adding a second one on a non-mira box. That should make it the tools more redundant and also substantially faster to get back up and running in the event the chain goes down for any reason. ## Full RPCS When you get to "Full RPCs" they are essentially Seed nodes with many or all the plugins turned on. They can do more types of calls going further back in the blockchain history. Now full nodes are running these plugins. If you're running apps that aren't voting or curation based then this isn't necessary. But programs that want to track all the voting and curation history of accounts will need a full node to operate. These can operate with or without Mira. Mira makes them cheaper to run because it takes a lot of resources out of ram and puts it on a hard drive where it's drastically less expensive. It's also becoming somewhat customary to run full nodes split across more than 1 server so that Account History, which is one of the largest files in the database is on it's own server and then a second servers fulfills all the other parts of the data requests. If the challenge is "I will need all the data available on the Steem blockchain to effectively run my application" then a full RPC is the tool that let's you do that. - basic plugins plugin = witness plugin = webserver p2p json_rpc plugin = database_api network_broadcast_api condenser_api block_api rc_api - Account history plugin = account_history_rocksdb plugin = account_history_api - required for get_accounts / get_witness plugin = account_by_key account_by_key_api - internal market history plugin = market_history market_history_api ## Key Differences cheat sheet The key difference between full nodes and non-full nodes is the low memory setting. If you have low memory mode turned on, then regardless of what plugins you have enabled, it's simply not possible to view posts and things like that as well as some things related to voting. Full Node: - Full Memory Mode (uses more disk space with MIRA, or more RAM with non-MIRA) - Has all plugins enabled - Can be used for things like Steemit's Condenser (the thing that powers steemit.com), Keychain, and any application in general - Can also serve as a seed node Compact Broadcast Node - Usually Low Memory mode (uses less disk space with MIRA, or less RAM with non-mira - catch is that post/comment/vote data is not available or very limited) - May have all, or only a limited selection of plugins depending on it's purpose - CANNOT be used for condenser, but may be able to be used for Keychain and certain applications that don't require posting/voting data - Can also serve as a seed node Witness Node - Same as a seed node, but also produces blocks for the owner of the node Seed Node - Low memory mode - Generally has no plugins enabled other than witness - Helps connect other nodes together # Jussi Jussi is software written by Steemit Inc to make nodes compatible and facilitate data calls. It allows node operators to route an API call to nodes that are optimized for the particular call, as if they are all hosted from the same place. So, if you have 30k requests from Steem-Engine that only need get blocks and 10k requests that require account history for steemit.com Jussi can route all the Steem-Engine requests to a smaller box so that you're not using an expensive server to pull inexpensive requests. https://developers.steem.io/services/#services-sbds ## Nginx Is not a Steem specific tool. For the public at large it's an open source load balancing system designed to optomize limited computer resources. It helps process requests to not just dump all calls on one server, but instead take calls and route them to different servers so no one server is overloaded. As an example: if there are 30k Steem-Engine requests and 10k condenser requests Jussi will route the Steem-Engine ones to less expensive servers, and Nginx could make sure that multiple less expensive servers are doing the work rather than 1 getting slammed and others sitting idle. Specific to Steem though Nginx is mostly used as a web server designed to handle HTTP(s) requests and things like SSL or routing websockets to the right place. Essentially, it's a way to use 1 server for more than one purpose. Nginx makes it so that calls to a domain can get routed to the RPC part of a server or to the part that loads a website depending on what the call is asking for. Now the same server can be used on Splinterlands to show you card art on the site or tell you who owns a specific level 6 pixie on the backend. # Steem Node 101 now complete So, there you have it. A node is a server that runs the Steem Blockchain program (Daemon). Nodes can have a variety of plugins enabled depending on how many different types of data and how far back that data needs to go. As you increase plugins you get more data calls allowed, but you also increase the price and replay time. These nodes are the lifeblood of the Steem ecosystem, and now you hopefully have a better understanding of what they do and how they do it. # Shilling I haven't shilled a product that I haven't helped build almost at all on this blockchain, but I'm extremely grateful to someguy123 and privex. They've helped me a ton, built tools with me, become my business partner, and I honestly think they are fantastic. Some people tell me that I can get the same servers for less money per month by working with a different company. That may be true, but it doesn't come with the service. Most days as a witness that doesn't matter, but on the days the blockchain is broken nothing matters more. I know I'll get the help I need by someguy123 or his team by working with him. I'll also get good advice on how to build tools for exactly what I'm doing on Steem. If you're considering biulding an app as you're realizing that the costs could be as little as $50-200 a month and the potential revenue is staggering I'd encourage you to check out Privex.io. If you sign up help pay some of my server bills and use this affiliate link: https://www.privex.io/?r=aggroed@steemmonsters.com.  No, I'm not getting paid for this. Yes, I just like someguy123 and privex that much.
author | aggroed |
---|---|
permlink | understanding-steem-nodes |
category | nodes |
json_metadata | {"tags":["nodes","palnet","steem-engine","steemmonsters","privex"],"image":["https://i.imgur.com/yPGRnGZ.png","https://cdn.steemitimages.com/DQmYfTVDnvs2VRBnVd4EzHLWajQbipGrMXUXDLQ9YFSA7Up/image.png"],"links":["https://developers.steem.io/services/#services-sbds","https://www.privex.io/?r=aggroed@steemmonsters.com"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-09-12 18:33:42 |
last_update | 2019-09-12 18:56:36 |
depth | 0 |
children | 22 |
last_payout | 2019-09-19 18:33:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 28.174 HBD |
curator_payout_value | 24.045 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17,919 |
author_reputation | 1,343,335,086,633,295 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,515,693 |
net_rshares | 134,290,661,302,658 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 687,058,115,514 | 3% | ||
simba | 0 | 57,765,944,178 | 100% | ||
mindstabber | 0 | 61,367,876 | 100% | ||
cheolwoo-kim | 0 | 149,421,804,164 | 50% | ||
onealfa | 0 | 895,918,104,770 | 75.14% | ||
cryptogee | 0 | 14,009,306,428 | 100% | ||
teamsteem | 0 | 81,844,959,582 | 100% | ||
nanzo-scoop | 0 | 748,511,546,608 | 10% | ||
acidyo | 0 | 11,534,545,590,894 | 80% | ||
dan-atstarlite | 0 | 693,233,268,645 | 100% | ||
mummyimperfect | 0 | 9,241,525,252 | 10% | ||
kevinwong | 0 | 1,275,665,234,956 | 15% | ||
slickwilly | 0 | 305,174,988,551 | 51% | ||
ak2020 | 0 | 3,713,419,246 | 10% | ||
coinbitgold | 0 | 401,763,000 | 50% | ||
andrarchy | 0 | 1,544,138,462,823 | 100% | ||
kaylinart | 0 | 335,060,459,967 | 60% | ||
g-dubs | 0 | 1,515,088,706 | 2% | ||
emily-cook | 0 | 273,766,735 | 10% | ||
roelandp | 0 | 276,419,475,708 | 25% | ||
hitmeasap | 0 | 25,083,561,885 | 20% | ||
stealthtrader | 0 | 23,782,901,907 | 100% | ||
cdubendo | 0 | 30,405,403,088 | 100% | ||
anasya | 0 | 2,206,968,957 | 100% | ||
ausbitbank | 0 | 1,819,555,050,852 | 100% | ||
mrwang | 0 | 682,622,812 | 7.5% | ||
thelindvall | 0 | 89,736,407,418 | 100% | ||
jeffjagoe | 0 | 4,691,453,434 | 5% | ||
arcange | 0 | 40,132,366,509 | 3% | ||
exyle | 0 | 3,091,545,199,131 | 30% | ||
arconite | 0 | 5,320,374,148 | 7.5% | ||
raphaelle | 0 | 1,009,766,873 | 3% | ||
daynewright | 0 | 23,009,706,923 | 50% | ||
webdeals | 0 | 42,929,637,099 | 1% | ||
remlaps | 0 | 26,408,289,201 | 100% | ||
jamesbrown | 0 | 470,908,243,052 | 25% | ||
rainbowdash | 0 | 1,321,146,143 | 100% | ||
timcliff | 0 | 833,139,698,192 | 88% | ||
nickskywalker | 0 | 7,938,775,284 | 20% | ||
jphamer1 | 0 | 4,862,002,635,181 | 100% | ||
steemitqa | 0 | 52,260,450,759 | 25% | ||
fooblic | 0 | 16,611,525,689 | 99% | ||
scaredycatguide | 0 | 21,086,586,329 | 25% | ||
mr-meteorologist | 0 | 190,091,070 | 100% | ||
theb0red1 | 0 | 6,166,475,667 | 10% | ||
stevescoins | 0 | 4,840,745,859 | 75% | ||
netaterra | 0 | 65,541,335,441 | 25% | ||
mattclarke | 0 | 120,482,804,937 | 25% | ||
etcmike | 0 | 22,497,341,448 | 20% | ||
penguinpablo | 0 | 340,272,747,655 | 6% | ||
freeforever | 0 | 306,502,172,333 | 100% | ||
wakeupnd | 0 | 5,751,469,306 | 5% | ||
tftproject | 0 | 8,375,574,575 | 50% | ||
doitvoluntarily | 0 | 16,133,393,847 | 100% | ||
lk666 | 0 | 13,442,217,954 | 20% | ||
abh12345 | 0 | 41,293,703,625 | 8% | ||
cleateles | 0 | 72,492,009 | 5% | ||
justyy | 0 | 76,816,857,744 | 2.97% | ||
t-bot | 0 | 398,798,285,609 | 10% | ||
techslut | 0 | 90,779,450,613 | 20% | ||
steemtruth | 0 | 2,026,885,204 | 10% | ||
barton26 | 0 | 8,430,405,030 | 75% | ||
edb | 0 | 283,789,970 | 2.5% | ||
spaceginger | 0 | 10,171,120,387 | 30% | ||
mafeeva | 0 | 11,292,889,375 | 10% | ||
seablue | 0 | 8,841,996,929 | 100% | ||
clio | 0 | 441,081,627,441 | 100% | ||
v4vapid | 0 | 8,600,634,472,847 | 56% | ||
nspart | 0 | 3,145,994,187 | 25% | ||
geordieprepper | 0 | 2,182,196,892 | 25% | ||
darth-azrael | 0 | 29,943,119,273 | 25% | ||
ryivhnn | 0 | 19,712,628,167 | 62% | ||
aussiesteem | 0 | 4,506,286,732 | 25% | ||
da-dawn | 0 | 32,774,281,494 | 77% | ||
erikaflynn | 0 | 1,707,818,298 | 5% | ||
darth-cryptic | 0 | 1,892,100,582 | 25% | ||
gomatthew | 0 | 50,583,116,489 | 100% | ||
prime-cleric | 0 | 63,621,013,365 | 22% | ||
sudutpandang | 0 | 3,062,648,918 | 30% | ||
culturearise369 | 0 | 17,859,440,649 | 100% | ||
markkujantunen | 0 | 50,331,329,344 | 30% | ||
lances | 0 | 22,328,751,025 | 100% | ||
ackza | 0 | 12,849,670,682 | 100% | ||
diggndeeper.com | 0 | 1,968,297,797,020 | 100% | ||
melip | 0 | 52,524,866,475 | 20% | ||
blockops | 0 | 5,866,400,209,663 | 100% | ||
honeybeee | 0 | 588,065,099 | 98% | ||
borislavzlatanov | 0 | 121,528,006,454 | 100% | ||
danielsaori | 0 | 33,766,253,154 | 50% | ||
kunschj | 0 | 14,693,419,574 | 25% | ||
freebornsociety | 0 | 5,135,805,333 | 5% | ||
detlev | 0 | 4,131,426,945 | 1% | ||
miniature-tiger | 0 | 111,560,928,334 | 50% | ||
imperfect-one | 0 | 2,539,986,943 | 5% | ||
choogirl | 0 | 1,189,622,920 | 2.5% | ||
ma1neevent | 0 | 15,745,253,563 | 15% | ||
brewcitygardener | 0 | 38,046,030,437 | 100% | ||
tdiv7653 | 0 | 5,143,391,040 | 100% | ||
jerge | 0 | 189,157,785 | 100% | ||
arnel | 0 | 8,857,203,988 | 100% | ||
ak892n | 0 | 452,952,393 | 100% | ||
morph | 0 | 834,605,926 | 8% | ||
cryptocurator | 0 | 106,292,455,106 | 40% | ||
mvd | 0 | 117,277,190,640 | 100% | ||
jraysteem | 0 | 2,361,570,709 | 50% | ||
jagged | 0 | 837,320,484 | 100% | ||
lenmar | 0 | 161,034,139,272 | 100% | ||
valued-customer | 0 | 15,262,484,758 | 25% | ||
followbtcnews | 0 | 1,093,438,484,616 | 100% | ||
aleister | 0 | 60,017,349,453 | 50% | ||
jkkim | 0 | 27,068,039 | 10% | ||
farizal | 0 | 4,280,964,126 | 100% | ||
mys | 0 | 10,270,085,388 | 5% | ||
scandinavianlife | 0 | 9,382,583 | 25% | ||
tytran | 0 | 34,422,610,144 | 100% | ||
khunpoom | 0 | 163,830,802 | 25% | ||
byd | 0 | 29,380,063,828 | 100% | ||
stevelivingston | 0 | 35,781,368,511 | 25% | ||
tonyz | 0 | 23,109,138,974 | 18% | ||
wishmaiden | 0 | 82,466,144 | 5% | ||
abishai | 0 | 164,742,401 | 100% | ||
world5list | 0 | 120,381,829,565 | 100% | ||
tiandao | 0 | 7,217,661,829 | 100% | ||
galenkp | 0 | 273,714,470,322 | 100% | ||
ammonite | 0 | 42,073,475,711 | 100% | ||
sam99 | 0 | 2,951,580,210 | 10% | ||
pennsif | 0 | 65,993,963,639 | 18% | ||
evolved08gsr | 0 | 5,987,635,198 | 100% | ||
jonmagnusson | 0 | 4,475,207,543 | 25% | ||
chingpherd | 0 | 151,358,436 | 100% | ||
ew-and-patterns | 0 | 344,916,802,638 | 8% | ||
aurus | 0 | 160,620,184 | 100% | ||
gpenco | 0 | 14,335,792,013 | 100% | ||
vachemorte | 0 | 11,434,861,066 | 25% | ||
muhammadsabil | 0 | 131,223,349 | 100% | ||
mirhimayun | 0 | 428,617,749 | 25% | ||
whd | 0 | 5,252,905,444 | 5% | ||
wesphilbin | 0 | 281,668,982 | 1.5% | ||
lewis831 | 0 | 4,096,648,270 | 100% | ||
grapthar | 0 | 44,642,387,275 | 100% | ||
naseerbhat | 0 | 4,767,962,430 | 100% | ||
warfeed | 0 | 360,364,189 | 37.5% | ||
carterwright | 0 | 585,042,074 | 75% | ||
britcoins | 0 | 1,612,314,497 | 100% | ||
auditoryorgasms | 0 | 3,122,919,260 | 100% | ||
kiokizz | 0 | 1,271,424,004 | 5% | ||
mcoinz79 | 0 | 1,177,224,660,541 | 100% | ||
bien | 0 | 3,536,563,240 | 100% | ||
bubke | 0 | 405,879,080,048 | 100% | ||
vallesleoruther | 0 | 58,856,048,957 | 100% | ||
abdulshakun | 0 | 152,444,525 | 100% | ||
jacekw | 0 | 19,488,828,909 | 100% | ||
thinkkniht | 0 | 11,510,673,481 | 100% | ||
rafalski | 0 | 3,554,897,757 | 4.75% | ||
felt.buzz | 0 | 2,677,206,029 | 2.5% | ||
synrg | 0 | 214,570,218,246 | 100% | ||
msp-lovebot | 0 | 331,186,135,363 | 50% | ||
neuromancer | 0 | 5,563,031,756 | 100% | ||
stayoutoftherz | 0 | 214,085,599,235 | 40% | ||
jjprac | 0 | 14,963,142,091 | 90% | ||
gamefiles | 0 | 424,682,671,213 | 100% | ||
bronkong | 0 | 85,906,618,019 | 54% | ||
vikisecrets | 0 | 297,402,415,872 | 30% | ||
drmaizo | 0 | 2,466,491,999 | 10% | ||
georgeboya | 0 | 52,767,490,349 | 35% | ||
steemitri | 0 | 151,632,558,320 | 100% | ||
tbashir09 | 0 | 551,901,060 | 100% | ||
msp-shanehug | 0 | 42,258,917,987 | 15% | ||
resiliencia | 0 | 496,555,006,200 | 100% | ||
taylor.swift | 0 | 172,448,152 | 48% | ||
supriya1993 | 0 | 1,908,569,860 | 50% | ||
nobutsd | 0 | 428,688,486 | 100% | ||
jasonbu | 0 | 12,195,564,654 | 25% | ||
msp-waves | 0 | 1,197,364,850,719 | 100% | ||
vimukthi | 0 | 2,542,026,381 | 100% | ||
abhishek587 | 0 | 0 | 100% | ||
dobroman | 0 | 5,056,006,502 | 100% | ||
avesa | 0 | 6,213,468,892 | 33% | ||
onetin84 | 0 | 45,549,620,064 | 25% | ||
monash | 0 | 320,396,174 | 64% | ||
revo | 0 | 114,318,935,285 | 100% | ||
kromtar | 0 | 43,219,331,872 | 18% | ||
mrsquiggle | 0 | 299,501,946,971 | 100% | ||
tipu | 0 | 8,266,317,323,041 | 10% | ||
reekadoh | 0 | 396,315,862 | 100% | ||
sportschain | 0 | 58,393,826 | 6% | ||
onartbali | 0 | 14,552,522,643 | 100% | ||
nurhayati | 0 | 657,156,652 | 15% | ||
wholeself-in | 0 | 20,199,508,676 | 100% | ||
mooncryption | 0 | 1,247,722,851 | 70% | ||
tonygreene113 | 0 | 5,368,453,034 | 10% | ||
torico | 0 | 10,391,661,380 | 40% | ||
eastmael | 0 | 32,960,958,933 | 100% | ||
drfunk13 | 0 | 194,672,067 | 33% | ||
jamesbarraclough | 0 | 662,704,022 | 100% | ||
robertoueti | 0 | 1,549,037,137 | 3% | ||
f1assistance | 0 | 2,996,457,350 | 100% | ||
mutitum | 0 | 2,384,502,017 | 50% | ||
revisesociology | 0 | 144,537,837,838 | 40% | ||
kettleandseagull | 0 | 24,071,709,768 | 100% | ||
dobartim | 0 | 124,554,798,236 | 2% | ||
espoem | 0 | 88,079,836,338 | 40% | ||
bipolar | 0 | 2,519,192,052 | 33% | ||
steembet.asia | 0 | 460,211,606 | 100% | ||
owain82220 | 0 | 267,748,817,473 | 100% | ||
outspoken | 0 | 578,399,555 | 100% | ||
syami | 0 | 503,717,160 | 100% | ||
hellvetica | 0 | 106,743,922 | 100% | ||
amanardis | 0 | 1,999,559,909 | 100% | ||
synergy-now | 0 | 15,231,684,913 | 100% | ||
cryptoandzen | 0 | 4,261,972,535 | 20% | ||
aldoman-75 | 0 | 5,912,788,334 | 50% | ||
fatkat | 0 | 64,616,010,786 | 100% | ||
nathanpieters | 0 | 3,294,094,767 | 100% | ||
mamqmuqit | 0 | 606,298,984 | 100% | ||
stevejhuggett | 0 | 8,609,002,800 | 20% | ||
leejhoops | 0 | 171,586,771 | 33% | ||
lucyford | 0 | 173,640,068 | 33% | ||
christianwindley | 0 | 158,327,549 | 33% | ||
momskitchen | 0 | 119,429,595 | 60% | ||
pataty69 | 0 | 11,868,402,540 | 10% | ||
melvinlumacad | 0 | 1,824,252,752 | 100% | ||
feuerbolt | 0 | 1,022,289,986 | 100% | ||
kimchi-king | 0 | 1,334,133,427 | 50% | ||
shahab3211 | 0 | 670,792,481 | 100% | ||
msp-mods | 0 | 771,843,256,414 | 100% | ||
captainklaus | 0 | 206,362,766,530 | 100% | ||
msp-music | 0 | 115,243,810,412 | 35% | ||
natachayacinthe1 | 0 | 13,852,338,257 | 100% | ||
mslily | 0 | 88,011,525 | 30% | ||
dkid14 | 0 | 46,894,187,653 | 100% | ||
new-world-steem | 0 | 27,842,283,230 | 100% | ||
red-rose | 0 | 0 | 100% | ||
steemph.manila | 0 | 599,313,591 | 5% | ||
seanlloyd | 0 | 184,872,984 | 1% | ||
yulem | 0 | 3,376,028,983 | 100% | ||
kslo | 0 | 5,150,240,761 | 100% | ||
craigahamilton | 0 | 191,524,225 | 5% | ||
smartsteem | 0 | 14,559,591,847,525 | 25% | ||
etherpunk | 0 | 160,561,349,731 | 100% | ||
chireerocks | 0 | 818,040,088 | 5% | ||
travoved | 0 | 56,691,066,781 | 35% | ||
mytechtrail | 0 | 14,827,041,864 | 25% | ||
wallacecarranza | 0 | 607,251,369 | 100% | ||
wilerv | 0 | 184,211,923 | 100% | ||
alpayasteem | 0 | 7,105,164,772 | 30% | ||
open-asset | 0 | 237,507,939 | 50% | ||
kernelillo | 0 | 3,261,035,801 | 100% | ||
lebin | 0 | 339,947,055,238 | 20% | ||
nokodemion | 0 | 4,862,302,610 | 100% | ||
aejackson | 0 | 11,639,846,349 | 100% | ||
blowmywhistle | 0 | 206,888,280 | 100% | ||
markaustin | 0 | 1,577,575,703 | 10% | ||
howiemac | 0 | 8,324,217,214 | 100% | ||
enjoyinglife | 0 | 429,732,464,920 | 100% | ||
fabianklauder | 0 | 74,111,444,855 | 51% | ||
regards | 0 | 611,675,426 | 100% | ||
fortunex | 0 | 1,942,841,080 | 55% | ||
enurmik | 0 | 153,292,569 | 100% | ||
toddoto | 0 | 1,412,064,262 | 100% | ||
gwomibulusdutse | 0 | 1,712,141,000 | 100% | ||
amos811 | 0 | 557,884,725 | 100% | ||
elbrava | 0 | 1,507,560,880 | 55% | ||
neexal | 0 | 179,264,262 | 50% | ||
sahinn1 | 0 | 554,619,010 | 100% | ||
stosunov | 0 | 527,438,566 | 100% | ||
mattiarinaldoni | 0 | 0 | 1% | ||
jacobyu | 0 | 103,488,481,518 | 100% | ||
gillianpearce | 0 | 52,604,629,161 | 30% | ||
boggan | 0 | 159,185,118 | 53% | ||
patrickshar | 0 | 21,063,466 | 10% | ||
fun2learn | 0 | 1,225,621,294 | 2% | ||
fracasgrimm | 0 | 3,506,479,307 | 100% | ||
nealmcspadden | 0 | 3,632,808,090,992 | 100% | ||
igel2017 | 0 | 12,857,045,663 | 100% | ||
patricklancaster | 0 | 12,004,351,422 | 70% | ||
pharmacy-jinni | 0 | 6,301,807,636 | 25% | ||
pearlkel | 0 | 536,144,913 | 100% | ||
steemboat-steve | 0 | 467,984,681 | 100% | ||
fusionnuclear | 0 | 365,465,449 | 100% | ||
jarvie | 0 | 201,247,037,403 | 77% | ||
pacolimited | 0 | 18,019,760,514 | 100% | ||
casberp | 0 | 8,860,778,225 | 1.05% | ||
gandalfthewhite | 0 | 413,533,779 | 100% | ||
nnaraoh | 0 | 154,484,529,172 | 100% | ||
sargoon | 0 | 3,683,535,506 | 50% | ||
tobias-g | 0 | 237,951,040,190 | 50% | ||
biolegria | 0 | 169,062,014 | 10% | ||
steem-hikers | 0 | 102,768,286 | 5% | ||
edprivat | 0 | 10,303,998,916 | 3.96% | ||
shahbazfayyaz | 0 | 0 | 20% | ||
randomwanderings | 0 | 2,299,996,227 | 15% | ||
heajin | 0 | 472,914,390 | 100% | ||
danieldyemusic | 0 | 27,476,848,103 | 100% | ||
didic | 0 | 10,061,064,822 | 20% | ||
honestry | 0 | 9,650,075 | 30% | ||
operahoser | 0 | 63,490,896,349 | 100% | ||
elijah-blogs | 0 | 200,695,470 | 40% | ||
asonintrigue | 0 | 0 | 10% | ||
wwwfernand | 0 | 106,801,341 | 100% | ||
d0zer | 0 | 26,209,565,884 | 100% | ||
zotopower | 0 | 365,284,202 | 50% | ||
i5heu | 0 | 555,587,072 | 100% | ||
gohenry | 0 | 4,124,219,936 | 100% | ||
sashas | 0 | 3,326,406,839 | 100% | ||
snackaholic | 0 | 49,483,912,663 | 100% | ||
barge | 0 | 91,032,979,222 | 100% | ||
asgarth | 0 | 984,623,237,218 | 100% | ||
liberviarum | 0 | 465,154,719 | 15% | ||
benleemusic | 0 | 174,295,993 | 5% | ||
markkennard | 0 | 566,781,699 | 100% | ||
jbrrd | 0 | 189,835,790 | 40% | ||
homestead-guru | 0 | 2,174,600,845 | 10% | ||
futurecurrency | 0 | 15,437,743,525 | 57% | ||
g4fun | 0 | 388,982,179 | 100% | ||
cryptictruth | 0 | 28,081,774,625 | 100% | ||
jagoe | 0 | 11,657,172,162 | 12% | ||
wildarms65 | 0 | 1,721,814,312 | 100% | ||
makcl | 0 | 696,505,305 | 100% | ||
cryptofuwealth | 0 | 93,000,986 | 11% | ||
afmeulaboh | 0 | 778,450,769 | 100% | ||
ciberghost | 0 | 577,358,612 | 100% | ||
halmex | 0 | 558,980,428 | 100% | ||
mrbloom | 0 | 307,883,783 | 100% | ||
retinox | 0 | 59,473,116,719 | 50% | ||
jhaveapostol | 0 | 490,608,179 | 100% | ||
jonazz747 | 0 | 554,638,468 | 100% | ||
jabali2004 | 0 | 561,687,470 | 100% | ||
bitpizza | 0 | 5,178,376,530 | 100% | ||
donekim | 0 | 3,413,620,002 | 100% | ||
antisocialist | 0 | 2,083,691,786 | 100% | ||
syfaer | 0 | 563,964,971 | 100% | ||
thesambafest | 0 | 183,656,803 | 100% | ||
evanrodgers | 0 | 901,725,109 | 50% | ||
beleg | 0 | 1,845,387,493 | 5% | ||
bitgion | 0 | 323,789,156 | 100% | ||
unique18 | 0 | 368,835,295 | 100% | ||
analyzer | 0 | 107,427,735 | 100% | ||
bagatuk | 0 | 246,566,887 | 50% | ||
nomadicsoul | 0 | 157,380,202,030 | 100% | ||
summisimeon | 0 | 2,068,865,355 | 100% | ||
etorid | 0 | 566,639,793 | 100% | ||
ivansnz | 0 | 258,366,667,709 | 100% | ||
ahmedaman | 0 | 441,800,658 | 100% | ||
rawutah | 0 | 1,105,625,029,522 | 100% | ||
ceocarlos | 0 | 373,929,484 | 70% | ||
philippekiene | 0 | 3,856,748,064 | 25% | ||
gadrian | 0 | 63,537,116,273 | 50% | ||
allover | 0 | 22,989,711,608 | 100% | ||
brownsmith | 0 | 10,569,606 | 10% | ||
themightyvolcano | 0 | 53,261,184,986 | 100% | ||
iseeyouvee | 0 | 5,413,769,006 | 100% | ||
rcr.bis | 0 | 186,929,657 | 50% | ||
aduwahsp | 0 | 421,668,798 | 75% | ||
rollandthomas | 0 | 34,944,949,581 | 100% | ||
garrettwallace | 0 | 485,962,500 | 4% | ||
nancybriti | 0 | 17,646,336,779 | 100% | ||
thejbullfrog | 0 | 205,992,726 | 100% | ||
dogeadventures | 0 | 717,406,876 | 100% | ||
taywilkins | 0 | 146,315,855 | 100% | ||
stormrider | 0 | 588,963,075 | 100% | ||
goldiemr | 0 | 538,807,044 | 100% | ||
saboin | 0 | 6,880,246,607 | 2.5% | ||
wirago | 0 | 7,720,166,476 | 100% | ||
zakaria14 | 0 | 429,531,531 | 100% | ||
andrewma | 0 | 47,069,581 | 0.59% | ||
yandakuala | 0 | 0 | 2% | ||
scintillaic | 0 | 146,619,907 | 100% | ||
feedmytwi | 0 | 582,767,892 | 100% | ||
eunma | 0 | 386,566,125 | 100% | ||
bafi | 0 | 398,303,770,204 | 100% | ||
edgarbevens | 0 | 198,840,305 | 50% | ||
superlao | 0 | 6,821,112,770 | 100% | ||
lazybird | 0 | 71,303,586 | 20% | ||
ilikeit | 0 | 3,011,485,323 | 100% | ||
menerva | 0 | 218,449,608,410 | 100% | ||
thally | 0 | 543,346,372,189 | 100% | ||
dayanne | 0 | 1,331,873,100 | 100% | ||
diabonua | 0 | 18,573,255,217 | 100% | ||
zedpal | 0 | 97,680,027 | 100% | ||
blockchainstudio | 0 | 183,262,911,535 | 100% | ||
nateaguila | 0 | 717,934,941,545 | 30% | ||
oleblueeye | 0 | 672,559,501 | 100% | ||
aaronhawk | 0 | 40,189,385,836 | 100% | ||
alexworld | 0 | 1,163,127,894 | 50% | ||
fernandosoder | 0 | 81,731,564 | 100% | ||
therabbitzone | 0 | 605,245,467 | 50% | ||
sanne | 0 | 199,380,562 | 100% | ||
agoha | 0 | 205,643,723 | 50% | ||
commonlaw | 0 | 4,186,531,383 | 35% | ||
hsidik | 0 | 201,440,396 | 20% | ||
sagesigma | 0 | 251,451,266 | 1% | ||
sarez | 0 | 651,915,400 | 3.5% | ||
fitat40 | 0 | 23,580,785,896 | 10% | ||
moneybaby | 0 | 2,084,399,153 | 5% | ||
supsnehal | 0 | 179,725,062 | 50% | ||
apshamilton | 0 | 116,083,879,874 | 60% | ||
longer | 0 | 850,879,850 | 50% | ||
steemforest | 0 | 6,808,041,091 | 100% | ||
kafupraise | 0 | 225,024,875 | 50% | ||
cybernodle | 0 | 553,656,751 | 100% | ||
loopygif | 0 | 545,883,186 | 100% | ||
nailyourhome | 0 | 334,357,859 | 2.4% | ||
chronik-n-coffee | 0 | 592,798,695 | 100% | ||
donald.porter | 0 | 33,717,346,688 | 100% | ||
allbit | 0 | 2,096,225,132 | 100% | ||
yomismosoy | 0 | 241,128,563 | 24% | ||
thecryptodwarf | 0 | 3,582,386,342 | 100% | ||
misterioyciencia | 0 | 537,432,976 | 100% | ||
boukdir | 0 | 131,262,981 | 16% | ||
mrandreas | 0 | 197,684,897 | 50% | ||
ubasti | 0 | 181,018,254 | 100% | ||
digi-me | 0 | 8,417,176,449 | 100% | ||
hamismsf | 0 | 134,297,664,882 | 25% | ||
dailyprobot | 0 | 1,948,283,889 | 10% | ||
glory7 | 0 | 37,904,653,443 | 100% | ||
volare511 | 0 | 1,921,610,737 | 100% | ||
kayamanofficial | 0 | 545,052,468 | 100% | ||
afknchill | 0 | 206,945,327 | 100% | ||
deepdives | 0 | 169,874,219,606 | 100% | ||
luc.real | 0 | 208,704,885 | 100% | ||
dianation | 0 | 171,679,631 | 50% | ||
jayplayco | 0 | 147,453,422,171 | 100% | ||
cubapl | 0 | 2,141,006,664 | 100% | ||
minimining | 0 | 3,068,717,986 | 15% | ||
abduljalil.mbo | 0 | 2,428,597,501 | 6% | ||
nadjette | 0 | 16,089,516 | 100% | ||
morpheu | 0 | 557,030,905 | 100% | ||
c-squared | 0 | 12,583,688,205 | 5% | ||
mops2e | 0 | 468,231,071 | 32% | ||
duarte9sousa | 0 | 416,407,736 | 1.03% | ||
ab123 | 0 | 69,559,762 | 20% | ||
altonos | 0 | 7,889,775,414 | 50% | ||
torrey.blog | 0 | 25,093,419,357 | 50% | ||
munhenhos | 0 | 725,855,452 | 10% | ||
smartkid809 | 0 | 56,444,581 | 28% | ||
asforex | 0 | 368,918,262 | 100% | ||
chike4545 | 0 | 175,926,701 | 100% | ||
chrisrice | 0 | 15,741,491,335 | 100% | ||
emaferice | 0 | 5,183,541,332 | 100% | ||
spielekiste | 0 | 668,129,689 | 100% | ||
hornetmusic | 0 | 1,218,224,591 | 100% | ||
viral-violet | 0 | 296,789,982 | 25% | ||
billytercero | 0 | 14,515,213,652 | 100% | ||
laissez-faire | 0 | 81,481,461 | 100% | ||
bhaski | 0 | 783,896,296 | 10% | ||
zaclucasrice | 0 | 5,512,917,636 | 100% | ||
delegate4upvot | 0 | 83,373,940 | 1.6% | ||
courtneyjensen | 0 | 255,730,590 | 100% | ||
marconisnghtmr | 0 | 278,568,004 | 100% | ||
bigcherry | 0 | 564,277,013 | 100% | ||
perfspots | 0 | 4,196,034,571 | 100% | ||
humanism | 0 | 348,017,895 | 100% | ||
truthbot | 0 | 37,246,444,731 | 100% | ||
lion200 | 0 | 38,725,531,353 | 50% | ||
anti-bully | 0 | 1,931,458,536 | 100% | ||
teamcn-shop | 0 | 2,151,704,372 | 3.65% | ||
tyrnannoght | 0 | 3,272,239,743 | 100% | ||
gungunkrishu | 0 | 113,794,749,891 | 100% | ||
brianoflondon | 0 | 49,016,768,342 | 25% | ||
priyanarc | 0 | 524,774,852 | 0.75% | ||
astroboycambodia | 0 | 171,931,883 | 25% | ||
jakals82 | 0 | 119,380,385 | 40% | ||
olatunjipaul | 0 | 99,588,840 | 100% | ||
soilder | 0 | 305,743,200 | 100% | ||
matahayati | 0 | 69,149,316 | 15% | ||
darekem | 0 | 119,243,756 | 100% | ||
mistia | 0 | 5,675,665,151 | 100% | ||
tomit | 0 | 357,745,818 | 100% | ||
lil-layla | 0 | 212,001,932 | 25% | ||
michealb | 0 | 818,093,699,868 | 14% | ||
xcountytravelers | 0 | 1,034,648,900 | 3.75% | ||
theycallmedan | 0 | 34,426,922,213,859 | 80% | ||
goldmanmorgan | 0 | 1,335,337,113 | 100% | ||
missaj | 0 | 0 | 1% | ||
sorin.lite | 0 | 19,936,608,027 | 49% | ||
themightysquid | 0 | 6,946,947,032 | 100% | ||
contestkings | 0 | 347,019,066,371 | 50% | ||
crowdfunder | 0 | 331,610,318 | 100% | ||
jchappe | 0 | 53,195,852 | 50% | ||
gmtester | 0 | 564,853,473 | 100% | ||
carlosl | 0 | 10,122,534,700 | 100% | ||
jpbliberty | 0 | 132,379,891,790 | 25% | ||
self-track | 0 | 30,312,869,586 | 100% | ||
retrodroid | 0 | 152,036,020 | 25% | ||
steem-on-2020 | 0 | 2,056,510,550 | 100% | ||
wherein | 0 | 1,377,699,524,056 | 34.5% | ||
cinematographer | 0 | 77,577,632 | 20% | ||
gmdatacenter | 0 | 187,680,067 | 100% | ||
tucky | 0 | 3,920,049,966 | 100% | ||
tigerrkg | 0 | 24,132,797,162 | 100% | ||
majowonline | 0 | 1,992,775,460 | 20% | ||
dfen | 0 | 817,321,340 | 100% | ||
steem.life | 0 | 449,251,793 | 50% | ||
iskenderk | 0 | 1,811,919,180 | 10% | ||
pamahdoo | 0 | 0 | 6% | ||
roastroast | 0 | 216,360,842 | 100% | ||
bilderkiste | 0 | 921,131,229 | 100% | ||
reedhhw | 0 | 48,601,991 | 50% | ||
rubberduckiemom | 0 | 1,866,958,449 | 15% | ||
kryptonauta | 0 | 107,083,534 | 3% | ||
awaken7 | 0 | 1,124,554,665 | 100% | ||
skramatters | 0 | 21,272,673,957 | 100% | ||
davaocity | 0 | 331,378,318 | 100% | ||
begonethot | 0 | 5,316,438,033 | 100% | ||
binance2 | 0 | 741,199,390,525 | 78.08% | ||
tyruspaladium | 0 | 859,165,306 | 100% | ||
moneybabe | 0 | 70,036,958 | 50% | ||
ajks | 0 | 57,388,374,365 | 100% | ||
musicpro | 0 | 547,983,690 | 100% | ||
tyrzone.tin01 | 0 | 1,135,096,124 | 100% | ||
okaythisisepic | 0 | 805,357,328 | 100% | ||
thesplinterlands | 0 | 743,493,853 | 95% | ||
scoopstakes | 0 | 22,175,684,807 | 10% | ||
nanzo-snaps | 0 | 40,833,821,992 | 10% | ||
brujas | 0 | 4,237,441,435 | 100% | ||
monster-one | 0 | 1,079,958,646 | 10% | ||
atom-jp | 0 | 53,041,890,893 | 100% | ||
goodcontentbot | 0 | 105,372,368 | 50% | ||
hankreirden | 0 | 114,018,795 | 5% | ||
rafaelmonteiro | 0 | 410,867,813 | 10% | ||
darhainer | 0 | 94,545,083 | 5% | ||
heyhaveyamet | 0 | 9,798,504,097 | 15% | ||
constant-flux | 0 | 198,143,436 | 67.5% | ||
waleedtee | 0 | 289,967,811,535 | 100% | ||
mindanao | 0 | 0 | 100% | ||
dorian-dev | 0 | 3,287,008,537 | 100% | ||
greenhouseradio | 0 | 7,646,187,882 | 100% | ||
killerbot | 0 | 159,367,149 | 25% | ||
tyrzone.tin00 | 0 | 541,004,820 | 100% | ||
kreesher | 0 | 260,988,764 | 40% | ||
thewhalehunter | 0 | 50,896,442 | 50% | ||
cpt-sparrow | 0 | 26,659,347,709 | 100% | ||
holydog | 0 | 16,290,244,745 | 100% | ||
cpl-17 | 0 | 2,710,600,068 | 13.61% | ||
habib0x | 0 | 148,888,275 | 100% | ||
russia-btc | 0 | 128,599,891,479 | 100% | ||
german.news | 0 | 6,622,857,306 | 50% | ||
vcdragon | 0 | 35,995,043,312 | 100% | ||
ruggedbeardmedia | 0 | 157,874,556 | 100% | ||
luckyvonconrad | 0 | 248,998,012 | 50% | ||
chunkysoupsvc | 0 | 7,126,600,779 | 100% | ||
tyrzone.tin02 | 0 | 2,323,403,536 | 100% | ||
steemadventures | 0 | 133,890,884 | 80% | ||
nerdvania | 0 | 202,224,892 | 100% | ||
mellowrain | 0 | 230,382,193 | 100% | ||
bonfirepit | 0 | 351,881,578 | 100% | ||
digitalplaya | 0 | 203,211,758 | 100% | ||
mrbarckhoff | 0 | 51,422,193 | 25% | ||
contrabourdon | 0 | 432,024,996,286 | 100% | ||
mohaaking | 0 | 83,596,108 | 25% | ||
gmtester2 | 0 | 556,990,214 | 100% | ||
tyrzone.tin03 | 0 | 4,664,136,810 | 100% | ||
tyrzone.tin04 | 0 | 2,169,237,549 | 100% | ||
spoiledvisuals | 0 | 199,908,935 | 100% | ||
enjoyeverything | 0 | 355,762,363 | 100% | ||
concreteshallows | 0 | 145,345,920 | 100% | ||
hungerstream | 0 | 523,350,489 | 50% | ||
krunkypuram | 0 | 17,638,710,485 | 100% | ||
celine-robichaud | 0 | 100,276,340 | 50% | ||
frugalgamer | 0 | 204,769,228 | 100% | ||
crinkleberrydlt | 0 | 203,457,501 | 100% | ||
povertyproject | 0 | 198,866,263 | 100% | ||
gamersayu907 | 0 | 198,832,672 | 0.75% | ||
stormriders | 0 | 199,507,974 | 100% | ||
herminiaharbo | 0 | 688,622,420 | 100% | ||
render-obsolete | 0 | 20,675,387,846 | 100% | ||
bitcoingodmode | 0 | 512,987,006 | 75% | ||
theresteemer5000 | 0 | 206,426,242 | 100% | ||
blank7 | 0 | 152,586,688,333 | 100% | ||
tyrzone.tin05 | 0 | 1,476,717,700 | 100% | ||
crivec68 | 0 | 91,695,517 | 1.25% | ||
greenhousegamers | 0 | 260,096,759 | 50% | ||
genuinehuman | 0 | 8,159,232 | 1.5% | ||
deeanndmathews | 0 | 317,176,564 | 2.5% | ||
communitycharge | 0 | 209,413,651 | 100% | ||
imaloser | 0 | 46,011,716 | 50% | ||
banvie | 0 | 32,881,623,872 | 100% | ||
kicchudop1434 | 0 | 48,198,093 | 50% | ||
abello | 0 | 2,664,250,114 | 100% | ||
abojasim880 | 0 | 1,342,882 | 100% | ||
cyguy | 0 | 6,919,800,895 | 100% | ||
steemterminal | 0 | 4,616,438,812 | 15% | ||
hertz300 | 0 | 559,785,880 | 20% | ||
renz.rubio | 0 | 2,643,528,413 | 100% | ||
photocurate | 0 | 23,793,445,015 | 100% | ||
erixink | 0 | 2,464,560,568 | 100% | ||
pollingstation | 0 | 212,576,521 | 100% | ||
steem.polls | 0 | 207,043,076 | 100% | ||
koliunia | 0 | 164,308,663 | 100% | ||
foodpolls | 0 | 204,981,017 | 100% | ||
jongreat | 0 | 195,462,322 | 100% | ||
gamemods | 0 | 2,596,925,710 | 33% | ||
the.circle | 0 | 26,792,179,894 | 22.5% | ||
cryptopolls | 0 | 195,578,982 | 80% | ||
tvpolls | 0 | 179,901,954 | 50% | ||
gamerpolls | 0 | 178,127,654 | 50% | ||
shimozurdo | 0 | 67,777,022 | 100% | ||
kgswallet | 0 | 1,101,958,824 | 20% | ||
kgcoin | 0 | 251,337,086 | 1% | ||
captain.palnet | 0 | 798,986,918 | 55% | ||
dera123pal | 0 | 193,515,194 | 100% | ||
r-pal | 0 | 541,680,333 | 100% | ||
palvoter | 0 | 510,063,444 | 100% | ||
mini-v | 0 | 461,687,946 | 100% | ||
cannabiscafe | 0 | 168,363,350 | 50% | ||
marijuanamemes | 0 | 177,577,610 | 50% | ||
chrono.pal | 0 | 1,636,000,974 | 100% | ||
penpals | 0 | 502,000,457 | 50% | ||
arenatoken | 0 | 961,588,791 | 100% | ||
hyborian-strain | 0 | 1,780,871,711 | 30% | ||
zaku-pal | 0 | 542,040,589 | 100% | ||
palexplorers | 0 | 122,314,873 | 100% | ||
grzekry | 0 | 243,998,010 | 100% | ||
revise.leo | 0 | 261,656,018 | 40% | ||
echobourdon | 0 | 3,026,863,400 | 100% | ||
brutoken | 0 | 295,015,470 | 100% | ||
tyrzone.cop00 | 0 | 628,743,084 | 100% | ||
shark29 | 0 | 1,751,625,952 | 100% | ||
ericetchen | 0 | 2,150,591,397 | 2.16% | ||
tyrzone.cop01 | 0 | 231,798,595 | 100% | ||
hayalet | 0 | 1,969,607,013 | 100% | ||
escapadesupplies | 0 | 206,488,015 | 100% | ||
karviline | 0 | 89,457,534 | 100% | ||
penit | 0 | 1,439,862,753 | 100% | ||
thewhitelist | 0 | 478,267,014 | 20% | ||
gmpadlock | 0 | 33,230,958 | 100% | ||
tyrzone.cop02 | 0 | 429,390,564 | 100% | ||
yapcat | 0 | 2,328,838,204 | 100% | ||
cnvote | 0 | 74,455,259,954 | 20% | ||
filling-up | 0 | 250,504,333,702 | 100% | ||
madescape91 | 0 | 0 | 100% |
I didn't buy a tipu vote. He's curating me. Also, if you're going to buy votes consider tipu as they aren't just a bidbot but also do some manual curation.
author | aggroed |
---|---|
permlink | re-aggroed-understanding-steem-nodes-20190912t184617922z |
category | nodes |
json_metadata | {"tags":["nodes"],"app":"steemit/0.1"} |
created | 2019-09-12 18:46:18 |
last_update | 2019-09-12 18:46:18 |
depth | 1 |
children | 7 |
last_payout | 2019-09-19 18:46: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 | 157 |
author_reputation | 1,343,335,086,633,295 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,515,968 |
net_rshares | 85,923,018,485 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stealthtrader | 0 | 22,850,933,293 | 100% | ||
mys | 0 | 10,260,125,587 | 5% | ||
elbrava | 0 | 1,491,013,247 | 55% | ||
cryptictruth | 0 | 29,855,252,597 | 100% | ||
donald.porter | 0 | 21,465,693,761 | 65% |
Thank you for the summaries @aggroed. It helped me and I enjoyed reading it 😀 **P.S.** @smartsteem is also starting to do manual curation.
author | chrisrice |
---|---|
permlink | pxqvnf |
category | nodes |
json_metadata | {"tags":["nodes"],"users":["aggroed","smartsteem"],"app":"steemit/0.1"} |
created | 2019-09-13 00:49:24 |
last_update | 2019-09-13 00:49:24 |
depth | 2 |
children | 5 |
last_payout | 2019-09-20 00:49:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.066 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 140 |
author_reputation | 70,462,754,167,857 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 90,524,158 |
net_rshares | 579,485,658,546 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smartsteem | 0 | 579,485,658,546 | 1% |
100% manual curation!
author | smartsteem |
---|---|
permlink | pxrjxm |
category | nodes |
json_metadata | {"tags":["nodes"],"app":"steemit/0.1"} |
created | 2019-09-13 09:34:33 |
last_update | 2019-09-13 09:34:33 |
depth | 3 |
children | 4 |
last_payout | 2019-09-20 09:34: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 | 21 |
author_reputation | 157,838,860,587,218 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,533,383 |
net_rshares | 0 |
tipu never gave a ROI in the first place ... maybe back when steem was still at $7 but back then i didnt even know what a bidbot was ... (i did some numbers a while ago, over a year i think and there's about ZERO of them who were giving actual roi on the vote itself as the upvote includes the curation they would get and the author won't lol ... its a bit of a sham there from the start, i still remember the ones who did ... and they dont anymore, but there's new ones maybe those do ... it's business, its money, what would one expect ? *"please PAY but dont make money cos that's bad ?"* ... doesnt sound very humane-logic to me :D you're getting paid $50 for this btw https://media.giphy.com/media/4ml290TZ35zOM/giphy.gif j/k, great post, thanks (not kidding about the other stuff ofourse ... they really didnt, i checked it for months down to the many digits on several (the ones i could afford :) i know i know, i need to get me an own-gif but first i DAO that i be granted $5000 a day to license the official steemit flag : https://youtu.be/b4-qdQnXzlU (c) me the title minister of quotations , obnoxious bastard *Free speech was meant to be free for all, it is either absolutely free or it is absolutely not* (me) *Let me enlighten you,rules exist to discipline oneself, do not force them on someone else* (Kongo - Ars nova cadenza) throw in another five mille and i'll make you a mascotte too https://youtu.be/8z04l_tSM3M NOT !!!! :) last thing i ever wanna get involved in is politics ... all that handshaking and saying what everyone wants to hear to get elected ... i think i'm genetically unable as a mutant living under a rock on mars to do that anyway ANYWAY .... in-crowd is for the in-crowd ... i wouldn't feel at home there anyway, so anyway i think i forgot the point of what i wanted to say by the time i posted the second vid but the first point i made i made before that (and then usually someone goes like WHE THE FUCK ARE YOU and me like 'noboby' and they like WHY ARE YOU TALKING and me like cuz u full of shit (not you in this case, but generally speaking ...) and by then i have crossed ten timelines and my hyper-threaded brain leaves them with no choice but to start a debate on how much money you got and gremmarnazism ... (its how presidential debates are won when they run out of arguments) or slap you around with degrees, as if that means you *understand* and not just learned ... schools are for learning, not for learning how to think see how i drift #offtopic when i yap too long in one streak and i try not to, and i try to keep Sarcasticat (one of the people in my head) to speak to a minimum but some people just give me an allergic reaction (not you in this case) and then and thus and so, let it be spoken that it was said ... Huh ? still not out of RC ? (edit3) .. my rattle must be broken today ... well the flag is GPL/CCBY if anyone finds a use for it, no need to pay (xept a few million dollar votes ofc... :D) but 'mister Triton' is not as i intend to use him in videos and hopefully a game later ... and that said i think that's all that was to be said ... for now ... http://giphygifs.s3.amazonaws.com/media/dZBtIEhedSWuQ/giphy.gif (the Triton logo is the Triton logo (https://demozoo.org/sceners/336/) and will obviously not be used if its for a game ... jeezes, these days, all hail FT2 !)
author | yapcat |
---|---|
permlink | pxutwa |
category | nodes |
json_metadata | {"tags":["nodes","offtopic"],"image":["https://media.giphy.com/media/4ml290TZ35zOM/giphy.gif","https://img.youtube.com/vi/b4-qdQnXzlU/0.jpg","https://img.youtube.com/vi/8z04l_tSM3M/0.jpg","http://giphygifs.s3.amazonaws.com/media/dZBtIEhedSWuQ/giphy.gif"],"app":"steemit/0.1","links":["https://youtu.be/b4-qdQnXzlU","https://youtu.be/8z04l_tSM3M","https://demozoo.org/sceners/336/"]} |
created | 2019-09-15 04:02:36 |
last_update | 2019-09-15 04:50:42 |
depth | 2 |
children | 0 |
last_payout | 2019-09-22 04:02: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 | 3,364 |
author_reputation | -721,279,119,965 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,587,702 |
net_rshares | 0 |
Thanks for the great explanation for non-devs. This is the first time I've properly understood Steem nodes.
author | apshamilton |
---|---|
permlink | re-aggroed-pygek1 |
category | nodes |
json_metadata | {"tags":["nodes"],"app":"steempeak/1.17.1"} |
created | 2019-09-26 19:38:36 |
last_update | 2019-09-26 19:38:36 |
depth | 1 |
children | 0 |
last_payout | 2019-10-03 19:38:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.075 HBD |
curator_payout_value | 0.075 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 108 |
author_reputation | 212,404,184,641,750 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,975,157 |
net_rshares | 696,136,897,307 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hamismsf | 0 | 430,833,969,563 | 80% | ||
jpbliberty | 0 | 265,302,927,744 | 50% |
Thankyou for an updated plain english (ish) guide to how the 2019 steem ecosystem works for entrepreneurs. You explained this much better then I could have :) Resteemed
author | ausbitbank |
---|---|
permlink | re-aggroed-pxrhbw |
category | nodes |
json_metadata | {"tags":["nodes"],"app":"steempeak/1.16.1"} |
created | 2019-09-13 08:38:30 |
last_update | 2019-09-13 08:38:30 |
depth | 1 |
children | 0 |
last_payout | 2019-09-20 08:38:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 287,009,709,424,827 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,532,485 |
net_rshares | 112,006,132,791 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
valued-customer | 0 | 15,338,102,734 | 25% | ||
dustbunny | 0 | 96,668,030,057 | 21.56% |
Read from a to z, fantastic info, thanks Posted using [Partiko Android](https://partiko.app/referral/bubke)
author | bubke |
---|---|
permlink | bubke-re-aggroed-understanding-steem-nodes-20190913t021207552z |
category | nodes |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-09-13 02:12:09 |
last_update | 2019-09-13 02:12:09 |
depth | 1 |
children | 0 |
last_payout | 2019-09-20 02:12: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 | 108 |
author_reputation | 9,285,631,006,103 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,525,516 |
net_rshares | 0 |
<div class="pull-left">https://cdn.steemitimages.com/DQmaSUWYsJ3AMUEMRqCSaoKJVNvtsbKm4fNAtmTidr8Uggc/C%20Squared%20Logo%20Transparency%20200px.png</div><br>This post was shared in the <a href="https://discord.gg/B8JFmJ4">Curation Collective Discord community</a> for curators, and upvoted and resteemed by the @c-squared community account.<br/> If you are a community leader and/or contest organizer, please <a href="https://discord.gg/B8JFmJ4">join the Discord</a> and let us know you if you would like to promote the posting of your community or contest.<br/>@c-squared runs a <a href="https://steemit.com/witness/@c-cubed/announcing-the-launch-of-the-new-c-squared-witness">community witness</a>. Please consider using one of your witness votes on us <a href="https://steemconnect.com/sign/account-witness-vote?witness=c-squared&approve=true">here</a>
author | c-squared |
---|---|
permlink | 20190912t194103153z |
category | nodes |
json_metadata | {"tags":["c-squared"]} |
created | 2019-09-12 19:41:30 |
last_update | 2019-09-12 19:41:30 |
depth | 1 |
children | 0 |
last_payout | 2019-09-19 19: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 | 854 |
author_reputation | 8,872,520,093,091 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,517,435 |
net_rshares | 0 |
Well written. I'm pretty sure I understood 74%. Thanks!
author | captainklaus |
---|---|
permlink | re-aggroed-pxqkoo |
category | nodes |
json_metadata | {"tags":["nodes"],"app":"steempeak/1.16.1"} |
created | 2019-09-12 20:53:12 |
last_update | 2019-09-12 20:53:12 |
depth | 1 |
children | 0 |
last_payout | 2019-09-19 20:53:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 39,552,343,401,780 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,519,406 |
net_rshares | 0 |
@aggroed, This is appreciable aspect brother. Definitely **Knowledge Of Nodes** will going to put light upon the clarity aspect. Posted using [Partiko Android](https://partiko.app/referral/chireerocks)
author | chireerocks |
---|---|
permlink | chireerocks-re-aggroed-understanding-steem-nodes-20190913t011557256z |
category | nodes |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-09-13 01:15:57 |
last_update | 2019-09-13 01:15:57 |
depth | 1 |
children | 0 |
last_payout | 2019-09-20 01:15: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 | 202 |
author_reputation | 327,821,690,945,691 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,524,579 |
net_rshares | 0 |
great article man, a lot of knowledge ! after reading this topic, instantly I add you to my followers list and hit few upvotes in previous posts. Since now you have a new fan :) im glad that I have found you
author | cubapl |
---|---|
permlink | pxqu5n |
category | nodes |
json_metadata | {"tags":["nodes"],"app":"steemit/0.1"} |
created | 2019-09-13 00:17:45 |
last_update | 2019-09-13 00:17:45 |
depth | 1 |
children | 0 |
last_payout | 2019-09-20 00:17: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 | 207 |
author_reputation | 12,037,856,753,124 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,523,669 |
net_rshares | 0 |
Huge help, favorited for ***near*** future reference. Blessing bro Posted using [Partiko iOS](https://partiko.app/referral/donald.porter)
author | donald.porter |
---|---|
permlink | donald-porter-re-aggroed-understanding-steem-nodes-20190913t040421616z |
category | nodes |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-09-13 04:04:21 |
last_update | 2019-09-13 04:04:21 |
depth | 1 |
children | 0 |
last_payout | 2019-09-20 04: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 | 49,170,706,460,625 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,527,530 |
net_rshares | 0 |
@aggroed thank you for helping to be aware of last changes in steemit and how it works. It's time to make simple to understand special for possible new investors, and steemit need that. Posted using [Partiko Android](https://partiko.app/referral/pataty69)
author | pataty69 |
---|---|
permlink | pataty69-re-aggroed-understanding-steem-nodes-20190913t193443656z |
category | nodes |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-09-13 19:34:45 |
last_update | 2019-09-13 19:34:45 |
depth | 1 |
children | 0 |
last_payout | 2019-09-20 19:34:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 256 |
author_reputation | 74,865,162,558,964 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,549,213 |
net_rshares | 0 |
This post has been included in the latest edition of [**The Steem News**](https://steempeak.com/@pennsif/the-steem-news-12-september-2019) - a compilation of the key news stories on the Steem blockchain.
author | pennsif |
---|---|
permlink | pxrxmd |
category | nodes |
json_metadata | {"tags":["nodes"],"links":["https://steempeak.com/@pennsif/the-steem-news-12-september-2019"],"app":"steemit/0.1"} |
created | 2019-09-13 14:30:15 |
last_update | 2019-09-13 14:30:15 |
depth | 1 |
children | 0 |
last_payout | 2019-09-20 14:30: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 | 204 |
author_reputation | 636,410,097,572,565 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,540,536 |
net_rshares | 0 |
👍 ~Smartsteem Curation Team
author | smartsteem |
---|---|
permlink | pxrjwb |
category | nodes |
json_metadata | {"tags":["nodes"],"app":"steemit/0.1"} |
created | 2019-09-13 09:33:48 |
last_update | 2019-09-13 09:33:48 |
depth | 1 |
children | 0 |
last_payout | 2019-09-20 09:33: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 | 27 |
author_reputation | 157,838,860,587,218 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,533,369 |
net_rshares | 0 |
I can learn so much if i listen crypto classes from u @aggroed
author | summisimeon |
---|---|
permlink | pxqena |
category | nodes |
json_metadata | {"tags":["nodes"],"users":["aggroed"],"app":"steemit/0.1"} |
created | 2019-09-12 18:42:51 |
last_update | 2019-09-12 18:42:51 |
depth | 1 |
children | 0 |
last_payout | 2019-09-19 18:42: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 | 62 |
author_reputation | -3,320,489,993,736 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,515,895 |
net_rshares | 0 |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/aggroed__understanding-steem-nodes.mp3) Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
author | tts |
---|---|
permlink | re-understanding-steem-nodes-20190912t184323 |
category | nodes |
json_metadata | "" |
created | 2019-09-12 18:43:24 |
last_update | 2019-09-12 18:43:24 |
depth | 1 |
children | 0 |
last_payout | 2019-09-19 18: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 | 344 |
author_reputation | -4,535,154,553,995 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,515,903 |
net_rshares | 0 |
there's one central company confused by about everyone, including itself for the blockchain it runs on and 20 witnesses dictating the law .. it's a small senatorial dictatorship if you like , but the post is awesome, thanks, rated R for informative  if it's all that "belongs to everyone" i must be missing something b/c from day one i found it to be at the very least walled off, closed community trying to keep to itself where the top desperatly tries to NOT go out into the real world because there they would be very small fry and a lot of what i call 'votesuckers' scouring hi-powered accounts giving "always-positive" remarks on what they think it wants to hear ... one of the biggest flaws in politics, the brown nosers give the great illustrious leader the idea that he's always right, hoping for a promotion ... facts of life ... combined with a LOT of people trying to post what they *think* others will like hoping for a vote BUT with plenty of beauty in down-below where people still say what they want and 'a few good men and women' in the middle class and upper echelons if you compare it to society at macro-level its more like a mirror, not something special but *boy o boy does it have potential* ... for the tek of the chain alone i'd stick around even at one dollarcent <3 but not to speak what someone else just simply wants to hear .. :)
author | yapcat |
---|---|
permlink | pxutfk |
category | nodes |
json_metadata | {"tags":["nodes"],"image":["https://cdn.steemitimages.com/DQmZFstUi5d4V7pfV4i2wStee1t9nMLxLAHDi7TLmCkX6HQ/animated-have-a-nice-day-image-0008.gif"],"app":"steemit/0.1"} |
created | 2019-09-15 03:52:33 |
last_update | 2019-09-15 03:52:33 |
depth | 1 |
children | 0 |
last_payout | 2019-09-22 03: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 | 1,524 |
author_reputation | -721,279,119,965 |
root_title | "Understanding Steem: Nodes" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,587,568 |
net_rshares | 0 |