Hacker News new | ask | show | jobs
by tejaswiy 3101 days ago
I generally agree with you, but would like to know about your specific concerns, what did you dislike about it?
1 comments

Here were mine Here were a few of mine, I’ve tried to get into ethereum a couple times

- installing mist and getting it to sync is very difficult and time consuming

- connecting to a testnet and getting ether on the testnet is also very difficult

- most ‘cool’ dapp ideas rely on oracles to publish data about the real world into the block chain. When you dive into it you realize that such an Oracle would be very very expensive to run for even trivial usecases.

> most ‘cool’ dapp ideas rely on oracles to publish data about the real world into the block chain. When you dive into it you realize that such an Oracle would be very very expensive to run for even trivial usecases.

how much does it cost to run an Oracle?

Depends greatly on the problem domain.

For example, if the problem domain is football games and gambling, well, scraping the results of those games from existing apis isn't too hard nor expensive.

If it's based on real-world stuff with no existing consistent API (e.g. you want a app based on housing), you'll either need to build that API, find a company to research and enter the data, etc.

What's the point of building the app on Ethereum if the source (the Oracle) is centralized anyway?
There are implementations like Chainlink running decentralized oracles. At the end of the day, the data-source is still the bottleneck but they try to discourage bad actors through e.g. reputation mechanisms.
Okay, how much cost will it cost to run an Oracle for some existing API?
An Oracle is just a program that movies data onto the blockchain for dapps to use.

The data is an input to a transaction that eventually results in the EVM storing that data into a contracts (dapps) memory (which you pay per byte) that can then be exposed to other dapps.

Thank for that explanation. How much would you say a simple Data input will cost?