Wallet-README.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Ethereum Wallet
  2. The Ethereum wallet, which allows you to create simple and multisig wallets to manage your ether.
  3. The wallet contains its own node, but can also use an already running one, if the IPC path of that node is the standard path.
  4. (See below)
  5. ## Running on a testnet
  6. When you start the wallet on a testnet (e.g. different `--datadir`) you need to make sure to set the `--ipcpath` back to the original one.
  7. On OSX its `~/Library/Ethereum/geth.ipc` on linux `~/.ethereum/geth.ipc` and on windows it uses a named pipe, which doesn't need to be renamed.
  8. Example:
  9. $ geth --datadir /my/chain/ --networkid 23 --ipcpath ~/Library/Ethereum/geth.ipc
  10. ### Original contract
  11. Once you start the app while running a testnet, the wallet need to deploy an original contract,
  12. which will be used by the wallet contracts you create.
  13. The point of the original wallet is that wallet contract creation is cheaper,
  14. as not the full code has to be deployed for every wallet.
  15. You need to make sure that the account displayed for the original wallet creation is unlocked and has at least 1 ether.
  16. ## Paths
  17. The paths which store your wallets database and node are different:
  18. The wallet (Mist) stores its data at:
  19. * Mac: ~/Library/Application Support/Mist
  20. * Windows: %APPDATA%\Roaming\Mist
  21. * Linux: ~/.config/Mist
  22. The nodes data is stored at:
  23. * Mac: ~/Library/Ethereum
  24. * Windows: %APPDATA%\Roaming\Ethereum
  25. * Linux: ~/.ethereum
  26. ## Issues
  27. If you find issues or have suggestion, please report them at
  28. https://github.com/ethereum/meteor-dapp-wallet/issues
  29. ## Repository
  30. The wallet code can be found at
  31. https://github.com/ethereum/meteor-dapp-wallet
  32. And the binary application code, which wraps the wallet app can be found at
  33. https://github.com/ethereum/mist/tree/wallet
  34. ## Bundling the wallet
  35. To bundle the binaries yourself follow the instructions on the mist#wallet readme
  36. https://github.com/ethereum/mist/tree/wallet#deployment