Compare commits

...

4 Commits
0.0.27 ... main

Author SHA1 Message Date
838f01baa5
adding build script and change package name back to ghost-wallet
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2025-07-22 15:02:37 +03:00
078837fc64
add correct link to releases
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2025-07-22 14:41:11 +03:00
72a75296ce
bump version
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2025-07-22 14:25:01 +03:00
47f828331f
change link to the lite.ghostchain.io
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2025-07-22 14:24:32 +03:00
6 changed files with 17 additions and 60 deletions

4
.gitignore vendored
View File

@ -12,6 +12,7 @@
# production # production
/build /build
/dist /dist
/releases
# misc # misc
.DS_Store .DS_Store
@ -26,6 +27,3 @@ yarn-error.log*
/public/manifest.json /public/manifest.json
test-results test-results
playwright-report playwright-report
# NOTE: removed temporarily
/tests

View File

@ -10,7 +10,7 @@ Welcome to GHOST Wallet - the ultimate light client wallet! GHOST Wallet leverag
### Download ### Download
You can download pre-build extension for browser of your choice [here](https://google.com). You can download pre-build extension for browser of your choice [here](https://git.ghostchain.io/ghostchain/ghost-extension-wallet/releases).
- **Chromium-based Browsers** - Use [official guide](https://developer.chrome.com/docs/extensions/get-started/tutorial/hello-world?#load-unpacked) to install - **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/) - **Firefox-based Browsers** - To install extension temporary check official [guide here](https://brave.com/)
@ -65,8 +65,7 @@ responsibility to re-connect back to GHOST Wallet.
## Giving Feedback ## Giving Feedback
If you have trouble integrating this wallet template or you have questions, If you encounter any issues while using the extension, please don't hesitate to open an issue ticket.
please open an issue.
## Acknowledgments ## Acknowledgments

File diff suppressed because one or more lines are too long

10
builder.sh Normal file
View File

@ -0,0 +1,10 @@
#!/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

View File

@ -1,6 +1,6 @@
{ {
"name": "ghost-extension-wallet", "name": "ghost-wallet",
"version": "0.0.26", "version": "0.0.27",
"description": "Browser extension to manage ghost blockchain light clients.", "description": "Browser extension to manage ghost blockchain light clients.",
"main": "dist/src/index.js", "main": "dist/src/index.js",
"author": "Uncle f4ts0 <f4ts0@ghostchain.io>", "author": "Uncle f4ts0 <f4ts0@ghostchain.io>",

View File

@ -35,11 +35,11 @@ export const Settings: React.FC = () => {
<Link <Link
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
to={"https://health.extension.ghostchain.io"} to={"https://lite.ghostchain.io"}
> >
<div className="flex flex-row justify-between"> <div className="flex flex-row justify-between">
<HeartPulse className="w-4 h-4 mr-2 text-primary hover:text-foreground" /> <HeartPulse className="w-4 h-4 mr-2 text-primary hover:text-foreground" />
Check Health GHOST Lite
</div> </div>
</Link> </Link>
</Button> </Button>