{"id":43933284,"url":"https://github.com/stakekit/signers","last_synced_at":"2026-02-07T00:20:00.990Z","repository":{"id":215087796,"uuid":"736928138","full_name":"stakekit/signers","owner":"stakekit","description":"The StakeKit Signers allows you to create a signing wallet instance from a mnemonic phrase or ledger app and sign transactions","archived":false,"fork":false,"pushed_at":"2025-09-08T15:14:14.000Z","size":6718,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-20T17:41:26.050Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/stakekit.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,"zenodo":null}},"created_at":"2023-12-29T09:29:47.000Z","updated_at":"2025-09-08T15:14:18.000Z","dependencies_parsed_at":"2024-03-08T17:45:46.427Z","dependency_job_id":"7edfbf13-0e61-43d4-9992-ea13266d2783","html_url":"https://github.com/stakekit/signers","commit_stats":null,"previous_names":["stakekit/signers"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stakekit/signers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stakekit%2Fsigners","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stakekit%2Fsigners/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stakekit%2Fsigners/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stakekit%2Fsigners/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stakekit","download_url":"https://codeload.github.com/stakekit/signers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stakekit%2Fsigners/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29181340,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T23:15:33.022Z","status":"ssl_error","status_checked_at":"2026-02-06T23:15:09.128Z","response_time":59,"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":[],"created_at":"2026-02-07T00:20:00.431Z","updated_at":"2026-02-07T00:20:00.978Z","avatar_url":"https://github.com/stakekit.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# StakeKit Signers\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/stakekit/assets/blob/main/logo/sk-logo.png?raw=true\" alt=\"Stakekit's logo\"/\u003e\n\u003c/p\u003e\n\n[signers-package]: ./packages/signers\n[signers-npm-link]: https://www.npmjs.com/package/@stakekit/signers\n\n## Introduction\n\nThe StakeKit Signers is a package that allows you to create a signing wallet instance from a mnemonic phrase or ledger app and sign transactions.\n\nIn addition to that, you can provide a custom derivation path for your mnemonic phrase and get different wallets derived from it, from different types of wallet mechanisms, such as MetaMask, Omni, Phantom or Keplr.\n\n### Supported Networks\n\nWe currently support the following networks:\n\n- Avalanche-C\n- Avalanche-C Atomic\n- Avalanche-P\n- Arbitrum\n- Binance\n- BinanceBeacon\n- Celo\n- Ethereum\n- Ethereum Goerli\n- Fantom\n- Harmony\n- Optimism\n- Polygon\n- Akash\n- Cosmos\n- Juno\n- Kava\n- Osmosis\n- Stargaze\n- Near\n- Solana\n- Tezos\n\n### Supported Wallets\n\nWe currently support:\n\n- MetaMask\n- Omni\n- Phantom\n- Keplr\n- SteakWallet\n- Temple\n\n## Development\n\ninstall [`proto`](https://moonrepo.dev/proto) toolchain manager.\n\nOnce you have installed `proto`, run:\n\n```bash\nproto use\n```\n\nInstall packages:\n\n```bash\npnpm i\n```\n\nBuild package:\n\n```bash\npnpm build\n```\n\n## Installation\n\nTo install StakeKit Signers (in addition, we recomment installing the packages @stakekit/common):\n\n```bash\nnpm install @stakekit/signers\n```\n\nor\n\n```bash\nyarn add @stakekit/signers\n```\n\nor\n\n```bash\npnpm add @stakekit/signers\n```\n\n## Usage\n\n### Examples\n\n#### Ethereum\n\n```tsx\nimport { ImportableWallets, getSigningWallet } from '@stakekit/signers';\nimport { Networks } from '@stakekit/common';\nimport { TransactionRequest } from '@ethersproject/abstract-provider';\n\nconst walletoptions = {\n  mnemonic: process.env.MNEMONIC,\n  walletType: ImportableWallets.MetaMask,\n  index: 0,\n};\n\nconst signingWallet = await getSigningWallet(Networks.Ethereum, walletoptions);\nconst address = await signingWallet.getAddress();\n\nconsole.log('My wallet address: ', address);\n\nconst someUnsignedTx: TransactionRequest = {}; // Your unsigned transaction.\n\nconst signedTx = await wallet.signTransaction(unsignedTransaction);\n\n// submitTransaction(signedTx);\n```\n\n#### Solana\n\n```tsx\nimport { ImportableWallets, getSigningWallet } from '@stakekit/signers';\nimport { Networks } from '@stakekit/common';\n\nconst walletoptions = {\n  mnemonic: process.env.MNEMONIC,\n  walletType: ImportableWallets.MetaMask,\n  index: 0,\n};\n\nconst signingWallet = await getSigningWallet(Networks.Solana, walletoptions);\nconst address = await signingWallet.getAddress();\n\nconsole.log('My wallet address: ', address);\n\nconst someUnsignedTx: string = ''; // Your unsigned transaction in hex.\n\nconst signedTx = await wallet.signTransaction(unsignedTransaction);\n\n// submitTransaction(signedTx);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstakekit%2Fsigners","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstakekit%2Fsigners","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstakekit%2Fsigners/lists"}