create account

Distributed Blockchains - More Important Than The Internet by grampo

View this thread on: hive.blogpeakd.comecency.com
· @grampo ·
$56.55
Distributed Blockchains - More Important Than The Internet
Distributed blockchains are a frustrating beast to understand, especially for tech professionals with experience of building large-scale centralized data systems. I was once in the same boat.
 
Honestly, if someone were to ask me to build the slowest, most expensive and just plain inefficient database, a distributed blockchain would seem to be the top contender. Every node has a copy of the entire database. Every node reprocesses all records to verify consensus from day one. Data synchronization traffic is huge and only one node allowed to add new records to the database. If that’s not enough, let's burn some electricity to decide which node should win the privilege to append that new block!
 
And mass media headlines just add to that frustration. 
 
The deck below is a tailored address to the most common questions asked by technology experts as they delve into the strange world of blockchain technology and aim to understand the logic of it.

 
 
**Slide 1: Blockchain = Accounting Book**

![](https://cdn.steemitimages.com/DQmdNESPjMuqxhRdq7Cnvj1C9ryxUuG1xZpcBAMr9hJFScC/image.png)
  
For starters, there is really nothing new about the blockchain itself. It is a simple ledger, an accounting book, the most ancient tech known to humans. 
 
1.	Blockchain is a list of records, stating that so many tokens have been transferred from one account to another. 
2.	A “Block” is an aggregation of records that are grouped together before being added to the blockchain.
3.	"Chain" means that a hash from the previous block is included in has calculations of the next block, and so the entire blockchain becomes immutably linked.
4.	"Consensus" pretty much means "you cannot spend what you don't have".
 
Note: I’ll often simplify things to avoid "being lost in the woods".
 
 
**Slide 2: Centralized vs Distributed** 

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

If at the bank I transfer money between two accounts that belong to me, only my bank knows about the transaction. Here, my bank is the ultimate authority.
 
On the distributed blockchain - everybody knows about every transaction. Each node is the same and each one keeps a copy of all the transactions in a simple text form. Truth is confirmed by majority instead of authority.
 
There are some blockchains (ex. Zcash) that make it impossible to decipher records, but this is a different topic. Most blockchains are not encrypted at all. 
 
That said, there is no personal identifiable information on the blockchain. All account numbers are just… long numbers.
 
 
**Slide 3: Advantages & Disadvantages**

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

Blockchain is an expensive and slow database. But its architecture offers unique benefits. It’s:
 
* _Open_ – anybody can launch a node and anyone can build services on top of it. Blockchain serves people as much at it serves bots, computers, IoT and more; it is an example of true net neutrality (transferring $.10 of value or $1B has the same cost & speed).
* _Permissionless_ - you don't need permission to open an account or to post transactions or use any other blockchain services; there is no central authority on the blockchain.
* _Immutable_ – once a record is added to the blockchain it will remain there unchanged, visible to everyone, forever.
* _Resilient_ – it’s impossible to seize funds or even prevent future transactions from any account. In order to stop the blockchain, all telecommunications must be stopped (signed transactions can be sent using SMS), and as long as a single node on a yacht in the middle of an ocean still works, the entire blockchain is still operational.
* _Secure_ – there isn’t much to hack on the blockchain, all records are already public. 
 
Centralized systems (as well as private blockchains) do not have these properties. 
 
 
**Slide 4: Open Security**
 
 ![](https://cdn.steemitimages.com/DQmUKvPqpo7nWnvxLCvwa1tQ7Q151EPHiewrj5J1FZeVudS/image.png)
 
Symmetric-key encryption uses the same keys for both encryption and decryption (password protected zip file).
 
Asymmetric-key encryption uses a public key for encryption and a matching private key for decryption (submitting bids over a non-secure network).
 
Digital Signature – when the hash of a document (i.e. transaction) is encrypted by a private key, but can be decrypted and verified using a public key.
 
On a blockchain, the public key is the wallet address. 
 
Each transaction (hash) on the blockchain must be signed by the private key of the sender and all nodes use the public key (sender’s wallet address) to decrypt the signature and ensure it matches the transaction hash.   
 
This is how users prove wallet ownership - they can spend money from it by broadcasting signed transactions to any node. Transactions are signed offline. 

Note: private keys should never be entered or transmitted online. 
 
 
**Slide 5: Your Keys, Your Bitcoin**
 
 ![](https://cdn.steemitimages.com/DQmRdzVMze1tqJcYEwLMTqUYrDVbJagAxyVbbryTvv9Emkp/image.png)
 
There is no "forgot password" procedure on blockchains. No one has a copy of your private key. If you lose it, you lose access to your wallet and all the money in it. 
 
 
**Slide 6: Elliptic Curve Cryptography**
 
 ![](https://cdn.steemitimages.com/DQmag4VzqyYC6q74mQJwCib6AbAcdsT9RjtgjqKSN5hkjy4/image.png)
 
Your money on distributed blockchains is protected by elliptic curve cryptography. 
 
In order to create a wallet, you randomly generate a 256-bit long number and call it your private key.
 
Then you "multiply" it by a number G (Generator point) and receive a public key (wallet address). That's it.
 
Multiplication on elliptic curve is a special procedure that works only one way (i.e. division is not possible) and is repeated many times.
 
 
**Slide 7: Can I Guess Somebody’s Private Key?**
 
 ![](https://cdn.steemitimages.com/DQmPSymcox2jDUzxL3PCaqpWG34GZRXgwAFUTK5QS4hcYxd/image.png)
 
In theory it can happen, but in reality, number of combinations rivals number of atoms in the universe. 
There is no "this login is already in use" verification on blockchains.
 
 
**Slide 8: Can Bitcoin be hacked?**
 
 ![](https://cdn.steemitimages.com/DQmXXrmdaoA8fv2e6RL8VX1arnY7ztx8UwNHyLMKP46n32e/image.png)
 
Since the entire blockchain is public, anyone can see the balance of any account, including the largest ones. Huge amounts are stored in plain sight of hackers all over the world, yet no successful hacks were reported. 

And if it ever does happen, a copy of the blockchain can be launched as a separate blockchain (aka hard fork) with a snapshot taken 1 block prior to the hack and a new encryption method. 
 
Note: A hardware wallet (around $80) is a compact USB device that can be used to broadcast signed transactions. The private key never leaves that device. In case of a loss, the wallet can be restored from a combination of 24 words, which can be printed on paper and safely stored. The USB key itself is protected by a pin. After 3 wrong attempts, the hardware resets. 
 
Multi-signature accounts can be used to store larger amounts.
 
 
**Slide 9: What Do Miners Do?**
 
 ![](https://cdn.steemitimages.com/DQmPe3ofs1Ew6HRk4jjvCTbsJusEaynZcSrcMf6tRsFvorm/image.png)
 
Satoshi Nakamoto, the genius mind behind the 9 page Bitcoin Whitepaper, proposed a practical solution for solving the double spend problem in a distributed network. He created a math competition between mining nodes for the right to add the next block to the blockchain (i.e. trusted timestamping).
 
The winning miner receives a reward: newly minted Bitcoins as well as commissions for processing transactions included in the block. Current Bitcoin inflation is 3.88% and a new block is mined every 9 minutes. Inflation trajectory and other parameters were set at Bitcoin inception 9 years ago and are not subject to change. 
 
Besides the proof-of-work mining systems, there are proof-of-stake, delegated proof-of-stake, proof-of-brain, proof-of-activity and other systems. 
 
 
**Slide 10: Level 1: Be Your Own Bank**
 
 ![](https://cdn.steemitimages.com/DQmY5Xfnhf4j6HwJgtj7ZoLQa8289uZEA8DpnNMZxzSWyou/image.png)
 
Currency is the first application that can run on distributed blockchains. 
 
We use banks to keep our funds safely and to transfer funds where they need to go.
 
Bitcoin does these functions better, cheaper, faster, around the clock, immutably, permissionlessly, globally, with no risk of freezing and more. 
 
Note: At this stage Bitcoin and other cryptocurrencies are highly volatile. Bitcoin market cap is just $100B. For a global currency this is just the beginning. It's like a small fish swimming among whales and with a swing of a tail they can send it flying up, down and sideways. But being indestructible (antifragile) it just keeps growing and improving.   
 
 
**Slide 11: Smart Contracts**
 
 ![](https://cdn.steemitimages.com/DQmTvaLVYvBWZMMHLW69AJzbDR3NJ3nXiZcjzKPJgsZEpcJ/image.png)
 
Smart contracts are programs that can be recorded on the blockchain and activated by the transfer of funds to a contract address. Smart contracts are self-executing and provide better security as compared to traditional contract laws. These transactions are transparent and irreversible. 
 
Smart contracts can automate complex business rules and processes to replace 3rd parties and intermediaries in many common business transactions, while dramatically reducing transactional costs; small network processing fees may apply.
 
Note: Many business processes require stability of transactional currency: low margins, long-term agreements and more. Stablecoins are cryptocurrencies that are pegged to assets, such as USD, Euro, gold, etc., which can be exchanged for underlying assets (or equivalent value) at any time. Stablecoins can be used in smart contracts.
   
 
**Slide 12: Level 2: Rules Without Authorities**
 
 ![](https://cdn.steemitimages.com/DQmaD2jbZBBEFkM7fz4mW75c8skjG2BFwLX3cRDN7H1HRqD/image.png)
 
Traditional business models for middlemen include commissions, but smart contracts can be easily copied and modified to exclude commissions, and then used by customers and suppliers without intermediaries. 
 
Established businesses have seen many technologies and inventions come and go, and have so far been able to adapt successfully. But the distributed nature of the blockchain poses an entirely new challenge - openness and permissionless innovation on the fringes of the network. 
 
That is why established businesses often attempt to launch private blockchains or limit blockchain use to just record keeping  like supply chain tracking, maintenance schedules, etc. In a way, this echoes the Intranet era, when the open Internet was deemed too slow, too transparent, too unsecure, and too unpredictable for real business. But rapid innovation on the Internet turned all these ambitious Intranets into stale pools of dated information and ugly interfaces.
 
Blockchain that lost its distributed nature is no longer open, permissionless, immutable, resilient, or even secure. Private blockchains are simply expensive and slow databases.
 
Effective business models on distributed blockchains are very possible, and they no longer rely on simplistic commissions or access obscurity. Effective business models on open blockchains can be implemented using different types or combinations of tokens, while aligning interests of business owners and their clients. This is a huge and exciting topic, which extends way beyond the scope of this article.
 
 
**Slide 13: Level 2 - Decentralized Autonomous Organizations**
 
 ![](https://cdn.steemitimages.com/DQmQFbmaciymyEyFDykAKSDscDmuC7Q9LBmknYLo3yohzvt/image.png)
 
A collection of smart contracts that can interact with each other allows creation of very complicated structures that can mimic operations of entire companies without any human managerial interventions at all.
 
Welcome to the uncharted waters of DAOs (or DACs - Decentralized Autonomous Corporations) that exist only on the blockchain as a combination of self-enforcing rules. Some DAOs provide services worth hundreds of millions of dollars (ex., IDEX) yet they are not even registered as a company in any jurisdiction. DAOs can hire people to do certain jobs (ex., DASH blockchain hires developers, Steem hires content creators and curators).
 
In most cases DAOs do not have direct beneficiaries, instead they may have an underlying token that appreciates in value as more users use its services. DAOs may have dedicated development teams that create smart contracts, but these contracts are deployed to the blockchain by clients, rather than the central authority.      
 
Note: Bug fixing and updating DAO software might be a very difficult process, which requires all users to switch to a new copy of the DAO or participate in a time-consuming voting process. 
 
 
**Slide 14: Level 3: Direct Investments**
 
 ![](https://cdn.steemitimages.com/DQmNa58PkXdPdxhExVSRLZ2g12PkV3zHGPCQuRqNHYXYrCy/image.png)
 
Smart contracts enable a number of new forms of crowdfunding. The key to the success of these new forms of fundraising is simplicity. An investor sends the money to a trusted contract on the blockchain and receives company tokens, which can often be immediately traded or used to engage company services.
 
Much of the discussion around Initial Coin Offerings (ICOs) has been about mixing two distinct functions in one token: utility and security. Securities are regulated and require additional procedures, such as know your customer (KYC) and anti-money laundering (AML) / anti-corruption due diligence and more.
 
The more recent approach is to separate utility tokens (distributed through an airdrop or other non-financial means) and security tokens, that are sold through the process known as Security Token Offering (STOs) where only qualified investors can participate. 
 
Security tokens may represent shares in companies, but they also can be backed by other assets, such as real estate, accounts receivables, inventory and more, thus offering flexibility for fundraising and access to capital. STOs are expected to unlock tremendous amounts of capital.  
 
 
**Slide 15: Level 4 - Control Your Privacy**
 
 ![](https://cdn.steemitimages.com/DQmejTEXA9k7xEZ8A1Qyuq48ZP7K46FcNiALWjeLZcCwyK6/image.png)
 
Information on distributed blockchains is stored openly and while account ownership is not recorded, it may not be enough to protect certain types of personal information, such as health records, rental history and more.
 
It’s possible to manage multiple identities using a single private key. Simple rules can be used to generate secondary private keys with matching public addresses. Now each sensitive transaction can be submitted to the blockchain under a different identity, making it impossible for an external observer to establish a connection between these records. 
 
The user preserves full control of multiple identities and sensitive information stored on the blockchain.
 
There are methods and services being developed which allow users to provide cryptographic assurance to requesting parties confirming their rental history, for example, without disclosing the connection between identities.  
 
 
**Slide 16: Level 5 - Social Tokenomics**
 
 ![](https://cdn.steemitimages.com/DQmdNPBzKK9sLEWj1osMqYtsFENmZd8pZy92ofgUrLq9h2z/image.png)
 
Social blockchain projects allow users to earn cryptocurrency by doing something useful and fun. For example, Steem blockchain distributes daily inflation to new posts according to the number of received upvotes. Rewards are given to both authors and curators. Voting power is defined by quantity of vested tokens the user has on their account. 
 
Authors of posts are only rewarded when the community recognizes the value of their input. Over time users can build a reputation and domain (subject) expertise. 
 
 
 
**Slide 17: Direct Attention Trading**
 
 ![](https://cdn.steemitimages.com/DQmactRntQsBWdF2D16GAeZRUvQfNuZch54cRReabygbLut/image.png)
 
Once users have established domain expertise, businesses can bid for attention of target audiences directly through the blockchain, entirely bypassing now redundant intermediaries. For example, a manufacturer of outdoor clothing can place a bid on the blockchain offering a $5 reward to users with proven expertise in outdoor activities (such as hiking, camping, fishing) for watching a video featuring their new breathable rain jacket. Users are then free to accept the offer, ignore it, or even offer their attention for a higher price.
 
Social blockchains have the capacity to redefine the rules of the advertising industry as we know it today.
 

**Slide 18: Broad Disruption of Industries**
 
 ![](https://cdn.steemitimages.com/DQmVrSEXteBRubH2U2VVE8hmRmvGAFqYZSipcREJCBosjqK/image.png)
 
Just when you think you have a good idea and a practical scenario for application of a distributed blockchain, you discover there are at least dozen well-funded projects that are ahead of you. You look further, study their whitepapers, and learn how well thought-through their models are. Yes, this is how fast things are happening in the blockchain space. 
 
 
**Slide 19: Conclusions - Monumental Change Is Inevitable**
 
 ![](https://cdn.steemitimages.com/DQmS5YehBcsiJA9oEbBiEUbbycW26npQeFeWXdyxtiagid2/image.png)
 
If you think you can "go on with business as usual", get ready for a surprise.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 97 others
properties (23)
authorgrampo
permlinkdistributed-blockchains-more-important-than-the-internet
categorydistributed
json_metadata{"tags":["distributed","blockchain","bitcoin","crypto","waivio"],"image":["https://cdn.steemitimages.com/DQmdNESPjMuqxhRdq7Cnvj1C9ryxUuG1xZpcBAMr9hJFScC/image.png","https://cdn.steemitimages.com/DQmabNGYSj2XChRwraHVQHbeepRBtCn71tXKEYGMjLMqFcL/image.png","https://cdn.steemitimages.com/DQmdq9KZigjhs1zvvhckkPnXcDjFzW7JZ4C3ZRqgJr2hwDX/image.png","https://cdn.steemitimages.com/DQmUKvPqpo7nWnvxLCvwa1tQ7Q151EPHiewrj5J1FZeVudS/image.png","https://cdn.steemitimages.com/DQmRdzVMze1tqJcYEwLMTqUYrDVbJagAxyVbbryTvv9Emkp/image.png","https://cdn.steemitimages.com/DQmag4VzqyYC6q74mQJwCib6AbAcdsT9RjtgjqKSN5hkjy4/image.png","https://cdn.steemitimages.com/DQmPSymcox2jDUzxL3PCaqpWG34GZRXgwAFUTK5QS4hcYxd/image.png","https://cdn.steemitimages.com/DQmXXrmdaoA8fv2e6RL8VX1arnY7ztx8UwNHyLMKP46n32e/image.png","https://cdn.steemitimages.com/DQmPe3ofs1Ew6HRk4jjvCTbsJusEaynZcSrcMf6tRsFvorm/image.png","https://cdn.steemitimages.com/DQmY5Xfnhf4j6HwJgtj7ZoLQa8289uZEA8DpnNMZxzSWyou/image.png","https://cdn.steemitimages.com/DQmTvaLVYvBWZMMHLW69AJzbDR3NJ3nXiZcjzKPJgsZEpcJ/image.png","https://cdn.steemitimages.com/DQmaD2jbZBBEFkM7fz4mW75c8skjG2BFwLX3cRDN7H1HRqD/image.png","https://cdn.steemitimages.com/DQmQFbmaciymyEyFDykAKSDscDmuC7Q9LBmknYLo3yohzvt/image.png","https://cdn.steemitimages.com/DQmNa58PkXdPdxhExVSRLZ2g12PkV3zHGPCQuRqNHYXYrCy/image.png","https://cdn.steemitimages.com/DQmejTEXA9k7xEZ8A1Qyuq48ZP7K46FcNiALWjeLZcCwyK6/image.png","https://cdn.steemitimages.com/DQmdNPBzKK9sLEWj1osMqYtsFENmZd8pZy92ofgUrLq9h2z/image.png","https://cdn.steemitimages.com/DQmactRntQsBWdF2D16GAeZRUvQfNuZch54cRReabygbLut/image.png","https://cdn.steemitimages.com/DQmVrSEXteBRubH2U2VVE8hmRmvGAFqYZSipcREJCBosjqK/image.png","https://cdn.steemitimages.com/DQmS5YehBcsiJA9oEbBiEUbbycW26npQeFeWXdyxtiagid2/image.png"],"app":"steemit/0.1","format":"markdown"}
created2018-10-16 17:47:30
last_update2018-10-16 17:47:30
depth0
children24
last_payout2018-10-23 17:47:30
cashout_time1969-12-31 23:59:59
total_payout_value43.514 HBD
curator_payout_value13.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17,458
author_reputation27,902,505,281,195
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id73,427,699
net_rshares46,023,271,986,321
author_curate_reward""
vote details (161)
@amir25 ·
$1.08
Thank you sir for making it clear.your post is very much informative for people who want to know about blockchain.
👍  ,
properties (23)
authoramir25
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181018t163150579z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-18 16:31:54
last_update2018-10-18 16:31:54
depth1
children0
last_payout2018-10-25 16:31:54
cashout_time1969-12-31 23:59:59
total_payout_value0.807 HBD
curator_payout_value0.268 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation289,983,467,645
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,563,338
net_rshares880,938,193,049
author_curate_reward""
vote details (2)
@arcange ·
Congratulations @grampo!
Your post was mentioned in the [Steemit Hit Parade for newcomers](https://steemit.com/hit-parade/@arcange/daily-hit-parade-for-newcomers-20181016) in the following category:

* Pending payout - Ranked 1 with $ 48,51

I also upvoted your post to increase its reward
If you like my work to promote newcomers and give them more visibility on Steemit, consider to [vote for my witness](https://steemit.com/~witnesses)!
properties (22)
authorarcange
permlinkre-distributed-blockchains-more-important-than-the-internet-20181016t192220000z
categorydistributed
json_metadata""
created2018-10-17 17:24:15
last_update2018-10-17 17:24:15
depth1
children0
last_payout2018-10-24 17:24:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length439
author_reputation1,146,608,602,483,196
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,495,550
net_rshares0
@atnazo ·
$1.20
Great presentation and idea to make slides on piece of paper, then scan it and put into post.
Very helpfull information was included, quality post confirmed ✔
👍  , ,
properties (23)
authoratnazo
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181018t100455288z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-18 10:04:54
last_update2018-10-18 10:04:54
depth1
children0
last_payout2018-10-25 10:04:54
cashout_time1969-12-31 23:59:59
total_payout_value0.901 HBD
curator_payout_value0.299 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation495,969,171,297,612
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,541,639
net_rshares971,600,397,929
author_curate_reward""
vote details (3)
@bengiles ·
$1.08
Awesome post! My favourite steemit post I have read so far. Resteemed and followed! 😃👍🍻
👍  ,
properties (23)
authorbengiles
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181017t084820670z
categorydistributed
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["distributed"],"users":[],"links":[],"image":[]}
created2018-10-17 08:48:21
last_update2018-10-17 08:48:21
depth1
children0
last_payout2018-10-24 08:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.808 HBD
curator_payout_value0.268 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation837,682,256,980
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,466,246
net_rshares854,567,189,790
author_curate_reward""
vote details (2)
@bobw0yva ·
$1.13
Fantastic post! I learned a lot from your descriptions.
👍  ,
properties (23)
authorbobw0yva
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181017t022957730z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-17 02:29:57
last_update2018-10-17 02:29:57
depth1
children1
last_payout2018-10-24 02:29:57
cashout_time1969-12-31 23:59:59
total_payout_value0.847 HBD
curator_payout_value0.281 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation25,772,264,820
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,449,644
net_rshares896,574,417,416
author_curate_reward""
vote details (2)
@grampo ·
Welcome to Steem! So good to have you here!
properties (22)
authorgrampo
permlinkre-bobw0yva-re-grampo-distributed-blockchains-more-important-than-the-internet-20181017t161850427z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-17 16:18:54
last_update2018-10-17 16:18:54
depth2
children0
last_payout2018-10-24 16:18:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation27,902,505,281,195
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,491,721
net_rshares0
@certain ·
$0.39
@grampo sir!
An useful  blockchain trending diagrams.such a genius article about BlockChain accounting book. Method for Broad Disruption of Industries and summary of monumental change  is great. Thanks for sharing such a useful content and ideas about blockchain.
Regards
👍  
properties (23)
authorcertain
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181026t033211392z
categorydistributed
json_metadata{"tags":["distributed"],"users":["grampo"],"app":"steemit/0.1"}
created2018-10-26 03:32:15
last_update2018-10-26 03:32:15
depth1
children0
last_payout2018-11-02 03:32:15
cashout_time1969-12-31 23:59:59
total_payout_value0.364 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length271
author_reputation802,509,567,344,135
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,066,378
net_rshares413,923,238,631
author_curate_reward""
vote details (1)
@coolguy222 ·
$1.21
Whooo,  very much informations about blockchain ,A lot of information in just a single post.i have got now more idea about blockchain.
I Really appreciate it. 

Posted using [Partiko Android](https://steemit.com/@partiko-android)
👍  ,
properties (23)
authorcoolguy222
permlinkcoolguy222-re-grampo-distributed-blockchains-more-important-than-the-internet-20181018t060555029z
categorydistributed
json_metadata{"app":"partiko"}
created2018-10-18 06:05:54
last_update2018-10-18 06:05:54
depth1
children0
last_payout2018-10-25 06:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.908 HBD
curator_payout_value0.301 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation253,703,361,021,397
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,530,513
net_rshares980,453,963,610
author_curate_reward""
vote details (2)
@cruis ·
$0.46
Sir, in the way you explain blockchain through pictures, it is very beautiful and your post is very good.
👍  
properties (23)
authorcruis
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181026t162400545z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-26 16:24:12
last_update2018-10-26 16:24:12
depth1
children0
last_payout2018-11-02 16:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.348 HBD
curator_payout_value0.115 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation108,790,340,596,302
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,103,070
net_rshares393,381,686,446
author_curate_reward""
vote details (1)
@edicted ·
$1.39
Great post!  I didn't learn anything but then again I've been researching blockchain 3 hours a day for the last year.  

This post offers the simplest explanations of the most blockchain topics I've ever seen.
👍  , , ,
properties (23)
authoredicted
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181017t015655546z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-17 01:56:54
last_update2018-10-17 01:56:54
depth1
children1
last_payout2018-10-24 01:56:54
cashout_time1969-12-31 23:59:59
total_payout_value1.044 HBD
curator_payout_value0.346 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation3,492,547,051,834,990
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,448,266
net_rshares1,106,249,918,272
author_curate_reward""
vote details (4)
@grampo ·
$0.05
Ha! 3 hours! You must be a king of moderation! Once I plunged myself into this "rabbit hole" I spend way more than 3 hours ;-)

I am very excited about building Attention and Reference Trading marketplaces on Steem. This can bring many new parties to Steem platform. Allowing businesses to bid directly for customer attention through the blockchain is going to put value where it belongs - in the hands of customers, not intermediaries!
👍  ,
properties (23)
authorgrampo
permlinkre-edicted-re-grampo-distributed-blockchains-more-important-than-the-internet-20181017t153446566z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-17 15:34:51
last_update2018-10-17 15:34:51
depth2
children0
last_payout2018-10-24 15:34:51
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length436
author_reputation27,902,505,281,195
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,489,054
net_rshares40,585,662,168
author_curate_reward""
vote details (2)
@grainsofsand ·
$1.12
Wow, this is like a condensed encyclopedia of Blockchain! Thanks so much. I haven't read the entire thing, yet, because it's so jam-packed with valuable info--and your illustrations are great too. I like to see a representation of what the blockchain is....your's is easy to understand. 

Many Thanks from this old Newbie who can't post much.
👍  ,
properties (23)
authorgrainsofsand
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181018t141857938z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-18 14:18:51
last_update2018-10-18 14:18:51
depth1
children0
last_payout2018-10-25 14:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.840 HBD
curator_payout_value0.278 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length342
author_reputation174,439,825,983
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,555,075
net_rshares912,112,865,111
author_curate_reward""
vote details (2)
@heskay ·
Yeah that's just the real truth
👍  
properties (23)
authorheskay
permlinkre-grampo-qrukfv
categorydistributed
json_metadata{"tags":["distributed"],"app":"peakd/2021.04.2"}
created2021-04-20 05:26:24
last_update2021-04-20 05:26:24
depth1
children0
last_payout2021-04-27 05:26:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation81,253,609,298,220
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id103,157,906
net_rshares12,234,006,379
author_curate_reward""
vote details (1)
@jessicapixie ·
$1.14
Amazing post! Voted and re-steemed and shared on Twitter. Awesome job at explaining Blockchain Technology and its applications :)
👍  ,
properties (23)
authorjessicapixie
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181018t135550420z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-18 13:55:48
last_update2018-10-18 13:55:48
depth1
children0
last_payout2018-10-25 13:55:48
cashout_time1969-12-31 23:59:59
total_payout_value0.858 HBD
curator_payout_value0.285 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation1,126,541,781,761
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,553,677
net_rshares930,678,337,221
author_curate_reward""
vote details (2)
@kabir88 · (edited)
$1.42
This is a great post @grampo, the steem blockchain is lucky to have someone as talented as you creating content here.

A very well written description of what blockchain is and why it's so important. Will be sharing this on a few other platforms and coming back to read it again. A lot of information to absorb!

Might even throw it out to the linked in crowed who are still convinced Bitcoin is drug money 😝

@kabir88
👍  , , , ,
properties (23)
authorkabir88
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181018t055342952z
categorydistributed
json_metadata{"tags":["distributed"],"users":["grampo","kabir88"],"app":"steemit/0.1"}
created2018-10-18 05:53:45
last_update2018-10-18 07:40:39
depth1
children0
last_payout2018-10-25 05:53:45
cashout_time1969-12-31 23:59:59
total_payout_value1.067 HBD
curator_payout_value0.353 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length418
author_reputation9,762,676,591,926
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,529,908
net_rshares1,151,670,149,848
author_curate_reward""
vote details (5)
@lanzjoseg ·
$1.21
Wow Friend thanks for the simple explanation, as my grandfather would say. "You ate my corduroy"
Although it is in English I will give you Resteem so that your explanation reaches more users.
👍  ,
properties (23)
authorlanzjoseg
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181017t032412545z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-17 02:49:33
last_update2018-10-17 02:49:33
depth1
children0
last_payout2018-10-24 02:49:33
cashout_time1969-12-31 23:59:59
total_payout_value0.908 HBD
curator_payout_value0.301 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation862,029,498,101,286
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,450,476
net_rshares960,898,383,623
author_curate_reward""
vote details (2)
@marionbowes ·
$1.05
It is all French, or wait maybe Swahili to me.  However I will keep reading and learning.
👍  ,
properties (23)
authormarionbowes
permlinkre-grampo-distributed-blockchains-more-important-than-the-internet-20181017t135137425z
categorydistributed
json_metadata{"tags":["distributed"],"app":"steemit/0.1"}
created2018-10-17 13:51:30
last_update2018-10-17 13:51:30
depth1
children0
last_payout2018-10-24 13:51:30
cashout_time1969-12-31 23:59:59
total_payout_value0.788 HBD
curator_payout_value0.261 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation3,754,927,059,557
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,482,158
net_rshares837,605,944,370
author_curate_reward""
vote details (2)
@masterthematrix ·
$1.11
Very well explained!

Posted using [Partiko Android](https://steemit.com/@partiko-android)
👍  ,
properties (23)
authormasterthematrix
permlinkmasterthematrix-re-grampo-distributed-blockchains-more-important-than-the-internet-20181017t025132695z
categorydistributed
json_metadata{"app":"partiko"}
created2018-10-17 02:51:33
last_update2018-10-17 02:51:33
depth1
children0
last_payout2018-10-24 02:51:33
cashout_time1969-12-31 23:59:59
total_payout_value0.832 HBD
curator_payout_value0.275 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation9,868,666,626,842
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,450,561
net_rshares878,879,395,568
author_curate_reward""
vote details (2)
@steemitboard ·
Congratulations @grampo! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x70/http://steemitboard.com/notifications/firstpost.png)](http://steemitboard.com/@grampo) You published your First Post
[![](https://steemitimages.com/70x70/http://steemitboard.com/notifications/firstvoted.png)](http://steemitboard.com/@grampo) You got a First Vote
[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](http://steemitboard.com/@grampo) Award for the number of upvotes received

<sub>_Click on the badge to view your Board of Honor._</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-steem-power-followers-and-following-added"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmfRVpHQhLDhnjDtqck8GPv9NPvNKPfMsDaAFDE1D9Er2Z/header_ranking.png"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-steem-power-followers-and-following-added">SteemitBoard Ranking update - Steem Power, Followers and Following added</a></td></tr></table>

> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-grampo-20181017t154937000z
categorydistributed
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-10-17 15:49:36
last_update2018-10-17 15:49:36
depth1
children0
last_payout2018-10-24 15:49:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,548
author_reputation38,975,615,169,260
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,489,975
net_rshares0
@steemitboard ·
Congratulations @grampo! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x70/http://steemitboard.com/notifications/firstcomment.png)](http://steemitboard.com/@grampo) You made your First Comment

<sub>_Click on the badge to view your Board of Honor._</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-steem-power-followers-and-following-added"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmfRVpHQhLDhnjDtqck8GPv9NPvNKPfMsDaAFDE1D9Er2Z/header_ranking.png"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-steem-power-followers-and-following-added">SteemitBoard Ranking update - Steem Power, Followers and Following added</a></td></tr></table>

> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-grampo-20181017t201519000z
categorydistributed
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-10-17 20:15:21
last_update2018-10-17 20:15:21
depth1
children0
last_payout2018-10-24 20:15:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,242
author_reputation38,975,615,169,260
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,504,286
net_rshares0
@steemitboard ·
Congratulations @grampo! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](http://steemitboard.com/@grampo) Award for the number of upvotes received
[![](https://steemitimages.com/70x70/http://steemitboard.com/notifications/firstcommented.png)](http://steemitboard.com/@grampo) You got a First Reply

<sub>_Click on the badge to view your Board of Honor._</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-steem-power-followers-and-following-added"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmfRVpHQhLDhnjDtqck8GPv9NPvNKPfMsDaAFDE1D9Er2Z/header_ranking.png"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-steem-power-followers-and-following-added">SteemitBoard Ranking update - Steem Power, Followers and Following added</a></td></tr></table>

> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-grampo-20181018t215813000z
categorydistributed
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-10-18 21:58:12
last_update2018-10-18 21:58:12
depth1
children0
last_payout2018-10-25 21:58:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,399
author_reputation38,975,615,169,260
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,579,472
net_rshares0
@steemitboard ·
Congratulations @grampo! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@grampo) Award for the number of upvotes

<sub>_Click on the badge to view your Board of Honor._</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-resteem-and-resteemed-added"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmfRVpHQhLDhnjDtqck8GPv9NPvNKPfMsDaAFDE1D9Er2Z/header_ranking.png"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-resteem-and-resteemed-added">SteemitBoard Ranking update - Resteem and Resteemed added</a></td></tr></table>

> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-grampo-20181020t195941000z
categorydistributed
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-10-20 19:59:39
last_update2018-10-20 19:59:39
depth1
children0
last_payout2018-10-27 19:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,196
author_reputation38,975,615,169,260
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,707,894
net_rshares0
@steemitboard ·
Congratulations @grampo! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x70/http://steemitboard.com/notifications/firstpayout.png)](http://steemitboard.com/@grampo) You got your First payout
[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/payout.png)](http://steemitboard.com/@grampo) Award for the total payout received

<sub>_[Click here to view your Board of Honor](https://steemitboard.com/@grampo)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-resteem-and-resteemed-added"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmfRVpHQhLDhnjDtqck8GPv9NPvNKPfMsDaAFDE1D9Er2Z/header_ranking.png"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-resteem-and-resteemed-added">SteemitBoard Ranking update - Resteem and Resteemed added</a></td></tr></table>

> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-grampo-20181025t053532000z
categorydistributed
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-10-25 05:35:30
last_update2018-10-25 05:35:30
depth1
children0
last_payout2018-11-01 05:35:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,380
author_reputation38,975,615,169,260
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,004,670
net_rshares0
@yasu24 ·
$1.22
Interesting article! I resteemed. Thank you.

Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
👍  ,
properties (23)
authoryasu24
permlinkyasu24-re-grampo-distributed-blockchains-more-important-than-the-internet-20181018t151841092z
categorydistributed
json_metadata{"app":"partiko"}
created2018-10-18 15:18:42
last_update2018-10-18 15:18:42
depth1
children0
last_payout2018-10-25 15:18:42
cashout_time1969-12-31 23:59:59
total_payout_value0.917 HBD
curator_payout_value0.304 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation92,815,616,501,543
root_title"Distributed Blockchains - More Important Than The Internet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,559,017
net_rshares996,324,359,969
author_curate_reward""
vote details (2)