├── .github ├── dependabot.yml └── workflows │ ├── audit.yml │ └── build-test-publish.yml ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── __mocks__ ├── fileMock.js └── styleMock.js ├── contracts.json ├── jest.config.cjs ├── package.json ├── src ├── components │ ├── AddressField │ │ ├── AddressField.tsx │ │ ├── index.ts │ │ └── utils.ts │ ├── Intercom │ │ ├── Intercom.tsx │ │ ├── Intercom.types.ts │ │ ├── IntercomWidget.ts │ │ └── index.ts │ └── index.ts ├── containers │ ├── AddressProvider │ │ ├── AddressProvider.container.tsx │ │ ├── AddressProvider.tsx │ │ ├── AddressProvider.types.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── AssetCard │ │ ├── AssetCard.tsx │ │ ├── utils.spec.tsx │ │ └── utils.tsx │ ├── AssetStatusFilter │ │ ├── AssetStatusFilter.tsx │ │ ├── AssetStatusFilter.types.ts │ │ └── index.ts │ ├── BackToTopButton │ │ ├── BackToTopButton.tsx │ │ ├── BackToTopButton.types.ts │ │ └── index.ts │ ├── Banner │ │ ├── Banner.container.ts │ │ ├── Banner.tsx │ │ ├── Banner.types.ts │ │ └── index.ts │ ├── BuyManaWithFiatModal │ │ ├── BuyManaWithFiatFeedbackModal │ │ │ ├── BuyManaWithFiatFeedbackModal.container.ts │ │ │ ├── BuyManaWithFiatFeedbackModal.tsx │ │ │ ├── BuyManaWithFiatFeedbackModal.types.ts │ │ │ └── index.ts │ │ ├── BuyManaWithFiatModal.container.ts │ │ ├── BuyManaWithFiatModal.tsx │ │ ├── BuyManaWithFiatModal.types.ts │ │ └── index.ts │ ├── ChainButton │ │ ├── ChainButton.tsx │ │ ├── ChainButton.types.ts │ │ └── index.ts │ ├── ChainCheck │ │ ├── ChainCheck.tsx │ │ ├── ChainCheck.types.ts │ │ └── index.ts │ ├── ChainProvider │ │ ├── ChainProvider.container.ts │ │ ├── ChainProvider.tsx │ │ ├── ChainProvider.types.ts │ │ └── index.ts │ ├── EnhancedIntercom │ │ ├── EnhancedIntercom.container.ts │ │ ├── EnhancedIntercom.types.ts │ │ └── index.ts │ ├── Footer │ │ ├── Footer.container.ts │ │ ├── Footer.tsx │ │ ├── Footer.types.tsx │ │ └── index.ts │ ├── LoginModal │ │ ├── LoginModal.container.ts │ │ ├── LoginModal.tsx │ │ ├── LoginModal.types.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── MetaTransactionError │ │ ├── MetaTransactionError.container.ts │ │ ├── MetaTransactionError.tsx │ │ ├── MetaTransactionError.types.ts │ │ └── index.ts │ ├── Modal │ │ ├── Modal.container.ts │ │ ├── Modal.tsx │ │ ├── Modal.types.ts │ │ └── index.tsx │ ├── NFTCard │ │ ├── NFTCard.tsx │ │ ├── NFTCard.types.ts │ │ └── index.ts │ ├── Navbar │ │ ├── Navbar.container.tsx │ │ ├── Navbar.tsx │ │ ├── Navbar.types.tsx │ │ ├── Navbar2.container.tsx │ │ ├── Navbar2.styled.ts │ │ ├── Navbar2.tsx │ │ ├── constants.ts │ │ └── index.ts │ ├── NetworkButton │ │ ├── NetworkButton.tsx │ │ ├── NetworkButton.types.ts │ │ └── index.ts │ ├── NetworkCheck │ │ ├── NetworkCheck.tsx │ │ ├── NetworkCheck.types.ts │ │ └── index.ts │ ├── Profile │ │ ├── Profile.tsx │ │ ├── Profile.types.ts │ │ └── index.ts │ ├── RarityBadge │ │ ├── RarityBadge.tsx │ │ ├── RarityBadge.types.ts │ │ └── index.ts │ ├── RarityFilter │ │ ├── RarityFilter.tsx │ │ ├── RarityFilters.types.ts │ │ └── index.ts │ ├── SignInPage │ │ ├── SignInPage.container.ts │ │ ├── SignInPage.tsx │ │ ├── SignInPage.types.ts │ │ └── index.ts │ ├── SmartWearableFilter │ │ ├── SmartWearableFilter.tsx │ │ ├── SmartWearableFilter.types.tsx │ │ └── index.ts │ ├── TransactionLink │ │ ├── TransactionLink.container.ts │ │ ├── TransactionLink.tsx │ │ ├── TransactionLink.types.ts │ │ └── index.ts │ ├── UnsupportedNetworkModal │ │ ├── UnsupportedNetworkModal.tsx │ │ ├── UnsupportedNetworkModal.types.ts │ │ └── index.ts │ ├── Web2TransactionModal │ │ ├── Web2TransactionsModal.container.ts │ │ ├── Web2TransactionsModal.tsx │ │ ├── Web2TransactionsModal.types.ts │ │ └── index.ts │ ├── index.ts │ └── withAuthorizedAction │ │ ├── AuthorizationModal │ │ ├── AuthorizationModal.container.ts │ │ ├── AuthorizationModal.spec.tsx │ │ ├── AuthorizationModal.tsx │ │ ├── AuthorizationModal.types.ts │ │ ├── index.ts │ │ └── utils.tsx │ │ ├── index.ts │ │ ├── withAuthorizedAction.tsx │ │ └── withAuthorizedAction.types.ts ├── hooks │ ├── useManaFiatGatewayPurchase.tsx │ ├── useNotifications.tsx │ └── usePageTracking.ts ├── index.ts ├── lib │ ├── BaseClient.spec.ts │ ├── BaseClient.ts │ ├── ClientError.ts │ ├── api.spec.ts │ ├── api.ts │ ├── chainConfiguration.ts │ ├── credits.spec.ts │ ├── credits.ts │ ├── disabledMiddleware.ts │ ├── entities.ts │ ├── error.ts │ ├── eth.ts │ ├── graph.ts │ ├── index.ts │ ├── localStorage.spec.ts │ ├── localStorage.ts │ ├── mana.spec.ts │ ├── mana.ts │ ├── marketplaceApi.ts │ ├── peer.spec.ts │ ├── peer.ts │ ├── time.ts │ ├── trades.spec.ts │ ├── trades.ts │ ├── types.ts │ └── utils.ts ├── modules │ ├── analytics │ │ ├── index.ts │ │ ├── middleware.ts │ │ ├── sagas.ts │ │ ├── snippet.ts │ │ ├── types.ts │ │ ├── utils.spec.ts │ │ └── utils.ts │ ├── authClient.ts │ ├── authorization │ │ ├── actions.spec.ts │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.spec.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── campaign │ │ ├── ContentfulClient.spec.ts │ │ ├── ContentfulClient.ts │ │ ├── ContentfulClient.types.ts │ │ ├── actions.spec.ts │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.spec.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── credits │ │ ├── CreditsClient.ts │ │ ├── actions.spec.ts │ │ ├── actions.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.spec.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── features │ │ ├── actions.spec.ts │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.spec.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── gateway │ │ ├── actions.spec.ts │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── moonpay │ │ │ ├── MoonPay.spec.ts │ │ │ ├── MoonPay.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.spec.ts │ │ ├── selectors.ts │ │ ├── transak │ │ │ ├── Transak.spec.ts │ │ │ ├── Transak.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── identity │ │ ├── actions.ts │ │ ├── index.ts │ │ └── sagas.ts │ ├── identityId.ts │ ├── index.ts │ ├── loading │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ ├── utils.spec.ts │ │ └── utils.ts │ ├── locations.ts │ ├── modal │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── notifications.ts │ ├── profile │ │ ├── actions.spec.ts │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.spec.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── storage │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── middleware.ts │ │ ├── reducer.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── toast │ │ ├── actions.ts │ │ ├── cache.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ ├── toasts │ │ │ ├── index.tsx │ │ │ └── meta-transactions.tsx │ │ └── types.ts │ ├── trades │ │ ├── TradeService.ts │ │ ├── api.spec.ts │ │ └── api.ts │ ├── transaction │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── middleware.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ ├── txUtils.ts │ │ ├── types.ts │ │ ├── utils.spec.ts │ │ └── utils.ts │ ├── translation │ │ ├── actions.ts │ │ ├── defaults │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── index.ts │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ └── zh.json │ │ ├── index.ts │ │ ├── reducer.ts │ │ ├── sagas.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ └── wallet │ │ ├── actions.spec.ts │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── reducer.spec.ts │ │ ├── reducer.ts │ │ ├── sagas.spec.ts │ │ ├── sagas.ts │ │ ├── selectors.spec.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ ├── utils.spec.ts │ │ └── utils │ │ ├── JsonRPCInvalidResponseError.ts │ │ ├── buildWallet.ts │ │ ├── fetchManaBalance.ts │ │ ├── getAddEthereumChainParameters.ts │ │ ├── getProviderChainId.ts │ │ ├── getTargetNetworkProvider.ts │ │ ├── index.ts │ │ ├── providerChecks.spec.ts │ │ ├── providerChecks.ts │ │ ├── sendTransaction.ts │ │ ├── switchProviderChainId.ts │ │ ├── transactionEvents.ts │ │ ├── types.ts │ │ └── urls.ts ├── providers │ ├── ModalProvider │ │ ├── ModalProvider.container.ts │ │ ├── ModalProvider.tsx │ │ ├── ModalProvider.types.ts │ │ └── index.ts │ ├── ToastProvider │ │ ├── ToastProvider.container.ts │ │ ├── ToastProvider.tsx │ │ ├── ToastProvider.types.ts │ │ └── index.ts │ ├── TranslationProvider │ │ ├── TranslationProvider.container.ts │ │ ├── TranslationProvider.tsx │ │ ├── TranslationProvider.types.ts │ │ └── index.ts │ ├── WalletProvider │ │ ├── WalletProvider.container.ts │ │ ├── WalletProvider.ts │ │ ├── WalletProvider.types.ts │ │ └── index.ts │ └── index.ts ├── tests │ ├── authentication.ts │ ├── contentfulMocks.ts │ ├── profileMocks.ts │ ├── sagas.ts │ ├── setupTests.ts │ └── transactions.ts └── types.ts ├── tsconfig.json ├── tsconfig.node.json └── tslint.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/.github/workflows/build-test-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub' 2 | -------------------------------------------------------------------------------- /__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {} 2 | -------------------------------------------------------------------------------- /contracts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/contracts.json -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/package.json -------------------------------------------------------------------------------- /src/components/AddressField/AddressField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/components/AddressField/AddressField.tsx -------------------------------------------------------------------------------- /src/components/AddressField/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AddressField' 2 | -------------------------------------------------------------------------------- /src/components/AddressField/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/components/AddressField/utils.ts -------------------------------------------------------------------------------- /src/components/Intercom/Intercom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/components/Intercom/Intercom.tsx -------------------------------------------------------------------------------- /src/components/Intercom/Intercom.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/components/Intercom/Intercom.types.ts -------------------------------------------------------------------------------- /src/components/Intercom/IntercomWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/components/Intercom/IntercomWidget.ts -------------------------------------------------------------------------------- /src/components/Intercom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/components/Intercom/index.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/containers/AddressProvider/AddressProvider.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AddressProvider/AddressProvider.container.tsx -------------------------------------------------------------------------------- /src/containers/AddressProvider/AddressProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AddressProvider/AddressProvider.tsx -------------------------------------------------------------------------------- /src/containers/AddressProvider/AddressProvider.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AddressProvider/AddressProvider.types.ts -------------------------------------------------------------------------------- /src/containers/AddressProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AddressProvider/index.ts -------------------------------------------------------------------------------- /src/containers/AddressProvider/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AddressProvider/utils.ts -------------------------------------------------------------------------------- /src/containers/AssetCard/AssetCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AssetCard/AssetCard.tsx -------------------------------------------------------------------------------- /src/containers/AssetCard/utils.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AssetCard/utils.spec.tsx -------------------------------------------------------------------------------- /src/containers/AssetCard/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AssetCard/utils.tsx -------------------------------------------------------------------------------- /src/containers/AssetStatusFilter/AssetStatusFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AssetStatusFilter/AssetStatusFilter.tsx -------------------------------------------------------------------------------- /src/containers/AssetStatusFilter/AssetStatusFilter.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AssetStatusFilter/AssetStatusFilter.types.ts -------------------------------------------------------------------------------- /src/containers/AssetStatusFilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/AssetStatusFilter/index.ts -------------------------------------------------------------------------------- /src/containers/BackToTopButton/BackToTopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BackToTopButton/BackToTopButton.tsx -------------------------------------------------------------------------------- /src/containers/BackToTopButton/BackToTopButton.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BackToTopButton/BackToTopButton.types.ts -------------------------------------------------------------------------------- /src/containers/BackToTopButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BackToTopButton/index.ts -------------------------------------------------------------------------------- /src/containers/Banner/Banner.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Banner/Banner.container.ts -------------------------------------------------------------------------------- /src/containers/Banner/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Banner/Banner.tsx -------------------------------------------------------------------------------- /src/containers/Banner/Banner.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Banner/Banner.types.ts -------------------------------------------------------------------------------- /src/containers/Banner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Banner/index.ts -------------------------------------------------------------------------------- /src/containers/BuyManaWithFiatModal/BuyManaWithFiatFeedbackModal/BuyManaWithFiatFeedbackModal.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BuyManaWithFiatModal/BuyManaWithFiatFeedbackModal/BuyManaWithFiatFeedbackModal.container.ts -------------------------------------------------------------------------------- /src/containers/BuyManaWithFiatModal/BuyManaWithFiatFeedbackModal/BuyManaWithFiatFeedbackModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BuyManaWithFiatModal/BuyManaWithFiatFeedbackModal/BuyManaWithFiatFeedbackModal.tsx -------------------------------------------------------------------------------- /src/containers/BuyManaWithFiatModal/BuyManaWithFiatFeedbackModal/BuyManaWithFiatFeedbackModal.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BuyManaWithFiatModal/BuyManaWithFiatFeedbackModal/BuyManaWithFiatFeedbackModal.types.ts -------------------------------------------------------------------------------- /src/containers/BuyManaWithFiatModal/BuyManaWithFiatFeedbackModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BuyManaWithFiatModal/BuyManaWithFiatFeedbackModal/index.ts -------------------------------------------------------------------------------- /src/containers/BuyManaWithFiatModal/BuyManaWithFiatModal.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BuyManaWithFiatModal/BuyManaWithFiatModal.container.ts -------------------------------------------------------------------------------- /src/containers/BuyManaWithFiatModal/BuyManaWithFiatModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BuyManaWithFiatModal/BuyManaWithFiatModal.tsx -------------------------------------------------------------------------------- /src/containers/BuyManaWithFiatModal/BuyManaWithFiatModal.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BuyManaWithFiatModal/BuyManaWithFiatModal.types.ts -------------------------------------------------------------------------------- /src/containers/BuyManaWithFiatModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/BuyManaWithFiatModal/index.ts -------------------------------------------------------------------------------- /src/containers/ChainButton/ChainButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainButton/ChainButton.tsx -------------------------------------------------------------------------------- /src/containers/ChainButton/ChainButton.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainButton/ChainButton.types.ts -------------------------------------------------------------------------------- /src/containers/ChainButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainButton/index.ts -------------------------------------------------------------------------------- /src/containers/ChainCheck/ChainCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainCheck/ChainCheck.tsx -------------------------------------------------------------------------------- /src/containers/ChainCheck/ChainCheck.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainCheck/ChainCheck.types.ts -------------------------------------------------------------------------------- /src/containers/ChainCheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainCheck/index.ts -------------------------------------------------------------------------------- /src/containers/ChainProvider/ChainProvider.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainProvider/ChainProvider.container.ts -------------------------------------------------------------------------------- /src/containers/ChainProvider/ChainProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainProvider/ChainProvider.tsx -------------------------------------------------------------------------------- /src/containers/ChainProvider/ChainProvider.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainProvider/ChainProvider.types.ts -------------------------------------------------------------------------------- /src/containers/ChainProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/ChainProvider/index.ts -------------------------------------------------------------------------------- /src/containers/EnhancedIntercom/EnhancedIntercom.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/EnhancedIntercom/EnhancedIntercom.container.ts -------------------------------------------------------------------------------- /src/containers/EnhancedIntercom/EnhancedIntercom.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/EnhancedIntercom/EnhancedIntercom.types.ts -------------------------------------------------------------------------------- /src/containers/EnhancedIntercom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/EnhancedIntercom/index.ts -------------------------------------------------------------------------------- /src/containers/Footer/Footer.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Footer/Footer.container.ts -------------------------------------------------------------------------------- /src/containers/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/containers/Footer/Footer.types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Footer/Footer.types.tsx -------------------------------------------------------------------------------- /src/containers/Footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Footer/index.ts -------------------------------------------------------------------------------- /src/containers/LoginModal/LoginModal.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/LoginModal/LoginModal.container.ts -------------------------------------------------------------------------------- /src/containers/LoginModal/LoginModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/LoginModal/LoginModal.tsx -------------------------------------------------------------------------------- /src/containers/LoginModal/LoginModal.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/LoginModal/LoginModal.types.ts -------------------------------------------------------------------------------- /src/containers/LoginModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/LoginModal/index.ts -------------------------------------------------------------------------------- /src/containers/LoginModal/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/LoginModal/utils.ts -------------------------------------------------------------------------------- /src/containers/MetaTransactionError/MetaTransactionError.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/MetaTransactionError/MetaTransactionError.container.ts -------------------------------------------------------------------------------- /src/containers/MetaTransactionError/MetaTransactionError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/MetaTransactionError/MetaTransactionError.tsx -------------------------------------------------------------------------------- /src/containers/MetaTransactionError/MetaTransactionError.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/MetaTransactionError/MetaTransactionError.types.ts -------------------------------------------------------------------------------- /src/containers/MetaTransactionError/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/MetaTransactionError/index.ts -------------------------------------------------------------------------------- /src/containers/Modal/Modal.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Modal/Modal.container.ts -------------------------------------------------------------------------------- /src/containers/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/containers/Modal/Modal.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Modal/Modal.types.ts -------------------------------------------------------------------------------- /src/containers/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Modal/index.tsx -------------------------------------------------------------------------------- /src/containers/NFTCard/NFTCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/NFTCard/NFTCard.tsx -------------------------------------------------------------------------------- /src/containers/NFTCard/NFTCard.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/NFTCard/NFTCard.types.ts -------------------------------------------------------------------------------- /src/containers/NFTCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/NFTCard/index.ts -------------------------------------------------------------------------------- /src/containers/Navbar/Navbar.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Navbar/Navbar.container.tsx -------------------------------------------------------------------------------- /src/containers/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /src/containers/Navbar/Navbar.types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Navbar/Navbar.types.tsx -------------------------------------------------------------------------------- /src/containers/Navbar/Navbar2.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Navbar/Navbar2.container.tsx -------------------------------------------------------------------------------- /src/containers/Navbar/Navbar2.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Navbar/Navbar2.styled.ts -------------------------------------------------------------------------------- /src/containers/Navbar/Navbar2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Navbar/Navbar2.tsx -------------------------------------------------------------------------------- /src/containers/Navbar/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Navbar/constants.ts -------------------------------------------------------------------------------- /src/containers/Navbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Navbar/index.ts -------------------------------------------------------------------------------- /src/containers/NetworkButton/NetworkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/NetworkButton/NetworkButton.tsx -------------------------------------------------------------------------------- /src/containers/NetworkButton/NetworkButton.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/NetworkButton/NetworkButton.types.ts -------------------------------------------------------------------------------- /src/containers/NetworkButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/NetworkButton/index.ts -------------------------------------------------------------------------------- /src/containers/NetworkCheck/NetworkCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/NetworkCheck/NetworkCheck.tsx -------------------------------------------------------------------------------- /src/containers/NetworkCheck/NetworkCheck.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/NetworkCheck/NetworkCheck.types.ts -------------------------------------------------------------------------------- /src/containers/NetworkCheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/NetworkCheck/index.ts -------------------------------------------------------------------------------- /src/containers/Profile/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Profile/Profile.tsx -------------------------------------------------------------------------------- /src/containers/Profile/Profile.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Profile/Profile.types.ts -------------------------------------------------------------------------------- /src/containers/Profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Profile/index.ts -------------------------------------------------------------------------------- /src/containers/RarityBadge/RarityBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/RarityBadge/RarityBadge.tsx -------------------------------------------------------------------------------- /src/containers/RarityBadge/RarityBadge.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/RarityBadge/RarityBadge.types.ts -------------------------------------------------------------------------------- /src/containers/RarityBadge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/RarityBadge/index.ts -------------------------------------------------------------------------------- /src/containers/RarityFilter/RarityFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/RarityFilter/RarityFilter.tsx -------------------------------------------------------------------------------- /src/containers/RarityFilter/RarityFilters.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/RarityFilter/RarityFilters.types.ts -------------------------------------------------------------------------------- /src/containers/RarityFilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/RarityFilter/index.ts -------------------------------------------------------------------------------- /src/containers/SignInPage/SignInPage.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/SignInPage/SignInPage.container.ts -------------------------------------------------------------------------------- /src/containers/SignInPage/SignInPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/SignInPage/SignInPage.tsx -------------------------------------------------------------------------------- /src/containers/SignInPage/SignInPage.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/SignInPage/SignInPage.types.ts -------------------------------------------------------------------------------- /src/containers/SignInPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/SignInPage/index.ts -------------------------------------------------------------------------------- /src/containers/SmartWearableFilter/SmartWearableFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/SmartWearableFilter/SmartWearableFilter.tsx -------------------------------------------------------------------------------- /src/containers/SmartWearableFilter/SmartWearableFilter.types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/SmartWearableFilter/SmartWearableFilter.types.tsx -------------------------------------------------------------------------------- /src/containers/SmartWearableFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SmartWearableFilter' 2 | -------------------------------------------------------------------------------- /src/containers/TransactionLink/TransactionLink.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/TransactionLink/TransactionLink.container.ts -------------------------------------------------------------------------------- /src/containers/TransactionLink/TransactionLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/TransactionLink/TransactionLink.tsx -------------------------------------------------------------------------------- /src/containers/TransactionLink/TransactionLink.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/TransactionLink/TransactionLink.types.ts -------------------------------------------------------------------------------- /src/containers/TransactionLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/TransactionLink/index.ts -------------------------------------------------------------------------------- /src/containers/UnsupportedNetworkModal/UnsupportedNetworkModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/UnsupportedNetworkModal/UnsupportedNetworkModal.tsx -------------------------------------------------------------------------------- /src/containers/UnsupportedNetworkModal/UnsupportedNetworkModal.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/UnsupportedNetworkModal/UnsupportedNetworkModal.types.ts -------------------------------------------------------------------------------- /src/containers/UnsupportedNetworkModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/UnsupportedNetworkModal/index.ts -------------------------------------------------------------------------------- /src/containers/Web2TransactionModal/Web2TransactionsModal.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Web2TransactionModal/Web2TransactionsModal.container.ts -------------------------------------------------------------------------------- /src/containers/Web2TransactionModal/Web2TransactionsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Web2TransactionModal/Web2TransactionsModal.tsx -------------------------------------------------------------------------------- /src/containers/Web2TransactionModal/Web2TransactionsModal.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Web2TransactionModal/Web2TransactionsModal.types.ts -------------------------------------------------------------------------------- /src/containers/Web2TransactionModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/Web2TransactionModal/index.ts -------------------------------------------------------------------------------- /src/containers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/index.ts -------------------------------------------------------------------------------- /src/containers/withAuthorizedAction/AuthorizationModal/AuthorizationModal.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/withAuthorizedAction/AuthorizationModal/AuthorizationModal.container.ts -------------------------------------------------------------------------------- /src/containers/withAuthorizedAction/AuthorizationModal/AuthorizationModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/withAuthorizedAction/AuthorizationModal/AuthorizationModal.spec.tsx -------------------------------------------------------------------------------- /src/containers/withAuthorizedAction/AuthorizationModal/AuthorizationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/withAuthorizedAction/AuthorizationModal/AuthorizationModal.tsx -------------------------------------------------------------------------------- /src/containers/withAuthorizedAction/AuthorizationModal/AuthorizationModal.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/withAuthorizedAction/AuthorizationModal/AuthorizationModal.types.ts -------------------------------------------------------------------------------- /src/containers/withAuthorizedAction/AuthorizationModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/withAuthorizedAction/AuthorizationModal/index.ts -------------------------------------------------------------------------------- /src/containers/withAuthorizedAction/AuthorizationModal/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/withAuthorizedAction/AuthorizationModal/utils.tsx -------------------------------------------------------------------------------- /src/containers/withAuthorizedAction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/withAuthorizedAction/index.ts -------------------------------------------------------------------------------- /src/containers/withAuthorizedAction/withAuthorizedAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/withAuthorizedAction/withAuthorizedAction.tsx -------------------------------------------------------------------------------- /src/containers/withAuthorizedAction/withAuthorizedAction.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/containers/withAuthorizedAction/withAuthorizedAction.types.ts -------------------------------------------------------------------------------- /src/hooks/useManaFiatGatewayPurchase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/hooks/useManaFiatGatewayPurchase.tsx -------------------------------------------------------------------------------- /src/hooks/useNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/hooks/useNotifications.tsx -------------------------------------------------------------------------------- /src/hooks/usePageTracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/hooks/usePageTracking.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/BaseClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/BaseClient.spec.ts -------------------------------------------------------------------------------- /src/lib/BaseClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/BaseClient.ts -------------------------------------------------------------------------------- /src/lib/ClientError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/ClientError.ts -------------------------------------------------------------------------------- /src/lib/api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/api.spec.ts -------------------------------------------------------------------------------- /src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/api.ts -------------------------------------------------------------------------------- /src/lib/chainConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/chainConfiguration.ts -------------------------------------------------------------------------------- /src/lib/credits.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/credits.spec.ts -------------------------------------------------------------------------------- /src/lib/credits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/credits.ts -------------------------------------------------------------------------------- /src/lib/disabledMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/disabledMiddleware.ts -------------------------------------------------------------------------------- /src/lib/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/entities.ts -------------------------------------------------------------------------------- /src/lib/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/error.ts -------------------------------------------------------------------------------- /src/lib/eth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/eth.ts -------------------------------------------------------------------------------- /src/lib/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/graph.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/localStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/localStorage.spec.ts -------------------------------------------------------------------------------- /src/lib/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/localStorage.ts -------------------------------------------------------------------------------- /src/lib/mana.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/mana.spec.ts -------------------------------------------------------------------------------- /src/lib/mana.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/mana.ts -------------------------------------------------------------------------------- /src/lib/marketplaceApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/marketplaceApi.ts -------------------------------------------------------------------------------- /src/lib/peer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/peer.spec.ts -------------------------------------------------------------------------------- /src/lib/peer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/peer.ts -------------------------------------------------------------------------------- /src/lib/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/time.ts -------------------------------------------------------------------------------- /src/lib/trades.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/trades.spec.ts -------------------------------------------------------------------------------- /src/lib/trades.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/trades.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/modules/analytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/analytics/index.ts -------------------------------------------------------------------------------- /src/modules/analytics/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/analytics/middleware.ts -------------------------------------------------------------------------------- /src/modules/analytics/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/analytics/sagas.ts -------------------------------------------------------------------------------- /src/modules/analytics/snippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/analytics/snippet.ts -------------------------------------------------------------------------------- /src/modules/analytics/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/analytics/types.ts -------------------------------------------------------------------------------- /src/modules/analytics/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/analytics/utils.spec.ts -------------------------------------------------------------------------------- /src/modules/analytics/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/analytics/utils.ts -------------------------------------------------------------------------------- /src/modules/authClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authClient.ts -------------------------------------------------------------------------------- /src/modules/authorization/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/actions.spec.ts -------------------------------------------------------------------------------- /src/modules/authorization/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/actions.ts -------------------------------------------------------------------------------- /src/modules/authorization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/index.ts -------------------------------------------------------------------------------- /src/modules/authorization/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/reducer.spec.ts -------------------------------------------------------------------------------- /src/modules/authorization/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/reducer.ts -------------------------------------------------------------------------------- /src/modules/authorization/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/sagas.spec.ts -------------------------------------------------------------------------------- /src/modules/authorization/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/sagas.ts -------------------------------------------------------------------------------- /src/modules/authorization/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/selectors.spec.ts -------------------------------------------------------------------------------- /src/modules/authorization/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/selectors.ts -------------------------------------------------------------------------------- /src/modules/authorization/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/types.ts -------------------------------------------------------------------------------- /src/modules/authorization/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/authorization/utils.ts -------------------------------------------------------------------------------- /src/modules/campaign/ContentfulClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/ContentfulClient.spec.ts -------------------------------------------------------------------------------- /src/modules/campaign/ContentfulClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/ContentfulClient.ts -------------------------------------------------------------------------------- /src/modules/campaign/ContentfulClient.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/ContentfulClient.types.ts -------------------------------------------------------------------------------- /src/modules/campaign/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/actions.spec.ts -------------------------------------------------------------------------------- /src/modules/campaign/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/actions.ts -------------------------------------------------------------------------------- /src/modules/campaign/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/index.ts -------------------------------------------------------------------------------- /src/modules/campaign/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/reducer.spec.ts -------------------------------------------------------------------------------- /src/modules/campaign/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/reducer.ts -------------------------------------------------------------------------------- /src/modules/campaign/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/sagas.spec.ts -------------------------------------------------------------------------------- /src/modules/campaign/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/sagas.ts -------------------------------------------------------------------------------- /src/modules/campaign/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/selectors.spec.ts -------------------------------------------------------------------------------- /src/modules/campaign/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/selectors.ts -------------------------------------------------------------------------------- /src/modules/campaign/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/campaign/types.ts -------------------------------------------------------------------------------- /src/modules/credits/CreditsClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/CreditsClient.ts -------------------------------------------------------------------------------- /src/modules/credits/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/actions.spec.ts -------------------------------------------------------------------------------- /src/modules/credits/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/actions.ts -------------------------------------------------------------------------------- /src/modules/credits/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/reducer.spec.ts -------------------------------------------------------------------------------- /src/modules/credits/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/reducer.ts -------------------------------------------------------------------------------- /src/modules/credits/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/sagas.spec.ts -------------------------------------------------------------------------------- /src/modules/credits/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/sagas.ts -------------------------------------------------------------------------------- /src/modules/credits/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/selectors.spec.ts -------------------------------------------------------------------------------- /src/modules/credits/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/selectors.ts -------------------------------------------------------------------------------- /src/modules/credits/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/credits/types.ts -------------------------------------------------------------------------------- /src/modules/features/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/actions.spec.ts -------------------------------------------------------------------------------- /src/modules/features/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/actions.ts -------------------------------------------------------------------------------- /src/modules/features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/index.ts -------------------------------------------------------------------------------- /src/modules/features/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/reducer.spec.ts -------------------------------------------------------------------------------- /src/modules/features/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/reducer.ts -------------------------------------------------------------------------------- /src/modules/features/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/sagas.spec.ts -------------------------------------------------------------------------------- /src/modules/features/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/sagas.ts -------------------------------------------------------------------------------- /src/modules/features/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/selectors.spec.ts -------------------------------------------------------------------------------- /src/modules/features/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/selectors.ts -------------------------------------------------------------------------------- /src/modules/features/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/types.ts -------------------------------------------------------------------------------- /src/modules/features/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/features/utils.ts -------------------------------------------------------------------------------- /src/modules/gateway/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/actions.spec.ts -------------------------------------------------------------------------------- /src/modules/gateway/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/actions.ts -------------------------------------------------------------------------------- /src/modules/gateway/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/index.ts -------------------------------------------------------------------------------- /src/modules/gateway/moonpay/MoonPay.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/moonpay/MoonPay.spec.ts -------------------------------------------------------------------------------- /src/modules/gateway/moonpay/MoonPay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/moonpay/MoonPay.ts -------------------------------------------------------------------------------- /src/modules/gateway/moonpay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/moonpay/index.ts -------------------------------------------------------------------------------- /src/modules/gateway/moonpay/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/moonpay/types.ts -------------------------------------------------------------------------------- /src/modules/gateway/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/reducer.spec.ts -------------------------------------------------------------------------------- /src/modules/gateway/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/reducer.ts -------------------------------------------------------------------------------- /src/modules/gateway/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/sagas.spec.ts -------------------------------------------------------------------------------- /src/modules/gateway/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/sagas.ts -------------------------------------------------------------------------------- /src/modules/gateway/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/selectors.spec.ts -------------------------------------------------------------------------------- /src/modules/gateway/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/selectors.ts -------------------------------------------------------------------------------- /src/modules/gateway/transak/Transak.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/transak/Transak.spec.ts -------------------------------------------------------------------------------- /src/modules/gateway/transak/Transak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/transak/Transak.ts -------------------------------------------------------------------------------- /src/modules/gateway/transak/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/transak/index.ts -------------------------------------------------------------------------------- /src/modules/gateway/transak/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/transak/types.ts -------------------------------------------------------------------------------- /src/modules/gateway/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/types.ts -------------------------------------------------------------------------------- /src/modules/gateway/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/gateway/utils.ts -------------------------------------------------------------------------------- /src/modules/identity/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/identity/actions.ts -------------------------------------------------------------------------------- /src/modules/identity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './actions' 2 | -------------------------------------------------------------------------------- /src/modules/identity/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/identity/sagas.ts -------------------------------------------------------------------------------- /src/modules/identityId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/identityId.ts -------------------------------------------------------------------------------- /src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/index.ts -------------------------------------------------------------------------------- /src/modules/loading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/loading/index.ts -------------------------------------------------------------------------------- /src/modules/loading/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/loading/reducer.spec.ts -------------------------------------------------------------------------------- /src/modules/loading/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/loading/reducer.ts -------------------------------------------------------------------------------- /src/modules/loading/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/loading/selectors.ts -------------------------------------------------------------------------------- /src/modules/loading/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/loading/types.ts -------------------------------------------------------------------------------- /src/modules/loading/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/loading/utils.spec.ts -------------------------------------------------------------------------------- /src/modules/loading/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/loading/utils.ts -------------------------------------------------------------------------------- /src/modules/locations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/locations.ts -------------------------------------------------------------------------------- /src/modules/modal/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/modal/actions.ts -------------------------------------------------------------------------------- /src/modules/modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/modal/index.ts -------------------------------------------------------------------------------- /src/modules/modal/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/modal/reducer.ts -------------------------------------------------------------------------------- /src/modules/modal/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/modal/selectors.ts -------------------------------------------------------------------------------- /src/modules/modal/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/modal/types.ts -------------------------------------------------------------------------------- /src/modules/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/notifications.ts -------------------------------------------------------------------------------- /src/modules/profile/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/actions.spec.ts -------------------------------------------------------------------------------- /src/modules/profile/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/actions.ts -------------------------------------------------------------------------------- /src/modules/profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/index.ts -------------------------------------------------------------------------------- /src/modules/profile/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/reducer.spec.ts -------------------------------------------------------------------------------- /src/modules/profile/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/reducer.ts -------------------------------------------------------------------------------- /src/modules/profile/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/sagas.spec.ts -------------------------------------------------------------------------------- /src/modules/profile/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/sagas.ts -------------------------------------------------------------------------------- /src/modules/profile/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/selectors.spec.ts -------------------------------------------------------------------------------- /src/modules/profile/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/selectors.ts -------------------------------------------------------------------------------- /src/modules/profile/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/types.ts -------------------------------------------------------------------------------- /src/modules/profile/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/profile/utils.ts -------------------------------------------------------------------------------- /src/modules/storage/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/storage/actions.ts -------------------------------------------------------------------------------- /src/modules/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/storage/index.ts -------------------------------------------------------------------------------- /src/modules/storage/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/storage/middleware.ts -------------------------------------------------------------------------------- /src/modules/storage/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/storage/reducer.ts -------------------------------------------------------------------------------- /src/modules/storage/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/storage/selectors.ts -------------------------------------------------------------------------------- /src/modules/storage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/storage/types.ts -------------------------------------------------------------------------------- /src/modules/toast/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/actions.ts -------------------------------------------------------------------------------- /src/modules/toast/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/cache.ts -------------------------------------------------------------------------------- /src/modules/toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/index.ts -------------------------------------------------------------------------------- /src/modules/toast/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/reducer.spec.ts -------------------------------------------------------------------------------- /src/modules/toast/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/reducer.ts -------------------------------------------------------------------------------- /src/modules/toast/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/sagas.spec.ts -------------------------------------------------------------------------------- /src/modules/toast/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/sagas.ts -------------------------------------------------------------------------------- /src/modules/toast/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/selectors.ts -------------------------------------------------------------------------------- /src/modules/toast/toasts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/toasts/index.tsx -------------------------------------------------------------------------------- /src/modules/toast/toasts/meta-transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/toasts/meta-transactions.tsx -------------------------------------------------------------------------------- /src/modules/toast/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/toast/types.ts -------------------------------------------------------------------------------- /src/modules/trades/TradeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/trades/TradeService.ts -------------------------------------------------------------------------------- /src/modules/trades/api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/trades/api.spec.ts -------------------------------------------------------------------------------- /src/modules/trades/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/trades/api.ts -------------------------------------------------------------------------------- /src/modules/transaction/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/actions.ts -------------------------------------------------------------------------------- /src/modules/transaction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/index.ts -------------------------------------------------------------------------------- /src/modules/transaction/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/middleware.ts -------------------------------------------------------------------------------- /src/modules/transaction/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/reducer.ts -------------------------------------------------------------------------------- /src/modules/transaction/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/sagas.spec.ts -------------------------------------------------------------------------------- /src/modules/transaction/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/sagas.ts -------------------------------------------------------------------------------- /src/modules/transaction/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/selectors.ts -------------------------------------------------------------------------------- /src/modules/transaction/txUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/txUtils.ts -------------------------------------------------------------------------------- /src/modules/transaction/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/types.ts -------------------------------------------------------------------------------- /src/modules/transaction/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/utils.spec.ts -------------------------------------------------------------------------------- /src/modules/transaction/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/transaction/utils.ts -------------------------------------------------------------------------------- /src/modules/translation/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/actions.ts -------------------------------------------------------------------------------- /src/modules/translation/defaults/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/defaults/en.json -------------------------------------------------------------------------------- /src/modules/translation/defaults/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/defaults/es.json -------------------------------------------------------------------------------- /src/modules/translation/defaults/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/defaults/fr.json -------------------------------------------------------------------------------- /src/modules/translation/defaults/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/defaults/index.ts -------------------------------------------------------------------------------- /src/modules/translation/defaults/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/defaults/ja.json -------------------------------------------------------------------------------- /src/modules/translation/defaults/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/defaults/ko.json -------------------------------------------------------------------------------- /src/modules/translation/defaults/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/defaults/zh.json -------------------------------------------------------------------------------- /src/modules/translation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/index.ts -------------------------------------------------------------------------------- /src/modules/translation/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/reducer.ts -------------------------------------------------------------------------------- /src/modules/translation/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/sagas.ts -------------------------------------------------------------------------------- /src/modules/translation/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/selectors.ts -------------------------------------------------------------------------------- /src/modules/translation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/types.ts -------------------------------------------------------------------------------- /src/modules/translation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/translation/utils.ts -------------------------------------------------------------------------------- /src/modules/wallet/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/actions.spec.ts -------------------------------------------------------------------------------- /src/modules/wallet/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/actions.ts -------------------------------------------------------------------------------- /src/modules/wallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/index.ts -------------------------------------------------------------------------------- /src/modules/wallet/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/reducer.spec.ts -------------------------------------------------------------------------------- /src/modules/wallet/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/reducer.ts -------------------------------------------------------------------------------- /src/modules/wallet/sagas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/sagas.spec.ts -------------------------------------------------------------------------------- /src/modules/wallet/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/sagas.ts -------------------------------------------------------------------------------- /src/modules/wallet/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/selectors.spec.ts -------------------------------------------------------------------------------- /src/modules/wallet/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/selectors.ts -------------------------------------------------------------------------------- /src/modules/wallet/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/types.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils.spec.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/JsonRPCInvalidResponseError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/JsonRPCInvalidResponseError.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/buildWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/buildWallet.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/fetchManaBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/fetchManaBalance.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/getAddEthereumChainParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/getAddEthereumChainParameters.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/getProviderChainId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/getProviderChainId.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/getTargetNetworkProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/getTargetNetworkProvider.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/index.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/providerChecks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/providerChecks.spec.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/providerChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/providerChecks.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/sendTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/sendTransaction.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/switchProviderChainId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/switchProviderChainId.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/transactionEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/transactionEvents.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/types.ts -------------------------------------------------------------------------------- /src/modules/wallet/utils/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/modules/wallet/utils/urls.ts -------------------------------------------------------------------------------- /src/providers/ModalProvider/ModalProvider.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/ModalProvider/ModalProvider.container.ts -------------------------------------------------------------------------------- /src/providers/ModalProvider/ModalProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/ModalProvider/ModalProvider.tsx -------------------------------------------------------------------------------- /src/providers/ModalProvider/ModalProvider.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/ModalProvider/ModalProvider.types.ts -------------------------------------------------------------------------------- /src/providers/ModalProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/ModalProvider/index.ts -------------------------------------------------------------------------------- /src/providers/ToastProvider/ToastProvider.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/ToastProvider/ToastProvider.container.ts -------------------------------------------------------------------------------- /src/providers/ToastProvider/ToastProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/ToastProvider/ToastProvider.tsx -------------------------------------------------------------------------------- /src/providers/ToastProvider/ToastProvider.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/ToastProvider/ToastProvider.types.ts -------------------------------------------------------------------------------- /src/providers/ToastProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/ToastProvider/index.ts -------------------------------------------------------------------------------- /src/providers/TranslationProvider/TranslationProvider.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/TranslationProvider/TranslationProvider.container.ts -------------------------------------------------------------------------------- /src/providers/TranslationProvider/TranslationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/TranslationProvider/TranslationProvider.tsx -------------------------------------------------------------------------------- /src/providers/TranslationProvider/TranslationProvider.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/TranslationProvider/TranslationProvider.types.ts -------------------------------------------------------------------------------- /src/providers/TranslationProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/TranslationProvider/index.ts -------------------------------------------------------------------------------- /src/providers/WalletProvider/WalletProvider.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/WalletProvider/WalletProvider.container.ts -------------------------------------------------------------------------------- /src/providers/WalletProvider/WalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/WalletProvider/WalletProvider.ts -------------------------------------------------------------------------------- /src/providers/WalletProvider/WalletProvider.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/WalletProvider/WalletProvider.types.ts -------------------------------------------------------------------------------- /src/providers/WalletProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/WalletProvider/index.ts -------------------------------------------------------------------------------- /src/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/providers/index.ts -------------------------------------------------------------------------------- /src/tests/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/tests/authentication.ts -------------------------------------------------------------------------------- /src/tests/contentfulMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/tests/contentfulMocks.ts -------------------------------------------------------------------------------- /src/tests/profileMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/tests/profileMocks.ts -------------------------------------------------------------------------------- /src/tests/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/tests/sagas.ts -------------------------------------------------------------------------------- /src/tests/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/tests/setupTests.ts -------------------------------------------------------------------------------- /src/tests/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/tests/transactions.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/decentraland-dapps/HEAD/tslint.json --------------------------------------------------------------------------------