• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Development of Dapp

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, my name is Rohit, right now I am working on my thesis for developing Dapp, to provide the decentralized secure database, for the storage of data I came across ethereum blockchain which provides the solution but regardless, executing the smart contracts to store the data, however, consumes a token. It needs a wallet which in turn complicates the use of the app for the users. So is there an option in blockchain to execute it and not making it heavy for the users. A bit confused on the selection, so the option for other databases like OrbitDb and BigchainDb or Gun. How can I achieve the things incase of ethereum-go instead, to do the same work along with encryption without tokens?
 
Marshal
Posts: 5983
412
IntelliJ IDE Python TypeScript Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is Dapp?
 
Rohit Gowda
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It means decentralized applications, where we strive to provide the storage in a decentralized way by removing the negative effects of centralized storages like single point of failure etc.
 
author
Posts: 1436
6
Python TypeScript Java
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, the biggest barrier for Dapps (or decentralized apps) is the requirement for users to sign every transaction with a private key. Most users just want to use username / password, and do not wish to do the chores of private key management. That is why most dapps you see today are "money" related -- investment, gambling etc. There are really two ways to mitigate this. We discussed both options at length in the book. https://www.buildingblockchainapps.com/

1. Build key management into your client. That is, to provide a "wallet" in your web app or mobile app and help the user access the key transparently once they login.

2. Automatically generate keys for public apps. This approach is essentially what you see when you create and publish a Dapp from the BUIDL IDE tool:

http://buidl.secondstate.io/

To see a full example of "disposable private keys for public Dapps", check out this tutorial:

https://blog.secondstate.io/post/20191002-book-etc-en/
 
Rohit Gowda
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you very much, these points are helpful for my research work.
reply
    Bookmark Topic Watch Topic
  • New Topic