├── .env.example ├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .twblocks.json ├── .yarnrc.yml ├── README.md ├── bun.lock ├── components.json ├── docker-compose.yml ├── docs ├── APOLLO_CLIENT_SETUP.md ├── CONTRIBUTORS_GUIDELINE.md ├── GIT_GUIDELINE.md ├── PIPELINE.md └── SETUP.md ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── img │ ├── buildings.png │ ├── hotel │ │ └── hotel1.jpg │ ├── hotels.png │ ├── image 16.png │ ├── logo.png │ ├── room1.png │ ├── room2.png │ ├── user-female.jpg │ └── wallet │ │ ├── metamask.png │ │ ├── stellar.png │ │ └── walletconnect.png └── styles │ └── globals.css ├── scripts ├── 01_create_tables.sql ├── 02_seed_data.sql └── test-setup.sh ├── src ├── @types │ ├── ethereum.d.ts │ └── hotel.entity.ts ├── app │ ├── api │ │ └── auth │ │ │ ├── forgot-password │ │ │ └── route.ts │ │ │ ├── reset-password │ │ │ └── route.ts │ │ │ └── validate-reset-token │ │ │ └── route.ts │ ├── dashboard │ │ ├── hotel │ │ │ ├── details │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── payment │ │ │ │ └── page.tsx │ │ │ └── search │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── favicon.ico │ ├── forgot-password │ │ └── page.tsx │ ├── globals.css │ ├── layout.tsx │ ├── login │ │ └── page.tsx │ ├── new-password │ │ └── page.tsx │ ├── page.tsx │ ├── register │ │ └── page.tsx │ ├── reset-password │ │ └── page.tsx │ ├── room │ │ ├── components │ │ │ ├── RoomActionBar.tsx │ │ │ ├── RoomBookingCard.tsx │ │ │ ├── RoomDetailsCard.tsx │ │ │ ├── RoomImageGallery.tsx │ │ │ ├── index.ts │ │ │ └── mobile │ │ │ │ ├── MobileBookingCard.tsx │ │ │ │ └── MobileRoomGallery.tsx │ │ └── page.tsx │ ├── test-page │ │ └── page.tsx │ └── verify-email │ │ └── page.tsx ├── components │ ├── ApolloTestComponent.tsx │ ├── ErrorSuppressor.tsx │ ├── ThemeToggle.tsx │ ├── auth │ │ ├── ForgotPasswordForm.tsx │ │ ├── InvalidResetToken.tsx │ │ ├── Login.tsx │ │ ├── NewPassword.tsx │ │ ├── Register.tsx │ │ ├── ResetPasswordForm.tsx │ │ ├── VerifyEmail.tsx │ │ ├── ui │ │ │ ├── Buildings.tsx │ │ │ └── Illustration.tsx │ │ └── wallet │ │ │ ├── ConnectionStatus.tsx │ │ │ ├── README.md │ │ │ ├── SimpleWalletModal.tsx │ │ │ ├── WalletConnectionModal.tsx │ │ │ ├── WalletDetection.tsx │ │ │ ├── WalletOption.tsx │ │ │ ├── components │ │ │ ├── MainWalletSelectionModal.tsx │ │ │ ├── MetaMaskWalletModal.tsx │ │ │ ├── WalletConnectURI.tsx │ │ │ └── WalletSelectionModal.tsx │ │ │ ├── constants │ │ │ └── wallet-kit.constant.ts │ │ │ ├── hooks │ │ │ ├── metamask-wallet.hook.ts │ │ │ ├── multi-wallet.hook.ts │ │ │ ├── useMultiWallet.ts │ │ │ ├── useWalletDetection.ts │ │ │ └── wallet.hook.ts │ │ │ ├── index.ts │ │ │ ├── types │ │ │ └── wallet.types.ts │ │ │ └── utils │ │ │ ├── walletConfig.ts │ │ │ ├── walletConnect.ts │ │ │ └── walletValidation.ts │ ├── booking │ │ └── EscrowCreationForm.tsx │ ├── calendar-05.tsx │ ├── dashboard │ │ ├── DashboardHeader.tsx │ │ ├── EscrowDashboard.tsx │ │ ├── EscrowStatusCard.tsx │ │ ├── EscrowTable.tsx │ │ ├── EscrowsByStatus.tsx │ │ ├── MilestoneProgress.d.ts │ │ ├── QuickActions.tsx │ │ ├── README.md │ │ ├── RecentActivity.tsx │ │ └── milestone-progress.tsx │ ├── escrow │ │ ├── LiveStatus │ │ │ └── LiveEscrowStatus.tsx │ │ ├── TransactionPreview.tsx │ │ ├── XDRSigningFlow.tsx │ │ ├── XDRSigningFlowExample.tsx │ │ ├── hook │ │ │ └── useEscrowUpdates.ts │ │ ├── index.ts │ │ └── types.ts │ ├── hotels │ │ ├── BookingEscrowIntegration.tsx │ │ ├── HotelEscrowForm.tsx │ │ ├── details │ │ │ ├── Details.tsx │ │ │ ├── Gallery.tsx │ │ │ ├── Information.tsx │ │ │ └── VerticalCarousel.tsx │ │ ├── mocks │ │ │ └── hotel.mock.ts │ │ ├── overall │ │ │ ├── HotelBookingContainer.tsx │ │ │ ├── HotelCard.tsx │ │ │ ├── HotelGrid.tsx │ │ │ └── SearchFilters.tsx │ │ ├── pages │ │ │ └── Hotels.tsx │ │ ├── payment │ │ │ ├── HotelDetails.tsx │ │ │ ├── Map.tsx │ │ │ └── ReservationSummary.tsx │ │ └── search │ │ │ └── datepicker.tsx │ ├── layouts │ │ ├── Header.tsx │ │ ├── SearchHeader.tsx │ │ └── SideBar.tsx │ ├── navigation │ │ ├── BackButton.tsx │ │ ├── Breadcrumbs.tsx │ │ └── NavigationHeader.tsx │ ├── rooms │ │ ├── AditionalRoomPhotos.tsx │ │ ├── AvailabilityChecker.tsx │ │ ├── BookingButton.tsx │ │ ├── BookingConfirmation.tsx │ │ ├── CustomDateRangePicker.tsx │ │ ├── FullscreenImageViewer.tsx │ │ ├── ImageCarousel.tsx │ │ ├── PriceCalculator.tsx │ │ ├── RoomBookingCard.tsx │ │ ├── RoomDetails.tsx │ │ ├── RoomPaymentDrawer.tsx │ │ ├── RoomPhotos.tsx │ │ ├── ThumbnailNavigation.tsx │ │ └── cards │ │ │ ├── AmenitiesCard.tsx │ │ │ ├── HostCard.tsx │ │ │ ├── LocationCard.tsx │ │ │ ├── PolicyCard.tsx │ │ │ ├── RoomDetailsCard.tsx │ │ │ └── index.ts │ ├── tw-blocks │ │ ├── escrows │ │ │ ├── multi-release │ │ │ │ └── initialize-escrow │ │ │ │ │ └── form │ │ │ │ │ ├── InitializeEscrow.tsx │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── useInitializeEscrow.ts │ │ │ ├── single-multi-release │ │ │ │ ├── approve-milestone │ │ │ │ │ ├── button │ │ │ │ │ │ └── ApproveMilestone.tsx │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── ApproveMilestone.tsx │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ └── useApproveMilestone.ts │ │ │ │ │ └── form │ │ │ │ │ │ ├── ApproveMilestone.tsx │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ └── useApproveMilestone.ts │ │ │ │ ├── change-milestone-status │ │ │ │ │ ├── button │ │ │ │ │ │ └── ChangeMilestoneStatus.tsx │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── ChangeMilestoneStatus.tsx │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ └── useChangeMilestoneStatus.ts │ │ │ │ │ └── form │ │ │ │ │ │ ├── ChangeMilestoneStatus.tsx │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ └── useChangeMilestoneStatus.ts │ │ │ │ └── fund-escrow │ │ │ │ │ ├── button │ │ │ │ │ └── FundEscrow.tsx │ │ │ │ │ ├── dialog │ │ │ │ │ ├── FundEscrow.tsx │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── useFundEscrow.ts │ │ │ │ │ └── form │ │ │ │ │ ├── FundEscrow.tsx │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── useFundEscrow.ts │ │ │ └── single-release │ │ │ │ └── initialize-escrow │ │ │ │ └── form │ │ │ │ ├── InitializeEscrow.tsx │ │ │ │ ├── schema.ts │ │ │ │ └── useInitializeEscrow.ts │ │ ├── handle-errors │ │ │ ├── errors.enum.ts │ │ │ └── handle.ts │ │ ├── helpers │ │ │ ├── format.helper.ts │ │ │ └── useCopy.ts │ │ ├── providers │ │ │ ├── EscrowAmountProvider.tsx │ │ │ ├── EscrowDialogsProvider.tsx │ │ │ ├── EscrowProvider.tsx │ │ │ ├── ReactQueryClientProvider.tsx │ │ │ └── TrustlessWork.tsx │ │ ├── tanstack │ │ │ ├── useEscrowsByRoleQuery.ts │ │ │ ├── useEscrowsBySignerQuery.ts │ │ │ └── useEscrowsMutations.ts │ │ └── wallet-kit │ │ │ ├── WalletButtons.tsx │ │ │ ├── WalletProvider.tsx │ │ │ ├── trustlines.ts │ │ │ ├── useWallet.ts │ │ │ ├── validators.ts │ │ │ └── wallet-kit.ts │ └── ui │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── icons.tsx │ │ ├── image.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sonner.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ └── tooltip.tsx ├── config │ └── apollo.ts ├── core │ ├── config │ │ └── axios │ │ │ ├── http.ts │ │ │ └── notifications.ts │ └── store │ │ └── data │ │ ├── @types │ │ └── authentication.entity.ts │ │ ├── index.ts │ │ └── slices │ │ └── authentication.slice.ts ├── graphql │ ├── mutations │ │ └── test-user.ts │ ├── queries │ │ ├── healthCheck.graphql.ts │ │ └── testQuery.graphql.ts │ └── types.ts ├── i18n │ ├── config.ts │ └── resources.ts ├── interfaces │ └── escrow.interface.ts ├── layouts │ └── Header.tsx ├── lib │ ├── mockData.ts │ ├── trustless-work │ │ ├── README.md │ │ ├── config.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useEscrow.ts │ │ │ ├── useMultiRelease.ts │ │ │ └── useSingleRelease.ts │ │ ├── index.ts │ │ ├── provider.tsx │ │ └── types.ts │ ├── utils.ts │ └── walletconnect.ts ├── providers │ ├── ApolloProviderWrapper.tsx │ └── ClientProviders.tsx └── services │ └── escrow.service.ts ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/.env.example -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/.gitignore -------------------------------------------------------------------------------- /.twblocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "uiBase": "@/components/ui" 3 | } -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/bun.lock -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/components.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/APOLLO_CLIENT_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/docs/APOLLO_CLIENT_SETUP.md -------------------------------------------------------------------------------- /docs/CONTRIBUTORS_GUIDELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/docs/CONTRIBUTORS_GUIDELINE.md -------------------------------------------------------------------------------- /docs/GIT_GUIDELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/docs/GIT_GUIDELINE.md -------------------------------------------------------------------------------- /docs/PIPELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/docs/PIPELINE.md -------------------------------------------------------------------------------- /docs/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/docs/SETUP.md -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/img/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/buildings.png -------------------------------------------------------------------------------- /public/img/hotel/hotel1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/hotel/hotel1.jpg -------------------------------------------------------------------------------- /public/img/hotels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/hotels.png -------------------------------------------------------------------------------- /public/img/image 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/image 16.png -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/room1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/room1.png -------------------------------------------------------------------------------- /public/img/room2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/room2.png -------------------------------------------------------------------------------- /public/img/user-female.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/user-female.jpg -------------------------------------------------------------------------------- /public/img/wallet/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/wallet/metamask.png -------------------------------------------------------------------------------- /public/img/wallet/stellar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/wallet/stellar.png -------------------------------------------------------------------------------- /public/img/wallet/walletconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/img/wallet/walletconnect.png -------------------------------------------------------------------------------- /public/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/public/styles/globals.css -------------------------------------------------------------------------------- /scripts/01_create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/scripts/01_create_tables.sql -------------------------------------------------------------------------------- /scripts/02_seed_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/scripts/02_seed_data.sql -------------------------------------------------------------------------------- /scripts/test-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/scripts/test-setup.sh -------------------------------------------------------------------------------- /src/@types/ethereum.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/@types/ethereum.d.ts -------------------------------------------------------------------------------- /src/@types/hotel.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/@types/hotel.entity.ts -------------------------------------------------------------------------------- /src/app/api/auth/forgot-password/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/api/auth/forgot-password/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/reset-password/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/api/auth/reset-password/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/validate-reset-token/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/api/auth/validate-reset-token/route.ts -------------------------------------------------------------------------------- /src/app/dashboard/hotel/details/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/dashboard/hotel/details/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/hotel/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/dashboard/hotel/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/hotel/payment/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/dashboard/hotel/payment/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/hotel/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/dashboard/hotel/search/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/forgot-password/page.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/login/page.tsx -------------------------------------------------------------------------------- /src/app/new-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/new-password/page.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/register/page.tsx -------------------------------------------------------------------------------- /src/app/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/reset-password/page.tsx -------------------------------------------------------------------------------- /src/app/room/components/RoomActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/room/components/RoomActionBar.tsx -------------------------------------------------------------------------------- /src/app/room/components/RoomBookingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/room/components/RoomBookingCard.tsx -------------------------------------------------------------------------------- /src/app/room/components/RoomDetailsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/room/components/RoomDetailsCard.tsx -------------------------------------------------------------------------------- /src/app/room/components/RoomImageGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/room/components/RoomImageGallery.tsx -------------------------------------------------------------------------------- /src/app/room/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/room/components/index.ts -------------------------------------------------------------------------------- /src/app/room/components/mobile/MobileBookingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/room/components/mobile/MobileBookingCard.tsx -------------------------------------------------------------------------------- /src/app/room/components/mobile/MobileRoomGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/room/components/mobile/MobileRoomGallery.tsx -------------------------------------------------------------------------------- /src/app/room/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/room/page.tsx -------------------------------------------------------------------------------- /src/app/test-page/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/test-page/page.tsx -------------------------------------------------------------------------------- /src/app/verify-email/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/app/verify-email/page.tsx -------------------------------------------------------------------------------- /src/components/ApolloTestComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ApolloTestComponent.tsx -------------------------------------------------------------------------------- /src/components/ErrorSuppressor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ErrorSuppressor.tsx -------------------------------------------------------------------------------- /src/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/auth/ForgotPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/ForgotPasswordForm.tsx -------------------------------------------------------------------------------- /src/components/auth/InvalidResetToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/InvalidResetToken.tsx -------------------------------------------------------------------------------- /src/components/auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/Login.tsx -------------------------------------------------------------------------------- /src/components/auth/NewPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/NewPassword.tsx -------------------------------------------------------------------------------- /src/components/auth/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/Register.tsx -------------------------------------------------------------------------------- /src/components/auth/ResetPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/ResetPasswordForm.tsx -------------------------------------------------------------------------------- /src/components/auth/VerifyEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/VerifyEmail.tsx -------------------------------------------------------------------------------- /src/components/auth/ui/Buildings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/ui/Buildings.tsx -------------------------------------------------------------------------------- /src/components/auth/ui/Illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/ui/Illustration.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/ConnectionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/ConnectionStatus.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/README.md -------------------------------------------------------------------------------- /src/components/auth/wallet/SimpleWalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/SimpleWalletModal.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/WalletConnectionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/WalletConnectionModal.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/WalletDetection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/WalletDetection.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/WalletOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/WalletOption.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/components/MainWalletSelectionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/components/MainWalletSelectionModal.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/components/MetaMaskWalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/components/MetaMaskWalletModal.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/components/WalletConnectURI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/components/WalletConnectURI.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/components/WalletSelectionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/components/WalletSelectionModal.tsx -------------------------------------------------------------------------------- /src/components/auth/wallet/constants/wallet-kit.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/constants/wallet-kit.constant.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/hooks/metamask-wallet.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/hooks/metamask-wallet.hook.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/hooks/multi-wallet.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/hooks/multi-wallet.hook.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/hooks/useMultiWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/hooks/useMultiWallet.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/hooks/useWalletDetection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/hooks/useWalletDetection.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/hooks/wallet.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/hooks/wallet.hook.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/index.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/types/wallet.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/types/wallet.types.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/utils/walletConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/utils/walletConfig.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/utils/walletConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/utils/walletConnect.ts -------------------------------------------------------------------------------- /src/components/auth/wallet/utils/walletValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/auth/wallet/utils/walletValidation.ts -------------------------------------------------------------------------------- /src/components/booking/EscrowCreationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/booking/EscrowCreationForm.tsx -------------------------------------------------------------------------------- /src/components/calendar-05.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/calendar-05.tsx -------------------------------------------------------------------------------- /src/components/dashboard/DashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/DashboardHeader.tsx -------------------------------------------------------------------------------- /src/components/dashboard/EscrowDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/EscrowDashboard.tsx -------------------------------------------------------------------------------- /src/components/dashboard/EscrowStatusCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/EscrowStatusCard.tsx -------------------------------------------------------------------------------- /src/components/dashboard/EscrowTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/EscrowTable.tsx -------------------------------------------------------------------------------- /src/components/dashboard/EscrowsByStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/EscrowsByStatus.tsx -------------------------------------------------------------------------------- /src/components/dashboard/MilestoneProgress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/MilestoneProgress.d.ts -------------------------------------------------------------------------------- /src/components/dashboard/QuickActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/QuickActions.tsx -------------------------------------------------------------------------------- /src/components/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/README.md -------------------------------------------------------------------------------- /src/components/dashboard/RecentActivity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/RecentActivity.tsx -------------------------------------------------------------------------------- /src/components/dashboard/milestone-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/dashboard/milestone-progress.tsx -------------------------------------------------------------------------------- /src/components/escrow/LiveStatus/LiveEscrowStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/escrow/LiveStatus/LiveEscrowStatus.tsx -------------------------------------------------------------------------------- /src/components/escrow/TransactionPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/escrow/TransactionPreview.tsx -------------------------------------------------------------------------------- /src/components/escrow/XDRSigningFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/escrow/XDRSigningFlow.tsx -------------------------------------------------------------------------------- /src/components/escrow/XDRSigningFlowExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/escrow/XDRSigningFlowExample.tsx -------------------------------------------------------------------------------- /src/components/escrow/hook/useEscrowUpdates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/escrow/hook/useEscrowUpdates.ts -------------------------------------------------------------------------------- /src/components/escrow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/escrow/index.ts -------------------------------------------------------------------------------- /src/components/escrow/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/escrow/types.ts -------------------------------------------------------------------------------- /src/components/hotels/BookingEscrowIntegration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/BookingEscrowIntegration.tsx -------------------------------------------------------------------------------- /src/components/hotels/HotelEscrowForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/HotelEscrowForm.tsx -------------------------------------------------------------------------------- /src/components/hotels/details/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/details/Details.tsx -------------------------------------------------------------------------------- /src/components/hotels/details/Gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/details/Gallery.tsx -------------------------------------------------------------------------------- /src/components/hotels/details/Information.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/details/Information.tsx -------------------------------------------------------------------------------- /src/components/hotels/details/VerticalCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/details/VerticalCarousel.tsx -------------------------------------------------------------------------------- /src/components/hotels/mocks/hotel.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/mocks/hotel.mock.ts -------------------------------------------------------------------------------- /src/components/hotels/overall/HotelBookingContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/overall/HotelBookingContainer.tsx -------------------------------------------------------------------------------- /src/components/hotels/overall/HotelCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/overall/HotelCard.tsx -------------------------------------------------------------------------------- /src/components/hotels/overall/HotelGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/overall/HotelGrid.tsx -------------------------------------------------------------------------------- /src/components/hotels/overall/SearchFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/overall/SearchFilters.tsx -------------------------------------------------------------------------------- /src/components/hotels/pages/Hotels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/pages/Hotels.tsx -------------------------------------------------------------------------------- /src/components/hotels/payment/HotelDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/payment/HotelDetails.tsx -------------------------------------------------------------------------------- /src/components/hotels/payment/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/payment/Map.tsx -------------------------------------------------------------------------------- /src/components/hotels/payment/ReservationSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/payment/ReservationSummary.tsx -------------------------------------------------------------------------------- /src/components/hotels/search/datepicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/hotels/search/datepicker.tsx -------------------------------------------------------------------------------- /src/components/layouts/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/layouts/Header.tsx -------------------------------------------------------------------------------- /src/components/layouts/SearchHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/layouts/SearchHeader.tsx -------------------------------------------------------------------------------- /src/components/layouts/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/layouts/SideBar.tsx -------------------------------------------------------------------------------- /src/components/navigation/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/navigation/BackButton.tsx -------------------------------------------------------------------------------- /src/components/navigation/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/navigation/Breadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/navigation/NavigationHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/navigation/NavigationHeader.tsx -------------------------------------------------------------------------------- /src/components/rooms/AditionalRoomPhotos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/AditionalRoomPhotos.tsx -------------------------------------------------------------------------------- /src/components/rooms/AvailabilityChecker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/AvailabilityChecker.tsx -------------------------------------------------------------------------------- /src/components/rooms/BookingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/BookingButton.tsx -------------------------------------------------------------------------------- /src/components/rooms/BookingConfirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/BookingConfirmation.tsx -------------------------------------------------------------------------------- /src/components/rooms/CustomDateRangePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/CustomDateRangePicker.tsx -------------------------------------------------------------------------------- /src/components/rooms/FullscreenImageViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/FullscreenImageViewer.tsx -------------------------------------------------------------------------------- /src/components/rooms/ImageCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/ImageCarousel.tsx -------------------------------------------------------------------------------- /src/components/rooms/PriceCalculator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/PriceCalculator.tsx -------------------------------------------------------------------------------- /src/components/rooms/RoomBookingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/RoomBookingCard.tsx -------------------------------------------------------------------------------- /src/components/rooms/RoomDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/RoomDetails.tsx -------------------------------------------------------------------------------- /src/components/rooms/RoomPaymentDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/RoomPaymentDrawer.tsx -------------------------------------------------------------------------------- /src/components/rooms/RoomPhotos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/RoomPhotos.tsx -------------------------------------------------------------------------------- /src/components/rooms/ThumbnailNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/ThumbnailNavigation.tsx -------------------------------------------------------------------------------- /src/components/rooms/cards/AmenitiesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/cards/AmenitiesCard.tsx -------------------------------------------------------------------------------- /src/components/rooms/cards/HostCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/cards/HostCard.tsx -------------------------------------------------------------------------------- /src/components/rooms/cards/LocationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/cards/LocationCard.tsx -------------------------------------------------------------------------------- /src/components/rooms/cards/PolicyCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/cards/PolicyCard.tsx -------------------------------------------------------------------------------- /src/components/rooms/cards/RoomDetailsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/cards/RoomDetailsCard.tsx -------------------------------------------------------------------------------- /src/components/rooms/cards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/rooms/cards/index.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/multi-release/initialize-escrow/form/InitializeEscrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/multi-release/initialize-escrow/form/InitializeEscrow.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/multi-release/initialize-escrow/form/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/multi-release/initialize-escrow/form/schema.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/multi-release/initialize-escrow/form/useInitializeEscrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/multi-release/initialize-escrow/form/useInitializeEscrow.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/approve-milestone/button/ApproveMilestone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/approve-milestone/button/ApproveMilestone.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/approve-milestone/dialog/ApproveMilestone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/approve-milestone/dialog/ApproveMilestone.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/approve-milestone/dialog/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/approve-milestone/dialog/schema.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/approve-milestone/dialog/useApproveMilestone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/approve-milestone/dialog/useApproveMilestone.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/approve-milestone/form/ApproveMilestone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/approve-milestone/form/ApproveMilestone.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/approve-milestone/form/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/approve-milestone/form/schema.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/approve-milestone/form/useApproveMilestone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/approve-milestone/form/useApproveMilestone.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/button/ChangeMilestoneStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/button/ChangeMilestoneStatus.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/dialog/ChangeMilestoneStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/dialog/ChangeMilestoneStatus.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/dialog/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/dialog/schema.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/dialog/useChangeMilestoneStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/dialog/useChangeMilestoneStatus.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/form/ChangeMilestoneStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/form/ChangeMilestoneStatus.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/form/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/form/schema.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/form/useChangeMilestoneStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/change-milestone-status/form/useChangeMilestoneStatus.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/fund-escrow/button/FundEscrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/fund-escrow/button/FundEscrow.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/fund-escrow/dialog/FundEscrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/fund-escrow/dialog/FundEscrow.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/fund-escrow/dialog/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/fund-escrow/dialog/schema.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/fund-escrow/dialog/useFundEscrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/fund-escrow/dialog/useFundEscrow.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/fund-escrow/form/FundEscrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/fund-escrow/form/FundEscrow.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/fund-escrow/form/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/fund-escrow/form/schema.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-multi-release/fund-escrow/form/useFundEscrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-multi-release/fund-escrow/form/useFundEscrow.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-release/initialize-escrow/form/InitializeEscrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-release/initialize-escrow/form/InitializeEscrow.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-release/initialize-escrow/form/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-release/initialize-escrow/form/schema.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/escrows/single-release/initialize-escrow/form/useInitializeEscrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/escrows/single-release/initialize-escrow/form/useInitializeEscrow.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/handle-errors/errors.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/handle-errors/errors.enum.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/handle-errors/handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/handle-errors/handle.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/helpers/format.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/helpers/format.helper.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/helpers/useCopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/helpers/useCopy.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/providers/EscrowAmountProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/providers/EscrowAmountProvider.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/providers/EscrowDialogsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/providers/EscrowDialogsProvider.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/providers/EscrowProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/providers/EscrowProvider.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/providers/ReactQueryClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/providers/ReactQueryClientProvider.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/providers/TrustlessWork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/providers/TrustlessWork.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/tanstack/useEscrowsByRoleQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/tanstack/useEscrowsByRoleQuery.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/tanstack/useEscrowsBySignerQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/tanstack/useEscrowsBySignerQuery.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/tanstack/useEscrowsMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/tanstack/useEscrowsMutations.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/wallet-kit/WalletButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/wallet-kit/WalletButtons.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/wallet-kit/WalletProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/wallet-kit/WalletProvider.tsx -------------------------------------------------------------------------------- /src/components/tw-blocks/wallet-kit/trustlines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/wallet-kit/trustlines.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/wallet-kit/useWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/wallet-kit/useWallet.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/wallet-kit/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/wallet-kit/validators.ts -------------------------------------------------------------------------------- /src/components/tw-blocks/wallet-kit/wallet-kit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/tw-blocks/wallet-kit/wallet-kit.ts -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /src/components/ui/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/image.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/config/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/config/apollo.ts -------------------------------------------------------------------------------- /src/core/config/axios/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/core/config/axios/http.ts -------------------------------------------------------------------------------- /src/core/config/axios/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/core/config/axios/notifications.ts -------------------------------------------------------------------------------- /src/core/store/data/@types/authentication.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/core/store/data/@types/authentication.entity.ts -------------------------------------------------------------------------------- /src/core/store/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/core/store/data/index.ts -------------------------------------------------------------------------------- /src/core/store/data/slices/authentication.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/core/store/data/slices/authentication.slice.ts -------------------------------------------------------------------------------- /src/graphql/mutations/test-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/graphql/mutations/test-user.ts -------------------------------------------------------------------------------- /src/graphql/queries/healthCheck.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/graphql/queries/healthCheck.graphql.ts -------------------------------------------------------------------------------- /src/graphql/queries/testQuery.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/graphql/queries/testQuery.graphql.ts -------------------------------------------------------------------------------- /src/graphql/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/graphql/types.ts -------------------------------------------------------------------------------- /src/i18n/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/i18n/config.ts -------------------------------------------------------------------------------- /src/i18n/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/i18n/resources.ts -------------------------------------------------------------------------------- /src/interfaces/escrow.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/interfaces/escrow.interface.ts -------------------------------------------------------------------------------- /src/layouts/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/layouts/Header.tsx -------------------------------------------------------------------------------- /src/lib/mockData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/mockData.ts -------------------------------------------------------------------------------- /src/lib/trustless-work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/trustless-work/README.md -------------------------------------------------------------------------------- /src/lib/trustless-work/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/trustless-work/config.ts -------------------------------------------------------------------------------- /src/lib/trustless-work/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/trustless-work/hooks/index.ts -------------------------------------------------------------------------------- /src/lib/trustless-work/hooks/useEscrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/trustless-work/hooks/useEscrow.ts -------------------------------------------------------------------------------- /src/lib/trustless-work/hooks/useMultiRelease.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/trustless-work/hooks/useMultiRelease.ts -------------------------------------------------------------------------------- /src/lib/trustless-work/hooks/useSingleRelease.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/trustless-work/hooks/useSingleRelease.ts -------------------------------------------------------------------------------- /src/lib/trustless-work/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/trustless-work/index.ts -------------------------------------------------------------------------------- /src/lib/trustless-work/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/trustless-work/provider.tsx -------------------------------------------------------------------------------- /src/lib/trustless-work/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/trustless-work/types.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/walletconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/lib/walletconnect.ts -------------------------------------------------------------------------------- /src/providers/ApolloProviderWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/providers/ApolloProviderWrapper.tsx -------------------------------------------------------------------------------- /src/providers/ClientProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/providers/ClientProviders.tsx -------------------------------------------------------------------------------- /src/services/escrow.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/src/services/escrow.service.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetrustcr/frontend-SafeTrust/HEAD/yarn.lock --------------------------------------------------------------------------------