{"id":41965519,"url":"https://github.com/alephium/desktop-wallet","last_synced_at":"2026-01-25T23:08:24.659Z","repository":{"id":37082460,"uuid":"294730173","full_name":"alephium/desktop-wallet","owner":"alephium","description":"The official Alephium wallet for desktop","archived":false,"fork":false,"pushed_at":"2024-01-29T05:49:40.000Z","size":12378,"stargazers_count":78,"open_issues_count":18,"forks_count":50,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-01-30T02:56:48.616Z","etag":null,"topics":["alephium","electron","hacktoberfest"],"latest_commit_sha":null,"homepage":"https://alephium.org","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alephium.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-09-11T15:19:07.000Z","updated_at":"2024-01-07T12:00:02.000Z","dependencies_parsed_at":"2022-07-11T20:01:56.827Z","dependency_job_id":"24ac9ce7-6bfa-4b82-a5da-8f7df4a1095e","html_url":"https://github.com/alephium/desktop-wallet","commit_stats":null,"previous_names":[],"tags_count":120,"template":false,"template_full_name":null,"purl":"pkg:github/alephium/desktop-wallet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alephium%2Fdesktop-wallet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alephium%2Fdesktop-wallet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alephium%2Fdesktop-wallet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alephium%2Fdesktop-wallet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alephium","download_url":"https://codeload.github.com/alephium/desktop-wallet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alephium%2Fdesktop-wallet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28761714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T23:06:19.311Z","status":"ssl_error","status_checked_at":"2026-01-25T23:03:50.555Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alephium","electron","hacktoberfest"],"created_at":"2026-01-25T23:08:23.332Z","updated_at":"2026-01-25T23:08:24.653Z","avatar_url":"https://github.com/alephium.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## ⚠️ Deprecation warning: This repository has been integrated into the [Alephium frontend monorepo](https://github.com/alephium/alephium-frontend/) and is no longer maintained.\n\n# Alephium desktop wallet\n\nThe official Alephium desktop wallet.\n\n![Wallet preview](https://user-images.githubusercontent.com/1579899/236201682-4e0b0c45-65d3-42c0-b187-d8d6387426d7.png)\n\n## Development\n\nInstall depedencies with:\n\n```shell\nnpm install\n```\n\nTo launch it as an electron app, run:\n\n```shell\nnpm run start:electron\n```\n\n## Test\n\n```shell\nnpm test\n```\n\n## Packaging\n\nThe command below will detect your OS and build the corresponding package:\n\n```shell\nnpm run electron-pack\n```\n\nTo build for ARM64 Linux, run:\n\n```shell\nnpm run electron-pack-linux:arm64\n```\n\n## Release\n\nTo release a new version:\n\n1. Checkout the master branch:\n   ```shell\n   git checkout master\n   ```\n2. Create a commit that updates the package version in package.json and package-lock.json and a tag with:\n   ```shell\n   npm version patch # if you want to bump the patch version\n   npm version minor # if you want to bump the minor version\n   npm version major # if you want to bump the major version\n   npm version prepatch --preid=rc # if you want to create a release candidate and bump the patch version\n   npm version preminor --preid=rc # if you want to create a release candidate and bump the minor version\n   npm version premajor --preid=rc # if you want to create a release candidate and bump the major version\n   ```\n3. Push the new commit and new tag to GitHub to trigger the release workflow that will build the downloadable binaries:\n\n   ```shell\n   git push\n   git push [remote] \u003ctag\u003e\n   ```\n\n## Adding new translation\n\n1. Copy `locales/fr-FR/translation.json` into `locales/[xx-YY]/translation.json` and add your translations.\n2. Import new translation file and add it to the resources in `src/i18n.ts`\n\n   ```ts\n   import en from '../locales/en-US/translation.json'\n   import fr from '../locales/fr-FR/translation.json'\n\n   i18next.use(initReactI18next).init({\n     resources: {\n       'en-US': { translation: en },\n       'fr-FR': { translation: fr }\n     }\n   })\n   ```\n\n3. Add new language option in `src/utils/settings.ts`\n\n   ```ts\n   const languageOptions = [\n     { label: 'English', value: 'en-US' },\n     { label: 'Français', value: 'fr-FR' }\n   ]\n   ```\n\n4. Import `dayjs` translation file in `src/storage/settings/settingsSlice.ts`\n\n   ```ts\n   import 'dayjs/locale/fr'\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falephium%2Fdesktop-wallet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falephium%2Fdesktop-wallet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falephium%2Fdesktop-wallet/lists"}