Skip to content

Commit

Permalink
Proof requests demo (#71)
Browse files Browse the repository at this point in the history
* query-identity generator

* fix fetching proof result

* remove callback url from qr request body

* fix deep links url

* add deploy from query-id-test branch

* fix deep links url

* unify qr-code interactions

* Update proof requests demo UI

* Chore CI

---------

Co-authored-by: lukachi <[email protected]>
Co-authored-by: chabanyknikita <[email protected]>
  • Loading branch information
3 people authored Sep 18, 2024
1 parent 24ef812 commit c612365
Show file tree
Hide file tree
Showing 7 changed files with 415 additions and 0 deletions.
1 change: 1 addition & 0 deletions .env-development
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ VITE_APP_NAME=Rarime App
VITE_APP_HOST_URL=https://app.stage.rarime.com
VITE_DEFAULT_CHAIN=SEPOLIA
VITE_API_URL=https://api.orgs.app.stage.rarime.com
VITE_VERIFICATOR_API_URL=https://api.orgs.app.stage.rarime.com
1 change: 1 addition & 0 deletions .env-production
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ VITE_APP_NAME=Rarime App
VITE_APP_HOST_URL=https://app.rarime.com
VITE_DEFAULT_CHAIN=POLYGON
VITE_API_URL=https://api.app.rarime.com
VITE_VERIFICATOR_API_URL=https://api.app.rarime.com
2 changes: 2 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export type Config = {
APP_NAME: string
APP_HOST_URL: string
API_URL: string
VERIFICATOR_API_URL: string
BUILD_VERSION: string
SUPPORTED_CHAINS_DETAILS: SupportedChainsDetails
DEFAULT_CHAIN: SupportedChains
Expand All @@ -27,6 +28,7 @@ export const config: Config = {
APP_NAME: import.meta.env.VITE_APP_NAME,
APP_HOST_URL: import.meta.env.VITE_APP_HOST_URL,
API_URL: import.meta.env.VITE_API_URL,
VERIFICATOR_API_URL: import.meta.env.VITE_VERIFICATOR_API_URL,
BUILD_VERSION: packageJson.version || import.meta.env.VITE_APP_BUILD_VERSION,
SUPPORTED_CHAINS_DETAILS,
DEFAULT_CHAIN: import.meta.env.VITE_DEFAULT_CHAIN || FALLBACK_DEFAULT_CHAIN,
Expand Down
1 change: 1 addition & 0 deletions src/enums/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ export enum RoutePaths {

RewardsInvitationAlias = '/r/:code',
DownloadApp = '/download-app',
ProofRequestsDemo = '/proof-requests-demo',
}
Loading

0 comments on commit c612365

Please sign in to comment.