{"id":45791435,"url":"https://github.com/fort-major/msq","last_synced_at":"2026-02-26T12:05:20.114Z","repository":{"id":195822685,"uuid":"693748939","full_name":"fort-major/msq","owner":"fort-major","description":"MSQ is a MetaMask Snap wallet for the Internet Computer (ICP)","archived":false,"fork":false,"pushed_at":"2024-09-08T20:37:55.000Z","size":3751,"stargazers_count":7,"open_issues_count":23,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-05T02:57:49.695Z","etag":null,"topics":["authentication","authorization","cryptocurrency","icp","internet-computer","metamask","metamask-snap","payment","sso","wallet"],"latest_commit_sha":null,"homepage":"https://icp.msq.tech","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fort-major.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"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}},"created_at":"2023-09-19T16:24:59.000Z","updated_at":"2025-03-24T13:48:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"3e78f0de-c7ba-4e78-9efb-6eab7829997f","html_url":"https://github.com/fort-major/msq","commit_stats":null,"previous_names":["fort-major/ic-snap","fort-major/masquerade","fort-major/msq"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/fort-major/msq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fort-major%2Fmsq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fort-major%2Fmsq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fort-major%2Fmsq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fort-major%2Fmsq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fort-major","download_url":"https://codeload.github.com/fort-major/msq/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fort-major%2Fmsq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29858461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T08:51:08.701Z","status":"ssl_error","status_checked_at":"2026-02-26T08:50:19.607Z","response_time":89,"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":["authentication","authorization","cryptocurrency","icp","internet-computer","metamask","metamask-snap","payment","sso","wallet"],"created_at":"2026-02-26T12:05:19.350Z","updated_at":"2026-02-26T12:05:20.066Z","avatar_url":"https://github.com/fort-major.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MSQ - Safe ICP Wallet\n\nPrivacy-focused MetaMask snap for interacting with the Internet Computer (ICP)\n\n*[Join Our Telegram](https://t.me/fortmajoricp)*\n\n*[Subscribe to our X](https://x.com/msqwallet)*\n\n## Documentation\n\n1. [MSQ's Architecture](./documentation/architecture.md)\n2. [How to integrate MSQ into your Dapp](./documentation/integration.md)\n\n## Audits\n\nThis software's code was audited by Consensys Diligence at March of 2024. All the findings were addressed immediately and with great care. You can read the report [here](https://consensys.io/diligence/audits/2024/03/msq-snap/).\n\n## Local development\n\nThis project is managed with `pnpm` and `turborepo`.\n\n* `npm i -g pnpm`\n* `pnpm i -g turbo dotenv-cli`\n\n### Install\n\n* `pnpm install`\n\n### Environment variables\n\nYou would need files called `.env.dev` and `.env.prod` in the root folder. Set their content as `example.env` says.\nIf you change any devserver host (snap, snap website or demo website), then you should also change it in `.env.dev`.\nDFX env variables (starting with `CANISTER_ID_`) are propagated to vite automatically. The same goes for env variables starting with `MSQ_`.\n\n### Project structure\n\n* `/packages/snap` contains the MSQ Snap module;\n* `/apps/site` contains the MSQ companion dapp;\n* `/packages/client` contains the client library used by third party developers to integrate with MSQ;\n* `/packages/shared` contains a library with shared utility functions, types and constants;\n* `/apps/demo` contains a demo dapp project that showcases the integration;\n* `/apps/nns` contains a complete set of nns-canisters for development purposes.\n\n### Run locally\n\n* `dfx start` - (in a separate terminal window)\n* `dfx extension install nns` - install nns extension to your dfx\n* `cd apps/nns \u0026\u0026 dfx nns install \u0026\u0026 cd ../..` - install nns canisters\n* `pnpm run dev:gen` - generates javascript declaration files\n* `pnpm run dev:build` - builds frontends for dev network\n* `pnpm run dev:deploy` - deploys all canisters locally (please run this command after you deploy to the mainnet to rebuild the env vars)\n  * if this command fails because of locked `Cargo.toml`, run `pnpm run cargo:repair` and repeat\n* `pnpm run dev` - starts a development server with both: MSQ website and Demo project\n\n### Test\n\nTests only work when the project is built for dev (`pnpm run dev:build`)\n\n* `pnpm run test`\n\n### Lint with eslint\n\n* `pnpm run lint`\n\n### Format with prettier\n\n* `pnpm run format`\n\n### Render documentation with typedoc\n\n* `pnpm run doc`\n\n### Prod deployment\n\n* `pnpm run prod:build`\n* `pnpm run prod:deploy`\n\n### Publishing\n\n*Note: Make sure you're publishing `packages/shared` before `packages/client`, because the second depends on the first being available at the registry before it can be published as well.*\n\n* (opt) `npm login` - don't forget to log in to your npm account\n* `pnpm run pub`\n\n## Contribution\n\nFeel free to open an issue if you found a bug or want to suggest a feature.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffort-major%2Fmsq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffort-major%2Fmsq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffort-major%2Fmsq/lists"}