ebloc / eBloc

http://ebloc.cmpe.boun.edu.tr/
Apache License 2.0
1 stars 2 forks source link

Using Mist(Ethereum Wallet) #6

Closed ebloc closed 7 years ago

ebloc commented 7 years ago

Please download and install Mist from following guide. https://github.com/ethereum/mist

Dependencies:

curl https://install.meteor.com/ | sh
npm install -g electron@1.3.13
npm install -g gulp

Yarn installation: https://yarnpkg.com/lang/en/docs/install/ Installation

git clone https://github.com/ethereum/mist.git
cd mist
git submodule update --init
yarn

Run Mist: On one window run: cd mist/interface && meteor --no-release-check On another window run:

ebloc="path/to/MyEthereumEbloc"
cd mist
sudo electron . --rpc $ebloc/geth.ipc --node-datadir $ebloc/keystore

Please be sure to run geth on the background. Please note that you don't have to mine.

screen shot 2017-03-10 at 20 46 06

Copied from original issue: avatar-lavventura/ethereum#6

ebloc commented 7 years ago

From @ktasyaran on March 11, 2017 20:58

I realized mist also remix ide (browser solidity) itself. Do we also have to download web project as mentioned in Issue #3 @avatar-lavventura

ebloc commented 7 years ago

From @avatar-lavventura on March 11, 2017 22:35

You can use the (browser solidity) within the mist, or the one explained on the Issue #3. They both do the same thing. If you will use mist, no you don't have to download web project(Download solidity-browser ). Issue#3 shows how to access the contract from geth. But inside mist, you can access to your contract from gui. @ktasyaran

ebloc commented 7 years ago

From @ktasyaran on March 14, 2017 0:18

Now I realized that we should modify the lines which are related to OS platform instead of line #s. Numbers are inconsistent.

ebloc commented 7 years ago

From @avatar-lavventura on March 14, 2017 2:1

This might be more helpful: Replace all path variables inside the file called modules/menuItems.js and ipcPath inside the file called modules/settings.js. @ktasyaran

ebloc commented 7 years ago

From @erkanerol on March 14, 2017 21:49

yarn installation is here

https://yarnpkg.com/lang/en/docs/install/

ebloc commented 7 years ago

From @erkanerol on March 14, 2017 23:8

I think this works without making replacements.

electron . --rpc $ebloc_path/geth.ipc --node-networkid 23422 --node-datadir $ebloc_path/keystore

ebloc commented 7 years ago

From @avatar-lavventura on March 15, 2017 4:1

@erkanerol Thank you.