Online Webwallet for Counterparty.
Originally based off of Carbonwallet (however virtually all the original code has been removed or rewritten).
- Main page: counterwallet.io
- Primary server -- Mainnet: wallet.counterwallet.io
- Primary server -- Testnet: wallet-testnet.counterwallet.io
- Deterministic wallet addresses (BIP 32-based)
- Supports the majority of Counterparty functionality
- Fully-AJAX driven
- Anonymous
- Runs in the browser, with keys created in memory
- Multi-sig
Desktop
- Chrome 23+ (preferred browser)
- Firefox 25+
- Safari 7+
- Opera 15+
Notably, Internet Explorer is not supported, due to its lack of full Content-Security-Policy support (even with IE 11).
Mobile
- IOS Safari 7+
- Android Browser 4.4+
- Chrome for Android 33+
- Chrome for iOS 35+
- Firefox for Android 26+
sudo npm install -g grunt-cli bower
cd src; bower install; cd ..
npm install
grunt build
grunt freeze
- Create an account on Transifex
- In your home directory, create a file named
.transifex
and put your Transifex username and password into it in this format:user:password
- Run
grunt build
to download translations - Add the languages you want to support to
AVAILABLE_LANGUAGES
in counterwallet.conf.json - you can use counterwallet.conf.json.example as a template. The template file contains only the setting relevant to languages and does not replace the rest of variables required in that file (refer to Federeated Node documentation for additional details aboutcounterwallet.conf
).
See this link for more info.
The easiest way to develop locally;
-
sudo npm install -g serve
-
open a seperate terminal and
cd build/
and runserve
-
add
"https://wallet.counterwallet.io"
to yourservers
incounterwallet.conf.json
-
use the following to build:
grunt build --dontcheckdeps --dontminify && cp counterwallet.conf.json build/
- the
--dontcheckdeps
speeds up the process and avoids having to dogrunt freeze
everytime you make a change to a dependency during development - the
--dontminify
makes your debugging life a bit easier - the
cp
is neccesary because grunt keeps clearing thebuild
folder
- the
-
visit
http://localhost:3000
(or you can specify a different port forserve
if you like) -
extra; if you want to test your local version on another device (or let another person test something) use https://ngrok.com to setup a tunnel to your local env
npm install
triggers a prepublish
which is configured to do grunt build
and will bork if you haven't done a grunt freeze
after making changes to dependencies.
You can use npm update
to circumvent this during development.
You can run tests in your browser by doing the above steps and;
- open a seperate terminal and [from the root of the project, not from
build/
runserve -p 3001
(different port) - visit
http://localhost:3001/test/test.html
npm test