{"id":13633609,"url":"https://github.com/HathorNetwork/hathor-wallet-mobile","last_synced_at":"2025-04-18T14:32:58.099Z","repository":{"id":35518456,"uuid":"198278603","full_name":"HathorNetwork/hathor-wallet-mobile","owner":"HathorNetwork","description":"Hathor official mobile wallet","archived":false,"fork":false,"pushed_at":"2024-11-06T15:45:36.000Z","size":10416,"stargazers_count":24,"open_issues_count":82,"forks_count":23,"subscribers_count":13,"default_branch":"master","last_synced_at":"2024-11-06T16:43:49.306Z","etag":null,"topics":["android","app","cryptocurrency","hathor","ios","react-native","wallet"],"latest_commit_sha":null,"homepage":"https://hathor.network/","language":"JavaScript","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/HathorNetwork.png","metadata":{"files":{"readme":"README.md","changelog":"changelogs/unreleased/feat-create-token.yml","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-22T18:14:22.000Z","updated_at":"2024-11-06T15:45:41.000Z","dependencies_parsed_at":"2023-09-27T04:59:06.039Z","dependency_job_id":"d74fbf77-616d-4266-b593-fe93c41a0271","html_url":"https://github.com/HathorNetwork/hathor-wallet-mobile","commit_stats":null,"previous_names":[],"tags_count":54,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HathorNetwork%2Fhathor-wallet-mobile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HathorNetwork%2Fhathor-wallet-mobile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HathorNetwork%2Fhathor-wallet-mobile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HathorNetwork%2Fhathor-wallet-mobile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HathorNetwork","download_url":"https://codeload.github.com/HathorNetwork/hathor-wallet-mobile/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223782549,"owners_count":17201801,"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":["android","app","cryptocurrency","hathor","ios","react-native","wallet"],"created_at":"2024-08-01T23:00:48.964Z","updated_at":"2025-04-18T14:32:58.078Z","avatar_url":"https://github.com/HathorNetwork.png","language":"JavaScript","funding_links":[],"categories":["Wallets"],"sub_categories":["Utils"],"readme":"# Hathor Wallet Mobile\n\nSee the instructions to run on (Windows)[./WINDOWS.md].\n\n## Install\n\n`npm run setup`\n\n### Check SES integrity\n\nThe SES lockdown file should match the commited sha256 sum\n\n`sha256sum -c SHA256SUMS`\n\n### Podfile install for iOS\n\n#### Install cocoapods\n\nCocoapods is an iOS package manager. Sentry needs to add some native codes, so we must install an iOS native lib of Sentry.\n\nActually Apple already released a new package manager 'Swift Package Manager' but it's not supported for the React native version we use.\n\n`sudo gem install cocoapods`\n\n`cd ios \u0026\u0026 pod install`\n\n### Sentry configuration\n\nWe use Sentry to allow users to send crash reports.\n\nThere is one file that must be created on ios and android folders. This file has a token used to upload some symbols to Sentry.\nhttps://github.com/getsentry/sentry-react-native/issues/112#issuecomment-309980345\n\nThis token is only used when releasing an app version, no need to have it for development.\n\nSo you must create `ios/sentry.properties` and `android/sentry.properties` files with the following content in both:\n\n```\ndefaults.url=https://sentry.io/\ndefaults.org=ORG-NAME\ndefaults.project=PROJECT-NAME\nauth.token=YOUR-SENTRY-TOKEN\n```\n\n## Run\n\n### iOS\n\nFirst start the Metro bundler:\n\n`npm start` or `npm run start:clean` to invalidate the cache before run.\n\nThen press `i` to select the `run on iOS` option: this will build the app for iOS.\n\nAlternatively, `npm run ios` to open on iOS simulator, or `npm run ios -- --simulator \"iPhone 11\"` to run it by name.\n\nTo list all available simulators, use `xcrun simctl list devices`.\n\n#### Physical device\n\nIf you want to run in your physical device, you should first get its UDID by running the list of all possible devices:\n\n```bash\nxcrun xctrace list devices\n```\n\nYou should see an output like this:\n```text\n== Devices ==\nAlex’s ... (490613AE-...)\nAlex’s ... (16.3.1) (3198...)\n\n== Simulators ==\n...\n```\n\nThe code inside the last parentheses is your UDID. Then, deploy the app to your device with:\n\n```bash\nnpm run ios -- --udid=3198...\n```\n\n\u003e INFO: To be able to deploy to your physical device you can use `ios-deploy`, it can be downloaded from https://github.com/ios-control/ios-deploy:\n\u003e `ios-deploy --version`\n\n#### Required resource\n\nThe Firebase package uses the credentials of `GoogleService-Info.plist` to initialize the device in the FCM automatically. You should generate and install this resource in your Xcode environment. Read [Generating iOS credentials](https://rnfirebase.io/#generating-ios-credentials).\n\n### Android\n\nFirst start the Metro bundler:\n\n`npm start`\n\nThen press `a` to select the `run on Android` option: this will build the app for Android. If a physical device is connected, the application will start on it. Else, the latest Android Studio's Emulator will be the run target. Alternatively, use `npm run android` after having the Metro bundler started.\n\nIf you need to open the Dev Menu on Android Studio Emulator, use `Ctrl + M` or run `adb shell input keyevent 82` in a terminal.\n\nObs: To run on your device some configuration may need to be done (see [running on device](https://reactnative.dev/docs/running-on-device))\n\n#### Required resource\n\nThe Firebase package uses the credentials of `google-services.json` to initialize the device in the FCM automatically. You should generate and install this resource in your Android Studio environment. Read [Generating Android credentials](https://rnfirebase.io/#generating-android-credentials).\n\n### Debugging\nThe preferred way of debugging the Wallet Mobile is through the Flipper Desktop application, as the Chromium-based debugger has multiple conflicts with the app's dependencies. It's also [being deprecated as of React Native v0.72](https://github.com/facebook/react-native/issues/38311#issuecomment-1731456182) due to incompatibilities with React Native's _New Architecture_.\n\nOn MacOS environments Safari debugging will continue to be supported, and is a viable alternative.\n\nTo install Flipper, [download it on the official website](https://fbflipper.com/docs/getting-started/#installation) and follow its instructions to run the executable. For Linux users, issue 1058 on Flipper's repository may [help with troubleshooting](https://github.com/facebook/flipper/issues/1058#issuecomment-786827372).\n\n### Run linter\n\n`npm run lint`\n\n## Translations\n\nWe use the `ttag` lib for i18n. Check out the docs [here](https://ttag.js.org/docs/quickstart.html).\n\nRun `make i18n` to update the root \"pot\" file, all the localized \"po\" files and their JSON compilations.\n\nTo validate all changes made to translation strings, run `make check_i18n`.\n\n## License\n\nCode released under [the MIT license](https://github.com/HathorNetwork/hathor-wallet-mobile/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHathorNetwork%2Fhathor-wallet-mobile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FHathorNetwork%2Fhathor-wallet-mobile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHathorNetwork%2Fhathor-wallet-mobile/lists"}