{"id":21447887,"url":"https://github.com/hsbc/openwallet-ios","last_synced_at":"2026-02-24T20:36:38.157Z","repository":{"id":216846880,"uuid":"742467339","full_name":"hsbc/OpenWallet-iOS","owner":"hsbc","description":"OpenWallet iOS App - The iOS application of the OpenWallet. Support iOS 15.0 or later.","archived":false,"fork":false,"pushed_at":"2024-06-17T09:20:31.000Z","size":60875,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-23T03:12:23.881Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hsbc.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}},"created_at":"2024-01-12T14:46:30.000Z","updated_at":"2024-11-05T09:42:58.000Z","dependencies_parsed_at":"2024-01-13T08:00:45.590Z","dependency_job_id":null,"html_url":"https://github.com/hsbc/OpenWallet-iOS","commit_stats":null,"previous_names":["hsbc/openwallet-ios"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsbc%2FOpenWallet-iOS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsbc%2FOpenWallet-iOS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsbc%2FOpenWallet-iOS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsbc%2FOpenWallet-iOS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hsbc","download_url":"https://codeload.github.com/hsbc/OpenWallet-iOS/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235276753,"owners_count":18964213,"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":[],"created_at":"2024-11-23T03:12:33.792Z","updated_at":"2025-10-04T16:31:01.937Z","avatar_url":"https://github.com/hsbc.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenWallet iOS App\n\nThe iOS application of the OpenWallet. Support iOS 15.0 or later.\n\n## Background\n\nOpenWallet is a mobile application that serves as an open platform for digital assets.\n\n## Getting Started\n\n### Summary\n\nThis project use XcodeGen to generate the Xcode project using the folder structure and a project spec.\n\n### Install XcodeGen\n\n* Install XcodeGen, for example, with Homebrew\n    - Run `brew install xcodegen` in terminal. Note: you may need to upgrade Homebrew to `3.5.2` or later version.\n    - Run `xcodegen --version` in terminal and confirm version `2.29.0` or later version has been installed.\n\n### Generate .xcodeproj file with XcodeGen\n\n* In terminal, navigate to the project folder, i.e. `openharbor-aesg-ios` folder\n* Run `xcodegen generate` in terminal, the `OpenWallet.xcodeproj` should be generated.\n* Open the ios app project with Xcode and run the application.\n\n\u003cbr/\u003e\n\n## Project Structures\n\n    .\n    ├─ config                                  # scheme configuration file (debug, release)\n    │  ├─ debug.xcconfig\n    │  ├─ release.xcconfig\n    ├─ Frameworks                              # local dependecies libraries\n    ├─ OpenWallet                             # Source files (alternatively `lib` or `app`)\n    │  ├─ Certificates              \n    │     ├─ **** Server Cert ****   #  certificate of backend server in production environment for ssl pinning. Note: replace it with your own cert file that matches your backend environment\n    │  └─ ...\n    ├─ OpenWalletTests                        # Automated unit test cases\n    ├─ OpenWalletUITests                      # Automated UI test cases\n    ├─ scripts                                 # scripting files\n    ├─ vendor                                  # vendor libraries, e.g. RASP\n    ├─ README.md                               # script files\n    ├─ .gitignore\n    ├─ .gitlab-ci.yml                          # Gitlab CICD pipeline configuration file\n    ├─ .swiftlint.yml                          # configuration for swift lint\n    ├─ project.yml                             # configuration file for Xcodegen\n    ├─ LICENSE\n    └─ README.md\n\n\u003cbr/\u003e\n\n## Scheme configuration\n---\nConfigure the `debug.xcconfig` and `release.xcconfig` file to customize the application. Find key configuration options below.\n\nOptions:\n- `OW_APP_NAME`                            # The application name\n- `OW_APP_DISPLAY_NAME`                    # The display name of the application on the iOS device once installed\n- `OW_APP_BUNDLE_ID`                       # Applicaton Bundle ID\n- `OW_HIDE_COVER_SCREEN`                   # Option to toggle the show/hide of the cover screen. Set to `YES` to hide the cover screen, `NO` to show.\n- `OW_ENABLE_SSL_PINNING`                  # Option to toggle whether ssl pinning should be enable. Set to `YES` to enable, and `NO` to disable \n- `CODE_SIGNING_ALLOWED`                   # Code signning setting for building the iOS application. Set to `YES` to allow code signning, and `NO` to not allow \n- `OW_SERVER_CERTIFICATE_FILE_NAME`        # name of the certificate of the backend server. Note: this is required for certificate pinning, and is optional for public key pinning\n- `OW_SERVER_CERTIFICATE_FILE_EXTENSION`   # file extension of the server certificate\n- `OW_SERVER_HOST`                         # Host of the backend server (without http/https protocol)\n- `OW_MIDDLE_LAYER_BASE_URL`               # Full base url of the backend server\n- `INCLUDE_SERVER_GATEWAY_ACCESS_COOKIE`   # Option to turn server gateway access cookie on and off. Set to `YES` to turn on, `NO` to turn off\n- `OW_SERVER_GATEWAY_ACCESS_COOKIE_NAME`   # Name of the access cookie\n- `OW_SERVER_GATEWAY_ACCESS_COOKIE_VALUE`  # Value of the access cookie\n- `OW_IPFS_GATEWAY_DOMAIN_URL`             # Domain url of the IPFS gateway. Note: currently, nft assets are hosted on IPFS\n- `IPFS_TOKEN_URI_PREFIX`                  # The prefix of URI of tokens hosted on IPFS.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhsbc%2Fopenwallet-ios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhsbc%2Fopenwallet-ios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhsbc%2Fopenwallet-ios/lists"}