{"id":13596961,"url":"https://github.com/Jwyman328/LiveWallet","last_synced_at":"2025-04-10T00:31:32.991Z","repository":{"id":225717109,"uuid":"766663333","full_name":"Jwyman328/LiveWallet","owner":"Jwyman328","description":"An application to help estimate the effect of bitcoin transaction fees on invididual utxos and transactions containing multiple utxos.","archived":false,"fork":false,"pushed_at":"2024-10-30T00:09:04.000Z","size":55211,"stargazers_count":17,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-30T02:48:15.757Z","etag":null,"topics":["bitcoin","utxos"],"latest_commit_sha":null,"homepage":"https://livewallet.space","language":"TypeScript","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/Jwyman328.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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},"funding":{"github":["electron-react-boilerplate","amilajack"],"patreon":"amilajack","open_collective":"electron-react-boilerplate-594"}},"created_at":"2024-03-03T21:37:34.000Z","updated_at":"2024-10-25T22:20:35.000Z","dependencies_parsed_at":"2024-03-27T01:24:10.672Z","dependency_job_id":"39b76c83-8afd-4b96-8e0d-07ba01f37709","html_url":"https://github.com/Jwyman328/LiveWallet","commit_stats":null,"previous_names":["jwyman328/utxo_fee_estimation_fe_electron_app","jwyman328/livewallet"],"tags_count":9,"template":false,"template_full_name":"electron-react-boilerplate/electron-react-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jwyman328%2FLiveWallet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jwyman328%2FLiveWallet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jwyman328%2FLiveWallet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jwyman328%2FLiveWallet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jwyman328","download_url":"https://codeload.github.com/Jwyman328/LiveWallet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248135215,"owners_count":21053642,"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","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":["bitcoin","utxos"],"created_at":"2024-08-01T17:00:15.919Z","updated_at":"2025-04-10T00:31:32.961Z","avatar_url":"https://github.com/Jwyman328.png","language":"TypeScript","funding_links":["https://github.com/sponsors/electron-react-boilerplate","https://github.com/sponsors/amilajack","https://patreon.com/amilajack","https://opencollective.com/electron-react-boilerplate-594"],"categories":["Applications"],"sub_categories":[],"readme":"\u003cdiv style=\"display: flex; align-items: center;\"\u003e\n    \u003ch1 style=\"margin-right: 10px;\"\u003eLive Wallet\u003c/h1\u003e\n    \u003cp style=\"font-size: smaller;\"\u003eKeep your utxos alive\u003c/p\u003e\n\u003c/div\u003e\n\n## Description\n- An application to help estimate the effect of bitcoin transaction fees on invididual utxos and transactions containing multiple utxos. As well, analyzing transaction privacy, helping reduce tx privacy mistakes.\n\n\n\n\n## Demos\n### Fee efficiency demo\nhttps://github.com/user-attachments/assets/42f34e55-e6ef-4519-9754-dadb7fed4f7b\n\n### Privacy Analyzing demo\nhttps://github.com/user-attachments/assets/d4bd6657-0a93-4310-863b-3d2eae0f4450\n\n### Multisig wallet support demo\nhttps://github.com/user-attachments/assets/ca5f1332-5443-4283-8c0d-54bdf4363e11\n\n\n\n# Development\n\n## Prerequisits\n- For all things bitcoin core / electrum in local development install ngiri (https://github.com/vulpemventures/nigiri)\n```\n$ curl https://getnigiri.vulpem.com | bash\n```\n- For hardware wallet usb interactions, libusb is required.\n```bash\n$ brew install libusb\n```\n\n## How to create a new release \n- Use the script update_app_version.sh, passing it a new version number and text to append to the change log file.\n- If a new version is successfully set then this script will build a new release by running the package_app.sh script.\n```bash\n$ bash scripts/update_app_version.sh \"1.2.0\" \"I am adding another item to the change log\"\n```\n\n## How to create build\n- in a single script you can package the backend and the frontend into a single executable by running\n```bash\n$ bash scripts/package_app.sh\n```\n  -  The app build will be available in /release directory\n\n- To build just the backend python server run (from ./backend/)\n```bash\nbash build_executable.sh\n```\n\n- to copy the new backend builds to where the frontend is expecting it run (./backend/) \n```bash \ncp -R dist/* ../assets/\n```\n\n- To build the frontend which will include the backend build run (from .)\n```bash\n$ sudo npm run package\n```\n  -  The app build will be available in /release directory\n\n## How to have apple sign app builds\n- this script will send zip files of the builds of the arm and intel builds to apple to notarize.\n- specify the version of the build, for example (0.6.0)\n```bash \n$ bash scripts/notarize_mac_app_builds.sh 0.6.0\n```\n\n## How to verify mac os app builds have been notarized by apple\n- this script will run commands to verify both arm64 and intel based builds \nhave been signed by apple and can successfully be run on mac os systems.\n```bash \n$ bash scripts/verify_mac_app_notarizations.sh\n```\n\n\n## How to start app locally\n- To startup the electron app run\n```bash\n$ sudo npm start\n```\n- To start up the backend server and related services run\n```bash\n$ bash backend/start_app.sh\n```\n  - Docker must be running in order to run the related backend services. (chopsticks, espolora, electrs, bitcoin)\n  - These are needed for the backend to be able to communicate with an electrum server which talks with a bitcoind container, this is all handled via [nigiri](https://github.com/vulpemventures/nigiri)\n\n- To tear down containers from start_app.sh run\n```bash\n$ bash backend/clean_up.sh\n```\n\n## How to run backend tests\n- You can run\n```bash\n$ bash backend/test_app.sh\n```\n\n\n# Development fixtures\n- when backend/start_app.sh is run the script randomly_fund_mock_wallet.py will be run to randomly generate 10 bitcoin transactions to the default dev wallet's address. \n- to generate additional transactions you can use the scripts in backend/scripts/ \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJwyman328%2FLiveWallet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJwyman328%2FLiveWallet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJwyman328%2FLiveWallet/lists"}