Compare commits
No commits in common. "main" and "0.0.27" have entirely different histories.
4
.gitignore
vendored
4
.gitignore
vendored
@ -12,7 +12,6 @@
|
||||
# production
|
||||
/build
|
||||
/dist
|
||||
/releases
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
@ -27,3 +26,6 @@ yarn-error.log*
|
||||
/public/manifest.json
|
||||
test-results
|
||||
playwright-report
|
||||
|
||||
# NOTE: removed temporarily
|
||||
/tests
|
||||
|
@ -10,7 +10,7 @@ Welcome to GHOST Wallet - the ultimate light client wallet! GHOST Wallet leverag
|
||||
|
||||
### Download
|
||||
|
||||
You can download pre-build extension for browser of your choice [here](https://git.ghostchain.io/ghostchain/ghost-extension-wallet/releases).
|
||||
You can download pre-build extension for browser of your choice [here](https://google.com).
|
||||
|
||||
- **Chromium-based Browsers** - Use [official guide](https://developer.chrome.com/docs/extensions/get-started/tutorial/hello-world?#load-unpacked) to install
|
||||
- **Firefox-based Browsers** - To install extension temporary check official [guide here](https://brave.com/)
|
||||
@ -65,7 +65,8 @@ responsibility to re-connect back to GHOST Wallet.
|
||||
|
||||
## Giving Feedback
|
||||
|
||||
If you encounter any issues while using the extension, please don't hesitate to open an issue ticket.
|
||||
If you have trouble integrating this wallet template or you have questions,
|
||||
please open an issue.
|
||||
|
||||
## Acknowledgments
|
||||
|
||||
|
50
assets/chainspecs/polkadot.json
Normal file
50
assets/chainspecs/polkadot.json
Normal file
File diff suppressed because one or more lines are too long
10
builder.sh
10
builder.sh
@ -1,10 +0,0 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
NAME=$(grep "name" package.json | grep -oP '(?<=: ")[^"]+')
|
||||
VERSION=$(grep "version" package.json | grep -oP '(?<=: ")[^"]+')
|
||||
BROWSERS=("chrome" "firefox")
|
||||
|
||||
for BROWSER in "${BROWSERS[@]}"; do
|
||||
pnpm build:$BROWSER
|
||||
python -m zipfile -c releases/$NAME-$BROWSER@v$VERSION /dist
|
||||
done
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ghost-wallet",
|
||||
"version": "0.0.27",
|
||||
"name": "ghost-extension-wallet",
|
||||
"version": "0.0.26",
|
||||
"description": "Browser extension to manage ghost blockchain light clients.",
|
||||
"main": "dist/src/index.js",
|
||||
"author": "Uncle f4ts0 <f4ts0@ghostchain.io>",
|
||||
|
@ -35,11 +35,11 @@ export const Settings: React.FC = () => {
|
||||
<Link
|
||||
rel="noreferrer"
|
||||
target="_blank"
|
||||
to={"https://lite.ghostchain.io"}
|
||||
to={"https://health.extension.ghostchain.io"}
|
||||
>
|
||||
<div className="flex flex-row justify-between">
|
||||
<HeartPulse className="w-4 h-4 mr-2 text-primary hover:text-foreground" />
|
||||
GHOST Lite
|
||||
Check Health
|
||||
</div>
|
||||
</Link>
|
||||
</Button>
|
||||
|
Loading…
Reference in New Issue
Block a user