├── .buckconfig ├── .bundle └── config ├── .env.sample ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml └── workflows │ └── test.yml ├── .gitignore ├── .node-version ├── .prettierrc.json ├── .ruby-version ├── .watchmanconfig ├── .yarnrc ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── ReactotronConfig.ts ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── helium │ │ │ └── wallet │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── InputMono-Bold.ttf │ │ │ ├── InputMono-Light.ttf │ │ │ ├── InputMono-Medium.ttf │ │ │ ├── InputMono-Regular.ttf │ │ │ ├── Inter-Black.otf │ │ │ ├── Inter-BlackItalic.otf │ │ │ ├── Inter-Bold.otf │ │ │ ├── Inter-BoldItalic.otf │ │ │ ├── Inter-ExtraBold.otf │ │ │ ├── Inter-ExtraBoldItalic.otf │ │ │ ├── Inter-ExtraLight.otf │ │ │ ├── Inter-ExtraLightItalic.otf │ │ │ ├── Inter-Italic.otf │ │ │ ├── Inter-Light.otf │ │ │ ├── Inter-LightItalic.otf │ │ │ ├── Inter-Medium.otf │ │ │ ├── Inter-MediumItalic.otf │ │ │ ├── Inter-Regular.otf │ │ │ ├── Inter-SemiBold.otf │ │ │ ├── Inter-SemiBoldItalic.otf │ │ │ ├── Inter-Thin.otf │ │ │ ├── Inter-ThinItalic.otf │ │ │ ├── Inter-V.ttf │ │ │ ├── NotoSerif-Bold.ttf │ │ │ ├── NotoSerif-BoldItalic.ttf │ │ │ ├── NotoSerif-Italic.ttf │ │ │ ├── NotoSerif-Regular.ttf │ │ │ ├── Soleil-Bold.ttf │ │ │ ├── Soleil-Book.otf │ │ │ ├── Soleil-Light.otf │ │ │ ├── Soleil-Regular.otf │ │ │ └── Soleil-SemiBold.otf │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ └── com │ │ │ └── helium │ │ │ └── wallet │ │ │ ├── DateModule.java │ │ │ ├── HeliumAppPackage.java │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── CMakeLists.txt │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable-hdpi │ │ └── splashscreen_image.png │ │ ├── drawable-mdpi │ │ └── splashscreen_image.png │ │ ├── drawable-xhdpi │ │ └── splashscreen_image.png │ │ ├── drawable-xxhdpi │ │ └── splashscreen_image.png │ │ ├── drawable-xxxhdpi │ │ └── splashscreen_image.png │ │ ├── drawable │ │ ├── rn_edit_text_material.xml │ │ ├── splashscreen.xml │ │ └── splashscreen_image.png │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── appcenter-post-clone.sh ├── appcenter-pre-build.sh ├── babel.config.js ├── declarations.d.ts ├── icon.png ├── index.js ├── ios ├── .xcode.env ├── Helium-Bridging-Header.h ├── Helium.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Helium.xcscheme ├── Helium.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Helium │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Helium.entitlements │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── ios-marketing-1024x1024-1x.png │ │ │ ├── ipad-20x20-1x.png │ │ │ ├── ipad-20x20-2x.png │ │ │ ├── ipad-29x29-1x.png │ │ │ ├── ipad-29x29-2x.png │ │ │ ├── ipad-40x40-1x.png │ │ │ ├── ipad-40x40-2x.png │ │ │ ├── ipad-50x50-1x.png │ │ │ ├── ipad-50x50-2x.png │ │ │ ├── ipad-72x72-1x.png │ │ │ ├── ipad-72x72-2x.png │ │ │ ├── ipad-76x76-1x.png │ │ │ ├── ipad-76x76-2x.png │ │ │ ├── ipad-83.5x83.5-2x.png │ │ │ ├── iphone-20x20-2x.png │ │ │ ├── iphone-20x20-3x.png │ │ │ ├── iphone-29x29-1x.png │ │ │ ├── iphone-29x29-2x.png │ │ │ ├── iphone-29x29-3x.png │ │ │ ├── iphone-40x40-2x.png │ │ │ ├── iphone-40x40-3x.png │ │ │ ├── iphone-57x57-1x.png │ │ │ ├── iphone-57x57-2x.png │ │ │ ├── iphone-60x60-2x.png │ │ │ └── iphone-60x60-3x.png │ │ ├── Contents.json │ │ └── SplashScreen.imageset │ │ │ ├── Contents.json │ │ │ └── SplashScreen.pdf │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── HeliumTests │ ├── HeliumTests.m │ └── Info.plist ├── HeliumWidget │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── WidgetBackground.colorset │ │ │ └── Contents.json │ │ ├── heliumLogo-png.imageset │ │ │ ├── Contents.json │ │ │ └── heliumLogo.png │ │ └── heliumLogo.imageset │ │ │ ├── Contents.json │ │ │ └── heliumLogo.svg │ ├── HeliumBalanceWidget │ │ ├── HeliumBalanceWidget.swift │ │ ├── HeliumBalanceWidgetEntryView.swift │ │ ├── HeliumBalanceWidgetNetworkCalls.swift │ │ └── HeliumBalanceWidgetProvider.swift │ ├── HeliumHotspotsWidget │ │ ├── HeliumHotspotListItemView.swift │ │ ├── HeliumHotspotsWidget.swift │ │ ├── HeliumHotspotsWidgetNetworkCalls.swift │ │ ├── HeliumHotspotsWidgetProvider.swift │ │ └── HeliumHotspotsWidgetView.swift │ ├── HeliumWidget.intentdefinition │ ├── HeliumWidgetBundle.swift │ ├── Info.plist │ ├── README.md │ ├── Utils.swift │ ├── en.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ └── ko.lproj │ │ └── Localizable.strings ├── HeliumWidgetExtension.entitlements ├── HeliumWidgetExtensionDebug.entitlements ├── OneSignalNotificationServiceExtension │ ├── Info.plist │ ├── NotificationService.swift │ └── OneSignalNotificationServiceExtension.entitlements ├── Podfile ├── Podfile.lock ├── RCTDateModule.h ├── RCTDateModule.m ├── WidgetKitHelper.swift └── bridge.swift ├── jest.config.js ├── jestSetup.js ├── metro.config.js ├── package.json ├── patches ├── @helium+wallet-link+4.7.5.patch ├── @react-native-community+blur+3.6.0.patch ├── react-native+0.70.6.patch ├── react-native-currency-format+1.0.19.patch ├── react-native-keyboard-aware-scroll-view+0.9.4.patch ├── react-native-skeleton-placeholder+3.0.4.patch └── react-native-sodium+0.4.0.patch ├── react-native.config.js ├── src ├── App.tsx ├── __fixtures__ │ └── account.ts ├── __mocks__ │ ├── expo-barcode-scanner.js │ ├── expo-location.js │ ├── fileMock.js │ ├── h3-js.js │ ├── react-native-ble-plx.js │ ├── react-native-localize.js │ ├── react-native-onesignal.js │ ├── react-native-simple-toast.js │ └── reactotron-react-native.js ├── apple-app-site-association ├── assetlinks.json ├── assets │ ├── animations │ │ ├── importAccountLoader.json │ │ └── sendAnimation.json │ ├── fonts │ │ ├── InputMono-Bold.ttf │ │ ├── InputMono-Light.ttf │ │ ├── InputMono-Medium.ttf │ │ ├── InputMono-Regular.ttf │ │ ├── Inter-Black.otf │ │ ├── Inter-BlackItalic.otf │ │ ├── Inter-Bold.otf │ │ ├── Inter-BoldItalic.otf │ │ ├── Inter-ExtraBold.otf │ │ ├── Inter-ExtraBoldItalic.otf │ │ ├── Inter-ExtraLight.otf │ │ ├── Inter-ExtraLightItalic.otf │ │ ├── Inter-Italic.otf │ │ ├── Inter-Light.otf │ │ ├── Inter-LightItalic.otf │ │ ├── Inter-Medium.otf │ │ ├── Inter-MediumItalic.otf │ │ ├── Inter-Regular.otf │ │ ├── Inter-SemiBold.otf │ │ ├── Inter-SemiBoldItalic.otf │ │ ├── Inter-Thin.otf │ │ ├── Inter-ThinItalic.otf │ │ ├── Inter-V.ttf │ │ ├── NotoSerif-Bold.ttf │ │ ├── NotoSerif-BoldItalic.ttf │ │ ├── NotoSerif-Italic.ttf │ │ ├── NotoSerif-Regular.ttf │ │ ├── Soleil-Bold.ttf │ │ ├── Soleil-Book.otf │ │ ├── Soleil-Light.otf │ │ ├── Soleil-Regular.otf │ │ └── Soleil-SemiBold.otf │ └── images │ │ ├── SplashScreen.png │ │ ├── SplashScreen@2x.png │ │ ├── SplashScreen@3x.png │ │ ├── account.svg │ │ ├── accountIcon.svg │ │ ├── accountIconWarn.svg │ │ ├── add.svg │ │ ├── appLink.svg │ │ ├── arrow_recent.svg │ │ ├── attention.svg │ │ ├── backArrow.svg │ │ ├── background-map.png │ │ ├── backspace.svg │ │ ├── bars.svg │ │ ├── bellBubble.svg │ │ ├── blip.svg │ │ ├── blueHotspotIcon.svg │ │ ├── bluetooth.svg │ │ ├── bluetooth_icon.svg │ │ ├── burn.svg │ │ ├── carot-down-picker.svg │ │ ├── carot-down.svg │ │ ├── carot-left.svg │ │ ├── carot-right.svg │ │ ├── caution.svg │ │ ├── chartIcon.svg │ │ ├── check-circle.svg │ │ ├── check.svg │ │ ├── checkPlain.svg │ │ ├── checklist_block.svg │ │ ├── checklist_challenge_witness.svg │ │ ├── checklist_challengee.svg │ │ ├── checklist_challenger.svg │ │ ├── checklist_data.svg │ │ ├── checklist_status.svg │ │ ├── checklist_witness.svg │ │ ├── checkmark.svg │ │ ├── chevron-right.svg │ │ ├── circleLoader.png │ │ ├── circleLoader@2x.png │ │ ├── circleLoader@3x.png │ │ ├── clipboard.svg │ │ ├── close.svg │ │ ├── closeMenu.svg │ │ ├── closeModal.svg │ │ ├── cloud.svg │ │ ├── cog.svg │ │ ├── cooldown.svg │ │ ├── copy.svg │ │ ├── copyAddress.svg │ │ ├── current-location.png │ │ ├── current-location@2x.png │ │ ├── current-location@3x.png │ │ ├── data.svg │ │ ├── dc.svg │ │ ├── deployModeIcon.svg │ │ ├── dewiBubble.svg │ │ ├── diagnostic.svg │ │ ├── discord.svg │ │ ├── discovery_mode_icon.svg │ │ ├── distancePin.svg │ │ ├── dropdown-arrow.png │ │ ├── dropdown-arrow@2x.png │ │ ├── dropdown-arrow@3x.png │ │ ├── earnings-scale.svg │ │ ├── earnings_icon.svg │ │ ├── enable-notif.svg │ │ ├── eye-circle-button-yellow.svg │ │ ├── eye-circle-button.svg │ │ ├── fail.svg │ │ ├── filters-default.svg │ │ ├── filters-earnings.svg │ │ ├── filters-rewards.svg │ │ ├── filters-witness.svg │ │ ├── fingerprint.svg │ │ ├── firmware.svg │ │ ├── follow.svg │ │ ├── globe.svg │ │ ├── globeShortcut.svg │ │ ├── handle.svg │ │ ├── heart.svg │ │ ├── heartbeat.svg │ │ ├── helium-hotspot.svg │ │ ├── heliumBubble.svg │ │ ├── heliumLogo.svg │ │ ├── heliumNotification.svg │ │ ├── heliumReward.svg │ │ ├── hex-circle-button.svg │ │ ├── hex.svg │ │ ├── hexPill.svg │ │ ├── homeShortcut.svg │ │ ├── hotspot-icon-small.svg │ │ ├── hotspot-icon-white.svg │ │ ├── hotspot-setup1.png │ │ ├── hotspot-setup2.png │ │ ├── hotspot-setup3.png │ │ ├── hotspot-setup4.png │ │ ├── hotspot.svg │ │ ├── hotspotAdded.svg │ │ ├── hotspotBubble.svg │ │ ├── hotspotConnected.svg │ │ ├── hotspotIco.svg │ │ ├── hotspotIcon.svg │ │ ├── hotspotNotSelected.svg │ │ ├── hotspotOutlineIcon.svg │ │ ├── hotspotPillIcon.svg │ │ ├── hotspotResponse.png │ │ ├── hotspotResponse@2x.png │ │ ├── hotspotResponse@3x.png │ │ ├── hotspotTransfer.svg │ │ ├── hst.svg │ │ ├── info-hollow.svg │ │ ├── info.svg │ │ ├── infoError.svg │ │ ├── input-lock.svg │ │ ├── kabob.svg │ │ ├── learn.svg │ │ ├── lightbulb.svg │ │ ├── lightning.svg │ │ ├── link.svg │ │ ├── littleHotspot.svg │ │ ├── location-icon.svg │ │ ├── location-pin.svg │ │ ├── location.svg │ │ ├── locationMarker.svg │ │ ├── locationPurple.png │ │ ├── locationPurple@2x.png │ │ ├── locationPurple@3x.png │ │ ├── lock.svg │ │ ├── lockIcon.svg │ │ ├── lockIconRed.svg │ │ ├── lock_ico.svg │ │ ├── logo.svg │ │ ├── map-hex.svg │ │ ├── map-pin-up.png │ │ ├── map-pin-up@2x.png │ │ ├── map-pin-up@3x.png │ │ ├── map-pin.png │ │ ├── map-pin@2x.png │ │ ├── map-pin@3x.png │ │ ├── map.png │ │ ├── miner.svg │ │ ├── mini-icon.svg │ │ ├── mobile-icon.svg │ │ ├── moreMenu.svg │ │ ├── nearestHotspot.svg │ │ ├── newestHotspot.svg │ │ ├── no-location.svg │ │ ├── noLuck.svg │ │ ├── notConnected.svg │ │ ├── notification-arrow-right.png │ │ ├── notification-arrow-right@2x.png │ │ ├── notification-arrow-right@3x.png │ │ ├── notifications.svg │ │ ├── notificationsNew.svg │ │ ├── offlineHotspot.svg │ │ ├── paired.svg │ │ ├── partialSuccess.svg │ │ ├── password.svg │ │ ├── penalty.svg │ │ ├── phone.svg │ │ ├── power.svg │ │ ├── progress-hotspot.png │ │ ├── progress-spinner.png │ │ ├── progress-spinner@2x.png │ │ ├── progress-spinner@3x.png │ │ ├── qr.svg │ │ ├── radar-loader-green.png │ │ ├── radar-loader-green@2x.png │ │ ├── radar-loader-green@3x.png │ │ ├── radar-loader-purple.png │ │ ├── radar-loader-purple@2x.png │ │ ├── radar-loader-purple@3x.png │ │ ├── radio.svg │ │ ├── radio_selected.svg │ │ ├── reassert.svg │ │ ├── receive.svg │ │ ├── receiveCircle.svg │ │ ├── receivedHNT.svg │ │ ├── recent_searches.svg │ │ ├── reward-scaling.svg │ │ ├── rewards.svg │ │ ├── rewardsScale.svg │ │ ├── ring-loader-green.png │ │ ├── ring-loader-green@2x.png │ │ ├── ring-loader-green@3x.png │ │ ├── ring-loader-inner-green.png │ │ ├── ring-loader-inner-green@2x.png │ │ ├── ring-loader-inner-green@3x.png │ │ ├── ring-loader-inner-purple.png │ │ ├── ring-loader-inner-purple@2x.png │ │ ├── ring-loader-inner-purple@3x.png │ │ ├── ring-loader-purple.png │ │ ├── ring-loader-purple@2x.png │ │ ├── ring-loader-purple@3x.png │ │ ├── search.svg │ │ ├── searchShortcut.svg │ │ ├── search_tips.svg │ │ ├── secure.svg │ │ ├── security.svg │ │ ├── selected-hotspot-marker.png │ │ ├── selected-hotspot-marker@2x.png │ │ ├── selected-hotspot-marker@3x.png │ │ ├── send-circle.svg │ │ ├── send.svg │ │ ├── sendCircle.svg │ │ ├── sentHNT.svg │ │ ├── settings.svg │ │ ├── share-dots.svg │ │ ├── share.svg │ │ ├── shareAddress.svg │ │ ├── shareHotspot.svg │ │ ├── shortcutMask.svg │ │ ├── signal.svg │ │ ├── stakeCloud.svg │ │ ├── stake_validator.svg │ │ ├── topHotspot.svg │ │ ├── transferHotspotIcon.svg │ │ ├── transfer_icon.svg │ │ ├── transfer_validator_stake.svg │ │ ├── unstake_validator.svg │ │ ├── upArrow.svg │ │ ├── update_hotspot_icon.svg │ │ ├── validatorPillIcon.svg │ │ ├── versionHeartbeat.svg │ │ ├── visibility.svg │ │ ├── visibility_off.svg │ │ ├── walletIcon.svg │ │ ├── webLink.svg │ │ ├── welcome.png │ │ ├── welcome@2x.png │ │ ├── welcome@3x.png │ │ ├── wifi-icon.svg │ │ ├── wifi.svg │ │ ├── world.png │ │ ├── world@2x.png │ │ └── world@3x.png ├── components │ ├── Address.tsx │ ├── AnimatedBox.tsx │ ├── BSHandle.tsx │ ├── BSTouchableOpacityBox.tsx │ ├── BackButton.tsx │ ├── BackScreen.tsx │ ├── BarChart │ │ ├── Chart.tsx │ │ ├── ChartBar.tsx │ │ ├── ChartContainer.tsx │ │ ├── WalletChart.tsx │ │ ├── testActivityChart.ts │ │ └── types.ts │ ├── BlurBox.tsx │ ├── Box.tsx │ ├── Bullet.tsx │ ├── Button.tsx │ ├── Card.tsx │ ├── CardHandle.tsx │ ├── CarouselItem.tsx │ ├── CircleLoader.tsx │ ├── CircleProgress.tsx │ ├── CloseButton.tsx │ ├── ConfirmPinView.tsx │ ├── ContentPill.tsx │ ├── Coverage.tsx │ ├── CurrentLocationButton.tsx │ ├── Dot.tsx │ ├── Dropdown.tsx │ ├── EmojiBlip.tsx │ ├── FocusAwareStatusBar.tsx │ ├── FollowButton.tsx │ ├── FollowValidatorButton.tsx │ ├── GlobalHelpModal.tsx │ ├── HeliumActionSheet.tsx │ ├── HeliumActionSheetItem.tsx │ ├── HeliumBottomSheet.tsx │ ├── HeliumSelect.tsx │ ├── HeliumSelectItem.tsx │ ├── HotspotConfigurationPicker.tsx │ ├── HotspotListItem.tsx │ ├── HotspotPairingList.tsx │ ├── ImageBox.tsx │ ├── InputField.tsx │ ├── Keypad.tsx │ ├── Link.tsx │ ├── Loaders │ │ ├── RadarLoader.tsx │ │ └── RingLoader.tsx │ ├── LockedField.tsx │ ├── LockedHeader.tsx │ ├── Map.tsx │ ├── Notification.tsx │ ├── PinDisplay.tsx │ ├── ProgressBar.tsx │ ├── SafeAreaBox.tsx │ ├── SearchInput.tsx │ ├── SegmentedControl.tsx │ ├── SegmentedControlItem.tsx │ ├── SentinelScreen.tsx │ ├── ShareSheet.tsx │ ├── StatusBanner.tsx │ ├── SwipeButton.tsx │ ├── Text.tsx │ ├── TextInput.tsx │ ├── TextTransform.tsx │ ├── TouchableCircle.tsx │ ├── TouchableHighlightBox.tsx │ ├── TouchableOpacityBox.tsx │ ├── UserLocationMap.tsx │ ├── WithDebounce.tsx │ ├── Word.tsx │ └── WordList.tsx ├── constants │ ├── articles.ts │ └── wordlists │ │ └── english.json ├── features │ ├── hotspots │ │ ├── checklist │ │ │ ├── HotspotChecklist.tsx │ │ │ ├── HotspotChecklistCarousel.tsx │ │ │ └── HotspotChecklistItem.tsx │ │ ├── details │ │ │ ├── DenylistBadge.tsx │ │ │ ├── HexBadge.tsx │ │ │ ├── HotspotDetailChart.tsx │ │ │ ├── HotspotDetails.tsx │ │ │ ├── HotspotStatusBanner.tsx │ │ │ ├── RewardsHelper.ts │ │ │ ├── StatusBadge.tsx │ │ │ └── TimelinePicker.tsx │ │ ├── root │ │ │ ├── HotspotLocationUpdateScreen.tsx │ │ │ ├── HotspotSearch.tsx │ │ │ ├── HotspotSearchEmpty.tsx │ │ │ ├── HotspotSearchListItem.tsx │ │ │ ├── HotspotSheetHandle.tsx │ │ │ ├── HotspotsEmpty.tsx │ │ │ ├── HotspotsList.tsx │ │ │ ├── HotspotsNavigator.tsx │ │ │ ├── HotspotsPicker.tsx │ │ │ ├── HotspotsScreen.tsx │ │ │ ├── HotspotsTicker.tsx │ │ │ ├── HotspotsView.tsx │ │ │ ├── HotspotsViewHeader.tsx │ │ │ ├── ShortcutNav.tsx │ │ │ ├── WelcomeOverview.tsx │ │ │ └── hotspotTypes.tsx │ │ ├── settings │ │ │ ├── DiagnosticAttribute.tsx │ │ │ ├── DiagnosticLineItem.tsx │ │ │ ├── HotspotDiagnosticReport.tsx │ │ │ ├── HotspotDiagnostics.tsx │ │ │ ├── HotspotDiagnosticsConnection.tsx │ │ │ ├── HotspotItem.tsx │ │ │ ├── HotspotSettings.tsx │ │ │ ├── HotspotSettingsOption.tsx │ │ │ ├── HotspotSettingsProvider.tsx │ │ │ ├── HotspotSettingsTypes.ts │ │ │ ├── HotspotsDiagnosticOptions.tsx │ │ │ ├── ReassertAddressSearch.tsx │ │ │ ├── ReassertLocation.tsx │ │ │ ├── ReassertLocationFee.tsx │ │ │ ├── ReassertLocationUpdate.tsx │ │ │ ├── WifiSettings.tsx │ │ │ ├── WifiSettingsContainer.tsx │ │ │ ├── WifiSetup.tsx │ │ │ ├── discovery │ │ │ │ ├── DiscoveryMap.tsx │ │ │ │ ├── DiscoveryModeBegin.tsx │ │ │ │ ├── DiscoveryModeLocationOptions.tsx │ │ │ │ ├── DiscoveryModeResults.tsx │ │ │ │ ├── DiscoveryModeResultsCard.tsx │ │ │ │ ├── DiscoveryModeResultsCardItem.tsx │ │ │ │ ├── DiscoveryModeRoot.tsx │ │ │ │ ├── DiscoveryModeSearching.tsx │ │ │ │ ├── DiscoveryModeSessionInfo.tsx │ │ │ │ ├── DiscoveryModeSessionItem.tsx │ │ │ │ ├── dedupeDiscoveryResponses.ts │ │ │ │ ├── useDiscoveryPoll.ts │ │ │ │ └── useShareDiscovery.tsx │ │ │ ├── sendReport.ts │ │ │ └── updateHotspot │ │ │ │ ├── HotspotLocationPreview.tsx │ │ │ │ ├── UpdateHotspotConfig.tsx │ │ │ │ └── UpdateHotspotHeader.tsx │ │ ├── setup │ │ │ ├── AddressSearchModal.tsx │ │ │ ├── AntennaSetupScreen.tsx │ │ │ ├── FirmwareUpdateNeededScreen.tsx │ │ │ ├── HotspotSetupBluetoothError.tsx │ │ │ ├── HotspotSetupBluetoothInfoScreen.tsx │ │ │ ├── HotspotSetupBluetoothSuccess.tsx │ │ │ ├── HotspotSetupConfirmLocationScreen.tsx │ │ │ ├── HotspotSetupConnectingScreen.tsx │ │ │ ├── HotspotSetupDiagnosticsScreen.tsx │ │ │ ├── HotspotSetupEducationScreen.tsx │ │ │ ├── HotspotSetupExternalConfirmScreen.tsx │ │ │ ├── HotspotSetupExternalScreen.tsx │ │ │ ├── HotspotSetupLocationInfoScreen.tsx │ │ │ ├── HotspotSetupNavigator.tsx │ │ │ ├── HotspotSetupPickHotspotScreen.tsx │ │ │ ├── HotspotSetupPickLocationScreen.tsx │ │ │ ├── HotspotSetupPickWifiScreen.tsx │ │ │ ├── HotspotSetupPowerScreen.tsx │ │ │ ├── HotspotSetupScanWifiError.tsx │ │ │ ├── HotspotSetupScanWifiSuccess.tsx │ │ │ ├── HotspotSetupScanningScreen.tsx │ │ │ ├── HotspotSetupSelectionListItem.tsx │ │ │ ├── HotspotSetupSelectionScreen.tsx │ │ │ ├── HotspotSetupSkipLocationScreen.tsx │ │ │ ├── HotspotSetupWifiConnectingScreen.tsx │ │ │ ├── HotspotSetupWifiScreen.tsx │ │ │ ├── HotspotTxnsProgressScreen.tsx │ │ │ ├── NotHotspotOwnerError.tsx │ │ │ ├── OnboardingErrorScreen.tsx │ │ │ ├── OwnedHotspotError.tsx │ │ │ ├── hotspotSetupSlides.ts │ │ │ └── hotspotSetupTypes.tsx │ │ ├── transfers │ │ │ ├── HotspotTransfer.tsx │ │ │ ├── TransferBanner.tsx │ │ │ └── TransferRequests.tsx │ │ └── useHotspotSync.tsx │ ├── lock │ │ └── LockScreen.tsx │ ├── map │ │ ├── MapFilterModal.tsx │ │ └── MapFiltersButton.tsx │ ├── moreTab │ │ ├── ConfirmSignoutScreen.tsx │ │ ├── MoreNavigator.tsx │ │ ├── more │ │ │ ├── AppInfoItem.tsx │ │ │ ├── DeployModeModal.tsx │ │ │ ├── DiscordItem.tsx │ │ │ ├── MoreListItem.tsx │ │ │ ├── MoreScreen.tsx │ │ │ └── useAuthIntervals.ts │ │ ├── moreTypes.tsx │ │ └── reveal │ │ │ ├── RevealPrivateKeyScreen.tsx │ │ │ └── RevealWordsScreen.tsx │ ├── notifications │ │ ├── EmptyNotifications.tsx │ │ ├── NotificationGroupHeader.tsx │ │ ├── NotificationItem.tsx │ │ ├── NotificationList.tsx │ │ ├── NotificationShow.tsx │ │ └── NotificationsScreen.tsx │ ├── onboarding │ │ ├── OnboardingNavigator.tsx │ │ ├── accountConfirmPin │ │ │ └── AccountConfirmPinScreen.tsx │ │ ├── accountCreatePassphrase │ │ │ └── AccountCreatePassphraseScreen.tsx │ │ ├── accountCreatePin │ │ │ └── AccountCreatePinScreen.tsx │ │ ├── accountEnterPassphrase │ │ │ ├── AccountEnterPassphraseScreen.tsx │ │ │ ├── ConfirmWordsScreen.tsx │ │ │ └── PhraseChip.tsx │ │ ├── accountImport │ │ │ ├── AccountImportScreen.tsx │ │ │ ├── MatchingWord.tsx │ │ │ └── PassphraseAutocomplete.tsx │ │ ├── accountImportComplete │ │ │ └── AccountImportCompleteScreen.tsx │ │ ├── accountPassphraseGeneration │ │ │ └── AccountPassphraseGenerationScreen.tsx │ │ ├── accountPassphraseWarning │ │ │ └── AccountPassphraseWarningScreen.tsx │ │ ├── importAccountConfirm │ │ │ ├── ImportAccountConfirmScreen.tsx │ │ │ └── ImportReplaceWordModal.tsx │ │ ├── onboardingTypes.ts │ │ └── welcome │ │ │ └── WelcomeScreen.tsx │ ├── security │ │ └── SecurityScreen.tsx │ ├── txnDelegatation │ │ ├── LinkWallet.tsx │ │ └── SignHotspot.tsx │ ├── validators │ │ ├── ConsensusBanner.tsx │ │ ├── ValidatorCooldown.tsx │ │ ├── ValidatorDetails.tsx │ │ ├── ValidatorDetailsConsensus.tsx │ │ ├── ValidatorDetailsConsensusItem.tsx │ │ ├── ValidatorDetailsOverview.tsx │ │ ├── ValidatorDetailsPenalties.tsx │ │ ├── ValidatorListItem.tsx │ │ ├── ValidatorTimeRange.tsx │ │ └── explorer │ │ │ ├── ConsensusHistory.tsx │ │ │ └── ValidatorExplorer.tsx │ └── wallet │ │ ├── WalletNavigator.tsx │ │ ├── root │ │ ├── ActivityCard │ │ │ ├── ActivityCard.tsx │ │ │ ├── ActivityCardHeader.tsx │ │ │ ├── ActivityCardListView.tsx │ │ │ ├── ActivityCardLoading.tsx │ │ │ ├── ActivityItem.tsx │ │ │ └── SkeletonActivityItem.tsx │ │ ├── ActivityDetails │ │ │ ├── ActivityDetails.tsx │ │ │ ├── ActivityDetailsHeader.tsx │ │ │ ├── ActivityRewardItem.tsx │ │ │ ├── ActivityRewardLine.tsx │ │ │ ├── Burn.tsx │ │ │ ├── HotspotTransaction.tsx │ │ │ ├── Payment.tsx │ │ │ ├── PaymentItem.tsx │ │ │ ├── Redeem.tsx │ │ │ ├── Rewards.tsx │ │ │ ├── StakeValidator.tsx │ │ │ ├── TransferStake.tsx │ │ │ ├── UnknownTransaction.tsx │ │ │ └── UnstakeValidator.tsx │ │ ├── BalanceCard │ │ │ ├── BalanceCard.tsx │ │ │ └── CurrencyBadge.tsx │ │ ├── WalletAddress.tsx │ │ ├── WalletHeader.tsx │ │ ├── WalletHeaderCondensed.tsx │ │ ├── WalletScreen.tsx │ │ ├── WalletView.tsx │ │ ├── useActivityItem.tsx │ │ └── walletTypes.ts │ │ ├── scan │ │ ├── Crosshair.tsx │ │ ├── ScanNavigator.tsx │ │ ├── ScanScreen.tsx │ │ ├── ScanView.tsx │ │ └── scanTypes.ts │ │ └── send │ │ ├── SendAmountAvailableBanner.tsx │ │ ├── SendCompleteScreen.tsx │ │ ├── SendDetailsForm.tsx │ │ ├── SendForm.tsx │ │ ├── SendHeader.tsx │ │ ├── SendNavigator.tsx │ │ ├── SendScreen.tsx │ │ ├── SendView.tsx │ │ ├── __test__ │ │ ├── SendView.de.test.tsx │ │ ├── SendView.test.tsx │ │ └── common.tsx │ │ └── sendTypes.ts ├── hooks │ └── useSubmitTxn.ts ├── locales │ ├── en.ts │ ├── ja.ts │ ├── ko.ts │ └── zh.ts ├── makers │ ├── README.md │ ├── __example__ │ │ ├── antennas.ts │ │ ├── hotspot.svg │ │ ├── hotspots.ts │ │ └── index.ts │ ├── antennaMakerTypes.ts │ ├── bobcat │ │ ├── antennas.ts │ │ ├── bobcat.svg │ │ ├── hotspots.ts │ │ └── index.ts │ ├── clodpi │ │ ├── antennas.ts │ │ ├── clodpi-pro.svg │ │ ├── hotspots.ts │ │ └── index.ts │ ├── controllino │ │ ├── antennas.ts │ │ ├── controllinohotspot.svg │ │ ├── hotspots.ts │ │ └── index.ts │ ├── cotx │ │ ├── antennas.ts │ │ ├── cotx.svg │ │ ├── hotspots.ts │ │ └── index.ts │ ├── custom │ │ └── antennas.ts │ ├── dragino │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── hp0d.svg │ │ └── index.ts │ ├── finestra │ │ ├── antennas.ts │ │ ├── finestra.svg │ │ ├── hotspots.ts │ │ └── index.ts │ ├── freedomfi │ │ ├── antennas.ts │ │ ├── hotspot.svg │ │ ├── hotspots.ts │ │ └── index.ts │ ├── helium │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ └── index.ts │ ├── heltec │ │ ├── Heltec_Indoor.svg │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ └── index.ts │ ├── hotspotMakerTypes.ts │ ├── hummingbird │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── hummingbird.svg │ │ └── index.ts │ ├── index.ts │ ├── kerlink │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── ifemto.svg │ │ ├── ifemto_evo.svg │ │ ├── index.ts │ │ └── istation.svg │ ├── linxdot │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ └── linxdot.svg │ ├── longAP │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ └── longap-one.svg │ ├── makerType.ts │ ├── merryIoT │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ └── merryIoT.svg │ ├── midas │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ └── midas.svg │ ├── milesight │ │ ├── antennas.ts │ │ ├── hotspot_65.svg │ │ ├── hotspot_67.svg │ │ ├── hotspots.ts │ │ └── index.ts │ ├── nebra │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ ├── nebra-in.svg │ │ └── nebra-out.svg │ ├── panther │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ ├── panther-x2.svg │ │ └── panther.svg │ ├── pisces │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ └── pisces.svg │ ├── rak │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ └── rak.svg │ ├── risinghf │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ └── risinghf-out.svg │ └── sensecap │ │ ├── antennas.ts │ │ ├── hotspots.ts │ │ ├── index.ts │ │ └── sensecap-m1.svg ├── navigation │ ├── NavigationRoot.tsx │ ├── defaultScreenOptions.ts │ ├── main │ │ ├── HomeNavigator.tsx │ │ ├── MainTabNavigator.tsx │ │ ├── TabBarIcon.tsx │ │ └── tabTypes.ts │ └── navigator.ts ├── providers │ ├── AppLinkProvider.tsx │ ├── BluetoothProvider.tsx │ ├── ConnectedHotspotProvider.tsx │ ├── LanguageProvider.tsx │ └── appLinkTypes.ts ├── store │ ├── account │ │ └── accountSlice.ts │ ├── activity │ │ └── activitySlice.ts │ ├── connectedHotspot │ │ └── connectedHotspotSlice.ts │ ├── discovery │ │ ├── discoverySlice.ts │ │ └── discoveryTypes.ts │ ├── features │ │ └── featuresSlice.ts │ ├── helium │ │ ├── StatusTypes.ts │ │ ├── heliumDataSlice.ts │ │ └── heliumStatusSlice.ts │ ├── hotspotDetails │ │ ├── hotspotChecklistSlice.ts │ │ └── hotspotDetailsSlice.ts │ ├── hotspotSearch │ │ └── hotspotSearchSlice.ts │ ├── hotspots │ │ ├── hotspotOnboardingSlice.ts │ │ └── hotspotsSlice.ts │ ├── location │ │ └── locationSlice.ts │ ├── notifications │ │ └── notificationSlice.ts │ ├── rewards │ │ └── rewardsSlice.ts │ ├── rootReducer.ts │ ├── solana │ │ └── solanaStatusApi.ts │ ├── store.ts │ ├── user │ │ └── appSlice.ts │ └── validators │ │ └── validatorsSlice.ts ├── theme │ ├── theme.ts │ └── themeHooks.ts ├── utils │ ├── DateModule.ts │ ├── StatusClient.ts │ ├── accountUtils.ts │ ├── animateTransition.ts │ ├── appDataClient.ts │ ├── assertLocationUtils.tsx │ ├── bluetooth │ │ ├── bluetoothDataParser.ts │ │ ├── bluetoothTypes.ts │ │ └── useBluetooth.tsx │ ├── cacheUtils.ts │ ├── coinGeckoClient.ts │ ├── colorUtils.ts │ ├── config.ts │ ├── createText.ts │ ├── explorerClient.ts │ ├── fees.ts │ ├── formatDistance.js │ ├── googlePlaces.ts │ ├── h3Utils.ts │ ├── hotspotUtils.ts │ ├── i18n │ │ ├── i18nTypes.ts │ │ └── index.tsx │ ├── layout.ts │ ├── location.ts │ ├── logger.ts │ ├── mapUtils.ts │ ├── parseMarkup.tsx │ ├── polyfill.js │ ├── secureAccount.ts │ ├── sendMail.ts │ ├── sleep.ts │ ├── stakingClient.ts │ ├── stringUtils.ts │ ├── testUtils.js │ ├── timeUtils.ts │ ├── transactions.ts │ ├── useAccountSettings.ts │ ├── useAlert.ts │ ├── useCurrency.ts │ ├── useDevice.ts │ ├── useGetLocation.ts │ ├── useHaptic.ts │ ├── useHotspot.ts │ ├── useKeyboardHeight.ts │ ├── useMount.tsx │ ├── usePermissionManager.ts │ ├── usePrevious.ts │ ├── useToggle.ts │ ├── useVisible.ts │ ├── validatorUtils.ts │ └── walletClient.ts └── whyDidYouRender.ts ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/.bundle/config -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | --install.frozen-lockfile true 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/README.md -------------------------------------------------------------------------------- /ReactotronConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ReactotronConfig.ts -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/InputMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/InputMono-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/InputMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/InputMono-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/InputMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/InputMono-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/InputMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/InputMono-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-Black.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-BlackItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-Bold.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-BoldItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-ExtraBold.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-ExtraBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-ExtraBoldItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-ExtraLight.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-ExtraLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-ExtraLightItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-Italic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-Light.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-LightItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-Medium.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-MediumItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-SemiBold.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-SemiBoldItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-Thin.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-ThinItalic.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-V.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Inter-V.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/NotoSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/NotoSerif-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/NotoSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/NotoSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/NotoSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/NotoSerif-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/NotoSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/NotoSerif-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Soleil-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Soleil-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Soleil-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Soleil-Book.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Soleil-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Soleil-Light.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Soleil-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Soleil-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Soleil-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/assets/fonts/Soleil-SemiBold.otf -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/java/com/helium/wallet/DateModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/java/com/helium/wallet/DateModule.java -------------------------------------------------------------------------------- /android/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/drawable/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/app.json -------------------------------------------------------------------------------- /appcenter-post-clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/appcenter-post-clone.sh -------------------------------------------------------------------------------- /appcenter-pre-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/appcenter-pre-build.sh -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/declarations.d.ts -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/icon.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Helium-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium-Bridging-Header.h -------------------------------------------------------------------------------- /ios/Helium.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Helium.xcodeproj/xcshareddata/xcschemes/Helium.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium.xcodeproj/xcshareddata/xcschemes/Helium.xcscheme -------------------------------------------------------------------------------- /ios/Helium.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Helium/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium/AppDelegate.h -------------------------------------------------------------------------------- /ios/Helium/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium/AppDelegate.m -------------------------------------------------------------------------------- /ios/Helium/Helium.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium/Helium.entitlements -------------------------------------------------------------------------------- /ios/Helium/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Helium/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Helium/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium/Info.plist -------------------------------------------------------------------------------- /ios/Helium/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Helium/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Helium/main.m -------------------------------------------------------------------------------- /ios/HeliumTests/HeliumTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumTests/HeliumTests.m -------------------------------------------------------------------------------- /ios/HeliumTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumTests/Info.plist -------------------------------------------------------------------------------- /ios/HeliumWidget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidget/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/HeliumWidget/HeliumWidget.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidget/HeliumWidget.intentdefinition -------------------------------------------------------------------------------- /ios/HeliumWidget/HeliumWidgetBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidget/HeliumWidgetBundle.swift -------------------------------------------------------------------------------- /ios/HeliumWidget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidget/Info.plist -------------------------------------------------------------------------------- /ios/HeliumWidget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidget/README.md -------------------------------------------------------------------------------- /ios/HeliumWidget/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidget/Utils.swift -------------------------------------------------------------------------------- /ios/HeliumWidget/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidget/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/HeliumWidget/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidget/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/HeliumWidget/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidget/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/HeliumWidgetExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidgetExtension.entitlements -------------------------------------------------------------------------------- /ios/HeliumWidgetExtensionDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/HeliumWidgetExtensionDebug.entitlements -------------------------------------------------------------------------------- /ios/OneSignalNotificationServiceExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/OneSignalNotificationServiceExtension/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/RCTDateModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/RCTDateModule.h -------------------------------------------------------------------------------- /ios/RCTDateModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/RCTDateModule.m -------------------------------------------------------------------------------- /ios/WidgetKitHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/WidgetKitHelper.swift -------------------------------------------------------------------------------- /ios/bridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/ios/bridge.swift -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/jest.config.js -------------------------------------------------------------------------------- /jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/jestSetup.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/package.json -------------------------------------------------------------------------------- /patches/@helium+wallet-link+4.7.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/patches/@helium+wallet-link+4.7.5.patch -------------------------------------------------------------------------------- /patches/@react-native-community+blur+3.6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/patches/@react-native-community+blur+3.6.0.patch -------------------------------------------------------------------------------- /patches/react-native+0.70.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/patches/react-native+0.70.6.patch -------------------------------------------------------------------------------- /patches/react-native-currency-format+1.0.19.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/patches/react-native-currency-format+1.0.19.patch -------------------------------------------------------------------------------- /patches/react-native-keyboard-aware-scroll-view+0.9.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/patches/react-native-keyboard-aware-scroll-view+0.9.4.patch -------------------------------------------------------------------------------- /patches/react-native-skeleton-placeholder+3.0.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/patches/react-native-skeleton-placeholder+3.0.4.patch -------------------------------------------------------------------------------- /patches/react-native-sodium+0.4.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/patches/react-native-sodium+0.4.0.patch -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__fixtures__/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/__fixtures__/account.ts -------------------------------------------------------------------------------- /src/__mocks__/expo-barcode-scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/__mocks__/expo-barcode-scanner.js -------------------------------------------------------------------------------- /src/__mocks__/expo-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/__mocks__/expo-location.js -------------------------------------------------------------------------------- /src/__mocks__/fileMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/__mocks__/fileMock.js -------------------------------------------------------------------------------- /src/__mocks__/h3-js.js: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /src/__mocks__/react-native-ble-plx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/__mocks__/react-native-ble-plx.js -------------------------------------------------------------------------------- /src/__mocks__/react-native-localize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/__mocks__/react-native-localize.js -------------------------------------------------------------------------------- /src/__mocks__/react-native-onesignal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/__mocks__/react-native-onesignal.js -------------------------------------------------------------------------------- /src/__mocks__/react-native-simple-toast.js: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /src/__mocks__/reactotron-react-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/__mocks__/reactotron-react-native.js -------------------------------------------------------------------------------- /src/apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/apple-app-site-association -------------------------------------------------------------------------------- /src/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assetlinks.json -------------------------------------------------------------------------------- /src/assets/animations/importAccountLoader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/animations/importAccountLoader.json -------------------------------------------------------------------------------- /src/assets/animations/sendAnimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/animations/sendAnimation.json -------------------------------------------------------------------------------- /src/assets/fonts/InputMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/InputMono-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/InputMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/InputMono-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/InputMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/InputMono-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/InputMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/InputMono-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-Black.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-BlackItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-Bold.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-BoldItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-ExtraBold.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-ExtraBoldItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-ExtraLight.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-ExtraLightItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-Italic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-Light.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-LightItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-Medium.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-MediumItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-Regular.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-SemiBold.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-SemiBoldItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-Thin.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-ThinItalic.otf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-V.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Inter-V.ttf -------------------------------------------------------------------------------- /src/assets/fonts/NotoSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/NotoSerif-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/NotoSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/NotoSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/NotoSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/NotoSerif-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/NotoSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/NotoSerif-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Soleil-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Soleil-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Soleil-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Soleil-Book.otf -------------------------------------------------------------------------------- /src/assets/fonts/Soleil-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Soleil-Light.otf -------------------------------------------------------------------------------- /src/assets/fonts/Soleil-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Soleil-Regular.otf -------------------------------------------------------------------------------- /src/assets/fonts/Soleil-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/fonts/Soleil-SemiBold.otf -------------------------------------------------------------------------------- /src/assets/images/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/SplashScreen.png -------------------------------------------------------------------------------- /src/assets/images/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/SplashScreen@2x.png -------------------------------------------------------------------------------- /src/assets/images/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/SplashScreen@3x.png -------------------------------------------------------------------------------- /src/assets/images/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/account.svg -------------------------------------------------------------------------------- /src/assets/images/accountIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/accountIcon.svg -------------------------------------------------------------------------------- /src/assets/images/accountIconWarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/accountIconWarn.svg -------------------------------------------------------------------------------- /src/assets/images/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/add.svg -------------------------------------------------------------------------------- /src/assets/images/appLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/appLink.svg -------------------------------------------------------------------------------- /src/assets/images/arrow_recent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/arrow_recent.svg -------------------------------------------------------------------------------- /src/assets/images/attention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/attention.svg -------------------------------------------------------------------------------- /src/assets/images/backArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/backArrow.svg -------------------------------------------------------------------------------- /src/assets/images/background-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/background-map.png -------------------------------------------------------------------------------- /src/assets/images/backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/backspace.svg -------------------------------------------------------------------------------- /src/assets/images/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/bars.svg -------------------------------------------------------------------------------- /src/assets/images/bellBubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/bellBubble.svg -------------------------------------------------------------------------------- /src/assets/images/blip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/blip.svg -------------------------------------------------------------------------------- /src/assets/images/blueHotspotIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/blueHotspotIcon.svg -------------------------------------------------------------------------------- /src/assets/images/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/bluetooth.svg -------------------------------------------------------------------------------- /src/assets/images/bluetooth_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/bluetooth_icon.svg -------------------------------------------------------------------------------- /src/assets/images/burn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/burn.svg -------------------------------------------------------------------------------- /src/assets/images/carot-down-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/carot-down-picker.svg -------------------------------------------------------------------------------- /src/assets/images/carot-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/carot-down.svg -------------------------------------------------------------------------------- /src/assets/images/carot-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/carot-left.svg -------------------------------------------------------------------------------- /src/assets/images/carot-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/carot-right.svg -------------------------------------------------------------------------------- /src/assets/images/caution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/caution.svg -------------------------------------------------------------------------------- /src/assets/images/chartIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/chartIcon.svg -------------------------------------------------------------------------------- /src/assets/images/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/check-circle.svg -------------------------------------------------------------------------------- /src/assets/images/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/check.svg -------------------------------------------------------------------------------- /src/assets/images/checkPlain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/checkPlain.svg -------------------------------------------------------------------------------- /src/assets/images/checklist_block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/checklist_block.svg -------------------------------------------------------------------------------- /src/assets/images/checklist_challenge_witness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/checklist_challenge_witness.svg -------------------------------------------------------------------------------- /src/assets/images/checklist_challengee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/checklist_challengee.svg -------------------------------------------------------------------------------- /src/assets/images/checklist_challenger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/checklist_challenger.svg -------------------------------------------------------------------------------- /src/assets/images/checklist_data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/checklist_data.svg -------------------------------------------------------------------------------- /src/assets/images/checklist_status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/checklist_status.svg -------------------------------------------------------------------------------- /src/assets/images/checklist_witness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/checklist_witness.svg -------------------------------------------------------------------------------- /src/assets/images/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/checkmark.svg -------------------------------------------------------------------------------- /src/assets/images/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/chevron-right.svg -------------------------------------------------------------------------------- /src/assets/images/circleLoader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/circleLoader.png -------------------------------------------------------------------------------- /src/assets/images/circleLoader@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/circleLoader@2x.png -------------------------------------------------------------------------------- /src/assets/images/circleLoader@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/circleLoader@3x.png -------------------------------------------------------------------------------- /src/assets/images/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/clipboard.svg -------------------------------------------------------------------------------- /src/assets/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/close.svg -------------------------------------------------------------------------------- /src/assets/images/closeMenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/closeMenu.svg -------------------------------------------------------------------------------- /src/assets/images/closeModal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/closeModal.svg -------------------------------------------------------------------------------- /src/assets/images/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/cloud.svg -------------------------------------------------------------------------------- /src/assets/images/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/cog.svg -------------------------------------------------------------------------------- /src/assets/images/cooldown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/cooldown.svg -------------------------------------------------------------------------------- /src/assets/images/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/copy.svg -------------------------------------------------------------------------------- /src/assets/images/copyAddress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/copyAddress.svg -------------------------------------------------------------------------------- /src/assets/images/current-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/current-location.png -------------------------------------------------------------------------------- /src/assets/images/current-location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/current-location@2x.png -------------------------------------------------------------------------------- /src/assets/images/current-location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/current-location@3x.png -------------------------------------------------------------------------------- /src/assets/images/data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/data.svg -------------------------------------------------------------------------------- /src/assets/images/dc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/dc.svg -------------------------------------------------------------------------------- /src/assets/images/deployModeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/deployModeIcon.svg -------------------------------------------------------------------------------- /src/assets/images/dewiBubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/dewiBubble.svg -------------------------------------------------------------------------------- /src/assets/images/diagnostic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/diagnostic.svg -------------------------------------------------------------------------------- /src/assets/images/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/discord.svg -------------------------------------------------------------------------------- /src/assets/images/discovery_mode_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/discovery_mode_icon.svg -------------------------------------------------------------------------------- /src/assets/images/distancePin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/distancePin.svg -------------------------------------------------------------------------------- /src/assets/images/dropdown-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/dropdown-arrow.png -------------------------------------------------------------------------------- /src/assets/images/dropdown-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/dropdown-arrow@2x.png -------------------------------------------------------------------------------- /src/assets/images/dropdown-arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/dropdown-arrow@3x.png -------------------------------------------------------------------------------- /src/assets/images/earnings-scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/earnings-scale.svg -------------------------------------------------------------------------------- /src/assets/images/earnings_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/earnings_icon.svg -------------------------------------------------------------------------------- /src/assets/images/enable-notif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/enable-notif.svg -------------------------------------------------------------------------------- /src/assets/images/eye-circle-button-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/eye-circle-button-yellow.svg -------------------------------------------------------------------------------- /src/assets/images/eye-circle-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/eye-circle-button.svg -------------------------------------------------------------------------------- /src/assets/images/fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/fail.svg -------------------------------------------------------------------------------- /src/assets/images/filters-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/filters-default.svg -------------------------------------------------------------------------------- /src/assets/images/filters-earnings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/filters-earnings.svg -------------------------------------------------------------------------------- /src/assets/images/filters-rewards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/filters-rewards.svg -------------------------------------------------------------------------------- /src/assets/images/filters-witness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/filters-witness.svg -------------------------------------------------------------------------------- /src/assets/images/fingerprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/fingerprint.svg -------------------------------------------------------------------------------- /src/assets/images/firmware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/firmware.svg -------------------------------------------------------------------------------- /src/assets/images/follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/follow.svg -------------------------------------------------------------------------------- /src/assets/images/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/globe.svg -------------------------------------------------------------------------------- /src/assets/images/globeShortcut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/globeShortcut.svg -------------------------------------------------------------------------------- /src/assets/images/handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/handle.svg -------------------------------------------------------------------------------- /src/assets/images/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/heart.svg -------------------------------------------------------------------------------- /src/assets/images/heartbeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/heartbeat.svg -------------------------------------------------------------------------------- /src/assets/images/helium-hotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/helium-hotspot.svg -------------------------------------------------------------------------------- /src/assets/images/heliumBubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/heliumBubble.svg -------------------------------------------------------------------------------- /src/assets/images/heliumLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/heliumLogo.svg -------------------------------------------------------------------------------- /src/assets/images/heliumNotification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/heliumNotification.svg -------------------------------------------------------------------------------- /src/assets/images/heliumReward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/heliumReward.svg -------------------------------------------------------------------------------- /src/assets/images/hex-circle-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hex-circle-button.svg -------------------------------------------------------------------------------- /src/assets/images/hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hex.svg -------------------------------------------------------------------------------- /src/assets/images/hexPill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hexPill.svg -------------------------------------------------------------------------------- /src/assets/images/homeShortcut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/homeShortcut.svg -------------------------------------------------------------------------------- /src/assets/images/hotspot-icon-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspot-icon-small.svg -------------------------------------------------------------------------------- /src/assets/images/hotspot-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspot-icon-white.svg -------------------------------------------------------------------------------- /src/assets/images/hotspot-setup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspot-setup1.png -------------------------------------------------------------------------------- /src/assets/images/hotspot-setup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspot-setup2.png -------------------------------------------------------------------------------- /src/assets/images/hotspot-setup3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspot-setup3.png -------------------------------------------------------------------------------- /src/assets/images/hotspot-setup4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspot-setup4.png -------------------------------------------------------------------------------- /src/assets/images/hotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspot.svg -------------------------------------------------------------------------------- /src/assets/images/hotspotAdded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotAdded.svg -------------------------------------------------------------------------------- /src/assets/images/hotspotBubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotBubble.svg -------------------------------------------------------------------------------- /src/assets/images/hotspotConnected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotConnected.svg -------------------------------------------------------------------------------- /src/assets/images/hotspotIco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotIco.svg -------------------------------------------------------------------------------- /src/assets/images/hotspotIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotIcon.svg -------------------------------------------------------------------------------- /src/assets/images/hotspotNotSelected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotNotSelected.svg -------------------------------------------------------------------------------- /src/assets/images/hotspotOutlineIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotOutlineIcon.svg -------------------------------------------------------------------------------- /src/assets/images/hotspotPillIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotPillIcon.svg -------------------------------------------------------------------------------- /src/assets/images/hotspotResponse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotResponse.png -------------------------------------------------------------------------------- /src/assets/images/hotspotResponse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotResponse@2x.png -------------------------------------------------------------------------------- /src/assets/images/hotspotResponse@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotResponse@3x.png -------------------------------------------------------------------------------- /src/assets/images/hotspotTransfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hotspotTransfer.svg -------------------------------------------------------------------------------- /src/assets/images/hst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/hst.svg -------------------------------------------------------------------------------- /src/assets/images/info-hollow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/info-hollow.svg -------------------------------------------------------------------------------- /src/assets/images/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/info.svg -------------------------------------------------------------------------------- /src/assets/images/infoError.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/infoError.svg -------------------------------------------------------------------------------- /src/assets/images/input-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/input-lock.svg -------------------------------------------------------------------------------- /src/assets/images/kabob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/kabob.svg -------------------------------------------------------------------------------- /src/assets/images/learn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/learn.svg -------------------------------------------------------------------------------- /src/assets/images/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/lightbulb.svg -------------------------------------------------------------------------------- /src/assets/images/lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/lightning.svg -------------------------------------------------------------------------------- /src/assets/images/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/link.svg -------------------------------------------------------------------------------- /src/assets/images/littleHotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/littleHotspot.svg -------------------------------------------------------------------------------- /src/assets/images/location-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/location-icon.svg -------------------------------------------------------------------------------- /src/assets/images/location-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/location-pin.svg -------------------------------------------------------------------------------- /src/assets/images/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/location.svg -------------------------------------------------------------------------------- /src/assets/images/locationMarker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/locationMarker.svg -------------------------------------------------------------------------------- /src/assets/images/locationPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/locationPurple.png -------------------------------------------------------------------------------- /src/assets/images/locationPurple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/locationPurple@2x.png -------------------------------------------------------------------------------- /src/assets/images/locationPurple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/locationPurple@3x.png -------------------------------------------------------------------------------- /src/assets/images/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/lock.svg -------------------------------------------------------------------------------- /src/assets/images/lockIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/lockIcon.svg -------------------------------------------------------------------------------- /src/assets/images/lockIconRed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/lockIconRed.svg -------------------------------------------------------------------------------- /src/assets/images/lock_ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/lock_ico.svg -------------------------------------------------------------------------------- /src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/assets/images/map-hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/map-hex.svg -------------------------------------------------------------------------------- /src/assets/images/map-pin-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/map-pin-up.png -------------------------------------------------------------------------------- /src/assets/images/map-pin-up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/map-pin-up@2x.png -------------------------------------------------------------------------------- /src/assets/images/map-pin-up@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/map-pin-up@3x.png -------------------------------------------------------------------------------- /src/assets/images/map-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/map-pin.png -------------------------------------------------------------------------------- /src/assets/images/map-pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/map-pin@2x.png -------------------------------------------------------------------------------- /src/assets/images/map-pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/map-pin@3x.png -------------------------------------------------------------------------------- /src/assets/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/map.png -------------------------------------------------------------------------------- /src/assets/images/miner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/miner.svg -------------------------------------------------------------------------------- /src/assets/images/mini-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/mini-icon.svg -------------------------------------------------------------------------------- /src/assets/images/mobile-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/mobile-icon.svg -------------------------------------------------------------------------------- /src/assets/images/moreMenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/moreMenu.svg -------------------------------------------------------------------------------- /src/assets/images/nearestHotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/nearestHotspot.svg -------------------------------------------------------------------------------- /src/assets/images/newestHotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/newestHotspot.svg -------------------------------------------------------------------------------- /src/assets/images/no-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/no-location.svg -------------------------------------------------------------------------------- /src/assets/images/noLuck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/noLuck.svg -------------------------------------------------------------------------------- /src/assets/images/notConnected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/notConnected.svg -------------------------------------------------------------------------------- /src/assets/images/notification-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/notification-arrow-right.png -------------------------------------------------------------------------------- /src/assets/images/notification-arrow-right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/notification-arrow-right@2x.png -------------------------------------------------------------------------------- /src/assets/images/notification-arrow-right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/notification-arrow-right@3x.png -------------------------------------------------------------------------------- /src/assets/images/notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/notifications.svg -------------------------------------------------------------------------------- /src/assets/images/notificationsNew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/notificationsNew.svg -------------------------------------------------------------------------------- /src/assets/images/offlineHotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/offlineHotspot.svg -------------------------------------------------------------------------------- /src/assets/images/paired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/paired.svg -------------------------------------------------------------------------------- /src/assets/images/partialSuccess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/partialSuccess.svg -------------------------------------------------------------------------------- /src/assets/images/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/password.svg -------------------------------------------------------------------------------- /src/assets/images/penalty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/penalty.svg -------------------------------------------------------------------------------- /src/assets/images/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/phone.svg -------------------------------------------------------------------------------- /src/assets/images/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/power.svg -------------------------------------------------------------------------------- /src/assets/images/progress-hotspot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/progress-hotspot.png -------------------------------------------------------------------------------- /src/assets/images/progress-spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/progress-spinner.png -------------------------------------------------------------------------------- /src/assets/images/progress-spinner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/progress-spinner@2x.png -------------------------------------------------------------------------------- /src/assets/images/progress-spinner@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/progress-spinner@3x.png -------------------------------------------------------------------------------- /src/assets/images/qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/qr.svg -------------------------------------------------------------------------------- /src/assets/images/radar-loader-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/radar-loader-green.png -------------------------------------------------------------------------------- /src/assets/images/radar-loader-green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/radar-loader-green@2x.png -------------------------------------------------------------------------------- /src/assets/images/radar-loader-green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/radar-loader-green@3x.png -------------------------------------------------------------------------------- /src/assets/images/radar-loader-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/radar-loader-purple.png -------------------------------------------------------------------------------- /src/assets/images/radar-loader-purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/radar-loader-purple@2x.png -------------------------------------------------------------------------------- /src/assets/images/radar-loader-purple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/radar-loader-purple@3x.png -------------------------------------------------------------------------------- /src/assets/images/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/radio.svg -------------------------------------------------------------------------------- /src/assets/images/radio_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/radio_selected.svg -------------------------------------------------------------------------------- /src/assets/images/reassert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/reassert.svg -------------------------------------------------------------------------------- /src/assets/images/receive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/receive.svg -------------------------------------------------------------------------------- /src/assets/images/receiveCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/receiveCircle.svg -------------------------------------------------------------------------------- /src/assets/images/receivedHNT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/receivedHNT.svg -------------------------------------------------------------------------------- /src/assets/images/recent_searches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/recent_searches.svg -------------------------------------------------------------------------------- /src/assets/images/reward-scaling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/reward-scaling.svg -------------------------------------------------------------------------------- /src/assets/images/rewards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/rewards.svg -------------------------------------------------------------------------------- /src/assets/images/rewardsScale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/rewardsScale.svg -------------------------------------------------------------------------------- /src/assets/images/ring-loader-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-green.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-green@2x.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-green@3x.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-inner-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-inner-green.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-inner-green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-inner-green@2x.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-inner-green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-inner-green@3x.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-inner-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-inner-purple.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-inner-purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-inner-purple@2x.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-inner-purple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-inner-purple@3x.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-purple.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-purple@2x.png -------------------------------------------------------------------------------- /src/assets/images/ring-loader-purple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/ring-loader-purple@3x.png -------------------------------------------------------------------------------- /src/assets/images/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/search.svg -------------------------------------------------------------------------------- /src/assets/images/searchShortcut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/searchShortcut.svg -------------------------------------------------------------------------------- /src/assets/images/search_tips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/search_tips.svg -------------------------------------------------------------------------------- /src/assets/images/secure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/secure.svg -------------------------------------------------------------------------------- /src/assets/images/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/security.svg -------------------------------------------------------------------------------- /src/assets/images/selected-hotspot-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/selected-hotspot-marker.png -------------------------------------------------------------------------------- /src/assets/images/selected-hotspot-marker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/selected-hotspot-marker@2x.png -------------------------------------------------------------------------------- /src/assets/images/selected-hotspot-marker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/selected-hotspot-marker@3x.png -------------------------------------------------------------------------------- /src/assets/images/send-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/send-circle.svg -------------------------------------------------------------------------------- /src/assets/images/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/send.svg -------------------------------------------------------------------------------- /src/assets/images/sendCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/sendCircle.svg -------------------------------------------------------------------------------- /src/assets/images/sentHNT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/sentHNT.svg -------------------------------------------------------------------------------- /src/assets/images/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/settings.svg -------------------------------------------------------------------------------- /src/assets/images/share-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/share-dots.svg -------------------------------------------------------------------------------- /src/assets/images/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/share.svg -------------------------------------------------------------------------------- /src/assets/images/shareAddress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/shareAddress.svg -------------------------------------------------------------------------------- /src/assets/images/shareHotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/shareHotspot.svg -------------------------------------------------------------------------------- /src/assets/images/shortcutMask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/shortcutMask.svg -------------------------------------------------------------------------------- /src/assets/images/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/signal.svg -------------------------------------------------------------------------------- /src/assets/images/stakeCloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/stakeCloud.svg -------------------------------------------------------------------------------- /src/assets/images/stake_validator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/stake_validator.svg -------------------------------------------------------------------------------- /src/assets/images/topHotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/topHotspot.svg -------------------------------------------------------------------------------- /src/assets/images/transferHotspotIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/transferHotspotIcon.svg -------------------------------------------------------------------------------- /src/assets/images/transfer_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/transfer_icon.svg -------------------------------------------------------------------------------- /src/assets/images/transfer_validator_stake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/transfer_validator_stake.svg -------------------------------------------------------------------------------- /src/assets/images/unstake_validator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/unstake_validator.svg -------------------------------------------------------------------------------- /src/assets/images/upArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/upArrow.svg -------------------------------------------------------------------------------- /src/assets/images/update_hotspot_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/update_hotspot_icon.svg -------------------------------------------------------------------------------- /src/assets/images/validatorPillIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/validatorPillIcon.svg -------------------------------------------------------------------------------- /src/assets/images/versionHeartbeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/versionHeartbeat.svg -------------------------------------------------------------------------------- /src/assets/images/visibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/visibility.svg -------------------------------------------------------------------------------- /src/assets/images/visibility_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/visibility_off.svg -------------------------------------------------------------------------------- /src/assets/images/walletIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/walletIcon.svg -------------------------------------------------------------------------------- /src/assets/images/webLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/webLink.svg -------------------------------------------------------------------------------- /src/assets/images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/welcome.png -------------------------------------------------------------------------------- /src/assets/images/welcome@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/welcome@2x.png -------------------------------------------------------------------------------- /src/assets/images/welcome@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/welcome@3x.png -------------------------------------------------------------------------------- /src/assets/images/wifi-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/wifi-icon.svg -------------------------------------------------------------------------------- /src/assets/images/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/wifi.svg -------------------------------------------------------------------------------- /src/assets/images/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/world.png -------------------------------------------------------------------------------- /src/assets/images/world@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/world@2x.png -------------------------------------------------------------------------------- /src/assets/images/world@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/assets/images/world@3x.png -------------------------------------------------------------------------------- /src/components/Address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Address.tsx -------------------------------------------------------------------------------- /src/components/AnimatedBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/AnimatedBox.tsx -------------------------------------------------------------------------------- /src/components/BSHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BSHandle.tsx -------------------------------------------------------------------------------- /src/components/BSTouchableOpacityBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BSTouchableOpacityBox.tsx -------------------------------------------------------------------------------- /src/components/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BackButton.tsx -------------------------------------------------------------------------------- /src/components/BackScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BackScreen.tsx -------------------------------------------------------------------------------- /src/components/BarChart/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BarChart/Chart.tsx -------------------------------------------------------------------------------- /src/components/BarChart/ChartBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BarChart/ChartBar.tsx -------------------------------------------------------------------------------- /src/components/BarChart/ChartContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BarChart/ChartContainer.tsx -------------------------------------------------------------------------------- /src/components/BarChart/WalletChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BarChart/WalletChart.tsx -------------------------------------------------------------------------------- /src/components/BarChart/testActivityChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BarChart/testActivityChart.ts -------------------------------------------------------------------------------- /src/components/BarChart/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BarChart/types.ts -------------------------------------------------------------------------------- /src/components/BlurBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/BlurBox.tsx -------------------------------------------------------------------------------- /src/components/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Box.tsx -------------------------------------------------------------------------------- /src/components/Bullet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Bullet.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/components/CardHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/CardHandle.tsx -------------------------------------------------------------------------------- /src/components/CarouselItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/CarouselItem.tsx -------------------------------------------------------------------------------- /src/components/CircleLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/CircleLoader.tsx -------------------------------------------------------------------------------- /src/components/CircleProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/CircleProgress.tsx -------------------------------------------------------------------------------- /src/components/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/CloseButton.tsx -------------------------------------------------------------------------------- /src/components/ConfirmPinView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/ConfirmPinView.tsx -------------------------------------------------------------------------------- /src/components/ContentPill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/ContentPill.tsx -------------------------------------------------------------------------------- /src/components/Coverage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Coverage.tsx -------------------------------------------------------------------------------- /src/components/CurrentLocationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/CurrentLocationButton.tsx -------------------------------------------------------------------------------- /src/components/Dot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Dot.tsx -------------------------------------------------------------------------------- /src/components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/EmojiBlip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/EmojiBlip.tsx -------------------------------------------------------------------------------- /src/components/FocusAwareStatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/FocusAwareStatusBar.tsx -------------------------------------------------------------------------------- /src/components/FollowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/FollowButton.tsx -------------------------------------------------------------------------------- /src/components/FollowValidatorButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/FollowValidatorButton.tsx -------------------------------------------------------------------------------- /src/components/GlobalHelpModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/GlobalHelpModal.tsx -------------------------------------------------------------------------------- /src/components/HeliumActionSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/HeliumActionSheet.tsx -------------------------------------------------------------------------------- /src/components/HeliumActionSheetItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/HeliumActionSheetItem.tsx -------------------------------------------------------------------------------- /src/components/HeliumBottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/HeliumBottomSheet.tsx -------------------------------------------------------------------------------- /src/components/HeliumSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/HeliumSelect.tsx -------------------------------------------------------------------------------- /src/components/HeliumSelectItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/HeliumSelectItem.tsx -------------------------------------------------------------------------------- /src/components/HotspotConfigurationPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/HotspotConfigurationPicker.tsx -------------------------------------------------------------------------------- /src/components/HotspotListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/HotspotListItem.tsx -------------------------------------------------------------------------------- /src/components/HotspotPairingList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/HotspotPairingList.tsx -------------------------------------------------------------------------------- /src/components/ImageBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/ImageBox.tsx -------------------------------------------------------------------------------- /src/components/InputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/InputField.tsx -------------------------------------------------------------------------------- /src/components/Keypad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Keypad.tsx -------------------------------------------------------------------------------- /src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Link.tsx -------------------------------------------------------------------------------- /src/components/Loaders/RadarLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Loaders/RadarLoader.tsx -------------------------------------------------------------------------------- /src/components/Loaders/RingLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Loaders/RingLoader.tsx -------------------------------------------------------------------------------- /src/components/LockedField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/LockedField.tsx -------------------------------------------------------------------------------- /src/components/LockedHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/LockedHeader.tsx -------------------------------------------------------------------------------- /src/components/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Map.tsx -------------------------------------------------------------------------------- /src/components/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Notification.tsx -------------------------------------------------------------------------------- /src/components/PinDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/PinDisplay.tsx -------------------------------------------------------------------------------- /src/components/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/SafeAreaBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/SafeAreaBox.tsx -------------------------------------------------------------------------------- /src/components/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/SegmentedControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/SegmentedControl.tsx -------------------------------------------------------------------------------- /src/components/SegmentedControlItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/SegmentedControlItem.tsx -------------------------------------------------------------------------------- /src/components/SentinelScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/SentinelScreen.tsx -------------------------------------------------------------------------------- /src/components/ShareSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/ShareSheet.tsx -------------------------------------------------------------------------------- /src/components/StatusBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/StatusBanner.tsx -------------------------------------------------------------------------------- /src/components/SwipeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/SwipeButton.tsx -------------------------------------------------------------------------------- /src/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Text.tsx -------------------------------------------------------------------------------- /src/components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/TextInput.tsx -------------------------------------------------------------------------------- /src/components/TextTransform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/TextTransform.tsx -------------------------------------------------------------------------------- /src/components/TouchableCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/TouchableCircle.tsx -------------------------------------------------------------------------------- /src/components/TouchableHighlightBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/TouchableHighlightBox.tsx -------------------------------------------------------------------------------- /src/components/TouchableOpacityBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/TouchableOpacityBox.tsx -------------------------------------------------------------------------------- /src/components/UserLocationMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/UserLocationMap.tsx -------------------------------------------------------------------------------- /src/components/WithDebounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/WithDebounce.tsx -------------------------------------------------------------------------------- /src/components/Word.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/Word.tsx -------------------------------------------------------------------------------- /src/components/WordList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/components/WordList.tsx -------------------------------------------------------------------------------- /src/constants/articles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/constants/articles.ts -------------------------------------------------------------------------------- /src/constants/wordlists/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/constants/wordlists/english.json -------------------------------------------------------------------------------- /src/features/hotspots/checklist/HotspotChecklist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/checklist/HotspotChecklist.tsx -------------------------------------------------------------------------------- /src/features/hotspots/checklist/HotspotChecklistItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/checklist/HotspotChecklistItem.tsx -------------------------------------------------------------------------------- /src/features/hotspots/details/DenylistBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/details/DenylistBadge.tsx -------------------------------------------------------------------------------- /src/features/hotspots/details/HexBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/details/HexBadge.tsx -------------------------------------------------------------------------------- /src/features/hotspots/details/HotspotDetailChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/details/HotspotDetailChart.tsx -------------------------------------------------------------------------------- /src/features/hotspots/details/HotspotDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/details/HotspotDetails.tsx -------------------------------------------------------------------------------- /src/features/hotspots/details/HotspotStatusBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/details/HotspotStatusBanner.tsx -------------------------------------------------------------------------------- /src/features/hotspots/details/RewardsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/details/RewardsHelper.ts -------------------------------------------------------------------------------- /src/features/hotspots/details/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/details/StatusBadge.tsx -------------------------------------------------------------------------------- /src/features/hotspots/details/TimelinePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/details/TimelinePicker.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotLocationUpdateScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotLocationUpdateScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotSearch.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotSearchEmpty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotSearchEmpty.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotSearchListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotSearchListItem.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotSheetHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotSheetHandle.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotsEmpty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotsEmpty.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotsList.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotsNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotsNavigator.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotsPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotsPicker.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotsScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotsTicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotsTicker.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotsView.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/HotspotsViewHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/HotspotsViewHeader.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/ShortcutNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/ShortcutNav.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/WelcomeOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/WelcomeOverview.tsx -------------------------------------------------------------------------------- /src/features/hotspots/root/hotspotTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/root/hotspotTypes.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/DiagnosticAttribute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/DiagnosticAttribute.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/DiagnosticLineItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/DiagnosticLineItem.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/HotspotDiagnosticReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/HotspotDiagnosticReport.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/HotspotDiagnostics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/HotspotDiagnostics.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/HotspotItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/HotspotItem.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/HotspotSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/HotspotSettings.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/HotspotSettingsOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/HotspotSettingsOption.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/HotspotSettingsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/HotspotSettingsProvider.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/HotspotSettingsTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/HotspotSettingsTypes.ts -------------------------------------------------------------------------------- /src/features/hotspots/settings/ReassertAddressSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/ReassertAddressSearch.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/ReassertLocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/ReassertLocation.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/ReassertLocationFee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/ReassertLocationFee.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/ReassertLocationUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/ReassertLocationUpdate.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/WifiSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/WifiSettings.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/WifiSettingsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/WifiSettingsContainer.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/WifiSetup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/WifiSetup.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/discovery/DiscoveryMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/discovery/DiscoveryMap.tsx -------------------------------------------------------------------------------- /src/features/hotspots/settings/sendReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/settings/sendReport.ts -------------------------------------------------------------------------------- /src/features/hotspots/setup/AddressSearchModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/AddressSearchModal.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/AntennaSetupScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/AntennaSetupScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/FirmwareUpdateNeededScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/FirmwareUpdateNeededScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupBluetoothError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupBluetoothError.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupEducationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupEducationScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupExternalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupExternalScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupNavigator.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupPickWifiScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupPickWifiScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupPowerScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupPowerScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupScanWifiError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupScanWifiError.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupScanWifiSuccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupScanWifiSuccess.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupScanningScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupScanningScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupSelectionScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupSelectionScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotSetupWifiScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotSetupWifiScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/HotspotTxnsProgressScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/HotspotTxnsProgressScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/NotHotspotOwnerError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/NotHotspotOwnerError.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/OnboardingErrorScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/OnboardingErrorScreen.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/OwnedHotspotError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/OwnedHotspotError.tsx -------------------------------------------------------------------------------- /src/features/hotspots/setup/hotspotSetupSlides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/hotspotSetupSlides.ts -------------------------------------------------------------------------------- /src/features/hotspots/setup/hotspotSetupTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/setup/hotspotSetupTypes.tsx -------------------------------------------------------------------------------- /src/features/hotspots/transfers/HotspotTransfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/transfers/HotspotTransfer.tsx -------------------------------------------------------------------------------- /src/features/hotspots/transfers/TransferBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/transfers/TransferBanner.tsx -------------------------------------------------------------------------------- /src/features/hotspots/transfers/TransferRequests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/transfers/TransferRequests.tsx -------------------------------------------------------------------------------- /src/features/hotspots/useHotspotSync.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/hotspots/useHotspotSync.tsx -------------------------------------------------------------------------------- /src/features/lock/LockScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/lock/LockScreen.tsx -------------------------------------------------------------------------------- /src/features/map/MapFilterModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/map/MapFilterModal.tsx -------------------------------------------------------------------------------- /src/features/map/MapFiltersButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/map/MapFiltersButton.tsx -------------------------------------------------------------------------------- /src/features/moreTab/ConfirmSignoutScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/ConfirmSignoutScreen.tsx -------------------------------------------------------------------------------- /src/features/moreTab/MoreNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/MoreNavigator.tsx -------------------------------------------------------------------------------- /src/features/moreTab/more/AppInfoItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/more/AppInfoItem.tsx -------------------------------------------------------------------------------- /src/features/moreTab/more/DeployModeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/more/DeployModeModal.tsx -------------------------------------------------------------------------------- /src/features/moreTab/more/DiscordItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/more/DiscordItem.tsx -------------------------------------------------------------------------------- /src/features/moreTab/more/MoreListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/more/MoreListItem.tsx -------------------------------------------------------------------------------- /src/features/moreTab/more/MoreScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/more/MoreScreen.tsx -------------------------------------------------------------------------------- /src/features/moreTab/more/useAuthIntervals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/more/useAuthIntervals.ts -------------------------------------------------------------------------------- /src/features/moreTab/moreTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/moreTypes.tsx -------------------------------------------------------------------------------- /src/features/moreTab/reveal/RevealPrivateKeyScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/reveal/RevealPrivateKeyScreen.tsx -------------------------------------------------------------------------------- /src/features/moreTab/reveal/RevealWordsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/moreTab/reveal/RevealWordsScreen.tsx -------------------------------------------------------------------------------- /src/features/notifications/EmptyNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/notifications/EmptyNotifications.tsx -------------------------------------------------------------------------------- /src/features/notifications/NotificationGroupHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/notifications/NotificationGroupHeader.tsx -------------------------------------------------------------------------------- /src/features/notifications/NotificationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/notifications/NotificationItem.tsx -------------------------------------------------------------------------------- /src/features/notifications/NotificationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/notifications/NotificationList.tsx -------------------------------------------------------------------------------- /src/features/notifications/NotificationShow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/notifications/NotificationShow.tsx -------------------------------------------------------------------------------- /src/features/notifications/NotificationsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/notifications/NotificationsScreen.tsx -------------------------------------------------------------------------------- /src/features/onboarding/OnboardingNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/onboarding/OnboardingNavigator.tsx -------------------------------------------------------------------------------- /src/features/onboarding/accountImport/MatchingWord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/onboarding/accountImport/MatchingWord.tsx -------------------------------------------------------------------------------- /src/features/onboarding/onboardingTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/onboarding/onboardingTypes.ts -------------------------------------------------------------------------------- /src/features/onboarding/welcome/WelcomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/onboarding/welcome/WelcomeScreen.tsx -------------------------------------------------------------------------------- /src/features/security/SecurityScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/security/SecurityScreen.tsx -------------------------------------------------------------------------------- /src/features/txnDelegatation/LinkWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/txnDelegatation/LinkWallet.tsx -------------------------------------------------------------------------------- /src/features/txnDelegatation/SignHotspot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/txnDelegatation/SignHotspot.tsx -------------------------------------------------------------------------------- /src/features/validators/ConsensusBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/ConsensusBanner.tsx -------------------------------------------------------------------------------- /src/features/validators/ValidatorCooldown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/ValidatorCooldown.tsx -------------------------------------------------------------------------------- /src/features/validators/ValidatorDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/ValidatorDetails.tsx -------------------------------------------------------------------------------- /src/features/validators/ValidatorDetailsConsensus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/ValidatorDetailsConsensus.tsx -------------------------------------------------------------------------------- /src/features/validators/ValidatorDetailsConsensusItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/ValidatorDetailsConsensusItem.tsx -------------------------------------------------------------------------------- /src/features/validators/ValidatorDetailsOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/ValidatorDetailsOverview.tsx -------------------------------------------------------------------------------- /src/features/validators/ValidatorDetailsPenalties.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/ValidatorDetailsPenalties.tsx -------------------------------------------------------------------------------- /src/features/validators/ValidatorListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/ValidatorListItem.tsx -------------------------------------------------------------------------------- /src/features/validators/ValidatorTimeRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/ValidatorTimeRange.tsx -------------------------------------------------------------------------------- /src/features/validators/explorer/ConsensusHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/explorer/ConsensusHistory.tsx -------------------------------------------------------------------------------- /src/features/validators/explorer/ValidatorExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/validators/explorer/ValidatorExplorer.tsx -------------------------------------------------------------------------------- /src/features/wallet/WalletNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/WalletNavigator.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/ActivityCard/ActivityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/ActivityCard/ActivityCard.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/ActivityCard/ActivityItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/ActivityCard/ActivityItem.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/ActivityDetails/Burn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/ActivityDetails/Burn.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/ActivityDetails/Payment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/ActivityDetails/Payment.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/ActivityDetails/PaymentItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/ActivityDetails/PaymentItem.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/ActivityDetails/Redeem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/ActivityDetails/Redeem.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/ActivityDetails/Rewards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/ActivityDetails/Rewards.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/ActivityDetails/StakeValidator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/ActivityDetails/StakeValidator.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/ActivityDetails/TransferStake.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/ActivityDetails/TransferStake.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/BalanceCard/BalanceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/BalanceCard/BalanceCard.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/BalanceCard/CurrencyBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/BalanceCard/CurrencyBadge.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/WalletAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/WalletAddress.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/WalletHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/WalletHeader.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/WalletHeaderCondensed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/WalletHeaderCondensed.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/WalletScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/WalletScreen.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/WalletView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/WalletView.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/useActivityItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/useActivityItem.tsx -------------------------------------------------------------------------------- /src/features/wallet/root/walletTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/root/walletTypes.ts -------------------------------------------------------------------------------- /src/features/wallet/scan/Crosshair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/scan/Crosshair.tsx -------------------------------------------------------------------------------- /src/features/wallet/scan/ScanNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/scan/ScanNavigator.tsx -------------------------------------------------------------------------------- /src/features/wallet/scan/ScanScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/scan/ScanScreen.tsx -------------------------------------------------------------------------------- /src/features/wallet/scan/ScanView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/scan/ScanView.tsx -------------------------------------------------------------------------------- /src/features/wallet/scan/scanTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/scan/scanTypes.ts -------------------------------------------------------------------------------- /src/features/wallet/send/SendAmountAvailableBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/SendAmountAvailableBanner.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/SendCompleteScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/SendCompleteScreen.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/SendDetailsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/SendDetailsForm.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/SendForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/SendForm.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/SendHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/SendHeader.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/SendNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/SendNavigator.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/SendScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/SendScreen.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/SendView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/SendView.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/__test__/SendView.de.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/__test__/SendView.de.test.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/__test__/SendView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/__test__/SendView.test.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/__test__/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/__test__/common.tsx -------------------------------------------------------------------------------- /src/features/wallet/send/sendTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/features/wallet/send/sendTypes.ts -------------------------------------------------------------------------------- /src/hooks/useSubmitTxn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/hooks/useSubmitTxn.ts -------------------------------------------------------------------------------- /src/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/locales/en.ts -------------------------------------------------------------------------------- /src/locales/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/locales/ja.ts -------------------------------------------------------------------------------- /src/locales/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/locales/ko.ts -------------------------------------------------------------------------------- /src/locales/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/locales/zh.ts -------------------------------------------------------------------------------- /src/makers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/README.md -------------------------------------------------------------------------------- /src/makers/__example__/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/__example__/antennas.ts -------------------------------------------------------------------------------- /src/makers/__example__/hotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/__example__/hotspot.svg -------------------------------------------------------------------------------- /src/makers/__example__/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/__example__/hotspots.ts -------------------------------------------------------------------------------- /src/makers/__example__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/__example__/index.ts -------------------------------------------------------------------------------- /src/makers/antennaMakerTypes.ts: -------------------------------------------------------------------------------- 1 | export type MakerAntenna = { 2 | name: string 3 | gain: number 4 | } 5 | -------------------------------------------------------------------------------- /src/makers/bobcat/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/bobcat/antennas.ts -------------------------------------------------------------------------------- /src/makers/bobcat/bobcat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/bobcat/bobcat.svg -------------------------------------------------------------------------------- /src/makers/bobcat/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/bobcat/hotspots.ts -------------------------------------------------------------------------------- /src/makers/bobcat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/bobcat/index.ts -------------------------------------------------------------------------------- /src/makers/clodpi/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/clodpi/antennas.ts -------------------------------------------------------------------------------- /src/makers/clodpi/clodpi-pro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/clodpi/clodpi-pro.svg -------------------------------------------------------------------------------- /src/makers/clodpi/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/clodpi/hotspots.ts -------------------------------------------------------------------------------- /src/makers/clodpi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/clodpi/index.ts -------------------------------------------------------------------------------- /src/makers/controllino/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/controllino/antennas.ts -------------------------------------------------------------------------------- /src/makers/controllino/controllinohotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/controllino/controllinohotspot.svg -------------------------------------------------------------------------------- /src/makers/controllino/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/controllino/hotspots.ts -------------------------------------------------------------------------------- /src/makers/controllino/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/controllino/index.ts -------------------------------------------------------------------------------- /src/makers/cotx/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/cotx/antennas.ts -------------------------------------------------------------------------------- /src/makers/cotx/cotx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/cotx/cotx.svg -------------------------------------------------------------------------------- /src/makers/cotx/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/cotx/hotspots.ts -------------------------------------------------------------------------------- /src/makers/cotx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/cotx/index.ts -------------------------------------------------------------------------------- /src/makers/custom/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/custom/antennas.ts -------------------------------------------------------------------------------- /src/makers/dragino/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/dragino/antennas.ts -------------------------------------------------------------------------------- /src/makers/dragino/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/dragino/hotspots.ts -------------------------------------------------------------------------------- /src/makers/dragino/hp0d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/dragino/hp0d.svg -------------------------------------------------------------------------------- /src/makers/dragino/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/dragino/index.ts -------------------------------------------------------------------------------- /src/makers/finestra/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/finestra/antennas.ts -------------------------------------------------------------------------------- /src/makers/finestra/finestra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/finestra/finestra.svg -------------------------------------------------------------------------------- /src/makers/finestra/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/finestra/hotspots.ts -------------------------------------------------------------------------------- /src/makers/finestra/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/finestra/index.ts -------------------------------------------------------------------------------- /src/makers/freedomfi/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/freedomfi/antennas.ts -------------------------------------------------------------------------------- /src/makers/freedomfi/hotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/freedomfi/hotspot.svg -------------------------------------------------------------------------------- /src/makers/freedomfi/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/freedomfi/hotspots.ts -------------------------------------------------------------------------------- /src/makers/freedomfi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/freedomfi/index.ts -------------------------------------------------------------------------------- /src/makers/helium/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/helium/antennas.ts -------------------------------------------------------------------------------- /src/makers/helium/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/helium/hotspots.ts -------------------------------------------------------------------------------- /src/makers/helium/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/helium/index.ts -------------------------------------------------------------------------------- /src/makers/heltec/Heltec_Indoor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/heltec/Heltec_Indoor.svg -------------------------------------------------------------------------------- /src/makers/heltec/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/heltec/antennas.ts -------------------------------------------------------------------------------- /src/makers/heltec/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/heltec/hotspots.ts -------------------------------------------------------------------------------- /src/makers/heltec/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/heltec/index.ts -------------------------------------------------------------------------------- /src/makers/hotspotMakerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/hotspotMakerTypes.ts -------------------------------------------------------------------------------- /src/makers/hummingbird/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/hummingbird/antennas.ts -------------------------------------------------------------------------------- /src/makers/hummingbird/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/hummingbird/hotspots.ts -------------------------------------------------------------------------------- /src/makers/hummingbird/hummingbird.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/hummingbird/hummingbird.svg -------------------------------------------------------------------------------- /src/makers/hummingbird/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/hummingbird/index.ts -------------------------------------------------------------------------------- /src/makers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/index.ts -------------------------------------------------------------------------------- /src/makers/kerlink/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/kerlink/antennas.ts -------------------------------------------------------------------------------- /src/makers/kerlink/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/kerlink/hotspots.ts -------------------------------------------------------------------------------- /src/makers/kerlink/ifemto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/kerlink/ifemto.svg -------------------------------------------------------------------------------- /src/makers/kerlink/ifemto_evo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/kerlink/ifemto_evo.svg -------------------------------------------------------------------------------- /src/makers/kerlink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/kerlink/index.ts -------------------------------------------------------------------------------- /src/makers/kerlink/istation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/kerlink/istation.svg -------------------------------------------------------------------------------- /src/makers/linxdot/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/linxdot/antennas.ts -------------------------------------------------------------------------------- /src/makers/linxdot/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/linxdot/hotspots.ts -------------------------------------------------------------------------------- /src/makers/linxdot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/linxdot/index.ts -------------------------------------------------------------------------------- /src/makers/linxdot/linxdot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/linxdot/linxdot.svg -------------------------------------------------------------------------------- /src/makers/longAP/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/longAP/antennas.ts -------------------------------------------------------------------------------- /src/makers/longAP/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/longAP/hotspots.ts -------------------------------------------------------------------------------- /src/makers/longAP/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/longAP/index.ts -------------------------------------------------------------------------------- /src/makers/longAP/longap-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/longAP/longap-one.svg -------------------------------------------------------------------------------- /src/makers/makerType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/makerType.ts -------------------------------------------------------------------------------- /src/makers/merryIoT/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/merryIoT/antennas.ts -------------------------------------------------------------------------------- /src/makers/merryIoT/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/merryIoT/hotspots.ts -------------------------------------------------------------------------------- /src/makers/merryIoT/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/merryIoT/index.ts -------------------------------------------------------------------------------- /src/makers/merryIoT/merryIoT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/merryIoT/merryIoT.svg -------------------------------------------------------------------------------- /src/makers/midas/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/midas/antennas.ts -------------------------------------------------------------------------------- /src/makers/midas/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/midas/hotspots.ts -------------------------------------------------------------------------------- /src/makers/midas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/midas/index.ts -------------------------------------------------------------------------------- /src/makers/midas/midas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/midas/midas.svg -------------------------------------------------------------------------------- /src/makers/milesight/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/milesight/antennas.ts -------------------------------------------------------------------------------- /src/makers/milesight/hotspot_65.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/milesight/hotspot_65.svg -------------------------------------------------------------------------------- /src/makers/milesight/hotspot_67.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/milesight/hotspot_67.svg -------------------------------------------------------------------------------- /src/makers/milesight/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/milesight/hotspots.ts -------------------------------------------------------------------------------- /src/makers/milesight/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/milesight/index.ts -------------------------------------------------------------------------------- /src/makers/nebra/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/nebra/antennas.ts -------------------------------------------------------------------------------- /src/makers/nebra/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/nebra/hotspots.ts -------------------------------------------------------------------------------- /src/makers/nebra/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/nebra/index.ts -------------------------------------------------------------------------------- /src/makers/nebra/nebra-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/nebra/nebra-in.svg -------------------------------------------------------------------------------- /src/makers/nebra/nebra-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/nebra/nebra-out.svg -------------------------------------------------------------------------------- /src/makers/panther/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/panther/antennas.ts -------------------------------------------------------------------------------- /src/makers/panther/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/panther/hotspots.ts -------------------------------------------------------------------------------- /src/makers/panther/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/panther/index.ts -------------------------------------------------------------------------------- /src/makers/panther/panther-x2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/panther/panther-x2.svg -------------------------------------------------------------------------------- /src/makers/panther/panther.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/panther/panther.svg -------------------------------------------------------------------------------- /src/makers/pisces/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/pisces/antennas.ts -------------------------------------------------------------------------------- /src/makers/pisces/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/pisces/hotspots.ts -------------------------------------------------------------------------------- /src/makers/pisces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/pisces/index.ts -------------------------------------------------------------------------------- /src/makers/pisces/pisces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/pisces/pisces.svg -------------------------------------------------------------------------------- /src/makers/rak/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/rak/antennas.ts -------------------------------------------------------------------------------- /src/makers/rak/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/rak/hotspots.ts -------------------------------------------------------------------------------- /src/makers/rak/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/rak/index.ts -------------------------------------------------------------------------------- /src/makers/rak/rak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/rak/rak.svg -------------------------------------------------------------------------------- /src/makers/risinghf/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/risinghf/antennas.ts -------------------------------------------------------------------------------- /src/makers/risinghf/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/risinghf/hotspots.ts -------------------------------------------------------------------------------- /src/makers/risinghf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/risinghf/index.ts -------------------------------------------------------------------------------- /src/makers/risinghf/risinghf-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/risinghf/risinghf-out.svg -------------------------------------------------------------------------------- /src/makers/sensecap/antennas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/sensecap/antennas.ts -------------------------------------------------------------------------------- /src/makers/sensecap/hotspots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/sensecap/hotspots.ts -------------------------------------------------------------------------------- /src/makers/sensecap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/sensecap/index.ts -------------------------------------------------------------------------------- /src/makers/sensecap/sensecap-m1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/makers/sensecap/sensecap-m1.svg -------------------------------------------------------------------------------- /src/navigation/NavigationRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/navigation/NavigationRoot.tsx -------------------------------------------------------------------------------- /src/navigation/defaultScreenOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/navigation/defaultScreenOptions.ts -------------------------------------------------------------------------------- /src/navigation/main/HomeNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/navigation/main/HomeNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/main/MainTabNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/navigation/main/MainTabNavigator.tsx -------------------------------------------------------------------------------- /src/navigation/main/TabBarIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/navigation/main/TabBarIcon.tsx -------------------------------------------------------------------------------- /src/navigation/main/tabTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/navigation/main/tabTypes.ts -------------------------------------------------------------------------------- /src/navigation/navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/navigation/navigator.ts -------------------------------------------------------------------------------- /src/providers/AppLinkProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/providers/AppLinkProvider.tsx -------------------------------------------------------------------------------- /src/providers/BluetoothProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/providers/BluetoothProvider.tsx -------------------------------------------------------------------------------- /src/providers/ConnectedHotspotProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/providers/ConnectedHotspotProvider.tsx -------------------------------------------------------------------------------- /src/providers/LanguageProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/providers/LanguageProvider.tsx -------------------------------------------------------------------------------- /src/providers/appLinkTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/providers/appLinkTypes.ts -------------------------------------------------------------------------------- /src/store/account/accountSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/account/accountSlice.ts -------------------------------------------------------------------------------- /src/store/activity/activitySlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/activity/activitySlice.ts -------------------------------------------------------------------------------- /src/store/connectedHotspot/connectedHotspotSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/connectedHotspot/connectedHotspotSlice.ts -------------------------------------------------------------------------------- /src/store/discovery/discoverySlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/discovery/discoverySlice.ts -------------------------------------------------------------------------------- /src/store/discovery/discoveryTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/discovery/discoveryTypes.ts -------------------------------------------------------------------------------- /src/store/features/featuresSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/features/featuresSlice.ts -------------------------------------------------------------------------------- /src/store/helium/StatusTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/helium/StatusTypes.ts -------------------------------------------------------------------------------- /src/store/helium/heliumDataSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/helium/heliumDataSlice.ts -------------------------------------------------------------------------------- /src/store/helium/heliumStatusSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/helium/heliumStatusSlice.ts -------------------------------------------------------------------------------- /src/store/hotspotDetails/hotspotChecklistSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/hotspotDetails/hotspotChecklistSlice.ts -------------------------------------------------------------------------------- /src/store/hotspotDetails/hotspotDetailsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/hotspotDetails/hotspotDetailsSlice.ts -------------------------------------------------------------------------------- /src/store/hotspotSearch/hotspotSearchSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/hotspotSearch/hotspotSearchSlice.ts -------------------------------------------------------------------------------- /src/store/hotspots/hotspotOnboardingSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/hotspots/hotspotOnboardingSlice.ts -------------------------------------------------------------------------------- /src/store/hotspots/hotspotsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/hotspots/hotspotsSlice.ts -------------------------------------------------------------------------------- /src/store/location/locationSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/location/locationSlice.ts -------------------------------------------------------------------------------- /src/store/notifications/notificationSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/notifications/notificationSlice.ts -------------------------------------------------------------------------------- /src/store/rewards/rewardsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/rewards/rewardsSlice.ts -------------------------------------------------------------------------------- /src/store/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/rootReducer.ts -------------------------------------------------------------------------------- /src/store/solana/solanaStatusApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/solana/solanaStatusApi.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /src/store/user/appSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/user/appSlice.ts -------------------------------------------------------------------------------- /src/store/validators/validatorsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/store/validators/validatorsSlice.ts -------------------------------------------------------------------------------- /src/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/theme/theme.ts -------------------------------------------------------------------------------- /src/theme/themeHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/theme/themeHooks.ts -------------------------------------------------------------------------------- /src/utils/DateModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/DateModule.ts -------------------------------------------------------------------------------- /src/utils/StatusClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/StatusClient.ts -------------------------------------------------------------------------------- /src/utils/accountUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/accountUtils.ts -------------------------------------------------------------------------------- /src/utils/animateTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/animateTransition.ts -------------------------------------------------------------------------------- /src/utils/appDataClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/appDataClient.ts -------------------------------------------------------------------------------- /src/utils/assertLocationUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/assertLocationUtils.tsx -------------------------------------------------------------------------------- /src/utils/bluetooth/bluetoothDataParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/bluetooth/bluetoothDataParser.ts -------------------------------------------------------------------------------- /src/utils/bluetooth/bluetoothTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/bluetooth/bluetoothTypes.ts -------------------------------------------------------------------------------- /src/utils/bluetooth/useBluetooth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/bluetooth/useBluetooth.tsx -------------------------------------------------------------------------------- /src/utils/cacheUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/cacheUtils.ts -------------------------------------------------------------------------------- /src/utils/coinGeckoClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/coinGeckoClient.ts -------------------------------------------------------------------------------- /src/utils/colorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/colorUtils.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- 1 | export const EXPLORER_BASE_URL = 'https://explorer.helium.com' 2 | -------------------------------------------------------------------------------- /src/utils/createText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/createText.ts -------------------------------------------------------------------------------- /src/utils/explorerClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/explorerClient.ts -------------------------------------------------------------------------------- /src/utils/fees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/fees.ts -------------------------------------------------------------------------------- /src/utils/formatDistance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/formatDistance.js -------------------------------------------------------------------------------- /src/utils/googlePlaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/googlePlaces.ts -------------------------------------------------------------------------------- /src/utils/h3Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/h3Utils.ts -------------------------------------------------------------------------------- /src/utils/hotspotUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/hotspotUtils.ts -------------------------------------------------------------------------------- /src/utils/i18n/i18nTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/i18n/i18nTypes.ts -------------------------------------------------------------------------------- /src/utils/i18n/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/i18n/index.tsx -------------------------------------------------------------------------------- /src/utils/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/layout.ts -------------------------------------------------------------------------------- /src/utils/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/location.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/mapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/mapUtils.ts -------------------------------------------------------------------------------- /src/utils/parseMarkup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/parseMarkup.tsx -------------------------------------------------------------------------------- /src/utils/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/polyfill.js -------------------------------------------------------------------------------- /src/utils/secureAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/secureAccount.ts -------------------------------------------------------------------------------- /src/utils/sendMail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/sendMail.ts -------------------------------------------------------------------------------- /src/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/sleep.ts -------------------------------------------------------------------------------- /src/utils/stakingClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/stakingClient.ts -------------------------------------------------------------------------------- /src/utils/stringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/stringUtils.ts -------------------------------------------------------------------------------- /src/utils/testUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/testUtils.js -------------------------------------------------------------------------------- /src/utils/timeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/timeUtils.ts -------------------------------------------------------------------------------- /src/utils/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/transactions.ts -------------------------------------------------------------------------------- /src/utils/useAccountSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useAccountSettings.ts -------------------------------------------------------------------------------- /src/utils/useAlert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useAlert.ts -------------------------------------------------------------------------------- /src/utils/useCurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useCurrency.ts -------------------------------------------------------------------------------- /src/utils/useDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useDevice.ts -------------------------------------------------------------------------------- /src/utils/useGetLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useGetLocation.ts -------------------------------------------------------------------------------- /src/utils/useHaptic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useHaptic.ts -------------------------------------------------------------------------------- /src/utils/useHotspot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useHotspot.ts -------------------------------------------------------------------------------- /src/utils/useKeyboardHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useKeyboardHeight.ts -------------------------------------------------------------------------------- /src/utils/useMount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useMount.tsx -------------------------------------------------------------------------------- /src/utils/usePermissionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/usePermissionManager.ts -------------------------------------------------------------------------------- /src/utils/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/usePrevious.ts -------------------------------------------------------------------------------- /src/utils/useToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useToggle.ts -------------------------------------------------------------------------------- /src/utils/useVisible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/useVisible.ts -------------------------------------------------------------------------------- /src/utils/validatorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/validatorUtils.ts -------------------------------------------------------------------------------- /src/utils/walletClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/utils/walletClient.ts -------------------------------------------------------------------------------- /src/whyDidYouRender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/src/whyDidYouRender.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helium/hotspot-app/HEAD/yarn.lock --------------------------------------------------------------------------------