https://github.com/ether1project/meteor-dapp-wallet
This is the Ether-1 Version of Ethereum's Meteor DApp Wallet -- This is not production ready - deploy & use it with extreme caution.
https://github.com/ether1project/meteor-dapp-wallet
wallet wallet-dapp wallet-transaction
Last synced: 4 months ago
JSON representation
This is the Ether-1 Version of Ethereum's Meteor DApp Wallet -- This is not production ready - deploy & use it with extreme caution.
- Host: GitHub
- URL: https://github.com/ether1project/meteor-dapp-wallet
- Owner: Ether1Project
- License: gpl-3.0
- Created: 2018-06-18T07:05:29.000Z (about 8 years ago)
- Default Branch: Ether-1
- Last Pushed: 2019-03-29T22:20:53.000Z (over 7 years ago)
- Last Synced: 2025-12-25T23:30:41.006Z (7 months ago)
- Topics: wallet, wallet-dapp, wallet-transaction
- Language: JavaScript
- Homepage: https://meteor.fallengravity.xyz
- Size: 4.18 MB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# Ethereum Wallet Ðapp
The Ethereum wallet.
[](https://travis-ci.org/ethereum/meteor-dapp-wallet)
**NOTE** The wallet is not yet official released,
can contain severe bugs!
## Development
Start an `geth` node and and the app using meteor and open http://localhost:3000 in your browser:
$ geth --rpccorsdomain "http://localhost:3000" --rpc --unlock
Starting the wallet dapp using [Meteor](https://meteor.com/install)
$ cd meteor-dapp-wallet/app
$ meteor
Go to http://localhost:3000
## Deployment
To create a build version of your app run:
// install meteor-build-client
$ npm install -g meteor-build-client
// bundle dapp
$ cd meteor-dapp-wallet/app
$ meteor-build-client ../build --path ""
This will generate the files in the `../build` folder. Double click the index.html to start the app.
To make routing work properly you need to build it using:
$ meteor-build-client ../build
And start a local server which points with its document root into the `../build` folder,
so that you can open the app using `http://localhost:80/`
To deploy them to the **wallet.ethereum.org** site, execute these commands (from the app folder):
git checkout gh-pages
git merge develop
cd app
meteor-build-client ../build --path "/"
And push (or PR) your changes to the gh-pages branch.
***
## Gas usage statistics
- Deploy original wallet: 1 230 162
- Deploy wallet stub: 184 280
- Simple Wallet transaction: 64 280
- Multisig Wallet transaction below daily limit: 79 280
- Multisig Wallet transaction above daily limit: 171 096
- 1 Multisig confirmation: 48 363