{"id":26387226,"url":"https://github.com/bxdoan/pywallet","last_synced_at":"2026-05-09T16:35:46.993Z","repository":{"id":101644230,"uuid":"575235241","full_name":"bxdoan/pywallet","owner":"bxdoan","description":"Python Wallet, your key, your code, your coin","archived":false,"fork":false,"pushed_at":"2024-08-18T20:17:46.000Z","size":5830,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-23T02:46:31.900Z","etag":null,"topics":["eth","ethereum","maticnetwork","near","near-protocol","python","wallet"],"latest_commit_sha":null,"homepage":"","language":"Python","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/bxdoan.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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-07T03:39:40.000Z","updated_at":"2025-04-14T17:54:39.000Z","dependencies_parsed_at":"2025-03-17T08:46:47.369Z","dependency_job_id":null,"html_url":"https://github.com/bxdoan/pywallet","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bxdoan/pywallet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bxdoan%2Fpywallet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bxdoan%2Fpywallet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bxdoan%2Fpywallet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bxdoan%2Fpywallet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bxdoan","download_url":"https://codeload.github.com/bxdoan/pywallet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bxdoan%2Fpywallet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010343,"owners_count":26084738,"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-12T02:00:06.719Z","response_time":53,"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":["eth","ethereum","maticnetwork","near","near-protocol","python","wallet"],"created_at":"2025-03-17T08:30:32.485Z","updated_at":"2025-10-12T05:07:55.445Z","avatar_url":"https://github.com/bxdoan.png","language":"Python","funding_links":["https://paypal.me/bxdoan"],"categories":[],"sub_categories":[],"readme":"# Python Wallet - PyWallet\n\n[![Build Status](https://github.com/bxdoan/pywallet/actions/workflows/main.yml/badge.svg)](https://github.com/bxdoan/pywallet/actions/workflows/main.yml/badge.svg)\n\n\nPyWallet is python script encrypt your private key. Unlike normal extension wallet, PyWallet can't connect to browser, \nso it can't be hack\n\nPyWallet support network `eth`, `matic` and `near`.\n\n\n![alt text](https://raw.githubusercontent.com/bxdoan/pywallet/main/assets/preview.png)\n\n## Set up\n1. Install package\n```sh\nwget -O setup.sh https://raw.githubusercontent.com/bxdoan/pywallet/main/script/setup.sh \u0026\u0026 chmod +x setup.sh \u0026\u0026 ./setup.sh\n```\n\nor clone this repo and run\n```sh\npip3 install -r requirements.txt\n```\nor using pipenv\n```sh\npipenv sync\n```\n\n2. Execute mod for wallet.py\n```sh\nchmod +x ./run.py\n```\n\n## Usage\n1. Run app\n```sh\n./run.sh\n```\n\nor run in python\n\n```sh\n./pywallet.py\n```\nNOTE:\nBy default, we use RPC from alchemy service to get balance and transaction. If you want to use your own url link,\nyou can create it from [alchemy](https://raw.githubusercontent.com/bxdoan/pywallet/main/docs/alchemy.md) and add it to config.json\n```shell\nconfig set --url \"https://eth-mainnet.g.alchemy.com/v2/qzq9rBJLZpygokkr-JVb0J26UGF6yGKl\" --keypair-file \"path/to/your/keypair/file\"\n```\n\nIf you not have wallet, it will create new wallet and save to file *.json by command\n```sh\n./pywallet.py create\n```\nYou can change url and keypair_path for your own config in `~/.pywallet/config.json` and view your wallet \nkeypair in `~/.pywallet/wallet/id.json`\n\n2. Get wallet address\n```sh\n./pywallet.py address\n```\n\n3. Transfer Token\n```sh\n./pywallet.py transfer \u003creicever\u003e \u003camount\u003e\n\n./pywallet.py transfer \u003creicever\u003e \u003camount\u003e -t \u003ctoken_address\u003e\n```\n\n4. Get balance\n```sh\n./pywallet.py balance\n```\n\n5. Search TOKEN address\n```sh\n./pywallet.py search \u003ckey_search\u003e\n./pywallet.py search AAVE\n./pywallet.py search DOGE\n```\n\n## Test \n1. Run test \n```sh \npytest -s\n```\n\nor \n```sh\n./quicktest.sh\n```\n\nNOTE: you can read more in [Usage.md](https://raw.githubusercontent.com/bxdoan/pywallet/main/docs/Usage.md)\n\n## Contact\n[Telegram](https://t.me/bxdoan)\n\n[Email](mailto:hi@bxdoan.com)\n\n## Thanks for use\nBuy me a coffee\n\n[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://paypal.me/bxdoan)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbxdoan%2Fpywallet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbxdoan%2Fpywallet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbxdoan%2Fpywallet/lists"}