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

Updating to minimal-slp-wallet v4.1.0 with psf-slp-indexer integration
This commit is contained in:
Chris Troutner
2022-02-02 11:54:25 -08:00
committed by GitHub
5 changed files with 4971 additions and 19380 deletions
+1 -2
View File
@@ -7,7 +7,7 @@
module.exports = { module.exports = {
/* Your site config here */ /* Your site config here */
plugins: [ plugins: [
'gatsby-theme-bch-wallet', 'fullstack-gatsby-theme-bch-wallet',
// 'bch-wallet-plugin-postoffice', // 'bch-wallet-plugin-postoffice',
// { // {
// resolve: 'gatsby-plugin-compile-es6-packages', // resolve: 'gatsby-plugin-compile-es6-packages',
@@ -18,7 +18,6 @@ module.exports = {
// require.resolve('/home/trout/work/psf/gatsby-plugin-bch-sweep') // require.resolve('/home/trout/work/psf/gatsby-plugin-bch-sweep')
'gatsby-plugin-bch-sweep', 'gatsby-plugin-bch-sweep',
'gatsby-plugin-bch-create-token' 'gatsby-plugin-bch-create-token'
], ],
// https://www.gatsbyjs.com/docs/reference/release-notes/v2.28/#feature-flags-in-gatsby-configjs // https://www.gatsbyjs.com/docs/reference/release-notes/v2.28/#feature-flags-in-gatsby-configjs
flags: { flags: {
+4944 -19355
View File
File diff suppressed because it is too large Load Diff
+17 -17
View File
@@ -21,13 +21,13 @@
"test": "npm run lint" "test": "npm run lint"
}, },
"dependencies": { "dependencies": {
"@capacitor/android": "^2.4.6", "@capacitor/android": "2.4.6",
"@capacitor/cli": "^2.4.6", "@capacitor/cli": "2.4.6",
"@capacitor/core": "^2.4.6", "@capacitor/core": "2.4.6",
"gatsby": "^4.4.0", "gatsby": "4.4.0",
"gatsby-plugin-bch-create-token": "^1.1.1", "gatsby-plugin-bch-create-token": "1.1.1",
"gatsby-plugin-bch-sweep": "^1.5.5", "gatsby-plugin-bch-sweep": "1.5.5",
"gatsby-theme-bch-wallet": "^1.1.2" "fullstack-gatsby-theme-bch-wallet": "1.0.0"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@@ -37,16 +37,16 @@
"url": "https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash/issues" "url": "https://github.com/Permissionless-Software-Foundation/wallet.fullstack.cash/issues"
}, },
"devDependencies": { "devDependencies": {
"capacitor-resources": "^2.0.5", "capacitor-resources": "2.0.5",
"eslint": "^7.24.0", "eslint": "7.24.0",
"eslint-config-prettier": "^8.2.0", "eslint-config-prettier": "8.2.0",
"eslint-config-standard": "^16.0.2", "eslint-config-standard": "16.0.2",
"eslint-plugin-prettier": "^3.4.0", "eslint-plugin-prettier": "3.4.0",
"eslint-plugin-standard": "^5.0.0", "eslint-plugin-standard": "5.0.0",
"husky": "^4.3.8", "husky": "4.3.8",
"mocha": "^9.1.3", "mocha": "9.1.3",
"semantic-release": "^17.4.2", "semantic-release": "17.4.2",
"standard": "^16.0.3" "standard": "16.0.3"
}, },
"release": { "release": {
"publish": [ "publish": [
@@ -9,10 +9,10 @@
import React from 'react' import React from 'react'
import { Sidebar } from 'adminlte-2-react' import { Sidebar } from 'adminlte-2-react'
import Wallet from 'gatsby-theme-bch-wallet/src/components/admin-lte/wallet' import Wallet from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/wallet'
import Tokens from 'gatsby-theme-bch-wallet/src/components/admin-lte/tokens' import Tokens from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/tokens'
import Configure from 'gatsby-theme-bch-wallet/src/components/admin-lte/configure' import Configure from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/configure'
import SendReceive from 'gatsby-theme-bch-wallet/src/components/admin-lte/send-receive' import SendReceive from 'fullstack-gatsby-theme-bch-wallet/src/components/admin-lte/send-receive'
import About from '../../about' import About from '../../about'
import Sweep from 'gatsby-plugin-bch-sweep/src/components/sweep/index' import Sweep from 'gatsby-plugin-bch-sweep/src/components/sweep/index'
@@ -52,7 +52,9 @@ const MenuComponents = props => {
{ {
key: 'Create Token', key: 'Create Token',
component: <CreateToken key='Create Token' {...props} />, component: <CreateToken key='Create Token' {...props} />,
menuItem: <Item icon='fas-plus-square' key='Create Token' text='Create Token' /> menuItem: (
<Item icon='fas-plus-square' key='Create Token' text='Create Token' />
)
}, },
{ {
key: 'Configure', key: 'Configure',
+2 -1
View File
@@ -39,7 +39,8 @@ export default function HTML (props) {
</div> </div>
{/* minimal-slp-wallet-web */} {/* minimal-slp-wallet-web */}
<script src='https://unpkg.com/minimal-slp-wallet@3.6.1' /> {/* <script src='https://unpkg.com/minimal-slp-wallet@3.6.1' /> */}
<script src='https://unpkg.com/minimal-slp-wallet' />
{/* bch-message-lib */} {/* bch-message-lib */}
<script src='https://unpkg.com/bch-message-lib' /> <script src='https://unpkg.com/bch-message-lib' />