{"id":17655828,"url":"https://github.com/mascrypt0/multi-wallet-generator","last_synced_at":"2025-10-25T16:36:12.856Z","repository":{"id":227104015,"uuid":"770453119","full_name":"mascrypt0/multi-wallet-generator","owner":"mascrypt0","description":null,"archived":false,"fork":false,"pushed_at":"2024-03-11T17:48:35.000Z","size":389,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-17T09:32:30.477Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/mascrypt0.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":"2024-03-11T15:22:31.000Z","updated_at":"2024-03-11T16:25:56.000Z","dependencies_parsed_at":"2024-03-11T17:15:13.765Z","dependency_job_id":"71a5df2f-8378-4ffe-b888-5cd5d54deba6","html_url":"https://github.com/mascrypt0/multi-wallet-generator","commit_stats":null,"previous_names":["mascrypt0/multi-wallet-generator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mascrypt0/multi-wallet-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mascrypt0%2Fmulti-wallet-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mascrypt0%2Fmulti-wallet-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mascrypt0%2Fmulti-wallet-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mascrypt0%2Fmulti-wallet-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mascrypt0","download_url":"https://codeload.github.com/mascrypt0/multi-wallet-generator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mascrypt0%2Fmulti-wallet-generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280987156,"owners_count":26425325,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-25T02:00:06.499Z","response_time":81,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-10-23T13:08:11.542Z","updated_at":"2025-10-25T16:36:12.822Z","avatar_url":"https://github.com/mascrypt0.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wallet Generator\n\nSimple and powerful utility for generating and managing multicurrency crypto wallets. \nProvides easy-to-use functions to generate mnemonics, compatible with EVM and blockchains, retrieve wallet addresses and private keys and verify mnemonics.\n\n## Features\n\n- Generate BIP39 mnemonics\n- Create EVM-compatible wallets (Ethereum, etc.)\n- Retrieve wallet addresses from mnemonics\n- Extract private keys from mnemonics\n- Verify the validity of mnemonics\n\n## Installation\n\nInstall `multi-wallet-generator` using npm:\n\n```bash\nnpm install multi-wallet-generator\nyarn add multi-wallet-generator\n\n```\n\n## Test\n- To run the tests , use the npm command:\n```bash\n npm run test\n```\n\n# Usage\n- Below are some examples of how to use the wallet-generator library:\n  \nGenerate a Mnemonic\n```bash\nimport { MultichainWalletWrapper } from 'wallet-generator';\n\nasync function generateMnemonic() {\n  const mnemonic = await MultichainWalletWrapper.generateMnemonic();\n  console.log(`Mnemonic: ${mnemonic}`);\n}\n// Note: Mnemonics with less than 12 words have low entropy and may be guessed by an attacker.\ngenerateMnemonic();\n\n```\n- Response\n```bash \n  net idle lava mango another capable inhale portion blossom fluid discover cruise\n```\nCreate an EVM Wallet and Display Mnemonic\n```bash\nasync function createWallet() {\n  const { address, mnemonic } = await MultichainWalletWrapper.createWalletEVMAndDisplayMnemonic();\n  console.log(`Address: ${address}`);\n  console.log(`Mnemonic: ${mnemonic}`);\n}\ncreateWallet();\n```\n\n- Response\n\n```bash\n{\n  address: '0xfBE11AC0258cc8288cA24E818691Eb062f7042E9',\n  mnemonic: 'net idle lava mango another capable inhale portion blossom fluid discover cruise'\n}\n```\n\nGet EVM Wallet Address from Mnemonic\n\n```bash\nasync function getAddress() {\n  const mnemonic = \"Contributions are welcome! Please feel free to submit a pull request or open an issue\"\n  const address = await MultichainWalletWrapper.getEvmWalletAddress(mnemonic);\n  console.log(`Address: ${address}`);\n}\n\ngetAddress();\n```\n- Reponse\n```bash\n0xfBE11AC0258cc8288cA24E818691Eb062f7042E9\n```\n\nRetrieve Private Key for EVM Wallet\n```bash\n async function getPrivateKey() {\n  const mnemonic = \"net idle lava mango another capable inhale portion blossom fluid discover cruise\"\n  const privateKey = await MultichainWalletWrapper.getPrivateKeyEVM(mnemonic);\n  console.log(`Private Key: ${privateKey}`);\n}\n\ngetPrivateKey();\n```\n\n- Response\n```bash\n{\n  privateKey: '0xfdf745f45d1942feea79b4c0a3fc1ca67da366899f7e6cebaa06496806ca8127',\n}\n```\n\nVerify a Mnemonic\n```bash\nasync function verifyMnemonic() {\n  const mnemonic = \"net idle lava mango another capable inhale portion blossom fluid discover cruise\"\n  const isValid = await MultichainWalletWrapper.verifyMemonicEVM(mnemonic);\n  console.log(`Is valid: ${isValid}`);\n}\n\nverifyMnemonic();\n```\n- Response\n```bash\n true\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmascrypt0%2Fmulti-wallet-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmascrypt0%2Fmulti-wallet-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmascrypt0%2Fmulti-wallet-generator/lists"}