{"id":49585039,"url":"https://github.com/vergecurrency/vergeslim","last_synced_at":"2026-05-03T22:05:16.426Z","repository":{"id":35697954,"uuid":"218386016","full_name":"vergecurrency/VergeSlim","owner":"vergecurrency","description":"A lite desktop wallet client built with Vue.js and Electron :electron:","archived":false,"fork":false,"pushed_at":"2026-04-30T22:36:02.000Z","size":82425,"stargazers_count":6,"open_issues_count":0,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-04-30T23:18:42.585Z","etag":null,"topics":["desktop-wallet","electron","tor","vue"],"latest_commit_sha":null,"homepage":"https://vergecurrency.com/wallets/","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vergecurrency.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-10-29T21:21:27.000Z","updated_at":"2026-04-30T22:36:07.000Z","dependencies_parsed_at":"2025-04-14T11:54:55.382Z","dependency_job_id":"f49cc5e2-31c3-49e4-a24e-706c19dfc2d5","html_url":"https://github.com/vergecurrency/VergeSlim","commit_stats":null,"previous_names":["vergecurrency/vergeslim"],"tags_count":36,"template":false,"template_full_name":null,"purl":"pkg:github/vergecurrency/VergeSlim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vergecurrency%2FVergeSlim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vergecurrency%2FVergeSlim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vergecurrency%2FVergeSlim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vergecurrency%2FVergeSlim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vergecurrency","download_url":"https://codeload.github.com/vergecurrency/VergeSlim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vergecurrency%2FVergeSlim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32586189,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: 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":["desktop-wallet","electron","tor","vue"],"created_at":"2026-05-03T22:05:15.074Z","updated_at":"2026-05-03T22:05:16.418Z","avatar_url":"https://github.com/vergecurrency.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./vergeslim.png\" alt=\"Verge Slim header\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/vergecurrency/VergeSlim/actions\" target=\"_blank\"\u003e\u003cimg src=\"https://github.com/vergecurrency/VergeSlim/actions/workflows/ci.yml/badge.svg\"\u003e\u003c/a\u003e\n  \u003cimg src=\"https://img.shields.io/badge/status-beta-orange.svg\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/macOS-15+-blue.svg\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Windows-^10-lightblue.svg\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Ubuntu-24.04-orange.svg\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/node.js-24-blue.svg\"\u003e\n\u003c/p\u003e\n\n### based on MyVergies, originally created by: Swen Van Zanten\n\nVerge Slim is an easy-to-use, secure, light-weight wallet for your Windows/Linux/macOS computer. With **Tor** integrated you can be sure your wallet communication is private! 💪\n\n## Features:\n\n* Sending and receiving XVG\n* Store addresses in an address book\n* Tor integrated\n* Price statistics in different fiat currencies\n* Private keys are yours\n* Possibility to choose your own wallet service\n* Uses No-KYC Stealth Ex over Tor\n\n## Local Development\n\nIf you want to help with development, use this setup:\n\n1. Fork the project, and clone it to your local machine.\n\n2. Use Node 22+ and npm 10 (recommended).\n```bash\nnode -v\nnpm -v\n```\n\n3. Install Linux dependencies (Linux only):\n\nUbuntu/Debian:\n```bash\nsudo apt update\nsudo apt install -y pkg-config libsecret-1-dev\n```\n\nRed Hat:\n```bash\nsudo yum install libsecret-devel\n```\n\nArch Linux:\n```bash\nsudo pacman -S libsecret\n```\n\n4. Install npm dependencies:\n```bash\nnpm ci\n```\n\n5. Run a local instance with hot reload:\n```bash\nnpm run electron:serve\n```\n\n6. Run tests locally:\n```bash\nnpm test\n```\n\n## Packaging / Build\n\nUse these scripts from the project root:\n\n```bash\n# Linux AppImage\nnpm run electron:build:linux\n\n# Windows portable .exe from Linux\nnpm run electron:build:win\n```\n\nArtifacts are written to `dist_electron/`.\n\n### Linux Runtime Note\n\nSome Linux environments require launching the wallet with `--no-sandbox`.\n\nExample:\n\n```bash\n./Verge\\ Slim-1.1.0.AppImage --no-sandbox\n```\n\nPlease setup your own local VWS instance to test your changes against. You can checkout [the bitcore repository](https://github.com/vergecurrency/bitcore) and setup an instance [using docker](https://github.com/vergecurrency/bitcore/blob/main/Docker.md).\n\n## Tor Notes\n\nThis repository includes platform Tor binaries under `public/bin/Tor`.\n\nPlease do not replace Tor with a system binary for normal development. The app is configured to use the repository-provided Tor assets in packaged builds and during runtime install.\n\n### Docs Website\n\nBuild the static docs site:\n\n```bash\nnpm run docs:build\n```\n\n## Build With\n\n* [Vue.js](https://github.com/vuejs/vue) - Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web\n* [Electron](https://github.com/github/electron) - Build cross-platform desktop apps with JavaScript, HTML, and CSS\n* [Vue CLI](https://github.com/vuejs/vue-cli) - The renderer build uses Vue CLI with webpack 5\n* [Electron Builder](https://github.com/electron-userland/electron-builder) - Packaging is handled directly without the old Vue Electron plugin layer\n* [Tor](https://dist.torproject.org/torbrowser/) - The intergration of Tor (expert bundle binary) makes sure your transactions are private\n\n### Community\n\n* [Telegram](https://t.me/officialxvg)\n* [Discord](https://discord.gg/vergecurrency)\n* [Twitter](https://x.com/vergecurrency)\n* [Facebook](https://www.facebook.com/VERGEcurrency/)\n* [Reddit](https://www.reddit.com/r/vergecurrency/)\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvergecurrency%2Fvergeslim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvergecurrency%2Fvergeslim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvergecurrency%2Fvergeslim/lists"}