Merge pull request #47 from Permissionless-Software-Foundation/ct-unstable

Updating About View
This commit is contained in:
Chris Troutner
2021-04-19 14:36:05 -07:00
committed by GitHub
3 changed files with 718 additions and 234 deletions
+632 -199
View File
File diff suppressed because it is too large Load Diff
+6 -1
View File
@@ -25,7 +25,7 @@
"@capacitor/cli": "^2.4.6",
"@capacitor/core": "^2.4.6",
"gatsby": "^2.31.1",
"gatsby-ipfs-web-wallet": "^1.23.1",
"gatsby-ipfs-web-wallet": "^1.23.2",
"gatsby-plugin-bch-sweep": "^1.5.4"
},
"repository": {
@@ -37,6 +37,11 @@
},
"devDependencies": {
"capacitor-resources": "^2.0.5",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.8",
"semantic-release": "^17.4.2",
"standard": "^16.0.3"
+80 -34
View File
@@ -9,87 +9,133 @@ class About extends React.Component {
render () {
return (
<Content
title='About'
subTitle=''
browserTitle='About | wallet.fullstack.cash'
title="About"
subTitle=""
browserTitle="About | wallet.fullstack.cash"
>
<Row>
<Col xs={12}>
<Box
title='wallet.fullstack.cash'
type='primary'
title="wallet.fullstack.cash"
type="primary"
closable
collapsable
>
<p>
This is the official web wallet provided by{' '}
<a
href='https://fullstack.cash'
target='_blank'
rel='noopener noreferrer'
href="https://fullstack.cash"
target="_blank"
rel="noopener noreferrer"
>
FullStack.cash
</a>
. You can access this web wallet over Tor and IPFS. See the
links in the footer at the bottom of the page.
</p>
<p>
This wallet app is currently in an 'Open Alpha' test. The
general public is invited to use it, but be aware that the app
is in-progress, the code is in-flux, and many things will change
or break. Please solicit feedback on this app in our{' '}
This wallet app can be used as a normal wallet, but it's real
purpose is to serve as 'boilerplate' application that JavaScript
developers can fork and customize to build their own ideas.
Learn more about the code and infrastructure powering this
wallet at{' '}
<a
href='https://t.me/permissionless_software'
target='_blank'
rel='noopener noreferrer'
href="https://fullstack.cash"
target="_blank"
rel="noopener noreferrer"
>
FullStack.cash
</a>{' '}
Please solicit feedback on this app in our{' '}
<a
href="https://t.me/bch_js_toolkit"
target="_blank"
rel="noopener noreferrer"
>
Telegram Channel
</a>
</p>
<p>
The code for this web wallet can be found{' '}
<a
href='https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash'
target='_blank'
rel='noopener noreferrer'
href="https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash"
target="_blank"
rel="noopener noreferrer"
>
here
on GitHub
</a>
. It's based on the{' '}
<a
href='https://github.com/Permissionless-Software-Foundation/gatsby-ipfs-web-wallet'
target='_blank'
rel='noopener noreferrer'
href="https://github.com/Permissionless-Software-Foundation/bch-wallet-starter"
target="_blank"
rel="noopener noreferrer"
>
bch-wallet-starter Gatsby Starter
</a>
, the{' '}
<a
href="https://github.com/Permissionless-Software-Foundation/gatsby-ipfs-web-wallet"
target="_blank"
rel="noopener noreferrer"
>
gatsby-ipfs-web-wallet Gatsby Theme
</a>
, and the{' '}
<a
href='https://github.com/Permissionless-Software-Foundation/minimal-slp-wallet'
target='_blank'
rel='noopener noreferrer'
href="https://github.com/Permissionless-Software-Foundation/minimal-slp-wallet"
target="_blank"
rel="noopener noreferrer"
>
minimal-slp-wallet
</a>{' '}
wallet engine. We encourage other businesses to copy and modify
the wallet code for their own use.
</p>
<p>
This wallet has full support for Bitcoin Cash and SLP tokens,
including nonfungible tokens (NFT). When a transaction is made
with this wallet, an output of 2000 satoshis is added. This is a
convenience fee that goes towards burning PSF tokens. It helps
support the developers who work on this web wallet and other
software sponsored by the{' '}
This wallet has full support for Bitcoin Cash (BCH) and eCash
(BCHA) blockchains. That includes SLP tokens, including
nonfungible tokens (NFT) on both blockchains. When a transaction
is made with this wallet, an output of 2000 satoshis is added.
This is a convenience fee that goes towards burning PSF tokens.
It helps support the developers who work on this web wallet and
other software sponsored by the{' '}
<a
href='https://psfoundation.cash'
target='_blank'
rel='noopener noreferrer'
href="https://psfoundation.cash"
target="_blank"
rel="noopener noreferrer"
>
Permissionless Software Foundation
</a>
.
</p>
<p>
This app can be compiled into a native Android or iOS app using{' '}
<a
href="https://react-freelancer.ch/blog/build-mobile-apps-using-gatsby-and-capacitor"
target="_blank"
rel="noopener noreferrer"
>
Capacitor
</a>
. The Android APK for this app can be{' '}
<a
href="https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash"
target="_blank"
rel="noopener noreferrer"
>
downloaded from the GitHub repository
</a>
. But, the Android app will run into rate limits unless you add
a JWT token from FullStack.cash into the Configuration View. We
don't actively support use of this web app as a phone app, but
instead provide the APK as proof
that other businesses can fork this wallet app to kick-off
development of their own phone app.
</p>
</Box>
</Col>
</Row>