├── .circleci └── config.yml ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── deployment.yml ├── .gitignore ├── .nvmrc ├── LICENSE.txt ├── README.md ├── apps ├── account-recovery │ ├── .env │ ├── .env.production │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .expo-shared │ │ └── assets.json │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── App.tsx │ ├── README.md │ ├── app.config.js │ ├── assets │ │ ├── fonts │ │ │ └── SpaceMono-Regular.ttf │ │ └── images │ │ │ ├── TasitAccountRecovery1024.png │ │ │ ├── TasitAccountRecovery512.png │ │ │ ├── TasitAccoutRecoverySplash.png │ │ │ └── TasitFavicon.png │ ├── babel.config.js │ ├── docs │ │ └── images │ │ │ ├── AccountRecoverySmall.gif │ │ │ ├── AccountTab.png │ │ │ └── ContractBasedAccountTab.png │ ├── metro.config.js │ ├── package.json │ ├── screens │ │ ├── AccountScreen │ │ │ ├── AccountScreen.tsx │ │ │ ├── components │ │ │ │ └── AccountInfo.tsx │ │ │ └── index.tsx │ │ ├── ContractBasedAccountScreen │ │ │ ├── ContractBasedAccountScreen.tsx │ │ │ ├── components │ │ │ │ └── ContractBasedAccountInfo.tsx │ │ │ └── index.tsx │ │ └── NotFoundScreen.tsx │ ├── shared │ │ ├── components │ │ │ ├── StyledText.test.js │ │ │ ├── StyledText.tsx │ │ │ ├── Themed.tsx │ │ │ └── __snapshots__ │ │ │ │ └── StyledText.test.js.snap │ │ ├── constants │ │ │ ├── Colors.ts │ │ │ └── Layout.ts │ │ ├── context │ │ │ └── AccountContext.tsx │ │ ├── hooks │ │ │ ├── useCachedResources.ts │ │ │ ├── useColorScheme.ts │ │ │ ├── useColorScheme.web.ts │ │ │ └── useRandomBytes.ts │ │ ├── navigation │ │ │ ├── BottomTabNavigator.tsx │ │ │ ├── LinkingConfiguration.ts │ │ │ └── index.tsx │ │ └── types.tsx │ └── tsconfig.json ├── in-dapp-account │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .expo-shared │ │ └── assets.json │ ├── .gitignore │ ├── App.tsx │ ├── README.md │ ├── app.json │ ├── assets │ │ ├── ScreenShot.png │ │ ├── icon.png │ │ └── splash.png │ ├── babel.config.js │ ├── metro.config.js │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── legacy-apps │ └── decentraland │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .expo-shared │ │ └── assets.json │ │ ├── .gitignore │ │ ├── .nvmrc │ │ ├── .prettierrc │ │ ├── .watchmanconfig │ │ ├── App.tsx │ │ ├── AppNavigator.tsx │ │ ├── README.md │ │ ├── app.json │ │ ├── assets │ │ └── images │ │ │ ├── TasitLogoFromSvgNoAlpha1024x1024.png │ │ │ ├── TasitLogoFromSvgTransparent1024x1024.png │ │ │ ├── TasitLogoFromSvgTransparentAndOpaque1024x1024.png │ │ │ ├── icon.png │ │ │ └── splash.png │ │ ├── babel.config.js │ │ ├── components │ │ ├── presentational │ │ │ ├── AccountCreationProgress │ │ │ │ ├── AccountCreationProgress.test.tsx │ │ │ │ ├── AccountCreationProgress.tsx │ │ │ │ └── index.ts │ │ │ ├── AssetName │ │ │ │ ├── AssetName.test.tsx │ │ │ │ ├── AssetName.tsx │ │ │ │ └── index.ts │ │ │ ├── Button │ │ │ │ ├── Button.test.tsx │ │ │ │ ├── Button.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Button.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── BuyLand │ │ │ │ ├── BuyLand.test.tsx │ │ │ │ ├── BuyLand.tsx │ │ │ │ └── index.js │ │ │ ├── CenteredAlert │ │ │ │ ├── CenteredAlert.tsx │ │ │ │ └── index.ts │ │ │ ├── Estate │ │ │ │ ├── Estate.test.tsx │ │ │ │ ├── Estate.tsx │ │ │ │ └── index.ts │ │ │ ├── EthereumQuestion │ │ │ │ ├── EthereumQuestion.test.tsx │ │ │ │ ├── EthereumQuestion.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── EthereumQuestion.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── EthereumSignIn │ │ │ │ ├── EthereumSignIn.test.tsx │ │ │ │ ├── EthereumSignIn.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── EthereumSignIn.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── EthereumSignUp │ │ │ │ ├── EthereumSignUp.test.tsx │ │ │ │ ├── EthereumSignUp.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── EthereumSignUp.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── LandForSale │ │ │ │ ├── LandForSale.test.tsx │ │ │ │ ├── LandForSale.tsx │ │ │ │ └── index.ts │ │ │ ├── LandForSaleInfo │ │ │ │ ├── LandForSaleInfo.test.tsx │ │ │ │ ├── LandForSaleInfo.tsx │ │ │ │ └── index.ts │ │ │ ├── LandForSaleList │ │ │ │ ├── LandForSaleList.test.tsx │ │ │ │ ├── LandForSaleList.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── LandForSaleList.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── LandForSaleListItem │ │ │ │ ├── LandForSaleListItem.test.tsx │ │ │ │ ├── LandForSaleListItem.tsx │ │ │ │ └── index.ts │ │ │ ├── LargeText │ │ │ │ ├── LargeText.test.tsx │ │ │ │ ├── LargeText.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── LargeText.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── LinkToBlockchain │ │ │ │ ├── LinkToBlockchain.test.tsx │ │ │ │ ├── LinkToBlockchain.tsx │ │ │ │ └── index.ts │ │ │ ├── MyAsset │ │ │ │ ├── MyAsset.test.tsx │ │ │ │ ├── MyAsset.tsx │ │ │ │ └── index.ts │ │ │ ├── MyAssetsList │ │ │ │ ├── MyAssetsList.test.tsx │ │ │ │ ├── MyAssetsList.tsx │ │ │ │ └── index.ts │ │ │ ├── MyAssetsListItem │ │ │ │ ├── MyAssetsListItem.test.tsx │ │ │ │ ├── MyAssetsListItem.tsx │ │ │ │ └── index.ts │ │ │ ├── MyProfile │ │ │ │ ├── MyProfile.test.tsx │ │ │ │ ├── MyProfile.tsx │ │ │ │ └── index.ts │ │ │ ├── MyProfileCreationStatusItem │ │ │ │ ├── MyProfileCreationStatusItem.test.tsx │ │ │ │ ├── MyProfileCreationStatusItem.tsx │ │ │ │ └── index.ts │ │ │ ├── MyProfileProgress │ │ │ │ ├── MyProfileProgress.test.tsx │ │ │ │ ├── MyProfileProgress.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── MyProfileProgress.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── OnboardingHome │ │ │ │ ├── OnboardingHome.test.tsx │ │ │ │ ├── OnboardingHome.tsx │ │ │ │ └── index.ts │ │ │ ├── Parcel │ │ │ │ ├── Parcel.test.tsx │ │ │ │ ├── Parcel.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Parcel.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── TinyLink │ │ │ │ ├── TinyLink.test.tsx │ │ │ │ ├── TinyLink.tsx │ │ │ │ └── index.ts │ │ │ └── WalletButton │ │ │ │ ├── WalletButton.test.tsx │ │ │ │ ├── WalletButton.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── WalletButton.test.tsx.snap │ │ │ │ └── index.ts │ │ └── stateful │ │ │ ├── EthereumSignUpForm │ │ │ ├── EthereumSignUpForm.test.tsx │ │ │ ├── EthereumSignUpForm.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── EthereumSignUpForm.test.tsx.snap │ │ │ └── index.ts │ │ │ └── EthereumUpgradeSecurity │ │ │ ├── EthereumUpgradeSecurity.test.tsx │ │ │ ├── EthereumUpgradeSecurity.tsx │ │ │ ├── index.ts │ │ │ └── utils │ │ │ └── safeDataExtractor.ts │ │ ├── config │ │ ├── development.ts │ │ ├── rinkeby.ts │ │ └── ropsten.ts │ │ ├── constants │ │ ├── AccountCreationStatus.ts │ │ ├── AssetTypes.ts │ │ ├── Colors.ts │ │ ├── Layout.ts │ │ ├── Paths.ts │ │ └── UserActionStatus.ts │ │ ├── helpers │ │ ├── decentraland.ts │ │ ├── index.ts │ │ ├── storage.ts │ │ └── testHelpers.ts │ │ ├── jest.setup.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── redux │ │ ├── actions.ts │ │ ├── middlewares.ts │ │ └── reducers.ts │ │ ├── screens │ │ ├── BuyLandScreen │ │ │ ├── BuyLandScreen.test.tsx │ │ │ ├── BuyLandScreen.tsx │ │ │ └── index.ts │ │ ├── EthereumQuestionScreen │ │ │ ├── EthereumQuestionScreen.test.tsx │ │ │ ├── EthereumQuestionScreen.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── EthereumQuestionScreen.test.tsx.snap │ │ │ └── index.ts │ │ ├── EthereumSignInScreen │ │ │ ├── EthereumSignInScreen.test.tsx │ │ │ ├── EthereumSignInScreen.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── EthereumSignInScreen.test.tsx.snap │ │ │ └── index.ts │ │ ├── EthereumSignUpScreen │ │ │ ├── EthereumSignUpScreen.test.tsx │ │ │ ├── EthereumSignUpScreen.tsx │ │ │ └── index.ts │ │ ├── EthereumUpgradeSecurityScreen │ │ │ ├── EthereumUpgradeSecurityScreen.test.tsx │ │ │ ├── EthereumUpgradeSecurityScreen.tsx │ │ │ └── index.ts │ │ ├── ListLandForSaleScreen │ │ │ ├── ListLandForSaleScreen.test.tsx │ │ │ ├── ListLandForSaleScreen.tsx │ │ │ └── index.ts │ │ ├── MyAssetsScreen │ │ │ ├── MyAssetsScreen.test.tsx │ │ │ ├── MyAssetsScreen.tsx │ │ │ └── index.ts │ │ ├── MyProfileScreen │ │ │ ├── MyProfileScreen.test.tsx │ │ │ ├── MyProfileScreen.tsx │ │ │ └── index.ts │ │ └── OnboardingHomeScreen │ │ │ ├── OnboardingHomeScreen.test.tsx │ │ │ ├── OnboardingHomeScreen.tsx │ │ │ └── index.ts │ │ ├── scripts │ │ ├── gnosisSafe.ts │ │ └── starter.ts │ │ ├── starter.ts │ │ ├── tsconfig.json │ │ └── types │ │ ├── AccountCreationStatus.ts │ │ ├── AccountObject.ts │ │ ├── ActionObject.ts │ │ ├── ActionStatus.ts │ │ ├── AssetNameProps.ts │ │ ├── AssetObjectProps.ts │ │ ├── GlobalState.ts │ │ ├── LandForSaleObjectProps.ts │ │ └── index.d.ts └── wallet-deep-linking │ ├── .eslintrc.js │ ├── .expo-shared │ └── assets.json │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.test.tsx │ ├── App.tsx │ ├── README.md │ ├── app.json │ ├── assets │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ └── images │ │ ├── TasitWalletExampleIcon1024.png │ │ ├── TasitWalletExampleIcon192.png │ │ ├── robot-dev.png │ │ ├── robot-prod.png │ │ └── splash.png │ ├── babel.config.ts │ ├── components │ ├── StyledText.test.tsx │ ├── StyledText.tsx │ ├── TabBarIcon.tsx │ └── __snapshots__ │ │ └── StyledText.test.tsx.snap │ ├── constants │ ├── Colors.ts │ ├── Layout.ts │ └── package.json │ ├── navigation │ ├── AppNavigator.tsx │ ├── HomeStackNavigator.tsx │ ├── MainTabNavigator.tsx │ └── TransactionStackNavigator.tsx │ ├── package-lock.json │ ├── package.json │ ├── screens │ ├── HomeScreen.tsx │ └── TransactionScreen.tsx │ ├── store │ ├── actions.ts │ ├── package.json │ └── reducers │ │ ├── index.ts │ │ └── transactions.ts │ └── tsconfig.json ├── assets ├── images │ └── TasitLogoFromSvgTransparentAndOpaqueColor1024x1024.png └── screenshots │ ├── BuyLand.png │ ├── ListLand.png │ ├── MyLand.png │ ├── MyProfile.png │ ├── PickUsername.png │ └── StartSetup.png └── package.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/.github/workflows/deployment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.18.0 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/README.md -------------------------------------------------------------------------------- /apps/account-recovery/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/.env -------------------------------------------------------------------------------- /apps/account-recovery/.env.production: -------------------------------------------------------------------------------- 1 | NETWORK="mainnet" -------------------------------------------------------------------------------- /apps/account-recovery/.eslintignore: -------------------------------------------------------------------------------- 1 | metro.config.js -------------------------------------------------------------------------------- /apps/account-recovery/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/.eslintrc.js -------------------------------------------------------------------------------- /apps/account-recovery/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/.expo-shared/assets.json -------------------------------------------------------------------------------- /apps/account-recovery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/.gitignore -------------------------------------------------------------------------------- /apps/account-recovery/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/.vscode/settings.json -------------------------------------------------------------------------------- /apps/account-recovery/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/App.tsx -------------------------------------------------------------------------------- /apps/account-recovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/README.md -------------------------------------------------------------------------------- /apps/account-recovery/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/app.config.js -------------------------------------------------------------------------------- /apps/account-recovery/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /apps/account-recovery/assets/images/TasitAccountRecovery1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/assets/images/TasitAccountRecovery1024.png -------------------------------------------------------------------------------- /apps/account-recovery/assets/images/TasitAccountRecovery512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/assets/images/TasitAccountRecovery512.png -------------------------------------------------------------------------------- /apps/account-recovery/assets/images/TasitAccoutRecoverySplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/assets/images/TasitAccoutRecoverySplash.png -------------------------------------------------------------------------------- /apps/account-recovery/assets/images/TasitFavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/assets/images/TasitFavicon.png -------------------------------------------------------------------------------- /apps/account-recovery/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/babel.config.js -------------------------------------------------------------------------------- /apps/account-recovery/docs/images/AccountRecoverySmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/docs/images/AccountRecoverySmall.gif -------------------------------------------------------------------------------- /apps/account-recovery/docs/images/AccountTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/docs/images/AccountTab.png -------------------------------------------------------------------------------- /apps/account-recovery/docs/images/ContractBasedAccountTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/docs/images/ContractBasedAccountTab.png -------------------------------------------------------------------------------- /apps/account-recovery/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/metro.config.js -------------------------------------------------------------------------------- /apps/account-recovery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/package.json -------------------------------------------------------------------------------- /apps/account-recovery/screens/AccountScreen/AccountScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/screens/AccountScreen/AccountScreen.tsx -------------------------------------------------------------------------------- /apps/account-recovery/screens/AccountScreen/components/AccountInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/screens/AccountScreen/components/AccountInfo.tsx -------------------------------------------------------------------------------- /apps/account-recovery/screens/AccountScreen/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./AccountScreen"; 2 | -------------------------------------------------------------------------------- /apps/account-recovery/screens/ContractBasedAccountScreen/ContractBasedAccountScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/screens/ContractBasedAccountScreen/ContractBasedAccountScreen.tsx -------------------------------------------------------------------------------- /apps/account-recovery/screens/ContractBasedAccountScreen/components/ContractBasedAccountInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/screens/ContractBasedAccountScreen/components/ContractBasedAccountInfo.tsx -------------------------------------------------------------------------------- /apps/account-recovery/screens/ContractBasedAccountScreen/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./ContractBasedAccountScreen"; 2 | -------------------------------------------------------------------------------- /apps/account-recovery/screens/NotFoundScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/screens/NotFoundScreen.tsx -------------------------------------------------------------------------------- /apps/account-recovery/shared/components/StyledText.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/components/StyledText.test.js -------------------------------------------------------------------------------- /apps/account-recovery/shared/components/StyledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/components/StyledText.tsx -------------------------------------------------------------------------------- /apps/account-recovery/shared/components/Themed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/components/Themed.tsx -------------------------------------------------------------------------------- /apps/account-recovery/shared/components/__snapshots__/StyledText.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/components/__snapshots__/StyledText.test.js.snap -------------------------------------------------------------------------------- /apps/account-recovery/shared/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/constants/Colors.ts -------------------------------------------------------------------------------- /apps/account-recovery/shared/constants/Layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/constants/Layout.ts -------------------------------------------------------------------------------- /apps/account-recovery/shared/context/AccountContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/context/AccountContext.tsx -------------------------------------------------------------------------------- /apps/account-recovery/shared/hooks/useCachedResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/hooks/useCachedResources.ts -------------------------------------------------------------------------------- /apps/account-recovery/shared/hooks/useColorScheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/hooks/useColorScheme.ts -------------------------------------------------------------------------------- /apps/account-recovery/shared/hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /apps/account-recovery/shared/hooks/useRandomBytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/hooks/useRandomBytes.ts -------------------------------------------------------------------------------- /apps/account-recovery/shared/navigation/BottomTabNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/navigation/BottomTabNavigator.tsx -------------------------------------------------------------------------------- /apps/account-recovery/shared/navigation/LinkingConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/navigation/LinkingConfiguration.ts -------------------------------------------------------------------------------- /apps/account-recovery/shared/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/navigation/index.tsx -------------------------------------------------------------------------------- /apps/account-recovery/shared/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/shared/types.tsx -------------------------------------------------------------------------------- /apps/account-recovery/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/account-recovery/tsconfig.json -------------------------------------------------------------------------------- /apps/in-dapp-account/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/.eslintignore -------------------------------------------------------------------------------- /apps/in-dapp-account/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/.eslintrc.js -------------------------------------------------------------------------------- /apps/in-dapp-account/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/.expo-shared/assets.json -------------------------------------------------------------------------------- /apps/in-dapp-account/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/.gitignore -------------------------------------------------------------------------------- /apps/in-dapp-account/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/App.tsx -------------------------------------------------------------------------------- /apps/in-dapp-account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/README.md -------------------------------------------------------------------------------- /apps/in-dapp-account/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/app.json -------------------------------------------------------------------------------- /apps/in-dapp-account/assets/ScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/assets/ScreenShot.png -------------------------------------------------------------------------------- /apps/in-dapp-account/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/assets/icon.png -------------------------------------------------------------------------------- /apps/in-dapp-account/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/assets/splash.png -------------------------------------------------------------------------------- /apps/in-dapp-account/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/babel.config.js -------------------------------------------------------------------------------- /apps/in-dapp-account/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/metro.config.js -------------------------------------------------------------------------------- /apps/in-dapp-account/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/package-lock.json -------------------------------------------------------------------------------- /apps/in-dapp-account/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/package.json -------------------------------------------------------------------------------- /apps/in-dapp-account/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/in-dapp-account/tsconfig.json -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/.eslintignore -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/.eslintrc.js -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/.expo-shared/assets.json -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/.gitignore -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/.nvmrc: -------------------------------------------------------------------------------- 1 | 10.16 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/.prettierrc -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/App.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/AppNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/AppNavigator.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/README.md -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/app.json -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/assets/images/TasitLogoFromSvgNoAlpha1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/assets/images/TasitLogoFromSvgNoAlpha1024x1024.png -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/assets/images/TasitLogoFromSvgTransparent1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/assets/images/TasitLogoFromSvgTransparent1024x1024.png -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/assets/images/TasitLogoFromSvgTransparentAndOpaque1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/assets/images/TasitLogoFromSvgTransparentAndOpaque1024x1024.png -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/assets/images/icon.png -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/assets/images/splash.png -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/babel.config.js -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/AccountCreationProgress/AccountCreationProgress.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/AccountCreationProgress/AccountCreationProgress.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/AccountCreationProgress/AccountCreationProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/AccountCreationProgress/AccountCreationProgress.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/AccountCreationProgress/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./AccountCreationProgress"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/AssetName/AssetName.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/AssetName/AssetName.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/AssetName/AssetName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/AssetName/AssetName.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/AssetName/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./AssetName"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Button/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/Button/Button.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/Button/Button.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Button/__snapshots__/Button.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/Button/__snapshots__/Button.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Button/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Button"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/BuyLand/BuyLand.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/BuyLand/BuyLand.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/BuyLand/BuyLand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/BuyLand/BuyLand.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/BuyLand/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BuyLand"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/CenteredAlert/CenteredAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/CenteredAlert/CenteredAlert.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/CenteredAlert/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./CenteredAlert"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Estate/Estate.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/Estate/Estate.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Estate/Estate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/Estate/Estate.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Estate/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Estate"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumQuestion/EthereumQuestion.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/EthereumQuestion/EthereumQuestion.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumQuestion/EthereumQuestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/EthereumQuestion/EthereumQuestion.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumQuestion/__snapshots__/EthereumQuestion.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/EthereumQuestion/__snapshots__/EthereumQuestion.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumQuestion/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EthereumQuestion"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumSignIn/EthereumSignIn.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/EthereumSignIn/EthereumSignIn.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumSignIn/EthereumSignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/EthereumSignIn/EthereumSignIn.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumSignIn/__snapshots__/EthereumSignIn.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/EthereumSignIn/__snapshots__/EthereumSignIn.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumSignIn/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EthereumSignIn"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumSignUp/EthereumSignUp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/EthereumSignUp/EthereumSignUp.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumSignUp/EthereumSignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/EthereumSignUp/EthereumSignUp.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumSignUp/__snapshots__/EthereumSignUp.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/EthereumSignUp/__snapshots__/EthereumSignUp.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/EthereumSignUp/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EthereumSignUp"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSale/LandForSale.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LandForSale/LandForSale.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSale/LandForSale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LandForSale/LandForSale.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSale/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./LandForSale"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleInfo/LandForSaleInfo.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LandForSaleInfo/LandForSaleInfo.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleInfo/LandForSaleInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LandForSaleInfo/LandForSaleInfo.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleInfo/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./LandForSaleInfo"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleList/LandForSaleList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LandForSaleList/LandForSaleList.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleList/LandForSaleList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LandForSaleList/LandForSaleList.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleList/__snapshots__/LandForSaleList.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LandForSaleList/__snapshots__/LandForSaleList.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleList/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./LandForSaleList"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleListItem/LandForSaleListItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LandForSaleListItem/LandForSaleListItem.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleListItem/LandForSaleListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LandForSaleListItem/LandForSaleListItem.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LandForSaleListItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./LandForSaleListItem"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LargeText/LargeText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LargeText/LargeText.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LargeText/LargeText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LargeText/LargeText.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LargeText/__snapshots__/LargeText.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LargeText/__snapshots__/LargeText.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LargeText/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./LargeText"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LinkToBlockchain/LinkToBlockchain.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LinkToBlockchain/LinkToBlockchain.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LinkToBlockchain/LinkToBlockchain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/LinkToBlockchain/LinkToBlockchain.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/LinkToBlockchain/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./LinkToBlockchain"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyAsset/MyAsset.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyAsset/MyAsset.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyAsset/MyAsset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyAsset/MyAsset.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyAsset/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./MyAsset"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyAssetsList/MyAssetsList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyAssetsList/MyAssetsList.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyAssetsList/MyAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyAssetsList/MyAssetsList.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyAssetsList/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./MyAssetsList"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyAssetsListItem/MyAssetsListItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyAssetsListItem/MyAssetsListItem.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyAssetsListItem/MyAssetsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyAssetsListItem/MyAssetsListItem.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyAssetsListItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./MyAssetsListItem"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfile/MyProfile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyProfile/MyProfile.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfile/MyProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyProfile/MyProfile.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfile/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./MyProfile"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfileCreationStatusItem/MyProfileCreationStatusItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyProfileCreationStatusItem/MyProfileCreationStatusItem.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfileCreationStatusItem/MyProfileCreationStatusItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyProfileCreationStatusItem/MyProfileCreationStatusItem.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfileCreationStatusItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./MyProfileCreationStatusItem"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfileProgress/MyProfileProgress.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyProfileProgress/MyProfileProgress.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfileProgress/MyProfileProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyProfileProgress/MyProfileProgress.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfileProgress/__snapshots__/MyProfileProgress.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/MyProfileProgress/__snapshots__/MyProfileProgress.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/MyProfileProgress/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./MyProfileProgress"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/OnboardingHome/OnboardingHome.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/OnboardingHome/OnboardingHome.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/OnboardingHome/OnboardingHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/OnboardingHome/OnboardingHome.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/OnboardingHome/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./OnboardingHome"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Parcel/Parcel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/Parcel/Parcel.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Parcel/Parcel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/Parcel/Parcel.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Parcel/__snapshots__/Parcel.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/Parcel/__snapshots__/Parcel.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/Parcel/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Parcel"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/TinyLink/TinyLink.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/TinyLink/TinyLink.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/TinyLink/TinyLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/TinyLink/TinyLink.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/TinyLink/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./TinyLink"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/WalletButton/WalletButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/WalletButton/WalletButton.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/WalletButton/WalletButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/WalletButton/WalletButton.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/WalletButton/__snapshots__/WalletButton.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/presentational/WalletButton/__snapshots__/WalletButton.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/presentational/WalletButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./WalletButton"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/stateful/EthereumSignUpForm/EthereumSignUpForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/stateful/EthereumSignUpForm/EthereumSignUpForm.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/stateful/EthereumSignUpForm/EthereumSignUpForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/stateful/EthereumSignUpForm/EthereumSignUpForm.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/stateful/EthereumSignUpForm/__snapshots__/EthereumSignUpForm.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/stateful/EthereumSignUpForm/__snapshots__/EthereumSignUpForm.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/stateful/EthereumSignUpForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EthereumSignUpForm"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/stateful/EthereumUpgradeSecurity/EthereumUpgradeSecurity.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/stateful/EthereumUpgradeSecurity/EthereumUpgradeSecurity.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/stateful/EthereumUpgradeSecurity/EthereumUpgradeSecurity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/stateful/EthereumUpgradeSecurity/EthereumUpgradeSecurity.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/stateful/EthereumUpgradeSecurity/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EthereumUpgradeSecurity"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/components/stateful/EthereumUpgradeSecurity/utils/safeDataExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/components/stateful/EthereumUpgradeSecurity/utils/safeDataExtractor.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/config/development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/config/development.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/config/rinkeby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/config/rinkeby.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/config/ropsten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/config/ropsten.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/constants/AccountCreationStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/constants/AccountCreationStatus.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/constants/AssetTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/constants/AssetTypes.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/constants/Colors.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/constants/Layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/constants/Layout.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/constants/Paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/constants/Paths.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/constants/UserActionStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/constants/UserActionStatus.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/helpers/decentraland.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/helpers/decentraland.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/helpers/index.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/helpers/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/helpers/storage.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/helpers/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/helpers/testHelpers.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/jest.setup.js -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/package-lock.json -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/package.json -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/redux/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/redux/actions.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/redux/middlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/redux/middlewares.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/redux/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/redux/reducers.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/BuyLandScreen/BuyLandScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/BuyLandScreen/BuyLandScreen.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/BuyLandScreen/BuyLandScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/BuyLandScreen/BuyLandScreen.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/BuyLandScreen/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./BuyLandScreen"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumQuestionScreen/EthereumQuestionScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumQuestionScreen/EthereumQuestionScreen.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumQuestionScreen/EthereumQuestionScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumQuestionScreen/EthereumQuestionScreen.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumQuestionScreen/__snapshots__/EthereumQuestionScreen.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumQuestionScreen/__snapshots__/EthereumQuestionScreen.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumQuestionScreen/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EthereumQuestionScreen"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumSignInScreen/EthereumSignInScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumSignInScreen/EthereumSignInScreen.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumSignInScreen/EthereumSignInScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumSignInScreen/EthereumSignInScreen.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumSignInScreen/__snapshots__/EthereumSignInScreen.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumSignInScreen/__snapshots__/EthereumSignInScreen.test.tsx.snap -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumSignInScreen/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EthereumSignInScreen"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumSignUpScreen/EthereumSignUpScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumSignUpScreen/EthereumSignUpScreen.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumSignUpScreen/EthereumSignUpScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumSignUpScreen/EthereumSignUpScreen.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumSignUpScreen/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EthereumSignUpScreen"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumUpgradeSecurityScreen/EthereumUpgradeSecurityScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumUpgradeSecurityScreen/EthereumUpgradeSecurityScreen.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumUpgradeSecurityScreen/EthereumUpgradeSecurityScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/EthereumUpgradeSecurityScreen/EthereumUpgradeSecurityScreen.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/EthereumUpgradeSecurityScreen/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./EthereumUpgradeSecurityScreen"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/ListLandForSaleScreen/ListLandForSaleScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/ListLandForSaleScreen/ListLandForSaleScreen.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/ListLandForSaleScreen/ListLandForSaleScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/ListLandForSaleScreen/ListLandForSaleScreen.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/ListLandForSaleScreen/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./ListLandForSaleScreen"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/MyAssetsScreen/MyAssetsScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/MyAssetsScreen/MyAssetsScreen.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/MyAssetsScreen/MyAssetsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/MyAssetsScreen/MyAssetsScreen.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/MyAssetsScreen/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./MyAssetsScreen"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/MyProfileScreen/MyProfileScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/MyProfileScreen/MyProfileScreen.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/MyProfileScreen/MyProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/MyProfileScreen/MyProfileScreen.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/MyProfileScreen/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./MyProfileScreen"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/OnboardingHomeScreen/OnboardingHomeScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/OnboardingHomeScreen/OnboardingHomeScreen.test.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/OnboardingHomeScreen/OnboardingHomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/screens/OnboardingHomeScreen/OnboardingHomeScreen.tsx -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/screens/OnboardingHomeScreen/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./OnboardingHomeScreen"; 2 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/scripts/gnosisSafe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/scripts/gnosisSafe.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/scripts/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/scripts/starter.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/starter.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/tsconfig.json -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/types/AccountCreationStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/types/AccountCreationStatus.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/types/AccountObject.ts: -------------------------------------------------------------------------------- 1 | export interface AccountObject { 2 | address: string; 3 | } 4 | -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/types/ActionObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/types/ActionObject.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/types/ActionStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/types/ActionStatus.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/types/AssetNameProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/types/AssetNameProps.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/types/AssetObjectProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/types/AssetObjectProps.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/types/GlobalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/types/GlobalState.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/types/LandForSaleObjectProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/legacy-apps/decentraland/types/LandForSaleObjectProps.ts -------------------------------------------------------------------------------- /apps/legacy-apps/decentraland/types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "tasit-sdk/dist/helpers/DecentralandUtils"; 2 | -------------------------------------------------------------------------------- /apps/wallet-deep-linking/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/.eslintrc.js -------------------------------------------------------------------------------- /apps/wallet-deep-linking/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/.expo-shared/assets.json -------------------------------------------------------------------------------- /apps/wallet-deep-linking/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/.gitignore -------------------------------------------------------------------------------- /apps/wallet-deep-linking/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/wallet-deep-linking/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/App.test.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/App.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/README.md -------------------------------------------------------------------------------- /apps/wallet-deep-linking/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/app.json -------------------------------------------------------------------------------- /apps/wallet-deep-linking/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /apps/wallet-deep-linking/assets/images/TasitWalletExampleIcon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/assets/images/TasitWalletExampleIcon1024.png -------------------------------------------------------------------------------- /apps/wallet-deep-linking/assets/images/TasitWalletExampleIcon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/assets/images/TasitWalletExampleIcon192.png -------------------------------------------------------------------------------- /apps/wallet-deep-linking/assets/images/robot-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/assets/images/robot-dev.png -------------------------------------------------------------------------------- /apps/wallet-deep-linking/assets/images/robot-prod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/assets/images/robot-prod.png -------------------------------------------------------------------------------- /apps/wallet-deep-linking/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/assets/images/splash.png -------------------------------------------------------------------------------- /apps/wallet-deep-linking/babel.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/babel.config.ts -------------------------------------------------------------------------------- /apps/wallet-deep-linking/components/StyledText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/components/StyledText.test.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/components/StyledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/components/StyledText.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/components/TabBarIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/components/TabBarIcon.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/components/__snapshots__/StyledText.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/components/__snapshots__/StyledText.test.tsx.snap -------------------------------------------------------------------------------- /apps/wallet-deep-linking/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/constants/Colors.ts -------------------------------------------------------------------------------- /apps/wallet-deep-linking/constants/Layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/constants/Layout.ts -------------------------------------------------------------------------------- /apps/wallet-deep-linking/constants/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@constants" 3 | } 4 | -------------------------------------------------------------------------------- /apps/wallet-deep-linking/navigation/AppNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/navigation/AppNavigator.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/navigation/HomeStackNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/navigation/HomeStackNavigator.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/navigation/MainTabNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/navigation/MainTabNavigator.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/navigation/TransactionStackNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/navigation/TransactionStackNavigator.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/package-lock.json -------------------------------------------------------------------------------- /apps/wallet-deep-linking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/package.json -------------------------------------------------------------------------------- /apps/wallet-deep-linking/screens/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/screens/HomeScreen.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/screens/TransactionScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/screens/TransactionScreen.tsx -------------------------------------------------------------------------------- /apps/wallet-deep-linking/store/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/store/actions.ts -------------------------------------------------------------------------------- /apps/wallet-deep-linking/store/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@store" 3 | } 4 | -------------------------------------------------------------------------------- /apps/wallet-deep-linking/store/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/store/reducers/index.ts -------------------------------------------------------------------------------- /apps/wallet-deep-linking/store/reducers/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/store/reducers/transactions.ts -------------------------------------------------------------------------------- /apps/wallet-deep-linking/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/apps/wallet-deep-linking/tsconfig.json -------------------------------------------------------------------------------- /assets/images/TasitLogoFromSvgTransparentAndOpaqueColor1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/assets/images/TasitLogoFromSvgTransparentAndOpaqueColor1024x1024.png -------------------------------------------------------------------------------- /assets/screenshots/BuyLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/assets/screenshots/BuyLand.png -------------------------------------------------------------------------------- /assets/screenshots/ListLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/assets/screenshots/ListLand.png -------------------------------------------------------------------------------- /assets/screenshots/MyLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/assets/screenshots/MyLand.png -------------------------------------------------------------------------------- /assets/screenshots/MyProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/assets/screenshots/MyProfile.png -------------------------------------------------------------------------------- /assets/screenshots/PickUsername.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/assets/screenshots/PickUsername.png -------------------------------------------------------------------------------- /assets/screenshots/StartSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/assets/screenshots/StartSetup.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tasitlabs/tasit-apps/HEAD/package.json --------------------------------------------------------------------------------