diff --git a/web/cashtab/CHANGELOG.md b/web/cashtab/CHANGELOG.md --- a/web/cashtab/CHANGELOG.md +++ b/web/cashtab/CHANGELOG.md @@ -26,7 +26,7 @@ - [#70](https://github.com/josephroyking/cashtab/pull/70) Support for ticker updates - [#69](https://github.com/josephroyking/cashtab/pull/69) SLP warning for fork - [#68](https://github.com/josephroyking/cashtab/pull/68) Support USD input for sending BCH -- [#67](https://github.com/josephroyking/cashtab/pull/67) Validation for BCH and SLP send amounts in Send.js and SendToken.js +- [#67](https://github.com/josephroyking/cashtab/pull/67) Validation for BCH and SLP send amounts in Send.js and SendToken.js - [#66](https://github.com/josephroyking/cashtab/pull/66) Modified unpkg script to prevent burning SLP outputs in change calculation - [#65](https://github.com/josephroyking/cashtab/pull/65) Switch API method from chunked `tokenUtxoDetails` to `hydrateUtxos` - [#64](https://github.com/josephroyking/cashtab/pull/64) Do not display fiat amount if NaN @@ -64,7 +64,7 @@ - [#30](https://github.com/josephroyking/cashtab/pull/30/) Test coverage to 15%, better function division, additional tests **(release candidate)** - [#28](https://github.com/josephroyking/cashtab/pull/28/) Refactor(App/SLP): Remove SLP token visualization - [#27](https://github.com/josephroyking/cashtab/pull/27/) Chores(test/readme): Add coverage command and update readme -- [#26](https://github.com/josephroyking/cashtab/pull/26/) Test/qrcode +- [#26](https://github.com/josephroyking/cashtab/pull/26/) Test/qrcode - [#25](https://github.com/josephroyking/cashtab/pull/25/) tests(App): add tests for Icons, Common components and Configure - [#24](https://github.com/josephroyking/cashtab/pull/24/) Adjustments to SLP token balanc calculations - [#23](https://github.com/josephroyking/cashtab/pull/23/) Adjust calculation for max send BCH diff --git a/web/cashtab/CONTRIBUTING.md b/web/cashtab/CONTRIBUTING.md --- a/web/cashtab/CONTRIBUTING.md +++ b/web/cashtab/CONTRIBUTING.md @@ -1,15 +1,15 @@ # Contributing -When contributing to this repository, please first discuss the change you wish to make via issues. +When contributing to this repository, please first discuss the change you wish to make via issues. If you have more specific questions, please get in touch via email (andre@cabrera.pw), telegram or twitter (alcipir). Please note we have a code of conduct, please follow it in all your interactions with the project. ## Pull Request Process -1. Ensure any install or build dependencies are removed before the end of the layer when doing a +1. Ensure any install or build dependencies are removed before the end of the layer when doing a build. -2. You may merge the Pull Request in once you have the sign-off of two other developers, or if you +2. You may merge the Pull Request in once you have the sign-off of two other developers, or if you do not have permission to do that, you may request the second reviewer to merge it for you. ## Code of Conduct diff --git a/web/cashtab/README.md b/web/cashtab/README.md --- a/web/cashtab/README.md +++ b/web/cashtab/README.md @@ -1,10 +1,10 @@ # CashTab -## Bitcoin Cash Web Wallet +## Bitcoin Cash Web Wallet ### Features -- Send & Receive BCH +- Send & Receive BCH - Import existing wallets ## Development diff --git a/web/cashtab/src/hooks/useBCH.js b/web/cashtab/src/hooks/useBCH.js --- a/web/cashtab/src/hooks/useBCH.js +++ b/web/cashtab/src/hooks/useBCH.js @@ -346,7 +346,7 @@ // END transaction construction. - // Broadcast transation to the network + // Broadcast transaction to the network const txidStr = await BCH.RawTransactions.sendRawTransaction([hex]); if (txidStr && txidStr[0]) { @@ -583,7 +583,7 @@ // output rawhex const hex = tx.toHex(); - // Broadcast transation to the network + // Broadcast transaction to the network const txidStr = await BCH.RawTransactions.sendRawTransaction([hex]); if (txidStr && txidStr[0]) {