Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Accessing Ethereum Dapp

Is their a way to access ethereum Dapps other than the mist browser. I was thinking along the lines of a normal browser like chrome. Also, as a sub question how are some Android and IOS apps connecting to the blockchain?

like image 263
m.. Avatar asked May 14 '26 04:05

m..


1 Answers

You can do that through Ethereum JSON-RPC: https://github.com/ethereum/wiki/wiki/JSON-RPC

You have to use

  • eth_call - read from contract
  • eth_sendTransaction - send transaction to a contract

You must understand that you'll also need to have an Ethereum node started, most probably with unlocked account to execute transactions from it. Which means you don't want to run it on public networks, but rather in local network. That's what Mist do for you essentially.

Also, take a look at MetaMask, it provides same API for browser based app, but requires an additional plugin to be installed into a browser

like image 122
Igor Artamonov Avatar answered May 19 '26 04:05

Igor Artamonov