├── .gitignore ├── .idea └── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── LICENSE.txt ├── README.md ├── RELEASE_NOTES.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-release-rules.pro ├── proguard-rules.pro ├── proguard-test-rules.pro ├── schemas │ └── network.minter.bipwallet.db.WalletDatabase │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ └── 5.json └── src │ ├── androidTest │ ├── assets │ │ ├── gate │ │ │ └── v1 │ │ │ │ └── min-gas │ │ │ │ ├── min_gas_price_1.json │ │ │ │ ├── min_gas_price_2.json │ │ │ │ └── min_gas_price_4.json │ │ └── not_found.json │ └── java │ │ └── network │ │ └── minter │ │ └── bipwallet │ │ └── tests │ │ ├── ActivityUtils.java │ │ ├── LazyActivityScenarioRule.kt │ │ ├── internal │ │ ├── ApiMockInterceptor.java │ │ ├── MyMatchers.java │ │ ├── TestWallet.kt │ │ ├── WalletTestRunner.java │ │ └── di │ │ │ ├── TestAnalyticsModule.java │ │ │ ├── TestWalletComponent.kt │ │ │ └── TestWalletModule.java │ │ └── ui │ │ ├── BaseUiTest.kt │ │ ├── SendCoinsTabTest.kt │ │ └── actions │ │ └── BottomNavigationExAction.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ │ └── network │ │ │ └── minter │ │ │ └── bipwallet │ │ │ ├── addressbook │ │ │ ├── adapter │ │ │ │ ├── AddressBookAdapter.kt │ │ │ │ └── AddressContactDiffUtilImpl.java │ │ │ ├── contract │ │ │ │ ├── AddressBookView.kt │ │ │ │ ├── AddressContactEditView.kt │ │ │ │ └── GetAddressBookContact.kt │ │ │ ├── db │ │ │ │ ├── AddressBookDao.java │ │ │ │ └── AddressBookRepository.kt │ │ │ ├── models │ │ │ │ ├── AddressBookItem.java │ │ │ │ ├── AddressBookItemHeader.kt │ │ │ │ └── AddressContact.kt │ │ │ ├── ui │ │ │ │ ├── AddressBookActivity.kt │ │ │ │ └── AddressContactEditDialog.kt │ │ │ └── views │ │ │ │ ├── AddressBookPresenter.kt │ │ │ │ └── AddressContactEditPresenter.kt │ │ │ ├── analytics │ │ │ ├── AnalyticsManager.java │ │ │ ├── AnalyticsProvider.java │ │ │ ├── AppEvent.java │ │ │ ├── base │ │ │ │ ├── HasAnalyticsEvent.java │ │ │ │ ├── HasAnalyticsEventWithBundle.java │ │ │ │ ├── HasAnalyticsEventWithId.java │ │ │ │ ├── HasAnalyticsEventWithParams.java │ │ │ │ └── HasAnalyticsMultipleEvents.java │ │ │ └── providers │ │ │ │ ├── AppMetricaProvider.java │ │ │ │ └── DummyProvider.java │ │ │ ├── apis │ │ │ ├── blockchain │ │ │ │ └── BCErrorHelper.java │ │ │ ├── dummies │ │ │ │ ├── ExpErrorMapped.java │ │ │ │ └── ResultErrorMapper.java │ │ │ ├── explorer │ │ │ │ ├── BipToUsdRepository.kt │ │ │ │ ├── CacheTxRepository.kt │ │ │ │ ├── CacheValidatorsRepository.kt │ │ │ │ ├── CachedDailyRewardStatisticsRepository.kt │ │ │ │ └── CachedMonthlyRewardsStatisticsRepository.kt │ │ │ ├── gate │ │ │ │ └── TxInitDataRepository.kt │ │ │ ├── parcel │ │ │ │ ├── CoinItemBaseParceler.kt │ │ │ │ ├── CoinItemChainikParceler.kt │ │ │ │ ├── PoolParceler.kt │ │ │ │ ├── PoolProviderParceler.kt │ │ │ │ └── ValidatorMetaParceler.kt │ │ │ └── reactive │ │ │ │ ├── MinterApiExtensions.kt │ │ │ │ ├── ReactiveBlockchain.java │ │ │ │ ├── ReactiveExplorer.java │ │ │ │ └── ReactiveGate.java │ │ │ ├── auth │ │ │ ├── contract │ │ │ │ ├── AuthView.java │ │ │ │ ├── CreateWalletView.kt │ │ │ │ └── SignInMnemonicView.java │ │ │ ├── ui │ │ │ │ ├── AuthActivity.kt │ │ │ │ ├── AuthFragment.kt │ │ │ │ └── SplashFragment.kt │ │ │ └── views │ │ │ │ └── AuthPresenter.kt │ │ │ ├── coins │ │ │ ├── CachedCoinsRepository.kt │ │ │ ├── CoinMapper.kt │ │ │ ├── CoinsDao.kt │ │ │ └── DbCoin.kt │ │ │ ├── db │ │ │ └── WalletDatabase.java │ │ │ ├── delegation │ │ │ ├── adapter │ │ │ │ ├── DelegatedItem.kt │ │ │ │ ├── DelegatedItemDiffUtil.kt │ │ │ │ ├── DelegatedStake.kt │ │ │ │ ├── DelegatedValidator.kt │ │ │ │ ├── DelegationDataSource.kt │ │ │ │ ├── DelegationListAdapter.kt │ │ │ │ ├── ValidatorSelectorAdapter.kt │ │ │ │ └── autocomplete │ │ │ │ │ ├── ValidatorsAcAdapter.kt │ │ │ │ │ └── ValidatorsAcPresenter.kt │ │ │ ├── contract │ │ │ │ ├── DelegateUnbondView.kt │ │ │ │ ├── DelegatedListView.kt │ │ │ │ ├── GetValidator.kt │ │ │ │ └── ValidatorSelectorView.kt │ │ │ ├── ui │ │ │ │ ├── DelegateUnbondActivity.kt │ │ │ │ ├── DelegatedListActivity.kt │ │ │ │ └── ValidatorSelectorActivity.kt │ │ │ └── views │ │ │ │ ├── DelegateUnbondPresenter.kt │ │ │ │ ├── DelegatedListPresenter.kt │ │ │ │ └── ValidatorSelectorPresenter.kt │ │ │ ├── exchange │ │ │ ├── ExchangeCalculator.kt │ │ │ ├── ExchangeModule.kt │ │ │ ├── ExplorerEstimateVariantImpl.kt │ │ │ ├── GateAndExplorerEstimateVariantImpl.kt │ │ │ ├── adapters │ │ │ │ ├── CoinsAcAdapter.kt │ │ │ │ ├── CoinsAcPresenter.kt │ │ │ │ └── CoinsListAdapter.kt │ │ │ ├── contract │ │ │ │ ├── BuyExchangeView.kt │ │ │ │ ├── ConvertCoinView.kt │ │ │ │ ├── ExchangeView.kt │ │ │ │ └── SellExchangeView.kt │ │ │ ├── models │ │ │ │ ├── ConvertTransactionData.kt │ │ │ │ └── ExchangeAmount.kt │ │ │ ├── ui │ │ │ │ ├── BuyExchangeFragment.kt │ │ │ │ ├── ConvertCoinActivity.kt │ │ │ │ ├── ExchangeFragment.kt │ │ │ │ ├── SellExchangeFragment.kt │ │ │ │ └── dialogs │ │ │ │ │ └── TxConfirmStartDialog.kt │ │ │ └── views │ │ │ │ ├── BuyExchangePresenter.kt │ │ │ │ ├── ConvertCoinPresenter.kt │ │ │ │ ├── ExchangePresenter.kt │ │ │ │ └── SellExchangePresenter.kt │ │ │ ├── external │ │ │ ├── AppDeepLink.java │ │ │ ├── DeepLinkEvent.kt │ │ │ ├── DeepLinkModule.java │ │ │ ├── DeepLinkModuleRegistryHelper.java │ │ │ ├── TestnetWebDeepLink.java │ │ │ ├── TestnetWebDeepLinkInsecure.java │ │ │ ├── WebDeepLink.java │ │ │ ├── WebDeepLinkInsecure.java │ │ │ └── ui │ │ │ │ └── ExternalActivity.java │ │ │ ├── home │ │ │ ├── HomeComponent.kt │ │ │ ├── HomeModule.kt │ │ │ ├── HomeScope.java │ │ │ ├── HomeTabFragment.kt │ │ │ ├── HomeTabsClasses.java │ │ │ ├── HomeTabsMenuIds.java │ │ │ ├── contract │ │ │ │ └── HomeView.kt │ │ │ ├── ui │ │ │ │ └── HomeActivity.kt │ │ │ └── views │ │ │ │ └── HomePresenter.kt │ │ │ ├── internal │ │ │ ├── BaseActivity.java │ │ │ ├── BaseFragment.java │ │ │ ├── BaseInjectActivity.java │ │ │ ├── BaseInjectFragment.java │ │ │ ├── BaseMvpActivity.java │ │ │ ├── BaseMvpBottomSheetDialogFragment.kt │ │ │ ├── BaseMvpInjectActivity.java │ │ │ ├── RevealFragment.java │ │ │ ├── Wallet.java │ │ │ ├── adapter │ │ │ │ ├── DataSourceMeta.java │ │ │ │ └── LoadState.java │ │ │ ├── auth │ │ │ │ ├── AuthSession.kt │ │ │ │ └── SessionStorage.java │ │ │ ├── autocomplete │ │ │ │ └── RecyclerAcPresenter.kt │ │ │ ├── common │ │ │ │ ├── Acceptor.java │ │ │ │ ├── CallbackProvider.java │ │ │ │ ├── Conditional.java │ │ │ │ ├── DeferredCall.java │ │ │ │ ├── Lazy.java │ │ │ │ ├── LazyFunction.java │ │ │ │ ├── LazyMem.java │ │ │ │ ├── Preconditions.java │ │ │ │ └── annotations │ │ │ │ │ ├── Dp.java │ │ │ │ │ └── Sp.java │ │ │ ├── data │ │ │ │ ├── CachedEntity.kt │ │ │ │ ├── CachedRepository.kt │ │ │ │ └── CircularFifoBuffer.kt │ │ │ ├── di │ │ │ │ ├── AnalyticsModule.java │ │ │ │ ├── CacheModule.kt │ │ │ │ ├── DbMigration.java │ │ │ │ ├── DbModule.kt │ │ │ │ ├── HelpersModule.java │ │ │ │ ├── InjectorsModule.java │ │ │ │ ├── NotificationModule.java │ │ │ │ ├── RepoModule.java │ │ │ │ ├── WalletApp.java │ │ │ │ ├── WalletComponent.kt │ │ │ │ ├── WalletModule.kt │ │ │ │ └── annotations │ │ │ │ │ ├── ActivityScope.java │ │ │ │ │ ├── AnalyticsProviders.java │ │ │ │ │ ├── Cached.java │ │ │ │ │ ├── DbCache.java │ │ │ │ │ ├── FragmentScope.java │ │ │ │ │ ├── LocationBound.java │ │ │ │ │ ├── LocationPoint.java │ │ │ │ │ └── ServiceScope.java │ │ │ ├── dialogs │ │ │ │ ├── BaseBottomSheetDialog.java │ │ │ │ ├── BaseBottomSheetDialogFragment.kt │ │ │ │ ├── ConfirmDialog.kt │ │ │ │ ├── ConfirmDialogFragment.kt │ │ │ │ ├── WalletDialog.kt │ │ │ │ ├── WalletDialogBuilder.kt │ │ │ │ ├── WalletDialogFragment.kt │ │ │ │ ├── WalletDialogFragmentBuilder.kt │ │ │ │ └── WalletProgressDialog.kt │ │ │ ├── exceptions │ │ │ │ ├── ErrorManager.kt │ │ │ │ ├── FirebaseSafe.kt │ │ │ │ ├── GateResponseException.java │ │ │ │ └── InvalidExternalTransaction.java │ │ │ ├── gson │ │ │ │ ├── BigDecimalJsonConverter.java │ │ │ │ └── HistoryTransactionsJsonConverter.java │ │ │ ├── helpers │ │ │ │ ├── BitmapHelper.java │ │ │ │ ├── ContextExtensions.kt │ │ │ │ ├── ContextHelper.java │ │ │ │ ├── DateHelper.kt │ │ │ │ ├── DeepLinkHelper.java │ │ │ │ ├── DisplayHelper.kt │ │ │ │ ├── EmojiDetector.kt │ │ │ │ ├── ErrorViewHelper.kt │ │ │ │ ├── ExceptionHelper.java │ │ │ │ ├── FingerprintHelper.java │ │ │ │ ├── HtmlCompat.java │ │ │ │ ├── ImageHelper.kt │ │ │ │ ├── IntentHelper.kt │ │ │ │ ├── KeyboardHelper.java │ │ │ │ ├── MathHelper.kt │ │ │ │ ├── NetworkHelper.kt │ │ │ │ ├── Plurals.java │ │ │ │ ├── SoundManager.java │ │ │ │ ├── StringsHelper.kt │ │ │ │ ├── TextHelper.java │ │ │ │ ├── TimeHelper.java │ │ │ │ ├── TimeProfiler.java │ │ │ │ ├── UrlHelper.java │ │ │ │ ├── ViewExtensions.kt │ │ │ │ ├── ViewHelper.java │ │ │ │ ├── data │ │ │ │ │ ├── CollectionsHelper.kt │ │ │ │ │ ├── Optional.kt │ │ │ │ │ ├── RGBA.java │ │ │ │ │ └── Vec2.java │ │ │ │ └── forms │ │ │ │ │ └── validators │ │ │ │ │ ├── BigDecimalNumberValidator.kt │ │ │ │ │ ├── CoinFilter.kt │ │ │ │ │ ├── CoinValidator.kt │ │ │ │ │ ├── CoinValidatorWithSuffix.kt │ │ │ │ │ ├── DbCoinValidatorWithSuffix.kt │ │ │ │ │ ├── IsMnemonicValidator.kt │ │ │ │ │ ├── IsNotMnemonicValidator.kt │ │ │ │ │ ├── MinterAddressOrPubKeyValidator.kt │ │ │ │ │ ├── MinterAddressValidator.kt │ │ │ │ │ ├── MinterPubKeyValidator.kt │ │ │ │ │ ├── MinterUsernameValidator.kt │ │ │ │ │ ├── NewLineInputFilter.kt │ │ │ │ │ ├── NumberNotZeroValidator.kt │ │ │ │ │ ├── PayloadValidator.kt │ │ │ │ │ ├── RegexReplaceInputFilter.kt │ │ │ │ │ ├── TitleInputFilter.kt │ │ │ │ │ ├── UniqueContactNameValidator.kt │ │ │ │ │ ├── UniqueMnemonicValidator.kt │ │ │ │ │ └── UniqueWalletTitleValidator.kt │ │ │ ├── mvp │ │ │ │ ├── ErrorView.java │ │ │ │ ├── ErrorViewWithRetry.java │ │ │ │ ├── KeyboardView.java │ │ │ │ ├── MvpBasePresenter.kt │ │ │ │ ├── ProgressTextView.java │ │ │ │ ├── ProgressView.java │ │ │ │ └── RefreshView.java │ │ │ ├── notifications │ │ │ │ └── BaseNotificationManager.java │ │ │ ├── settings │ │ │ │ └── SettingsManager.kt │ │ │ ├── storage │ │ │ │ ├── AccountStorage.kt │ │ │ │ ├── KVStorage.kt │ │ │ │ ├── SecretStorage.kt │ │ │ │ └── models │ │ │ │ │ ├── AddressBalanceTotal.kt │ │ │ │ │ ├── AddressListBalancesTotal.kt │ │ │ │ │ └── SecretData.kt │ │ │ ├── system │ │ │ │ ├── ActivityBuilder.java │ │ │ │ ├── BackPressedDelegate.java │ │ │ │ ├── BackPressedListener.java │ │ │ │ ├── BaseBroadcastReceiver.java │ │ │ │ ├── BroadcastReceiverManager.kt │ │ │ │ ├── ForegroundDetector.java │ │ │ │ ├── SimpleTextWatcher.java │ │ │ │ ├── StringUtil.java │ │ │ │ ├── UnzipUtil.java │ │ │ │ └── WalletFileProvider.java │ │ │ └── views │ │ │ │ ├── SnackbarBuilder.kt │ │ │ │ ├── anim │ │ │ │ └── CircularReveal.java │ │ │ │ ├── error │ │ │ │ ├── BaseStaticErrorView.kt │ │ │ │ ├── StaticErrorPopupView.kt │ │ │ │ └── StaticErrorView.kt │ │ │ │ ├── list │ │ │ │ ├── BorderedItemSeparator.java │ │ │ │ ├── NonScrollableLinearLayoutManager.java │ │ │ │ ├── PaddingLeftFirstItemDecoration.kt │ │ │ │ ├── SimpleRecyclerAdapter.java │ │ │ │ ├── SimpleRecyclerViewHolder.java │ │ │ │ ├── ViewElevationOnScroll.kt │ │ │ │ ├── ViewElevationOnScrollNestedScrollView.kt │ │ │ │ ├── diff │ │ │ │ │ ├── DiffUtilDispatcher.java │ │ │ │ │ └── DiffUtilDispatcherDelegate.java │ │ │ │ └── multirow │ │ │ │ │ ├── BindingMultiRowAdapter.kt │ │ │ │ │ ├── MultiRowAdapter.kt │ │ │ │ │ ├── MultiRowContract.kt │ │ │ │ │ ├── SortableRow.kt │ │ │ │ │ └── StaticViewRow.java │ │ │ │ ├── text │ │ │ │ └── PrefixEditText.java │ │ │ │ ├── utils │ │ │ │ ├── OnSingleClickListener.java │ │ │ │ └── SingleCallHandler.java │ │ │ │ └── widgets │ │ │ │ ├── BipCircleImageView.java │ │ │ │ ├── ColoredProgressBar.java │ │ │ │ ├── NestedScrollableHost.kt │ │ │ │ ├── PinCodeView.kt │ │ │ │ ├── RemoteImageContainer.kt │ │ │ │ ├── RemoteImageView.kt │ │ │ │ ├── RemoteImageViewDelegate.kt │ │ │ │ ├── SmartNestedScrollView.java │ │ │ │ ├── ToolbarProgress.kt │ │ │ │ └── WalletButton.java │ │ │ ├── pools │ │ │ ├── adapters │ │ │ │ ├── PoolListAdapter.kt │ │ │ │ └── PoolsPagingSource.kt │ │ │ ├── contracts │ │ │ │ ├── PoolAddLiquidityView.kt │ │ │ │ ├── PoolRemoveLiquidityView.kt │ │ │ │ └── PoolsTabView.kt │ │ │ ├── models │ │ │ │ ├── ChainikResult.kt │ │ │ │ ├── FarmingItem.kt │ │ │ │ ├── PoolCombined.kt │ │ │ │ └── PoolsFilter.kt │ │ │ ├── repo │ │ │ │ ├── FarmingChainikEndpoint.kt │ │ │ │ ├── FarmingRepository.kt │ │ │ │ ├── PoolsRepository.kt │ │ │ │ └── UserPoolsRepository.kt │ │ │ ├── ui │ │ │ │ ├── PoolAddLiquidityActivity.kt │ │ │ │ ├── PoolRemoveLiquidityActivity.kt │ │ │ │ ├── PoolsFilterView.kt │ │ │ │ ├── PoolsTabFragment.kt │ │ │ │ └── TxLiquidityStartDialog.kt │ │ │ └── views │ │ │ │ ├── PoolAddLiquidityPresenter.kt │ │ │ │ ├── PoolRemoveLiquidityPresenter.kt │ │ │ │ └── PoolsTabPresenter.kt │ │ │ ├── security │ │ │ ├── PauseTimer.java │ │ │ ├── SecurityModule.java │ │ │ ├── contract │ │ │ │ ├── PinEnterView.kt │ │ │ │ └── PinValidatingView.kt │ │ │ ├── ui │ │ │ │ ├── PinEnterActivity.kt │ │ │ │ └── PinValidationDialog.kt │ │ │ └── views │ │ │ │ ├── PinEnterPresenter.kt │ │ │ │ └── PinValidatingPresenter.kt │ │ │ ├── sending │ │ │ ├── SendTabModule.java │ │ │ ├── account │ │ │ │ ├── AccountSelectedAdapter.kt │ │ │ │ ├── SelectorData.kt │ │ │ │ └── SelectorDialog.kt │ │ │ ├── adapters │ │ │ │ ├── RecipientListAdapter.kt │ │ │ │ ├── SearchAcAdapter.kt │ │ │ │ └── SearchAcPresenter.kt │ │ │ ├── contract │ │ │ │ ├── GetQRResultString.kt │ │ │ │ ├── QRLauncher.kt │ │ │ │ └── SendView.kt │ │ │ ├── ui │ │ │ │ ├── QRCodeScannerActivity.java │ │ │ │ ├── RecipientValidator.kt │ │ │ │ ├── SendTabFragment.kt │ │ │ │ └── dialogs │ │ │ │ │ ├── TxSendStartDialog.kt │ │ │ │ │ └── TxSendSuccessDialog.kt │ │ │ └── views │ │ │ │ └── SendTabPresenter.kt │ │ │ ├── services │ │ │ └── livebalance │ │ │ │ ├── RTMService.java │ │ │ │ ├── ServiceConnector.java │ │ │ │ ├── broadcast │ │ │ │ ├── RTMBalanceUpdateReceiver.java │ │ │ │ └── RTMBlockReceiver.kt │ │ │ │ ├── models │ │ │ │ ├── RTMBalance.kt │ │ │ │ └── RTMBlock.kt │ │ │ │ └── notification │ │ │ │ └── BalanceNotificationManager.java │ │ │ ├── settings │ │ │ ├── SettingsTabModule.java │ │ │ ├── api │ │ │ │ └── MinterBotEndpoint.java │ │ │ ├── contract │ │ │ │ └── SettingsTabView.kt │ │ │ ├── repo │ │ │ │ └── MinterBotRepository.java │ │ │ ├── ui │ │ │ │ ├── SettingsFieldType.java │ │ │ │ └── SettingsTabFragment.kt │ │ │ └── views │ │ │ │ ├── SettingsTabPresenter.kt │ │ │ │ └── rows │ │ │ │ ├── SettingsButtonRow.kt │ │ │ │ ├── SettingsSwitchRow.kt │ │ │ │ └── TitleRow.kt │ │ │ ├── share │ │ │ ├── QRAddressGenerator.kt │ │ │ ├── ShareDialog.kt │ │ │ ├── ShareManager.java │ │ │ └── SharingText.java │ │ │ ├── stories │ │ │ ├── StoriesScope.kt │ │ │ ├── StoriesStateReceiver.kt │ │ │ ├── adapter │ │ │ │ ├── StoriesDiffUtil.kt │ │ │ │ └── StoriesListAdapter.kt │ │ │ ├── models │ │ │ │ ├── StoriesResult.kt │ │ │ │ └── Story.kt │ │ │ ├── repo │ │ │ │ ├── StoriesEndpoint.kt │ │ │ │ └── StoriesRepository.kt │ │ │ └── ui │ │ │ │ ├── DepthPageTransformer.kt │ │ │ │ ├── FadeOutPageTransformer.kt │ │ │ │ ├── PausableProgressBar.kt │ │ │ │ ├── StoriesListFragment.kt │ │ │ │ ├── StoriesPagerActivity.kt │ │ │ │ ├── StoriesPagerFragment.kt │ │ │ │ ├── StoriesProgressView.kt │ │ │ │ ├── StoryFragment.kt │ │ │ │ └── StorySlideFragment.kt │ │ │ ├── tx │ │ │ ├── TransactionSender.kt │ │ │ ├── TransactionsModule.java │ │ │ ├── adapters │ │ │ │ ├── HeaderItem.java │ │ │ │ ├── TransactionDataSource.kt │ │ │ │ ├── TransactionFacade.java │ │ │ │ ├── TransactionItem.java │ │ │ │ ├── TransactionListAdapter.kt │ │ │ │ ├── TransactionShortListAdapter.kt │ │ │ │ ├── TxItem.kt │ │ │ │ └── vh │ │ │ │ │ ├── TxAllViewHolder.kt │ │ │ │ │ ├── TxHeaderViewHolder.java │ │ │ │ │ └── TxProgressViewHolder.java │ │ │ ├── contract │ │ │ │ ├── ExternalTransactionView.kt │ │ │ │ ├── TransactionListView.kt │ │ │ │ ├── TransactionView.kt │ │ │ │ └── TxInitData.kt │ │ │ ├── ui │ │ │ │ ├── ExternalTransactionActivity.kt │ │ │ │ ├── TransactionFilter.kt │ │ │ │ ├── TransactionListActivity.kt │ │ │ │ ├── TransactionViewDialog.kt │ │ │ │ ├── TxInputFieldRow.kt │ │ │ │ └── WalletSelectorDialog.kt │ │ │ └── views │ │ │ │ ├── ExternalTransactionPresenter.kt │ │ │ │ ├── TransactionListPresenter.kt │ │ │ │ ├── TransactionViewPresenter.kt │ │ │ │ └── binders │ │ │ │ ├── TxCandidateEditCommissionViewBinder.kt │ │ │ │ ├── TxCandidateEditPubKeyViewBinder.kt │ │ │ │ ├── TxCandidateEditViewBinder.kt │ │ │ │ ├── TxCandidateSwitchViewBinder.kt │ │ │ │ ├── TxCreateCoinViewBinder.kt │ │ │ │ ├── TxCreateSwapPoolViewBinder.kt │ │ │ │ ├── TxDeclareCandidacyViewBinder.kt │ │ │ │ ├── TxDelegateUnbondViewBinder.kt │ │ │ │ ├── TxEditCoinOwnerViewBinder.kt │ │ │ │ ├── TxExchangeBancorViewBinder.kt │ │ │ │ ├── TxExchangePoolViewBinder.kt │ │ │ │ ├── TxLimitOrderAddViewBinder.kt │ │ │ │ ├── TxLimitOrderRemoveViewBinder.kt │ │ │ │ ├── TxLiquidityAddViewBinder.kt │ │ │ │ ├── TxLiquidityRemoveViewBinder.kt │ │ │ │ ├── TxLockCoinsViewBinder.kt │ │ │ │ ├── TxLockStakeViewBinder.kt │ │ │ │ ├── TxMoveStakeViewBinder.kt │ │ │ │ ├── TxMultiSendViewBinder.kt │ │ │ │ ├── TxMultisigViewBinder.kt │ │ │ │ ├── TxPriceVoteViewBinder.kt │ │ │ │ ├── TxRedeemCheckViewBinder.kt │ │ │ │ ├── TxSendViewBinder.kt │ │ │ │ ├── TxSetHaltBlockViewBinder.kt │ │ │ │ ├── TxTokenCreateRecreateViewBinder.kt │ │ │ │ ├── TxTokenMintBurnViewBinder.kt │ │ │ │ ├── TxViewBinder.kt │ │ │ │ ├── TxVoteCommissionViewBinder.kt │ │ │ │ └── TxVoteUpdateViewBinder.kt │ │ │ └── wallets │ │ │ ├── WalletsTabModule.java │ │ │ ├── contract │ │ │ ├── AddWalletView.kt │ │ │ ├── BaseWalletsPageView.kt │ │ │ ├── CoinsTabPageView.kt │ │ │ ├── EditWalletView.kt │ │ │ ├── TxsTabPageView.kt │ │ │ ├── WalletSelectorControllerView.kt │ │ │ └── WalletsTabView.kt │ │ │ ├── data │ │ │ ├── BalanceCurrentState.java │ │ │ ├── BalanceState.kt │ │ │ └── CoinBalanceDiffUtilImpl.java │ │ │ ├── dialogs │ │ │ ├── presentation │ │ │ │ ├── AddWalletPresenter.kt │ │ │ │ ├── CreateWalletPresenter.kt │ │ │ │ ├── EditWalletPresenter.kt │ │ │ │ └── SingInMnemonicPresenter.java │ │ │ └── ui │ │ │ │ ├── AddWalletDialog.kt │ │ │ │ ├── CreateWalletDialog.kt │ │ │ │ ├── EditWalletDialog.kt │ │ │ │ └── SignInMnemonicDialog.java │ │ │ ├── selector │ │ │ ├── WalletItem.kt │ │ │ ├── WalletListAdapter.java │ │ │ ├── WalletSelector.kt │ │ │ ├── WalletSelectorBroadcastReceiver.kt │ │ │ └── WalletsPopupWindow.java │ │ │ ├── ui │ │ │ ├── AppBarOffsetChangedListener.java │ │ │ ├── BaseTabPageFragment.kt │ │ │ ├── CoinsTabPageFragment.kt │ │ │ ├── CollapsingToolbarScrollDisabler.kt │ │ │ ├── SwipeRefreshHacker.java │ │ │ ├── TxsTabPageFragment.kt │ │ │ ├── WalletsTabFragment.kt │ │ │ └── WalletsTopRecolorHelper.kt │ │ │ ├── utils │ │ │ ├── HistoryTransactionDiffUtil.java │ │ │ └── LastBlockHandler.kt │ │ │ └── views │ │ │ ├── CoinsTabPagePresenter.kt │ │ │ ├── TxsTabPagePresenter.kt │ │ │ ├── WalletSelectorController.kt │ │ │ ├── WalletsTabPresenter.kt │ │ │ └── rows │ │ │ ├── RowWalletsButton.kt │ │ │ ├── RowWalletsHeader.kt │ │ │ └── RowWalletsList.kt │ └── res │ │ ├── anim │ │ ├── popup_fadein.xml │ │ ├── popup_fadeout.xml │ │ ├── stories_pager_enter.xml │ │ └── stories_pager_exit.xml │ │ ├── animator │ │ ├── btn_state_list_anim.xml │ │ └── fade_in_out.xml │ │ ├── color │ │ ├── item_bottom_menu.xml │ │ ├── text_color_hint.xml │ │ ├── text_color_pin.xml │ │ └── text_input_stateful.xml │ │ ├── drawable-hdpi │ │ ├── emoji_crab.png │ │ ├── emoji_dolphin.png │ │ ├── emoji_shark.png │ │ ├── emoji_shell.png │ │ ├── emoji_shrimp.png │ │ ├── emoji_tropical_fish.png │ │ ├── emoji_whale.png │ │ ├── ic_logo_btc.png │ │ ├── ic_logo_eth.png │ │ ├── ic_logo_hub.png │ │ ├── ic_logo_musd.png │ │ ├── ic_logo_usdc.png │ │ ├── ic_logo_usdt.png │ │ ├── ic_menu_coins_active.png │ │ ├── ic_menu_coins_inactive.png │ │ ├── ic_menu_pools_active.png │ │ ├── ic_menu_pools_inactive.png │ │ ├── ic_menu_send_active.png │ │ ├── ic_menu_send_inactive.png │ │ ├── ic_menu_settings_active.png │ │ ├── ic_menu_settings_inactive.png │ │ ├── ic_notify_coin.png │ │ ├── ic_notify_list_tx.png │ │ ├── ic_swap_coins.png │ │ ├── img_avatar_candidate.png │ │ ├── img_avatar_create_coin.png │ │ ├── img_avatar_default.png │ │ ├── img_avatar_delegate.png │ │ ├── img_avatar_exchange.png │ │ ├── img_avatar_multisend.png │ │ ├── img_avatar_multisig.png │ │ ├── img_avatar_redeem.png │ │ ├── img_avatar_unbond.png │ │ ├── img_welcome.webp │ │ └── stories_thumb.png │ │ ├── drawable-mdpi │ │ ├── emoji_crab.png │ │ ├── emoji_dolphin.png │ │ ├── emoji_shark.png │ │ ├── emoji_shell.png │ │ ├── emoji_shrimp.png │ │ ├── emoji_tropical_fish.png │ │ ├── emoji_whale.png │ │ ├── ic_logo_btc.png │ │ ├── ic_logo_eth.png │ │ ├── ic_logo_hub.png │ │ ├── ic_logo_musd.png │ │ ├── ic_logo_usdc.png │ │ ├── ic_logo_usdt.png │ │ ├── ic_menu_coins_active.png │ │ ├── ic_menu_coins_inactive.png │ │ ├── ic_menu_pools_active.png │ │ ├── ic_menu_pools_inactive.png │ │ ├── ic_menu_send_active.png │ │ ├── ic_menu_send_inactive.png │ │ ├── ic_menu_settings_active.png │ │ ├── ic_menu_settings_inactive.png │ │ ├── ic_notify_coin.png │ │ ├── ic_notify_list_tx.png │ │ ├── ic_swap_coins.png │ │ ├── img_avatar_candidate.png │ │ ├── img_avatar_create_coin.png │ │ ├── img_avatar_default.png │ │ ├── img_avatar_delegate.png │ │ ├── img_avatar_exchange.png │ │ ├── img_avatar_multisend.png │ │ ├── img_avatar_multisig.png │ │ ├── img_avatar_redeem.png │ │ ├── img_avatar_unbond.png │ │ ├── img_welcome.webp │ │ └── stories_thumb.png │ │ ├── drawable-xhdpi │ │ ├── emoji_crab.png │ │ ├── emoji_dolphin.png │ │ ├── emoji_shark.png │ │ ├── emoji_shell.png │ │ ├── emoji_shrimp.png │ │ ├── emoji_tropical_fish.png │ │ ├── emoji_whale.png │ │ ├── ic_logo_btc.png │ │ ├── ic_logo_eth.png │ │ ├── ic_logo_hub.png │ │ ├── ic_logo_musd.png │ │ ├── ic_logo_usdc.png │ │ ├── ic_logo_usdt.png │ │ ├── ic_menu_coins_active.png │ │ ├── ic_menu_coins_inactive.png │ │ ├── ic_menu_pools_active.png │ │ ├── ic_menu_pools_inactive.png │ │ ├── ic_menu_send_active.png │ │ ├── ic_menu_send_inactive.png │ │ ├── ic_menu_settings_active.png │ │ ├── ic_menu_settings_inactive.png │ │ ├── ic_notify_coin.png │ │ ├── ic_notify_list_tx.png │ │ ├── ic_swap_coins.png │ │ ├── img_avatar_candidate.png │ │ ├── img_avatar_create_coin.png │ │ ├── img_avatar_default.png │ │ ├── img_avatar_delegate.png │ │ ├── img_avatar_exchange.png │ │ ├── img_avatar_multisend.png │ │ ├── img_avatar_multisig.png │ │ ├── img_avatar_redeem.png │ │ ├── img_avatar_unbond.png │ │ ├── img_welcome.webp │ │ └── stories_thumb.png │ │ ├── drawable-xxhdpi │ │ ├── emoji_crab.png │ │ ├── emoji_dolphin.png │ │ ├── emoji_shark.png │ │ ├── emoji_shell.png │ │ ├── emoji_shrimp.png │ │ ├── emoji_tropical_fish.png │ │ ├── emoji_whale.png │ │ ├── ic_logo_btc.png │ │ ├── ic_logo_eth.png │ │ ├── ic_logo_hub.png │ │ ├── ic_logo_musd.png │ │ ├── ic_logo_usdc.png │ │ ├── ic_logo_usdt.png │ │ ├── ic_menu_coins_active.png │ │ ├── ic_menu_coins_inactive.png │ │ ├── ic_menu_pools_active.png │ │ ├── ic_menu_pools_inactive.png │ │ ├── ic_menu_send_active.png │ │ ├── ic_menu_send_inactive.png │ │ ├── ic_menu_settings_active.png │ │ ├── ic_menu_settings_inactive.png │ │ ├── ic_notify_coin.png │ │ ├── ic_notify_list_tx.png │ │ ├── ic_swap_coins.png │ │ ├── img_avatar_candidate.png │ │ ├── img_avatar_create_coin.png │ │ ├── img_avatar_default.png │ │ ├── img_avatar_delegate.png │ │ ├── img_avatar_exchange.png │ │ ├── img_avatar_multisend.png │ │ ├── img_avatar_multisig.png │ │ ├── img_avatar_redeem.png │ │ ├── img_avatar_unbond.png │ │ ├── img_welcome.webp │ │ └── stories_thumb.png │ │ ├── drawable-xxxhdpi │ │ ├── emoji_crab.png │ │ ├── emoji_dolphin.png │ │ ├── emoji_shark.png │ │ ├── emoji_shell.png │ │ ├── emoji_shrimp.png │ │ ├── emoji_tropical_fish.png │ │ ├── emoji_whale.png │ │ ├── ic_logo_btc.png │ │ ├── ic_logo_eth.png │ │ ├── ic_logo_hub.png │ │ ├── ic_logo_musd.png │ │ ├── ic_logo_usdc.png │ │ ├── ic_logo_usdt.png │ │ ├── ic_menu_coins_active.png │ │ ├── ic_menu_coins_inactive.png │ │ ├── ic_menu_pools_active.png │ │ ├── ic_menu_pools_inactive.png │ │ ├── ic_menu_send_active.png │ │ ├── ic_menu_send_inactive.png │ │ ├── ic_menu_settings_active.png │ │ ├── ic_menu_settings_inactive.png │ │ ├── ic_notify_coin.png │ │ ├── ic_notify_list_tx.png │ │ ├── ic_swap_coins.png │ │ ├── img_avatar_candidate.png │ │ ├── img_avatar_create_coin.png │ │ ├── img_avatar_default.png │ │ ├── img_avatar_delegate.png │ │ ├── img_avatar_exchange.png │ │ ├── img_avatar_multisend.png │ │ ├── img_avatar_multisig.png │ │ ├── img_avatar_redeem.png │ │ ├── img_avatar_unbond.png │ │ ├── img_welcome.webp │ │ └── stories_thumb.png │ │ ├── drawable │ │ ├── bg_chip.xml │ │ ├── bg_curved_green.xml │ │ ├── bg_edittext_active.xml │ │ ├── bg_edittext_disabled.xml │ │ ├── bg_edittext_inactive.xml │ │ ├── bg_edittext_states.xml │ │ ├── bg_input_disabled.xml │ │ ├── bg_input_fake.xml │ │ ├── bg_input_green.xml │ │ ├── bg_input_grey.xml │ │ ├── bg_light_blue_rounded.xml │ │ ├── bg_light_green_rounded.xml │ │ ├── bg_ripple_grey_rounded.xml │ │ ├── bg_ripple_white.xml │ │ ├── bg_ripple_white_bot_rounded.xml │ │ ├── bg_ripple_white_rounded.xml │ │ ├── bg_ripple_white_top_rounded.xml │ │ ├── bg_white_rounded.xml │ │ ├── btn_blue.xml │ │ ├── btn_blue_wb.xml │ │ ├── btn_green.xml │ │ ├── btn_pin_key.xml │ │ ├── btn_red.xml │ │ ├── btn_transparent_black_border.xml │ │ ├── btn_transparent_blue_border.xml │ │ ├── btn_white.xml │ │ ├── fade_orange.xml │ │ ├── ic_add_circle_outline_primary.xml │ │ ├── ic_add_circle_primary.xml │ │ ├── ic_add_grey.xml │ │ ├── ic_add_white.xml │ │ ├── ic_arrow_back_grey.xml │ │ ├── ic_arrow_back_white.xml │ │ ├── ic_arrow_back_white_compat.xml │ │ ├── ic_backspace_white.xml │ │ ├── ic_cancel_circle_grey.xml │ │ ├── ic_check_ok.xml │ │ ├── ic_chevron_right.xml │ │ ├── ic_chevron_right_grey.xml │ │ ├── ic_close_grey.xml │ │ ├── ic_close_white.xml │ │ ├── ic_contacts_primary.xml │ │ ├── ic_copy_grey.xml │ │ ├── ic_done_white.xml │ │ ├── ic_double_arrow_right.xml │ │ ├── ic_drop_down_grey.xml │ │ ├── ic_drop_down_white.xml │ │ ├── ic_edit_grey.xml │ │ ├── ic_edit_white.xml │ │ ├── ic_exchange_separator.xml │ │ ├── ic_fingerprint_white.xml │ │ ├── ic_logout_grey.xml │ │ ├── ic_lp_token_bg.xml │ │ ├── ic_menu_coins.xml │ │ ├── ic_menu_pools.xml │ │ ├── ic_menu_send.xml │ │ ├── ic_menu_settings.xml │ │ ├── ic_message_grey.xml │ │ ├── ic_qr.xml │ │ ├── ic_qr_compat.xml │ │ ├── ic_remove_circle_outline_black.xml │ │ ├── ic_remove_circle_outline_grey.xml │ │ ├── ic_search_black.xml │ │ ├── ic_search_grey.xml │ │ ├── ic_see_more.xml │ │ ├── ic_share_white.xml │ │ ├── ic_validator_list.xml │ │ ├── ic_warning_yellow.xml │ │ ├── ic_watch_later.xml │ │ ├── img_avatar_lp_token.xml │ │ ├── img_logo_main.xml │ │ ├── ripple_suffix.xml │ │ ├── shape_black_full_vignette.xml │ │ ├── shape_black_half_vignette.xml │ │ ├── shape_bottom_separator.xml │ │ ├── shape_dialog_rounded.xml │ │ ├── shape_draggable.xml │ │ ├── shape_pin_symbol.xml │ │ ├── shape_rounded_green.xml │ │ ├── shape_rounded_progress_active.xml │ │ ├── shape_rounded_progress_back.xml │ │ ├── shape_rounded_red.xml │ │ ├── shape_rounded_white.xml │ │ ├── shape_story.xml │ │ ├── switch_thumb_active.xml │ │ ├── switch_thumb_inactive.xml │ │ ├── switch_thumb_states.xml │ │ ├── switch_track_active.xml │ │ ├── switch_track_inactive.xml │ │ └── switch_track_states.xml │ │ ├── font │ │ ├── _inter_black.ttf │ │ ├── _inter_black_italic.ttf │ │ ├── _inter_bold.ttf │ │ ├── _inter_bold_italic.ttf │ │ ├── _inter_extra_bold.ttf │ │ ├── _inter_extra_bold_italic.ttf │ │ ├── _inter_extra_light.ttf │ │ ├── _inter_extra_light_italic.ttf │ │ ├── _inter_italic.ttf │ │ ├── _inter_light.ttf │ │ ├── _inter_light_italic.ttf │ │ ├── _inter_medium.ttf │ │ ├── _inter_medium_italic.ttf │ │ ├── _inter_regular.ttf │ │ ├── _inter_semi_bold.ttf │ │ ├── _inter_semi_bold_italic.ttf │ │ ├── _inter_thin.ttf │ │ ├── _inter_thin_italic.ttf │ │ ├── _ubuntu_mono_bold.ttf │ │ ├── _ubuntu_mono_bold_italic.ttf │ │ ├── _ubuntu_mono_italic.ttf │ │ ├── _ubuntu_mono_regular.ttf │ │ ├── inter.xml │ │ └── ubuntu_mono.xml │ │ ├── layout-sw600dp │ │ ├── fragment_auth.xml │ │ └── fragment_splash.xml │ │ ├── layout │ │ ├── activity_address_book.xml │ │ ├── activity_auth.xml │ │ ├── activity_convert_coin.xml │ │ ├── activity_delegate_unbond.xml │ │ ├── activity_delegation_list.xml │ │ ├── activity_external_transaction.xml │ │ ├── activity_home.xml │ │ ├── activity_pin.xml │ │ ├── activity_pool_add_liquidity.xml │ │ ├── activity_pool_remove_liquidity.xml │ │ ├── activity_qr_scanner.xml │ │ ├── activity_stories.xml │ │ ├── activity_transaction_list.xml │ │ ├── activity_validator_selector.xml │ │ ├── dialog_account_selector.xml │ │ ├── dialog_add_wallet.xml │ │ ├── dialog_address_selector.xml │ │ ├── dialog_addresscontact_edit.xml │ │ ├── dialog_confirm.xml │ │ ├── dialog_create_wallet.xml │ │ ├── dialog_edit_wallet.xml │ │ ├── dialog_progress.xml │ │ ├── dialog_share_address.xml │ │ ├── dialog_sheet_top.xml │ │ ├── dialog_signin_wallet.xml │ │ ├── dialog_tx_convert_start.xml │ │ ├── dialog_tx_liquidity_start.xml │ │ ├── dialog_tx_send_complete.xml │ │ ├── dialog_tx_send_start.xml │ │ ├── dialog_tx_view.xml │ │ ├── fragment_auth.xml │ │ ├── fragment_exchange_buy.xml │ │ ├── fragment_exchange_sell.xml │ │ ├── fragment_page_wallets.xml │ │ ├── fragment_splash.xml │ │ ├── fragment_stories_horizontal_list.xml │ │ ├── fragment_story.xml │ │ ├── fragment_story_slide.xml │ │ ├── fragment_tab_pools.xml │ │ ├── fragment_tab_send.xml │ │ ├── fragment_tab_settings.xml │ │ ├── fragment_tab_wallets.xml │ │ ├── include_exchange_calculation.xml │ │ ├── include_testnet_warning_view.xml │ │ ├── item_list_address_book.xml │ │ ├── item_list_delegated_stake.xml │ │ ├── item_list_delegated_validator.xml │ │ ├── item_list_dialog_account_selector.xml │ │ ├── item_list_dialog_account_selector_search_view.xml │ │ ├── item_list_header.xml │ │ ├── item_list_pool.xml │ │ ├── item_list_settings.xml │ │ ├── item_list_settings_header.xml │ │ ├── item_list_transaction_header.xml │ │ ├── item_list_transaction_progress.xml │ │ ├── item_list_tx.xml │ │ ├── item_list_validator_header.xml │ │ ├── item_list_validator_selector.xml │ │ ├── item_list_wallet.xml │ │ ├── item_list_with_image.xml │ │ ├── item_story.xml │ │ ├── list_item_textview.xml │ │ ├── popup_wallet_selector.xml │ │ ├── row_input_decimal_field.xml │ │ ├── row_input_field.xml │ │ ├── row_item_switch_settings.xml │ │ ├── row_wallets_button.xml │ │ ├── row_wallets_header.xml │ │ ├── row_wallets_list.xml │ │ ├── search_item.xml │ │ ├── stub_payload_overlay.xml │ │ ├── stub_validator_name.xml │ │ ├── tx_details_add_limit_order.xml │ │ ├── tx_details_change_coin_owner.xml │ │ ├── tx_details_create_coin.xml │ │ ├── tx_details_create_multisig_address.xml │ │ ├── tx_details_create_token.xml │ │ ├── tx_details_declare_candidacy.xml │ │ ├── tx_details_delegate_unbond.xml │ │ ├── tx_details_edit_candidate.xml │ │ ├── tx_details_edit_candidate_commission.xml │ │ ├── tx_details_edit_candidate_public_key.xml │ │ ├── tx_details_exchange.xml │ │ ├── tx_details_exchange_pool.xml │ │ ├── tx_details_lock_coins.xml │ │ ├── tx_details_lock_stake.xml │ │ ├── tx_details_move_stake.xml │ │ ├── tx_details_pool.xml │ │ ├── tx_details_price_vote.xml │ │ ├── tx_details_redeem_check.xml │ │ ├── tx_details_remove_limit_order.xml │ │ ├── tx_details_send.xml │ │ ├── tx_details_set_candidate_on_off.xml │ │ ├── tx_details_set_halt_block.xml │ │ ├── tx_details_vote_update.xml │ │ ├── view_chart_marker.xml │ │ ├── view_error_static.xml │ │ ├── view_error_static_popup.xml │ │ ├── view_pausable_progress.xml │ │ ├── view_pincode_kbd.xml │ │ ├── view_pools_filter.xml │ │ ├── view_toolbar_with_progress.xml │ │ ├── view_transaction_filter.xml │ │ └── view_wallet_selector.xml │ │ ├── menu │ │ ├── menu_address_book.xml │ │ ├── menu_bottom_tabs.xml │ │ ├── menu_delegation_list.xml │ │ ├── menu_tab_send.xml │ │ ├── menu_tab_settings.xml │ │ └── menu_wallets_toolbar.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── bip_beep_digi_octave.wav │ │ ├── cancel_pop_hi.wav │ │ ├── click_pop_zap.wav │ │ └── refresh_pop_down.wav │ │ ├── transition │ │ └── image_shared_element_transition.xml │ │ ├── values-400dpi │ │ └── dimens.xml │ │ ├── values-560dpi │ │ └── dimens.xml │ │ ├── values-hdpi │ │ └── dimens.xml │ │ ├── values-ldpi │ │ └── dimens.xml │ │ ├── values-mdpi │ │ └── dimens.xml │ │ ├── values-ru │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-sw600dp │ │ └── dimens.xml │ │ ├── values-v23 │ │ ├── attributes.xml │ │ └── styles.xml │ │ ├── values-v27 │ │ └── styles.xml │ │ ├── values │ │ ├── attributes.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── ints.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ ├── strings_dialogs.xml │ │ ├── strings_forms.xml │ │ ├── strings_internal.xml │ │ ├── styleable.xml │ │ ├── styles.xml │ │ ├── styles_dialog.xml │ │ └── styles_input.xml │ │ └── xml │ │ ├── ledger_dev.xml │ │ ├── network_security_config.xml │ │ └── provider_paths.xml │ ├── netMain │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ └── strings.xml │ ├── netMainLocal │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ ├── netTest │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-mdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-xxxhdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable │ │ └── ic_launcher_foreground_fit.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-ru │ │ └── strings.xml │ │ └── values │ │ └── strings.xml │ ├── netTestLocal │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-mdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-xxxhdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable │ │ └── ic_launcher_foreground_fit.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-ru │ │ └── strings.xml │ │ └── values │ │ └── strings.xml │ ├── test │ └── java │ │ └── network │ │ └── minter │ │ └── bipwallet │ │ ├── BigDecimalHelpersTest.kt │ │ ├── EmojiDetectorTest.kt │ │ └── EncryptedStringTest.java │ ├── toronet │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-mdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable-xxxhdpi │ │ └── ic_launcher_foreground.png │ │ ├── drawable │ │ └── ic_launcher_foreground_fit.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-ru │ │ └── strings.xml │ │ └── values │ │ └── strings.xml │ └── toronetLocal │ ├── AndroidManifest.xml │ └── res │ ├── drawable-hdpi │ └── ic_launcher_foreground.png │ ├── drawable-mdpi │ └── ic_launcher_foreground.png │ ├── drawable-xhdpi │ └── ic_launcher_foreground.png │ ├── drawable-xxhdpi │ └── ic_launcher_foreground.png │ ├── drawable-xxxhdpi │ └── ic_launcher_foreground.png │ ├── drawable │ └── ic_launcher_foreground_fit.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── values-ru │ └── strings.xml │ └── values │ └── strings.xml ├── build.gradle.kts ├── firetest.sh ├── gradle.properties ├── gradle ├── deps.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── publish_mainnet.sh ├── publish_testnet.sh ├── publish_toronet.sh └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | local.properties 4 | .idea 5 | !.idea/codeStyles 6 | .DS_Store 7 | /build 8 | /release 9 | /captures 10 | .externalNativeBuild 11 | .keychain 12 | app/fabric.properties 13 | crashlytics-build.properties 14 | com_crashlytics_export_strings.xml 15 | centrifuge/build 16 | app/google-services.json 17 | checklist.md 18 | app/netMain 19 | app/netTest 20 | LocalTest.kt -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2018, Respective Authors all rights reserved. 2 | 3 | The MIT License 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | google-services.json 3 | -------------------------------------------------------------------------------- /app/proguard-release-rules.pro: -------------------------------------------------------------------------------- 1 | -assumenosideeffects class timber.log.Timber { 2 | public static *** v(...); 3 | public static *** d(...); 4 | public static *** i(...); 5 | } -------------------------------------------------------------------------------- /app/proguard-test-rules.pro: -------------------------------------------------------------------------------- 1 | # Proguard rules that are applied to your test apk/code. 2 | -ignorewarnings 3 | 4 | -keepattributes *Annotation* 5 | 6 | -keep class org.hamcrest.** {*;} 7 | -keep class junit.framework.** {*;} 8 | -keep class junit.runner.** {*;} 9 | -keep class org.junit.** { *; } 10 | -keep class org.mockito.** {*;} 11 | -keep class android.test.** {*;} 12 | -keep class android.support.test.** {*;} 13 | -keep class com.squareup.javawriter.JavaWriter {*;} 14 | -keep class io.reactivex.plugins.RxJavaPlugins { *; } 15 | -keep class io.reactivex.disposables.CompositeDisposable { *; } 16 | -keep class network.minter.bipwallet.* { *; } 17 | -keep class android.support.test.** { *; } 18 | -------------------------------------------------------------------------------- /app/src/androidTest/assets/gate/v1/min-gas/min_gas_price_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | "gas": "1" 4 | } 5 | } -------------------------------------------------------------------------------- /app/src/androidTest/assets/gate/v1/min-gas/min_gas_price_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | "gas": "2" 4 | } 5 | } -------------------------------------------------------------------------------- /app/src/androidTest/assets/gate/v1/min-gas/min_gas_price_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | "gas": "4" 4 | } 5 | } -------------------------------------------------------------------------------- /app/src/androidTest/assets/not_found.json: -------------------------------------------------------------------------------- 1 | { 2 | "error": { 3 | "code": "-1", 4 | "log": "%s", 5 | "message": "%s" 6 | } 7 | } -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/exchange/ExchangeModule.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | package network.minter.bipwallet.exchange 27 | 28 | import dagger.Module 29 | 30 | @Module 31 | class ExchangeModule -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/exchange/contract/BuyExchangeView.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.exchange.contract 28 | 29 | /** 30 | * minter-android-wallet. 2019 31 | * @author Eduard Maximovich [edward.vstock@gmail.com] 32 | */ 33 | interface BuyExchangeView : ExchangeView -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/exchange/contract/SellExchangeView.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.exchange.contract 28 | 29 | /** 30 | * minter-android-wallet. 2019 31 | * @author Eduard Maximovich [edward.vstock@gmail.com] 32 | */ 33 | interface SellExchangeView : ExchangeView -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/external/DeepLinkModule.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.external; 28 | 29 | import dagger.Module; 30 | 31 | /** 32 | * Minter. 2019 33 | * @author Eduard Maximovich 34 | */ 35 | 36 | @com.airbnb.deeplinkdispatch.DeepLinkModule 37 | @Module 38 | public interface DeepLinkModule { 39 | } 40 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/adapter/DataSourceMeta.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.adapter; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | import network.minter.explorer.models.ExpResult; 7 | 8 | /** 9 | * Created by Alexander Kolpakov (jquickapp@gmail.com) on 06-Jun-19 10 | */ 11 | public class DataSourceMeta { 12 | private List items = new ArrayList<>(); 13 | private ExpResult.Meta meta; 14 | 15 | public ExpResult.Meta getMeta() { 16 | return meta; 17 | } 18 | 19 | public List getItems() { 20 | return items; 21 | } 22 | 23 | public void setItems(List items) { 24 | this.items = items; 25 | } 26 | 27 | public void setMeta(ExpResult.Meta meta) { 28 | this.meta = meta; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/adapter/LoadState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.internal.adapter; 28 | 29 | /** 30 | * Created by Alexander Kolpakov (jquickapp@gmail.com) on 06-Jun-19 31 | */ 32 | public enum LoadState { 33 | Loading, 34 | Loaded, 35 | Failed, 36 | Empty 37 | } 38 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/common/Acceptor.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2018 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.internal.common; 28 | 29 | /** 30 | * minter-android-wallet. 2018 31 | * 32 | * @author Eduard Maximovich 33 | */ 34 | 35 | public interface Acceptor { 36 | void accept(T t); 37 | } 38 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/di/DbMigration.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.internal.di; 28 | 29 | import java.lang.annotation.Retention; 30 | 31 | import javax.inject.Qualifier; 32 | 33 | import static java.lang.annotation.RetentionPolicy.RUNTIME; 34 | 35 | @Qualifier 36 | @Retention(RUNTIME) 37 | @interface DbMigration { 38 | } -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/di/annotations/DbCache.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.di.annotations; 2 | 3 | import java.lang.annotation.Retention; 4 | import java.lang.annotation.RetentionPolicy; 5 | 6 | import javax.inject.Qualifier; 7 | 8 | @Retention(RetentionPolicy.RUNTIME) 9 | @Qualifier 10 | public @interface DbCache { 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/di/annotations/LocationBound.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.di.annotations; 2 | 3 | import java.lang.annotation.Retention; 4 | import java.lang.annotation.RetentionPolicy; 5 | 6 | import javax.inject.Qualifier; 7 | 8 | /** 9 | * Dogsy. 2018 10 | * 11 | * @author Eduard Maximovich 12 | */ 13 | @Qualifier 14 | @Retention(RetentionPolicy.RUNTIME) 15 | public @interface LocationBound { 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/di/annotations/LocationPoint.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.di.annotations; 2 | 3 | import java.lang.annotation.Retention; 4 | import java.lang.annotation.RetentionPolicy; 5 | 6 | import javax.inject.Qualifier; 7 | 8 | /** 9 | * Dogsy. 2018 10 | * 11 | * @author Eduard Maximovich 12 | */ 13 | @Qualifier 14 | @Retention(RetentionPolicy.RUNTIME) 15 | public @interface LocationPoint { 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/exceptions/InvalidExternalTransaction.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.exceptions; 2 | 3 | import androidx.annotation.IntDef; 4 | import androidx.annotation.Nullable; 5 | 6 | public class InvalidExternalTransaction extends Exception { 7 | 8 | public final static int CODE_INVALID_DEEPLINK = 0x01; 9 | public final static int CODE_INVALID_LINK = 0x02; 10 | public final static int CODE_INVALID_TX = 0x03; 11 | 12 | private int mCode = CODE_INVALID_TX; 13 | 14 | public InvalidExternalTransaction(String message, @ExtTxCode int code) { 15 | super(message); 16 | mCode = code; 17 | } 18 | 19 | public InvalidExternalTransaction(String message, @ExtTxCode int code, Throwable cause) { 20 | super(message, cause); 21 | mCode = code; 22 | } 23 | 24 | public int getCode() { 25 | return mCode; 26 | } 27 | 28 | @Nullable 29 | @Override 30 | public String getMessage() { 31 | if (getCause() != null) { 32 | return String.format("%s: %s", super.getMessage(), getCause().getMessage()); 33 | } 34 | 35 | return super.getMessage(); 36 | } 37 | 38 | @IntDef({ 39 | CODE_INVALID_DEEPLINK, 40 | CODE_INVALID_LINK, 41 | CODE_INVALID_TX 42 | }) 43 | public @interface ExtTxCode { 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/helpers/TimeHelper.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.helpers; 2 | 3 | import org.joda.time.DateTime; 4 | 5 | import java.util.Calendar; 6 | 7 | /** 8 | * Dogsy. 2018 9 | * 10 | * @author Eduard Maximovich 11 | */ 12 | public class TimeHelper { 13 | 14 | public final static long HOUR_SECONDS = 60 * 60; 15 | public final static long DAY_SECONDS = HOUR_SECONDS * 24; 16 | public final static long WEEK_SECONDS = DAY_SECONDS * 7; 17 | public final static long YEAR_SECONDS = 18 | DAY_SECONDS * Calendar.getInstance().getActualMaximum(Calendar.DAY_OF_YEAR); 19 | 20 | public static long timestamp() { 21 | return new DateTime().getMillis() / 1000; 22 | } 23 | 24 | public static String formatDuration(long time) { 25 | time *= 1000; 26 | long minutes = time / (60 * 1000); 27 | long seconds = (time / 1000) % 60; 28 | return String.format("%d:%02d", minutes, seconds); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/helpers/TimeProfiler.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.helpers; 2 | 3 | import androidx.annotation.NonNull; 4 | import androidx.collection.SimpleArrayMap; 5 | import network.minter.bipwallet.BuildConfig; 6 | import timber.log.Timber; 7 | 8 | /** 9 | * @author Eduard Maximovich 10 | */ 11 | public class TimeProfiler { 12 | 13 | private static SimpleArrayMap profiles = new SimpleArrayMap<>(0); 14 | 15 | public static synchronized void start(@NonNull final Object tag) { 16 | if (!BuildConfig.DEBUG) { 17 | return; 18 | } 19 | if (profiles.containsKey(tag.hashCode())) { 20 | return; 21 | } 22 | 23 | profiles.put(tag.hashCode(), System.nanoTime()); 24 | } 25 | 26 | public static synchronized void end(@NonNull final Object tag) { 27 | if (!BuildConfig.DEBUG) { 28 | return; 29 | } 30 | if (!profiles.containsKey(tag.hashCode())) { 31 | return; 32 | } 33 | 34 | long start = profiles.get(tag.hashCode()); 35 | float end = (System.nanoTime() - start) / 1000000f; 36 | Timber.tag("PROFILE").i("%s -> Time spent %sms", tag, end); 37 | profiles.remove(tag.hashCode()); 38 | 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/helpers/forms/validators/NewLineInputFilter.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.internal.helpers.forms.validators 28 | 29 | /** 30 | * minter-android-wallet. 2020 31 | * @author Eduard Maximovich (edward.vstock@gmail.com) 32 | */ 33 | class NewLineInputFilter : RegexReplaceInputFilter("[\n]".toRegex()) -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/helpers/forms/validators/TitleInputFilter.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.internal.helpers.forms.validators 28 | 29 | /** 30 | * minter-android-wallet. 2020 31 | * @author Eduard Maximovich (edward.vstock@gmail.com) 32 | */ 33 | class TitleInputFilter : RegexReplaceInputFilter("""[\r\n\t\f]+""".toRegex()) -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/mvp/KeyboardView.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.mvp; 2 | 3 | import android.view.View; 4 | 5 | /** 6 | * Stars. 2017 7 | * 8 | * @author Eduard Maximovich 9 | */ 10 | 11 | public interface KeyboardView { 12 | void hideKeyboard(); 13 | void hideKeyboard(View focusedView); 14 | } 15 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/mvp/RefreshView.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.mvp; 2 | 3 | import androidx.swiperefreshlayout.widget.SwipeRefreshLayout; 4 | 5 | /** 6 | * Stars. 2017 7 | * 8 | * @author Eduard Maximovich 9 | */ 10 | public interface RefreshView { 11 | void setOnRefreshListener(SwipeRefreshLayout.OnRefreshListener listener); 12 | void showRefreshProgress(); 13 | void hideRefreshProgress(); 14 | } 15 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/system/SimpleTextWatcher.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.system; 2 | 3 | import android.text.Editable; 4 | import android.text.TextWatcher; 5 | 6 | public abstract class SimpleTextWatcher implements TextWatcher { 7 | 8 | @Override 9 | public void beforeTextChanged(CharSequence s, int start, int count, int after) { 10 | 11 | } 12 | 13 | @Override 14 | public void onTextChanged(CharSequence s, int start, int before, int count) { 15 | 16 | } 17 | 18 | @Override 19 | public void afterTextChanged(Editable s) { 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/views/list/NonScrollableLinearLayoutManager.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.views.list; 2 | 3 | import android.content.Context; 4 | import android.util.AttributeSet; 5 | 6 | import androidx.recyclerview.widget.LinearLayoutManager; 7 | 8 | /** 9 | * Minter. 2017 10 | * 11 | * @author Eduard Maximovich 12 | */ 13 | public class NonScrollableLinearLayoutManager extends LinearLayoutManager { 14 | public NonScrollableLinearLayoutManager(Context context) { 15 | super(context); 16 | } 17 | 18 | public NonScrollableLinearLayoutManager(Context context, int orientation, boolean reverseLayout) { 19 | super(context, orientation, reverseLayout); 20 | } 21 | 22 | public NonScrollableLinearLayoutManager(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { 23 | super(context, attrs, defStyleAttr, defStyleRes); 24 | } 25 | 26 | @Override 27 | public boolean canScrollHorizontally() { 28 | return false; 29 | } 30 | 31 | @Override 32 | public boolean canScrollVertically() { 33 | return false; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/views/list/SimpleRecyclerViewHolder.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.views.list; 2 | 3 | import android.view.View; 4 | 5 | import androidx.recyclerview.widget.RecyclerView; 6 | import network.minter.bipwallet.internal.views.list.multirow.MultiRowAdapter; 7 | 8 | /** 9 | * Minter. 2018 10 | * 11 | * @author Eduard Maximovich 12 | */ 13 | 14 | public class SimpleRecyclerViewHolder extends MultiRowAdapter.RowViewHolder { 15 | public RecyclerView list; 16 | 17 | public SimpleRecyclerViewHolder(View itemView) { 18 | super(itemView); 19 | list = ((RecyclerView) itemView); 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/views/list/multirow/StaticViewRow.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.views.list.multirow; 2 | 3 | import android.view.View; 4 | 5 | import androidx.annotation.LayoutRes; 6 | import androidx.annotation.NonNull; 7 | 8 | /** 9 | * Dogsy. 2018 10 | * 11 | * @author Eduard Maximovich 12 | */ 13 | 14 | public class StaticViewRow implements MultiRowContract.Row { 15 | private int mLayoutId; 16 | private boolean mVisible = true; 17 | 18 | public StaticViewRow(@LayoutRes int layoutId) { 19 | mLayoutId = layoutId; 20 | } 21 | 22 | public StaticViewRow(@LayoutRes int layoutId, boolean visible) { 23 | this(layoutId); 24 | mVisible = visible; 25 | } 26 | 27 | @Override 28 | public int getItemView() { 29 | return mLayoutId; 30 | } 31 | 32 | @Override 33 | public int getRowPosition() { 34 | return 0; 35 | } 36 | 37 | @Override 38 | public boolean isVisible() { 39 | return mVisible; 40 | } 41 | 42 | @Override 43 | public void onBindViewHolder(@NonNull ViewHolder viewHolder) { 44 | } 45 | 46 | @Override 47 | public void onUnbindViewHolder(@NonNull ViewHolder viewHolder) { 48 | 49 | } 50 | 51 | @NonNull 52 | @Override 53 | public Class getViewHolderClass() { 54 | return ViewHolder.class; 55 | } 56 | 57 | public static class ViewHolder extends MultiRowAdapter.RowViewHolder { 58 | public ViewHolder(View itemView) { 59 | super(itemView); 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/views/utils/OnSingleClickListener.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.internal.views.utils; 2 | 3 | import android.view.View; 4 | 5 | public abstract class OnSingleClickListener implements View.OnClickListener { 6 | private static final long MIN_CLICK_INTERVAL = 600; 7 | 8 | /** 9 | * click button 10 | * @param v The view that was clicked. 11 | */ 12 | public abstract void onSingleClick(View v); 13 | 14 | @Override 15 | public final void onClick(View v) { 16 | SingleCallHandler.call(v, MIN_CLICK_INTERVAL, () -> onSingleClick(v)); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/internal/views/widgets/RemoteImageContainer.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | package network.minter.bipwallet.internal.views.widgets 27 | 28 | /** 29 | * minter-android-wallet. 2018 30 | * 31 | * @author Eduard Maximovich (edward.vstock@gmail.com) 32 | */ 33 | interface RemoteImageContainer { 34 | val imageUrl: String? 35 | } -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/pools/models/PoolsFilter.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2021 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.pools.models 28 | 29 | /** 30 | * minter-android-wallet. 2021 31 | * @author Eduard Maximovich (edward.vstock@gmail.com) 32 | */ 33 | enum class PoolsFilter { 34 | None, 35 | Staked, 36 | Farming 37 | } -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/sending/SendTabModule.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2019 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.sending; 28 | 29 | import dagger.Module; 30 | 31 | /** 32 | * minter-android-wallet. 2018 33 | * @author Eduard Maximovich 34 | */ 35 | @Module 36 | public class SendTabModule { 37 | } 38 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/settings/SettingsTabModule.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2018 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.settings; 28 | 29 | import dagger.Module; 30 | 31 | /** 32 | * minter-android-wallet. 2018 33 | * @author Eduard Maximovich 34 | */ 35 | @Module 36 | public interface SettingsTabModule { 37 | 38 | } 39 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/settings/ui/SettingsFieldType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2018 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.settings.ui; 28 | 29 | /** 30 | * minter-android-wallet. 2018 31 | * 32 | * @author Eduard Maximovich 33 | */ 34 | public enum SettingsFieldType { 35 | Username, Email, Phone 36 | } 37 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/stories/StoriesScope.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.stories 28 | 29 | import javax.inject.Scope 30 | 31 | /** 32 | * minter-android-wallet. 2020 33 | * @author Eduard Maximovich (edward.vstock@gmail.com) 34 | */ 35 | 36 | @Scope 37 | @kotlin.annotation.Retention(AnnotationRetention.RUNTIME) 38 | annotation class StoriesScope -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/stories/models/StoriesResult.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.stories.models 28 | 29 | /** 30 | * minter-android-wallet. 2020 31 | * @author Eduard Maximovich (edward.vstock@gmail.com) 32 | */ 33 | data class StoriesResult( 34 | var data: T, 35 | val code: String 36 | ) -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/tx/TransactionsModule.java: -------------------------------------------------------------------------------- 1 | package network.minter.bipwallet.tx; 2 | 3 | import dagger.Module; 4 | 5 | @Module 6 | public class TransactionsModule { 7 | 8 | // @Provides 9 | // public TransactionDataSource.Factory provideTransactionsDataFactory( 10 | // ExplorerTransactionRepository txRepo, 11 | // CachedRepository, CachedValidatorsRepository> validatorsRepo, 12 | // ProfileInfoRepository profileRepo, 13 | // SecretStorage secretStorage 14 | // ) { 15 | // 16 | // return new TransactionDataSource.Factory(txRepo, validatorsRepo, profileRepo, secretStorage.getAddresses()); 17 | // } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/network/minter/bipwallet/wallets/WalletsTabModule.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by MinterTeam. 2020 3 | * @link Org Github 4 | * @link Maintainer Github 5 | * 6 | * The MIT License 7 | * 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy 9 | * of this software and associated documentation files (the "Software"), to deal 10 | * in the Software without restriction, including without limitation the rights 11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | * copies of the Software, and to permit persons to whom the Software is 13 | * furnished to do so, subject to the following conditions: 14 | * 15 | * The above copyright notice and this permission notice shall be included in 16 | * all copies or substantial portions of the Software. 17 | * 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | * THE SOFTWARE. 25 | */ 26 | 27 | package network.minter.bipwallet.wallets; 28 | 29 | import dagger.Module; 30 | 31 | /** 32 | * minter-android-wallet. 2018 33 | * @author Eduard Maximovich 34 | */ 35 | @Module 36 | public interface WalletsTabModule { 37 | 38 | } 39 | -------------------------------------------------------------------------------- /app/src/main/res/animator/fade_in_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 14 | 15 | 24 | -------------------------------------------------------------------------------- /app/src/main/res/color/item_bottom_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/res/color/text_color_hint.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/res/color/text_input_stateful.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/emoji_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/emoji_crab.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/emoji_dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/emoji_dolphin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/emoji_shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/emoji_shark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/emoji_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/emoji_shell.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/emoji_shrimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/emoji_shrimp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/emoji_tropical_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/emoji_tropical_fish.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/emoji_whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/emoji_whale.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_logo_btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_logo_btc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_logo_eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_logo_eth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_logo_hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_logo_hub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_logo_musd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_logo_musd.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_logo_usdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_logo_usdc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_logo_usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_logo_usdt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_coins_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_menu_coins_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_coins_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_menu_coins_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_pools_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_menu_pools_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_pools_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_menu_pools_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_send_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_menu_send_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_send_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_menu_send_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_settings_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_menu_settings_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_settings_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_menu_settings_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_notify_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_notify_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_notify_list_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_notify_list_tx.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_swap_coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/ic_swap_coins.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_avatar_candidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_avatar_candidate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_avatar_create_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_avatar_create_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_avatar_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_avatar_default.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_avatar_delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_avatar_delegate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_avatar_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_avatar_exchange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_avatar_multisend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_avatar_multisend.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_avatar_multisig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_avatar_multisig.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_avatar_redeem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_avatar_redeem.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_avatar_unbond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_avatar_unbond.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/img_welcome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/img_welcome.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/stories_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-hdpi/stories_thumb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/emoji_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/emoji_crab.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/emoji_dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/emoji_dolphin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/emoji_shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/emoji_shark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/emoji_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/emoji_shell.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/emoji_shrimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/emoji_shrimp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/emoji_tropical_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/emoji_tropical_fish.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/emoji_whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/emoji_whale.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_logo_btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_logo_btc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_logo_eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_logo_eth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_logo_hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_logo_hub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_logo_musd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_logo_musd.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_logo_usdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_logo_usdc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_logo_usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_logo_usdt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_menu_coins_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_menu_coins_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_menu_coins_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_menu_coins_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_menu_pools_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_menu_pools_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_menu_pools_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_menu_pools_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_menu_send_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_menu_send_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_menu_send_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_menu_send_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_menu_settings_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_menu_settings_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_menu_settings_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_menu_settings_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_notify_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_notify_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_notify_list_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_notify_list_tx.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_swap_coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/ic_swap_coins.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_avatar_candidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_avatar_candidate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_avatar_create_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_avatar_create_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_avatar_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_avatar_default.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_avatar_delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_avatar_delegate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_avatar_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_avatar_exchange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_avatar_multisend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_avatar_multisend.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_avatar_multisig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_avatar_multisig.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_avatar_redeem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_avatar_redeem.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_avatar_unbond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_avatar_unbond.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/img_welcome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/img_welcome.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/stories_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-mdpi/stories_thumb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/emoji_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/emoji_crab.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/emoji_dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/emoji_dolphin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/emoji_shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/emoji_shark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/emoji_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/emoji_shell.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/emoji_shrimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/emoji_shrimp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/emoji_tropical_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/emoji_tropical_fish.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/emoji_whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/emoji_whale.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_logo_btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_logo_btc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_logo_eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_logo_eth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_logo_hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_logo_hub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_logo_musd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_logo_musd.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_logo_usdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_logo_usdc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_logo_usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_logo_usdt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_menu_coins_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_menu_coins_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_menu_coins_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_menu_coins_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_menu_pools_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_menu_pools_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_menu_pools_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_menu_pools_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_menu_send_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_menu_send_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_menu_send_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_menu_send_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_menu_settings_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_menu_settings_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_menu_settings_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_menu_settings_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_notify_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_notify_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_notify_list_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_notify_list_tx.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_swap_coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/ic_swap_coins.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_avatar_candidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_avatar_candidate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_avatar_create_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_avatar_create_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_avatar_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_avatar_default.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_avatar_delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_avatar_delegate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_avatar_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_avatar_exchange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_avatar_multisend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_avatar_multisend.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_avatar_multisig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_avatar_multisig.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_avatar_redeem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_avatar_redeem.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_avatar_unbond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_avatar_unbond.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/img_welcome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/img_welcome.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/stories_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xhdpi/stories_thumb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/emoji_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/emoji_crab.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/emoji_dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/emoji_dolphin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/emoji_shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/emoji_shark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/emoji_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/emoji_shell.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/emoji_shrimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/emoji_shrimp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/emoji_tropical_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/emoji_tropical_fish.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/emoji_whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/emoji_whale.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_logo_btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_logo_btc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_logo_eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_logo_eth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_logo_hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_logo_hub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_logo_musd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_logo_musd.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_logo_usdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_logo_usdc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_logo_usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_logo_usdt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_menu_coins_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_menu_coins_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_menu_coins_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_menu_coins_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_menu_pools_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_menu_pools_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_menu_pools_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_menu_pools_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_menu_send_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_menu_send_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_menu_send_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_menu_send_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_menu_settings_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_menu_settings_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_menu_settings_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_menu_settings_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_notify_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_notify_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_notify_list_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_notify_list_tx.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_swap_coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/ic_swap_coins.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_avatar_candidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_avatar_candidate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_avatar_create_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_avatar_create_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_avatar_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_avatar_default.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_avatar_delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_avatar_delegate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_avatar_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_avatar_exchange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_avatar_multisend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_avatar_multisend.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_avatar_multisig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_avatar_multisig.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_avatar_redeem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_avatar_redeem.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_avatar_unbond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_avatar_unbond.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_welcome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/img_welcome.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stories_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxhdpi/stories_thumb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/emoji_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/emoji_crab.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/emoji_dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/emoji_dolphin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/emoji_shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/emoji_shark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/emoji_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/emoji_shell.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/emoji_shrimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/emoji_shrimp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/emoji_tropical_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/emoji_tropical_fish.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/emoji_whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/emoji_whale.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_logo_btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_logo_btc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_logo_eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_logo_eth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_logo_hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_logo_hub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_logo_musd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_logo_musd.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_logo_usdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_logo_usdc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_logo_usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_logo_usdt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_menu_coins_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_menu_coins_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_menu_coins_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_menu_coins_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_menu_pools_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_menu_pools_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_menu_pools_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_menu_pools_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_menu_send_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_menu_send_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_menu_send_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_menu_send_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_menu_settings_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_menu_settings_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_menu_settings_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_menu_settings_inactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_notify_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_notify_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_notify_list_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_notify_list_tx.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_swap_coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/ic_swap_coins.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_avatar_candidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_avatar_candidate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_avatar_create_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_avatar_create_coin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_avatar_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_avatar_default.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_avatar_delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_avatar_delegate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_avatar_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_avatar_exchange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_avatar_multisend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_avatar_multisend.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_avatar_multisig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_avatar_multisig.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_avatar_redeem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_avatar_redeem.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_avatar_unbond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_avatar_unbond.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/img_welcome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/img_welcome.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/stories_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/drawable-xxxhdpi/stories_thumb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_edittext_active.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_edittext_inactive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_input_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_input_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_input_grey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_ripple_white.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/fade_orange.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | 32 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add_grey.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add_white.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_back_white.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_back_white_compat.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_backspace_white.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_chevron_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_chevron_right_grey.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_done_white.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_drop_down_grey.xml: -------------------------------------------------------------------------------- 1 | 25 | 26 | 31 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_coins.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_qr_compat.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_watch_later.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_bottom_separator.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_draggable.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/switch_track_states.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_black.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_black_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_black_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_bold_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_bold_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_extra_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_extra_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_extra_bold_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_extra_bold_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_extra_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_extra_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_extra_light_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_extra_light_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_light_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_light_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_medium_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_medium_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_semi_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_semi_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_semi_bold_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_semi_bold_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_thin.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_inter_thin_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_inter_thin_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_ubuntu_mono_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_ubuntu_mono_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_ubuntu_mono_bold_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_ubuntu_mono_bold_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_ubuntu_mono_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_ubuntu_mono_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/_ubuntu_mono_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/font/_ubuntu_mono_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/ubuntu_mono.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 11 | 12 | 17 | 18 | 23 | 24 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/bip_beep_digi_octave.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/raw/bip_beep_digi_octave.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/cancel_pop_hi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/raw/cancel_pop_hi.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/click_pop_zap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/raw/click_pop_zap.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/refresh_pop_down.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/main/res/raw/refresh_pop_down.wav -------------------------------------------------------------------------------- /app/src/main/res/values-400dpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | @dimen/text_size_30 3 | 80dp 4 | 12dp 5 | 48dp 6 | 32dp 7 | 32dp 8 | -------------------------------------------------------------------------------- /app/src/main/res/values-560dpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | @dimen/text_size_30 3 | 80dp 4 | 12dp 5 | 48dp 6 | 32dp 7 | 32dp 8 | -------------------------------------------------------------------------------- /app/src/main/res/values-hdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 60dp 3 | 10dp 4 | @dimen/text_size_24 5 | 16dp 6 | 16dp 7 | 16dp 8 | -------------------------------------------------------------------------------- /app/src/main/res/values-ldpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 54dp 3 | 8dp 4 | @dimen/text_size_20 5 | 16dp 6 | 16dp 7 | 16dp 8 | -------------------------------------------------------------------------------- /app/src/main/res/values-mdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 54dp 3 | 8dp 4 | @dimen/text_size_20 5 | 16dp 6 | 16dp 7 | 16dp 8 | -------------------------------------------------------------------------------- /app/src/main/res/values-v23/attributes.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | false 29 | -------------------------------------------------------------------------------- /app/src/main/res/values/attributes.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | true 29 | -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | #502EC2 30 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings_dialogs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings_forms.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings_internal.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | network_minter_settings 29 | BIP Wallet 30 | BIP 31 | -------------------------------------------------------------------------------- /app/src/main/res/xml/ledger_dev.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | 29 | 30 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 32 | 33 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMain/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMain/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netMain/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netMainLocal/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netMainLocal/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTest/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTest/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTest/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTest/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTest/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTest/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTest/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTest/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | MNT в минуту 29 | -------------------------------------------------------------------------------- /app/src/netTest/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | BIP Wallet TESTNET 29 | MNT 30 | MNT per minute 31 | -------------------------------------------------------------------------------- /app/src/netTestLocal/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/netTestLocal/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/netTestLocal/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | MNT в минуту 29 | -------------------------------------------------------------------------------- /app/src/netTestLocal/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | BIP Wallet TESTNET 29 | MNT 30 | MNT per minute 31 | -------------------------------------------------------------------------------- /app/src/toronet/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronet/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronet/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronet/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronet/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronet/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronet/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronet/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | MNT в минуту 29 | -------------------------------------------------------------------------------- /app/src/toronet/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | BIP Wallet TESTNET 28 | MNT 29 | MNT per minute 30 | -------------------------------------------------------------------------------- /app/src/toronetLocal/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/app/src/toronetLocal/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/toronetLocal/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | 28 | MNT в минуту 29 | -------------------------------------------------------------------------------- /app/src/toronetLocal/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 26 | 27 | BIP Wallet TESTNET 28 | MNT 29 | MNT per minute 30 | -------------------------------------------------------------------------------- /firetest.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./gradlew :app:assembleNetTestNoCrashlyticsDebug :app:assembleNetTestNoCrashlyticsDebugAndroidTest 4 | gcloud firebase test android run \ 5 | --type instrumentation \ 6 | --app app/build/outputs/apk/netTestNoCrashlytics/debug/app-netTestNoCrashlytics-debug.apk \ 7 | --test app/build/outputs/apk/androidTest/netTestNoCrashlytics/debug/app-netTestNoCrashlytics-debug-androidTest.apk \ 8 | --device model=hwALE-H,version=21,locale=en,orientation=portrait -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinterTeam/minter-android-wallet/a7c254e6e3744d9304d5bf6f9133096263727bfa/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) by MinterTeam. 2022 3 | # @link Org Github 4 | # @link Maintainer Github 5 | # 6 | # The MIT License 7 | # 8 | # Permission is hereby granted, free of charge, to any person obtaining a copy 9 | # of this software and associated documentation files (the "Software"), to deal 10 | # in the Software without restriction, including without limitation the rights 11 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | # copies of the Software, and to permit persons to whom the Software is 13 | # furnished to do so, subject to the following conditions: 14 | # 15 | # The above copyright notice and this permission notice shall be included in 16 | # all copies or substantial portions of the Software. 17 | # 18 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | # THE SOFTWARE. 25 | # 26 | 27 | #Tue Aug 18 18:55:09 MSK 2020 28 | distributionBase=GRADLE_USER_HOME 29 | distributionPath=wrapper/dists 30 | zipStoreBase=GRADLE_USER_HOME 31 | zipStorePath=wrapper/dists 32 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip 33 | -------------------------------------------------------------------------------- /publish_mainnet.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | export FIREBASE_TOKEN=$MINTER_FIREBASE_TOKEN 4 | ./gradlew --stop 5 | ./gradlew assembleNetMainDebug appDistributionUploadNetMainDebug -------------------------------------------------------------------------------- /publish_testnet.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | export FIREBASE_TOKEN=$MINTER_FIREBASE_TOKEN 4 | ./gradlew --stop 5 | ./gradlew assembleNetTestDebug appDistributionUploadNetTestDebug -------------------------------------------------------------------------------- /publish_toronet.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # 4 | # Copyright (C) by MinterTeam. 2022 5 | # @link Org Github 6 | # @link Maintainer Github 7 | # 8 | # The MIT License 9 | # 10 | # Permission is hereby granted, free of charge, to any person obtaining a copy 11 | # of this software and associated documentation files (the "Software"), to deal 12 | # in the Software without restriction, including without limitation the rights 13 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | # copies of the Software, and to permit persons to whom the Software is 15 | # furnished to do so, subject to the following conditions: 16 | # 17 | # The above copyright notice and this permission notice shall be included in 18 | # all copies or substantial portions of the Software. 19 | # 20 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 26 | # THE SOFTWARE. 27 | # 28 | 29 | export FIREBASE_TOKEN=$MINTER_FIREBASE_TOKEN 30 | ./gradlew --stop 31 | ./gradlew assembleToronetDebug appDistributionUploadToronetDebug 32 | --------------------------------------------------------------------------------