diff --git a/web/cashtab/README.md b/web/cashtab/README.md index 89dc14f7b..d22a4864d 100644 --- a/web/cashtab/README.md +++ b/web/cashtab/README.md @@ -1,97 +1,97 @@ -# CashTab +# Cashtab ## Bitcoin Cash Web Wallet ### Features - Send & Receive BCH - Import existing wallets ## Development ``` npm install npm start ``` Runs the app in the development mode.
Open [http://localhost:3000](http://localhost:3000) to view it in the browser. The page will reload if you make edits.
You will also see any lint errors in the console. ## Testing Run the tests in watch mode (interactive): ``` npm test ``` Run the tests and generate a coverage report (non-interactive): ``` npm run test:coverage ``` You can then browse the HTML coverage report by opening the `coverage/lcov-report/index.html` file in your web browser. ## Production In the project directory, run: ``` npm run build ``` Builds the app for production to the `build` folder.
It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.
Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ## Browser Extension 1. `npm run extension` 2. Open Chrome or Brave 3. Navigate to `chrome://extensions/` (or `brave://extensions/`) 4. Enable Developer Mode 5. Click "Load unpacked" 6. Select the `extension/dist` folder that was created with `npm run extension` ## Docker deployment ``` npm install docker-compose build docker-compose up ``` ## Redundant APIs -CashTab accepts multiple instances of `bch-api` as its backend. Input your desired API URLs separated commas into the `REACT_APP_BCHA_APIS` variable. For example, to run CashTab with three redundant APIs, use: +Cashtab accepts multiple instances of `bch-api` as its backend. Input your desired API URLs separated commas into the `REACT_APP_BCHA_APIS` variable. For example, to run Cashtab with three redundant APIs, use: ``` REACT_APP_BCHA_APIS=https://rest.kingbch.com/v3/,https://wallet-service-prod.bitframe.org/v3/,https://free-main.fullstack.cash/v3/ ``` -You can also run CashTab with a single API, e.g. +You can also run Cashtab with a single API, e.g. ``` REACT_APP_BCHA_APIS=https://rest.kingbch.com/v3/ ``` -CashTab will start with the first API in your list. If it receives an error from that API, it will try the next one. +Cashtab will start with the first API in your list. If it receives an error from that API, it will try the next one. Navigate to `localhost:8080` to see the app. -## CashTab Roadmap +## Cashtab Roadmap The following features are under active development: - Transaction history - Simple Ledger Postage Protocol Support -- CashTab browser extension +- Cashtab browser extension diff --git a/web/cashtab/extension/public/manifest.json b/web/cashtab/extension/public/manifest.json index 9bebb04a3..f68556ecb 100644 --- a/web/cashtab/extension/public/manifest.json +++ b/web/cashtab/extension/public/manifest.json @@ -1,30 +1,30 @@ { "manifest_version": 2, - "name": "CashTab", + "name": "Cashtab", "description": "A browser-integrated BCHA wallet from Bitcoin ABC", - "version": "0.0.4", + "version": "0.0.5", "content_scripts": [ { "matches": ["file://*/*", "http://*/*", "https://*/*"], "js": ["contentscript.js"], "run_at": "document_idle", "all_frames": true } ], "background": { "scripts": ["background.js"], "persistent": false }, "browser_action": { "default_popup": "index.html", - "default_title": "CashTab" + "default_title": "Cashtab" }, "icons": { "16": "bch16.png", "48": "bch48.png", "128": "bch128.png", "192": "bch192.png", "512": "bch512.png" } }