├── .buckconfig ├── .clj-kondo ├── babashka │ ├── fs │ │ └── config.edn │ └── sci │ │ ├── config.edn │ │ └── sci │ │ └── core.clj ├── config.edn ├── funcool │ └── promesa │ │ └── config.edn ├── metosin │ └── malli │ │ └── config.edn ├── nubank │ └── matcher-combinators │ │ └── config.edn ├── rewrite-clj │ └── rewrite-clj │ │ └── config.edn ├── status-im │ ├── cljs │ │ └── test.clj │ ├── config.edn │ └── utils │ │ └── i18n.clj └── taoensso │ └── encore │ ├── config.edn │ └── taoensso │ └── encore.clj ├── .dependabot └── config.yml ├── .dockerignore ├── .env ├── .env.e2e ├── .env.jenkins ├── .env.nightly ├── .env.release ├── .envrc ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-issue.md │ ├── release-issue.md │ ├── simple-issue.md │ └── wont-fix-bug.md ├── PULL_REQUEST_TEMPLATE.md ├── auto_assign.yml ├── github-bot.yml ├── package-lock-snitch.config.json └── stale.yml ├── .gitignore ├── .gitmodules ├── .lsp └── config.edn ├── .mailmap ├── .nycrc ├── .prettierignore ├── .prettierrc.js ├── .vscode └── settings.example.json ├── .watchmanconfig ├── .zprintrc ├── LICENSE.md ├── Makefile ├── README.md ├── RELEASES.md ├── VERSION ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── google-services.json │ ├── googleServices.gradle │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── Log.c │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ ├── ic_launcher-web.png │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── raw │ │ │ └── message.wav │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ └── react_native_config.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Inter-Bold.ttf │ │ │ │ ├── Inter-BoldItalic.ttf │ │ │ │ ├── Inter-Italic.ttf │ │ │ │ ├── Inter-Medium.ttf │ │ │ │ ├── Inter-MediumItalic.ttf │ │ │ │ ├── Inter-Regular.ttf │ │ │ │ ├── Inter-SemiBold.ttf │ │ │ │ ├── Inter-SemiBoldItalic.ttf │ │ │ │ ├── InterStatus-Regular.otf │ │ │ │ └── UbuntuMono-Regular.ttf │ │ ├── java │ │ │ └── im │ │ │ │ └── status │ │ │ │ └── ethereum │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainApplication.kt │ │ │ │ ├── RootUtil.kt │ │ │ │ └── StatusOKHttpClientFactory.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ └── splash_logo.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ ├── logo.png │ │ │ ├── notification_icon.png │ │ │ └── splash_logo.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ ├── logo.png │ │ │ ├── notification_icon.png │ │ │ └── splash_logo.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ ├── logo.png │ │ │ ├── notification_icon.png │ │ │ └── splash_logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ ├── logo.png │ │ │ ├── notification_icon.png │ │ │ └── splash_logo.png │ │ │ ├── ic_launcher-web.png │ │ │ ├── layout │ │ │ └── launch_screen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-ldpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_background.png │ │ │ ├── ic_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── raw │ │ │ ├── launching_animation.json │ │ │ └── message.wav │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── splash_theme.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── theme.xml │ │ │ └── xml │ │ │ └── file_provider_paths.xml │ │ ├── pr │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ └── release │ │ ├── AndroidManifest.xml │ │ └── res │ │ └── values │ │ └── strings.xml ├── build.gradle ├── gradle.properties ├── gradlew ├── init.gradle └── settings.gradle ├── app.json ├── babel.config.js ├── binding.gyp ├── ci ├── Jenkinsfile ├── Jenkinsfile.android ├── Jenkinsfile.combined ├── Jenkinsfile.e2e-nightly ├── Jenkinsfile.ios ├── Jenkinsfile.tests ├── README.md ├── tests │ ├── Jenkinsfile.e2e-nightly │ ├── Jenkinsfile.e2e-prs │ └── Jenkinsfile.e2e-upgrade └── tools │ ├── Jenkinsfile.fastlane-clean │ ├── Jenkinsfile.nix-cache │ ├── Jenkinsfile.playstore-meta │ ├── Jenkinsfile.pod-repo-update │ └── Jenkinsfile.xcode-clean ├── default.nix ├── doc ├── README.md ├── adding-new-chains.md ├── architecture-layers.md ├── codebase-structure-and-guidelines.md ├── debugging.md ├── decisions │ ├── 0001-record-decisions.md │ ├── 0002-extension-uri.md │ ├── 0003-geth-node.md │ ├── 0004-disable-group-chats.md │ ├── 0005-discovery-protocol.md │ ├── 0006-wallet-compatibility.md │ ├── 0007-masking-sensitive-data.md │ ├── 0008-feature-toggles-development.md │ ├── 0009-release-process-mobile.md │ ├── 0010-remove-jail-and-status-api.md │ ├── 0011-tweak-pr-process.md │ ├── 0012-using-pivotal-tracker.md │ ├── 0013-tribute-to-talk.md │ ├── 0014-wallet-team.md │ ├── 0015-team-structure.md │ ├── README.md │ ├── UI-related │ │ └── 7-august-2023-paste-button-ux.md │ └── templates │ │ └── template.md ├── dependencies.md ├── fdroid.md ├── files │ └── forging-code-with-schemas-sep-2023-slides.pdf ├── how-to-catch-crash-on-ios.md ├── ide-setup.md ├── images │ ├── architecture.png │ ├── debugging │ │ ├── geth-path.png │ │ ├── log-settings.png │ │ ├── re-frisk.png │ │ └── share-logs.jpeg │ ├── export-icons │ │ └── export-icons.gif │ ├── figma-properties.png │ ├── how-to-catch-crash-on-ios │ │ ├── automatically-manage-signing.png │ │ ├── change-diagnostics.png │ │ ├── choose-scheme-StatusImPR.png │ │ ├── config-release.png │ │ ├── edit-dev.png │ │ ├── edit-scheme.png │ │ ├── edit-shadow-cljs.png │ │ ├── located-go-code.png │ │ └── located-stack-trace.png │ ├── how-to-launch-e2e │ │ ├── how-to-launch-e2e-1.png │ │ ├── how-to-launch-e2e-2.png │ │ ├── how-to-launch-e2e-3.png │ │ └── how-to-launch-e2e-4.png │ ├── ide-setup │ │ ├── 10_REPL_8.png │ │ ├── 11_REPL_9.png │ │ ├── 12_REPL_10.png │ │ ├── 1_fake_project_file.png │ │ ├── 2_resolve.jpeg │ │ ├── 3_REPL_1.png │ │ ├── 4_REPL_2.png │ │ ├── 5_REPL_3.png │ │ ├── 6_REPL_4.png │ │ ├── 7_REPL_5.png │ │ ├── 8_REPL_6.png │ │ └── 9_REPL_7.png │ ├── layers-relationships.png │ ├── pipeline-process │ │ └── automation-checks.png │ ├── pixel-perfection │ │ └── layer-width.png │ └── quo-component.png ├── import-assets.md ├── logging-and-sharing-flow.md ├── merging-pr-process.md ├── new-guidelines.md ├── patching.md ├── pipeline_process.md ├── pixel-perfection.md ├── post-mortem.md ├── pr-review-policy.md ├── react_tree.png ├── release-checklist.md ├── release-guide.md ├── sign_in │ ├── readme.md │ ├── sign_in_diagram.jpg │ └── sign_in_diagram.xml ├── starting-guide.md ├── status-go-changes.md ├── tests │ ├── component-tests-overview.md │ ├── how-to-launch-e2e.md │ ├── how-to-run-local-tests.md │ └── tests-overview.md ├── troubleshooting.md ├── ui-guidelines.md └── use-status-backend-server.md ├── fastlane ├── .env ├── Appfile ├── Fastfile ├── Gemfile ├── Gemfile.lock ├── Matchfile ├── default.nix ├── gemset.nix ├── metadata │ └── android │ │ ├── ar-SA │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── en-US │ │ ├── full_description.txt │ │ ├── images │ │ │ ├── featureGraphic.jpg │ │ │ ├── icon.png │ │ │ └── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── es-ES │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── fr-FR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── ja-JP │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── ko-KR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── pt-BR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── ru-RU │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── tr-TR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── uk-UA │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ └── zh-CN │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt └── update.sh ├── index.js ├── ios ├── .xcode.env ├── Bridge.swift ├── Dummy.swift ├── GoogleService-Info.plist ├── Podfile ├── Podfile.lock ├── StatusIm-Bridging-Header.h ├── StatusIm.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── StatusIm.xcscheme │ │ └── StatusImPR.xcscheme ├── StatusIm.xcworkspace │ └── contents.xcworkspacedata ├── StatusIm │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon-Notification.png │ │ │ ├── Icon-Notification@2x.png │ │ │ ├── Icon-Notification@3x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── ios-marketing.png │ │ ├── AppIcon.debug.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_20pt.png │ │ │ ├── icon_20pt@2x.png │ │ │ ├── icon_20pt@3x.png │ │ │ ├── icon_29pt.png │ │ │ ├── icon_29pt@2x.png │ │ │ ├── icon_29pt@3x.png │ │ │ ├── icon_40pt.png │ │ │ ├── icon_40pt@2x.png │ │ │ ├── icon_40pt@3x.png │ │ │ ├── icon_60pt@2x.png │ │ │ ├── icon_60pt@3x.png │ │ │ ├── icon_76pt.png │ │ │ ├── icon_76pt@2x.png │ │ │ └── icon_83.5@2x.png │ │ ├── AppIconPR.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-ios-1024@1x.png │ │ │ ├── icon-ios-20@2x.png │ │ │ ├── icon-ios-20@3x.png │ │ │ ├── icon-ios-29@2x.png │ │ │ ├── icon-ios-29@3x.png │ │ │ ├── icon-ios-40@2x.png │ │ │ ├── icon-ios-40@3x.png │ │ │ ├── icon-ios-60@2x.png │ │ │ └── icon-ios-60@3x.png │ │ ├── Contents.json │ │ └── launch_image.imageset │ │ │ ├── Contents.json │ │ │ ├── launch_image.png │ │ │ ├── launch_image@2x.png │ │ │ └── launch_image@3x.png │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── StatusIm.entitlements │ ├── launch-icon.png │ ├── launch-icon@2x.png │ ├── launch-icon@3x.png │ └── main.m ├── StatusImPR │ ├── Info.plist │ └── StatusImPR.entitlements ├── StatusImTests-Bridging-Header.h ├── StatusImTests │ ├── Info.plist │ └── StatusImTests.m ├── fonts │ ├── Inter-UI-Bold.otf │ ├── Inter-UI-Medium.otf │ └── Inter-UI-Regular.otf ├── launch-image-universal.storyboard ├── nanopb.framework │ └── nanopb └── scripts │ └── set_xcode_version.sh ├── logs └── README.md ├── maestro ├── create-account-or-login.yaml ├── login.yaml └── onboarding.yaml ├── metro.config.js ├── modules └── react-native-status │ ├── android │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── im │ │ │ │ └── status │ │ │ │ └── ethereum │ │ │ │ ├── module │ │ │ │ ├── AccountManager.kt │ │ │ │ ├── DatabaseManager.kt │ │ │ │ ├── EncryptionUtils.kt │ │ │ │ ├── LogManager.kt │ │ │ │ ├── MailManager.kt │ │ │ │ ├── NetworkManager.kt │ │ │ │ ├── RNSelectableTextInputModule.kt │ │ │ │ ├── RNSelectableTextInputViewManager.kt │ │ │ │ ├── StatusBackendClient.kt │ │ │ │ ├── StatusModule.kt │ │ │ │ ├── StatusPackage.kt │ │ │ │ ├── StatusThreadPoolExecutor.kt │ │ │ │ ├── UIHelper.kt │ │ │ │ └── Utils.kt │ │ │ │ └── pushnotifications │ │ │ │ ├── ForegroundService.kt │ │ │ │ ├── PushNotification.kt │ │ │ │ ├── PushNotificationActions.kt │ │ │ │ ├── PushNotificationHelper.kt │ │ │ │ ├── PushNotificationJsDelivery.kt │ │ │ │ ├── PushNotificationPackage.kt │ │ │ │ └── PushNotificationPicturesAggregator.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_stat_notify_status.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_stat_notify_status.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_stat_notify_status.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_stat_notify_status.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_stat_notify_status.png │ │ │ ├── drawable │ │ │ └── notification_icon.png │ │ │ ├── raw │ │ │ └── notification_sound.mp3 │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ └── provider_paths.xml │ │ └── test │ │ └── java │ │ ├── android │ │ └── util │ │ │ └── Log.kt │ │ └── im │ │ └── status │ │ └── ethereum │ │ └── pushnotifications │ │ └── PushNotificationHelperTest.kt │ ├── index.js │ ├── ios │ └── RCTStatus │ │ ├── AccountManager.h │ │ ├── AccountManager.m │ │ ├── DatabaseManager.h │ │ ├── DatabaseManager.m │ │ ├── EncryptionUtils.h │ │ ├── EncryptionUtils.m │ │ ├── LogManager.h │ │ ├── LogManager.m │ │ ├── MailManager.h │ │ ├── MailManager.m │ │ ├── NetworkManager.h │ │ ├── NetworkManager.m │ │ ├── RCTStatus.h │ │ ├── RCTStatus.m │ │ ├── RCTStatus.xcodeproj │ │ └── project.pbxproj │ │ ├── StatusBackendClient.h │ │ ├── StatusBackendClient.m │ │ ├── UIHelper.h │ │ ├── UIHelper.m │ │ ├── Utils.h │ │ └── Utils.m │ ├── nodejs │ ├── bindings.js │ └── status.cpp │ ├── package.json │ └── react-native-status.podspec ├── nix ├── DETAILS.md ├── KNOWN_ISSUES.md ├── README.md ├── default.nix ├── deps │ ├── clojure │ │ ├── README.md │ │ ├── default.nix │ │ ├── deps.json │ │ ├── deps.list │ │ └── generate.sh │ ├── gradle │ │ ├── README.md │ │ ├── add_package.sh │ │ ├── default.nix │ │ ├── deps.json │ │ ├── deps.list │ │ ├── deps.urls │ │ ├── deps_hack.sh │ │ ├── generate.sh │ │ ├── get_deps.sh │ │ ├── get_projects.sh │ │ ├── proj.list │ │ └── url2json.sh │ ├── nodejs-patched │ │ ├── README.md │ │ └── default.nix │ ├── nodejs │ │ ├── README.md │ │ └── default.nix │ └── react-native │ │ ├── default.nix │ │ └── deps.nix ├── lib │ ├── checkEnvVarSet.nix │ ├── default.nix │ ├── getEnvWithDefault.nix │ ├── mergeSh.nix │ ├── mkFilter.nix │ ├── mkFilter_test.nix │ └── sanitizeVersion.nix ├── mobile │ ├── android │ │ ├── build.nix │ │ └── default.nix │ ├── default.nix │ ├── fastlane │ │ └── default.nix │ ├── ios │ │ ├── default.nix │ │ └── shells │ │ │ ├── bundler.nix │ │ │ ├── cocoapods.nix │ │ │ ├── nodejs.nix │ │ │ └── status-go.nix │ └── jsbundle │ │ └── default.nix ├── nix.conf ├── overlay.nix ├── pkgs.nix ├── pkgs │ ├── aapt2 │ │ └── default.nix │ ├── android-sdk │ │ ├── compose.nix │ │ ├── default.nix │ │ ├── pkgs.nix │ │ └── shell.nix │ ├── go-maven-resolver │ │ └── default.nix │ ├── gomobile │ │ └── default.nix │ ├── patch-maven-srcs │ │ └── default.nix │ ├── patched-go │ │ └── default.nix │ └── xcodeenv │ │ └── compose-xcodewrapper.nix ├── scripts │ ├── build.sh │ ├── clean.sh │ ├── gcroots.sh │ ├── kill_proc_prompt.sh │ ├── lib.sh │ ├── node_modules.sh │ ├── purge.sh │ ├── setup.sh │ ├── shell.sh │ ├── source.sh │ ├── upgrade.sh │ └── version.sh ├── shell.nix ├── shells.nix ├── status-go │ ├── default.nix │ ├── library │ │ └── default.nix │ ├── mobile │ │ ├── build.nix │ │ ├── default.nix │ │ └── enforceXCodeAvailable.nix │ └── source.nix └── targets.nix ├── package.json ├── patches ├── BlurView-build.gradle.patch ├── BlurView.ios.tsx.patch ├── BlurView.mm.patch ├── BlurViewNativeComponent.ts.patch ├── CameraRoll.ts.patch ├── CameraRollModule.java.patch ├── NativeCameraRollModule.ts.patch ├── NativeCameraRollModuleSpec.java.patch ├── RNCCameraRoll.mm.patch ├── VibrancyViewNativeComponent.ts.patch ├── react-native-android.patch ├── react-native-keychain.patch ├── react-native-script.patch └── react-native.patch ├── react-native.config.js ├── resources ├── config │ └── fleets.json ├── data │ └── emojis │ │ └── en.json ├── fonts │ ├── Inter-Bold.otf │ ├── Inter-BoldItalic.otf │ ├── Inter-Italic.otf │ ├── Inter-Medium.otf │ ├── Inter-MediumItalic.otf │ ├── Inter-Regular.otf │ ├── Inter-SemiBold.otf │ ├── Inter-SemiBoldItalic.otf │ ├── InterStatus-Regular.otf │ └── UbuntuMono-Regular.ttf ├── images │ ├── dapps │ │ ├── 1inch@2x.png │ │ ├── 1inch@3x.png │ │ ├── Aave@2x.png │ │ ├── Aave@3x.png │ │ ├── CoinGecko@2x.png │ │ ├── CoinGecko@3x.png │ │ ├── Uniswap@2x.png │ │ ├── Uniswap@3x.png │ │ ├── WalletConnect@2x.png │ │ ├── WalletConnect@3x.png │ │ ├── Zapper@2x.png │ │ ├── Zapper@3x.png │ │ ├── Zerion@2x.png │ │ └── Zerion@3x.png │ ├── icons │ │ ├── account@2x.png │ │ ├── account@3x.png │ │ ├── activity@2x.png │ │ ├── activity@3x.png │ │ ├── add@2x.png │ │ ├── add@3x.png │ │ ├── add_circle@2x.png │ │ ├── add_circle@3x.png │ │ ├── add_contact@2x.png │ │ ├── add_contact@3x.png │ │ ├── address@2x.png │ │ ├── address@3x.png │ │ ├── animals-nature@2x.png │ │ ├── animals-nature@3x.png │ │ ├── appearance@2x.png │ │ ├── appearance@3x.png │ │ ├── arrow_down@2x.png │ │ ├── arrow_down@3x.png │ │ ├── arrow_left@2x.png │ │ ├── arrow_left@3x.png │ │ ├── arrow_right@2x.png │ │ ├── arrow_right@3x.png │ │ ├── arrow_up@2x.png │ │ ├── arrow_up@3x.png │ │ ├── back@2x.png │ │ ├── back@3x.png │ │ ├── backspace@2x.png │ │ ├── backspace@3x.png │ │ ├── billfold@2x.png │ │ ├── billfold@3x.png │ │ ├── browser@2x.png │ │ ├── browser@3x.png │ │ ├── browser_context20@2x.png │ │ ├── browser_context20@3x.png │ │ ├── buy_crypto@2x.png │ │ ├── buy_crypto@3x.png │ │ ├── camera@2x.png │ │ ├── camera@3x.png │ │ ├── cancel@2x.png │ │ ├── cancel@3x.png │ │ ├── change@2x.png │ │ ├── change@3x.png │ │ ├── channel@2x.png │ │ ├── channel@3x.png │ │ ├── channel_category@2x.png │ │ ├── channel_category@3x.png │ │ ├── check@2x.png │ │ ├── check@3x.png │ │ ├── checkmark@2x.png │ │ ├── checkmark@3x.png │ │ ├── checkmark_circle@2x.png │ │ ├── checkmark_circle@3x.png │ │ ├── chevron_down@2x.png │ │ ├── chevron_down@3x.png │ │ ├── chevron_right@2x.png │ │ ├── chevron_right@3x.png │ │ ├── close@2x.png │ │ ├── close@3x.png │ │ ├── close_circle@2x.png │ │ ├── close_circle@3x.png │ │ ├── commands@2x.png │ │ ├── commands@3x.png │ │ ├── communities@2x.png │ │ ├── communities@3x.png │ │ ├── connector@2x.png │ │ ├── connector@3x.png │ │ ├── copy@2x.png │ │ ├── copy@3x.png │ │ ├── dapp@2x.png │ │ ├── dapp@3x.png │ │ ├── delete16@2x.png │ │ ├── delete16@3x.png │ │ ├── delete@2x.png │ │ ├── delete@3x.png │ │ ├── desktop@2x.png │ │ ├── desktop@3x.png │ │ ├── download@2x.png │ │ ├── download@3x.png │ │ ├── dropdown@2x.png │ │ ├── dropdown@3x.png │ │ ├── dropdown_up@2x.png │ │ ├── dropdown_up@3x.png │ │ ├── edit@2x.png │ │ ├── edit@3x.png │ │ ├── edit_connector@2x.png │ │ ├── edit_connector@3x.png │ │ ├── edit_context20@2x.png │ │ ├── edit_context20@3x.png │ │ ├── emojis@2x.png │ │ ├── emojis@3x.png │ │ ├── faceid@2x.png │ │ ├── faceid@3x.png │ │ ├── favourite@2x.png │ │ ├── favourite@3x.png │ │ ├── filter@2x.png │ │ ├── filter@3x.png │ │ ├── flags@2x.png │ │ ├── flags@3x.png │ │ ├── flash@2x.png │ │ ├── flash@3x.png │ │ ├── flash_active@2x.png │ │ ├── flash_active@3x.png │ │ ├── food@2x.png │ │ ├── food@3x.png │ │ ├── forward@2x.png │ │ ├── forward@3x.png │ │ ├── gallery@2x.png │ │ ├── gallery@3x.png │ │ ├── gif@2x.png │ │ ├── gif@3x.png │ │ ├── group_chat@2x.png │ │ ├── group_chat@3x.png │ │ ├── help@2x.png │ │ ├── help@3x.png │ │ ├── hide@2x.png │ │ ├── hide@3x.png │ │ ├── history@2x.png │ │ ├── history@3x.png │ │ ├── in_contacts@2x.png │ │ ├── in_contacts@3x.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── key@2x.png │ │ ├── key@3x.png │ │ ├── keyboard@2x.png │ │ ├── keyboard@3x.png │ │ ├── keycard@2x.png │ │ ├── keycard@3x.png │ │ ├── keycard_account@2x.png │ │ ├── keycard_account@3x.png │ │ ├── keycard_logo_big@2x.png │ │ ├── keycard_logo_big@3x.png │ │ ├── language@2x.png │ │ ├── language@3x.png │ │ ├── link@2x.png │ │ ├── link@3x.png │ │ ├── log_out@2x.png │ │ ├── log_out@3x.png │ │ ├── mailserver@2x.png │ │ ├── mailserver@3x.png │ │ ├── make_admin@2x.png │ │ ├── make_admin@3x.png │ │ ├── manage_connections@2x.png │ │ ├── manage_connections@3x.png │ │ ├── max@2x.png │ │ ├── max@3x.png │ │ ├── mention@2x.png │ │ ├── mention@3x.png │ │ ├── message@2x.png │ │ ├── message@3x.png │ │ ├── mobile@2x.png │ │ ├── mobile@3x.png │ │ ├── mobile_sync@2x.png │ │ ├── mobile_sync@3x.png │ │ ├── mobile_sync_off@2x.png │ │ ├── mobile_sync_off@3x.png │ │ ├── more@2x.png │ │ ├── more@3x.png │ │ ├── network@2x.png │ │ ├── network@3x.png │ │ ├── next@2x.png │ │ ├── next@3x.png │ │ ├── node_offline@2x.png │ │ ├── node_offline@3x.png │ │ ├── notification2@2x.png │ │ ├── notification2@3x.png │ │ ├── notification@2x.png │ │ ├── notification@3x.png │ │ ├── objects@2x.png │ │ ├── objects@3x.png │ │ ├── offline@2x.png │ │ ├── offline@3x.png │ │ ├── one_on_one_chat@2x.png │ │ ├── one_on_one_chat@3x.png │ │ ├── password@2x.png │ │ ├── password@3x.png │ │ ├── paste@2x.png │ │ ├── paste@3x.png │ │ ├── pause@2x.png │ │ ├── pause@3x.png │ │ ├── photo@2x.png │ │ ├── photo@3x.png │ │ ├── pin@2x.png │ │ ├── pin@3x.png │ │ ├── play@2x.png │ │ ├── play@3x.png │ │ ├── print@2x.png │ │ ├── print@3x.png │ │ ├── private_chat@2x.png │ │ ├── private_chat@3x.png │ │ ├── profile@2x.png │ │ ├── profile@3x.png │ │ ├── public_chat@2x.png │ │ ├── public_chat@3x.png │ │ ├── qr2@2x.png │ │ ├── qr2@3x.png │ │ ├── qr@2x.png │ │ ├── qr@3x.png │ │ ├── receive@2x.png │ │ ├── receive@3x.png │ │ ├── recent@2x.png │ │ ├── recent@3x.png │ │ ├── refresh@2x.png │ │ ├── refresh@3x.png │ │ ├── remove_circle@2x.png │ │ ├── remove_circle@3x.png │ │ ├── remove_contact@2x.png │ │ ├── remove_contact@3x.png │ │ ├── reorder_handle@2x.png │ │ ├── reorder_handle@3x.png │ │ ├── reply@2x.png │ │ ├── reply@3x.png │ │ ├── rotate_camera@2x.png │ │ ├── rotate_camera@3x.png │ │ ├── save@2x.png │ │ ├── save@3x.png │ │ ├── scan2@2x.png │ │ ├── scan2@3x.png │ │ ├── scan@2x.png │ │ ├── scan@3x.png │ │ ├── search2@2x.png │ │ ├── search2@3x.png │ │ ├── search@2x.png │ │ ├── search@3x.png │ │ ├── security24@2x.png │ │ ├── security@2x.png │ │ ├── security@3x.png │ │ ├── send@2x.png │ │ ├── send@3x.png │ │ ├── settings@2x.png │ │ ├── settings@3x.png │ │ ├── settings_advanced@2x.png │ │ ├── settings_advanced@3x.png │ │ ├── share@2x.android.png │ │ ├── share@2x.ios.png │ │ ├── share@2x.png │ │ ├── share@3x.android.png │ │ ├── share@3x.ios.png │ │ ├── share@3x.png │ │ ├── share_default@2x.png │ │ ├── share_default@3x.png │ │ ├── show@2x.png │ │ ├── show@3x.png │ │ ├── smileys@2x.png │ │ ├── smileys@3x.png │ │ ├── speech@2x.png │ │ ├── speech@3x.png │ │ ├── status@2x.png │ │ ├── status@3x.png │ │ ├── sticker_history@2x.png │ │ ├── sticker_history@3x.png │ │ ├── stickers@2x.png │ │ ├── stickers@3x.png │ │ ├── stickers_big@2x.png │ │ ├── stickers_big@3x.png │ │ ├── symbols@2x.png │ │ ├── symbols@3x.png │ │ ├── tabs@2x.png │ │ ├── tabs@3x.png │ │ ├── text@2x.png │ │ ├── text@3x.png │ │ ├── tiny_arrow_down@2x.png │ │ ├── tiny_arrow_down@3x.png │ │ ├── tiny_check@2x.png │ │ ├── tiny_check@3x.png │ │ ├── tiny_community@2x.png │ │ ├── tiny_community@3x.png │ │ ├── tiny_delivered@2x.png │ │ ├── tiny_delivered@3x.png │ │ ├── tiny_edit@2x.png │ │ ├── tiny_edit@3x.png │ │ ├── tiny_external@2x.png │ │ ├── tiny_external@3x.png │ │ ├── tiny_group2@2x.png │ │ ├── tiny_group2@3x.png │ │ ├── tiny_group@2x.png │ │ ├── tiny_group@3x.png │ │ ├── tiny_lock@2x.png │ │ ├── tiny_lock@3x.png │ │ ├── tiny_lock_broken@2x.png │ │ ├── tiny_lock_broken@3x.png │ │ ├── tiny_muted@2x.png │ │ ├── tiny_muted@3x.png │ │ ├── tiny_new_contact@2x.png │ │ ├── tiny_new_contact@3x.png │ │ ├── tiny_pending@2x.png │ │ ├── tiny_pending@3x.png │ │ ├── tiny_public@2x.png │ │ ├── tiny_public@3x.png │ │ ├── tiny_reply@2x.png │ │ ├── tiny_reply@3x.png │ │ ├── tiny_sent@2x.png │ │ ├── tiny_sent@3x.png │ │ ├── tiny_snt@2x.png │ │ ├── tiny_snt@3x.png │ │ ├── tiny_warning@2x.png │ │ ├── tiny_warning@3x.png │ │ ├── tiny_warning_background@2x.png │ │ ├── tiny_warning_background@3x.png │ │ ├── token@2x.png │ │ ├── token@3x.png │ │ ├── tooltip_tip@2x.png │ │ ├── tooltip_tip@3x.png │ │ ├── total_members12@2x.png │ │ ├── total_members12@3x.png │ │ ├── total_members16@2x.png │ │ ├── total_members16@3x.png │ │ ├── total_members20@2x.png │ │ ├── total_members20@3x.png │ │ ├── travel@2x.png │ │ ├── travel@3x.png │ │ ├── tribute_to_talk@2x.png │ │ ├── tribute_to_talk@3x.png │ │ ├── two_arrows@2x.png │ │ ├── two_arrows@3x.png │ │ ├── union_nfc@2x.png │ │ ├── union_nfc@3x.png │ │ ├── user_profile@2x.png │ │ ├── user_profile@3x.png │ │ ├── username@2x.png │ │ ├── username@3x.png │ │ ├── wallet@2x.png │ │ ├── wallet@3x.png │ │ ├── warning@2x.png │ │ └── warning@3x.png │ ├── icons2 │ │ ├── 12x12 │ │ │ ├── Arrow-Up@2x.png │ │ │ ├── Arrow-Up@3x.png │ │ │ ├── Jump-to@2x.png │ │ │ ├── Jump-to@3x.png │ │ │ ├── Lightning@2x.png │ │ │ ├── Lightning@3x.png │ │ │ ├── More@2x.png │ │ │ ├── More@3x.png │ │ │ ├── Total-Members@2x.png │ │ │ ├── Total-Members@3x.png │ │ │ ├── Trash@2x.png │ │ │ ├── Trash@3x.png │ │ │ ├── active-members@2x.png │ │ │ ├── active-members@3x.png │ │ │ ├── active@2x.png │ │ │ ├── active@3x.png │ │ │ ├── add-circle@2x.png │ │ │ ├── add-circle@3x.png │ │ │ ├── add-reaction@2x.png │ │ │ ├── add-reaction@3x.png │ │ │ ├── add-user@2x.png │ │ │ ├── add-user@3x.png │ │ │ ├── add@2x.png │ │ │ ├── add@3x.png │ │ │ ├── alert@2x.png │ │ │ ├── alert@3x.png │ │ │ ├── arrow-down@2x.png │ │ │ ├── arrow-down@3x.png │ │ │ ├── arrow-left-right@2x.png │ │ │ ├── arrow-left-right@3x.png │ │ │ ├── arrow-left@2x.png │ │ │ ├── arrow-left@3x.png │ │ │ ├── arrow-right@2x.png │ │ │ ├── arrow-right@3x.png │ │ │ ├── arrow-top@2x.png │ │ │ ├── arrow-top@3x.png │ │ │ ├── block@2x.png │ │ │ ├── block@3x.png │ │ │ ├── browser@2x.png │ │ │ ├── browser@3x.png │ │ │ ├── camera@2x.png │ │ │ ├── camera@3x.png │ │ │ ├── cards@2x.png │ │ │ ├── cards@3x.png │ │ │ ├── check-circle@2x.png │ │ │ ├── check-circle@3x.png │ │ │ ├── check-large@2x.png │ │ │ ├── check-large@3x.png │ │ │ ├── check@2x.png │ │ │ ├── check@3x.png │ │ │ ├── chevron-down@2x.png │ │ │ ├── chevron-down@3x.png │ │ │ ├── chevron-left@2x.png │ │ │ ├── chevron-left@3x.png │ │ │ ├── chevron-right@2x.png │ │ │ ├── chevron-right@3x.png │ │ │ ├── chevron-top@2x.png │ │ │ ├── chevron-top@3x.png │ │ │ ├── close@2x.png │ │ │ ├── close@3x.png │ │ │ ├── color@2x-1.png │ │ │ ├── color@2x.png │ │ │ ├── color@3x-1.png │ │ │ ├── color@3x.png │ │ │ ├── command@2x.png │ │ │ ├── command@3x.png │ │ │ ├── communities@2x.png │ │ │ ├── communities@3x.png │ │ │ ├── contact@2x.png │ │ │ ├── contact@3x.png │ │ │ ├── copy@2x.png │ │ │ ├── copy@3x.png │ │ │ ├── crown@2x.png │ │ │ ├── crown@3x.png │ │ │ ├── customize@2x.png │ │ │ ├── customize@3x.png │ │ │ ├── decline@2x.png │ │ │ ├── decline@3x.png │ │ │ ├── delete@2x.png │ │ │ ├── delete@3x.png │ │ │ ├── delivered@2x.png │ │ │ ├── delivered@3x.png │ │ │ ├── desktop@2x.png │ │ │ ├── desktop@3x.png │ │ │ ├── diamond@2x.png │ │ │ ├── diamond@3x.png │ │ │ ├── done@2x.png │ │ │ ├── done@3x.png │ │ │ ├── download@2x.png │ │ │ ├── download@3x.png │ │ │ ├── dropdown@2x.png │ │ │ ├── dropdown@3x.png │ │ │ ├── edit@2x.png │ │ │ ├── edit@3x.png │ │ │ ├── external@2x.png │ │ │ ├── external@3x.png │ │ │ ├── face-id@2x.png │ │ │ ├── face-id@3x.png │ │ │ ├── fees@2x.png │ │ │ ├── fees@3x.png │ │ │ ├── flag@2x.png │ │ │ ├── flag@3x.png │ │ │ ├── friend@2x.png │ │ │ ├── friend@3x.png │ │ │ ├── gas@2x.png │ │ │ ├── gas@3x.png │ │ │ ├── gavel@2x.png │ │ │ ├── gavel@3x.png │ │ │ ├── git@2x.png │ │ │ ├── git@3x.png │ │ │ ├── group@2x.png │ │ │ ├── group@3x.png │ │ │ ├── hide@2x.png │ │ │ ├── hide@3x.png │ │ │ ├── hold@2x.png │ │ │ ├── hold@3x.png │ │ │ ├── inactive@2x.png │ │ │ ├── inactive@3x.png │ │ │ ├── info@2x-1.png │ │ │ ├── info@2x.png │ │ │ ├── info@3x-1.png │ │ │ ├── info@3x.png │ │ │ ├── link@2x.png │ │ │ ├── link@3x.png │ │ │ ├── list@2x.png │ │ │ ├── list@3x.png │ │ │ ├── loading@2x.png │ │ │ ├── loading@3x.png │ │ │ ├── locked@2x.png │ │ │ ├── locked@3x.png │ │ │ ├── members@2x.png │ │ │ ├── members@3x.png │ │ │ ├── mention@2x.png │ │ │ ├── mention@3x.png │ │ │ ├── mobile@2x.png │ │ │ ├── mobile@3x.png │ │ │ ├── mutual-contact@2x.png │ │ │ ├── mutual-contact@3x.png │ │ │ ├── negative-state@2x.png │ │ │ ├── negative-state@3x.png │ │ │ ├── negative@2x.png │ │ │ ├── negative@3x.png │ │ │ ├── notification@2x.png │ │ │ ├── notification@3x.png │ │ │ ├── open-state@2x.png │ │ │ ├── open-state@3x.png │ │ │ ├── options@2x.png │ │ │ ├── options@3x.png │ │ │ ├── password@2x.png │ │ │ ├── password@3x.png │ │ │ ├── pause@2x.png │ │ │ ├── pause@3x.png │ │ │ ├── pending-dark-blur@2x.png │ │ │ ├── pending-dark-blur@3x.png │ │ │ ├── pending-dark@2x.png │ │ │ ├── pending-dark@3x.png │ │ │ ├── pending-light@2x.png │ │ │ ├── pending-light@3x.png │ │ │ ├── pending-state@2x.png │ │ │ ├── pending-state@3x.png │ │ │ ├── pending@2x.png │ │ │ ├── pending@3x.png │ │ │ ├── pick@2x.png │ │ │ ├── pick@3x.png │ │ │ ├── pin@2x.png │ │ │ ├── pin@3x.png │ │ │ ├── placeholder@2x.png │ │ │ ├── placeholder@3x.png │ │ │ ├── play@2x.png │ │ │ ├── play@3x.png │ │ │ ├── positive-state@2x.png │ │ │ ├── positive-state@3x.png │ │ │ ├── positive@2x.png │ │ │ ├── positive@3x.png │ │ │ ├── progress-100@2x.png │ │ │ ├── progress-100@3x.png │ │ │ ├── progress-25@2x.png │ │ │ ├── progress-25@3x.png │ │ │ ├── progress-50@2x.png │ │ │ ├── progress-50@3x.png │ │ │ ├── progress-75@2x.png │ │ │ ├── progress-75@3x.png │ │ │ ├── progress@2x.png │ │ │ ├── progress@3x.png │ │ │ ├── pullup@2x.png │ │ │ ├── pullup@3x.png │ │ │ ├── refresh@2x.png │ │ │ ├── refresh@3x.png │ │ │ ├── remove-user@2x.png │ │ │ ├── remove-user@3x.png │ │ │ ├── remove@2x.png │ │ │ ├── remove@3x.png │ │ │ ├── reveal@2x.png │ │ │ ├── reveal@3x.png │ │ │ ├── scan@2x.png │ │ │ ├── scan@3x.png │ │ │ ├── search@2x.png │ │ │ ├── search@3x.png │ │ │ ├── seed-phrase@2x.png │ │ │ ├── seed-phrase@3x.png │ │ │ ├── sent@2x.png │ │ │ ├── sent@3x.png │ │ │ ├── star@2x.png │ │ │ ├── star@3x.png │ │ │ ├── stop@2x.png │ │ │ ├── stop@3x.png │ │ │ ├── thumb-dark@2x.android.png │ │ │ ├── thumb-dark@2x.ios.png │ │ │ ├── thumb-dark@2x.png │ │ │ ├── thumb-dark@3x.android.png │ │ │ ├── thumb-dark@3x.ios.png │ │ │ ├── thumb-dark@3x.png │ │ │ ├── thumb-light@2x.android.png │ │ │ ├── thumb-light@2x.ios.png │ │ │ ├── thumb-light@2x.png │ │ │ ├── thumb-light@3x.android.png │ │ │ ├── thumb-light@3x.ios.png │ │ │ ├── thumb-light@3x.png │ │ │ ├── timeout@2x.png │ │ │ ├── timeout@3x.png │ │ │ ├── token-master@2x.png │ │ │ ├── token-master@3x.png │ │ │ ├── unlocked@2x.png │ │ │ ├── unlocked@3x.png │ │ │ ├── unpin@2x.png │ │ │ ├── unpin@3x.png │ │ │ ├── untrustworthy@2x.png │ │ │ ├── untrustworthy@3x.png │ │ │ ├── verified@2x.png │ │ │ ├── verified@3x.png │ │ │ ├── volume-max@2x.png │ │ │ ├── volume-max@3x.png │ │ │ ├── volume-min@2x.png │ │ │ ├── volume-min@3x.png │ │ │ ├── volume@2x.png │ │ │ ├── volume@3x.png │ │ │ ├── wallet@2x.png │ │ │ ├── wallet@3x.png │ │ │ ├── warning@2x.png │ │ │ ├── warning@3x.png │ │ │ ├── weak@2x.png │ │ │ └── weak@3x.png │ │ ├── 16x16 │ │ │ ├── active-members@2x.png │ │ │ ├── active-members@3x.png │ │ │ ├── active@2x.png │ │ │ ├── active@3x.png │ │ │ ├── add-reaction@2x.png │ │ │ ├── add-reaction@3x.png │ │ │ ├── add-user@2x.png │ │ │ ├── add-user@3x.png │ │ │ ├── add@2x.png │ │ │ ├── add@3x.png │ │ │ ├── alert@2x.png │ │ │ ├── alert@3x.png │ │ │ ├── arrow-down@2x.png │ │ │ ├── arrow-down@3x.png │ │ │ ├── arrow-left@2x.png │ │ │ ├── arrow-left@3x.png │ │ │ ├── arrow-right@2x.png │ │ │ ├── arrow-right@3x.png │ │ │ ├── arrow-top@2x.png │ │ │ ├── arrow-top@3x.png │ │ │ ├── block@2x.png │ │ │ ├── block@3x.png │ │ │ ├── calendar@2x.png │ │ │ ├── calendar@3x.png │ │ │ ├── chart-line@2x.png │ │ │ ├── chart-line@3x.png │ │ │ ├── check-circle@2x-1.png │ │ │ ├── check-circle@2x.png │ │ │ ├── check-circle@3x-1.png │ │ │ ├── check-circle@3x.png │ │ │ ├── check@2x.png │ │ │ ├── check@3x.png │ │ │ ├── chevron-down@2x.png │ │ │ ├── chevron-down@3x.png │ │ │ ├── chevron-left@2x.png │ │ │ ├── chevron-left@3x.png │ │ │ ├── chevron-right@2x.png │ │ │ ├── chevron-right@3x.png │ │ │ ├── chevron-top@2x.png │ │ │ ├── chevron-top@3x.png │ │ │ ├── chevrons-left@2x.png │ │ │ ├── chevrons-left@3x.png │ │ │ ├── chevrons-right@2x.png │ │ │ ├── chevrons-right@3x.png │ │ │ ├── close@2x-1.png │ │ │ ├── close@2x.png │ │ │ ├── close@3x-1.png │ │ │ ├── close@3x.png │ │ │ ├── collapse-left-sidebar@2x.png │ │ │ ├── collapse-left-sidebar@3x.png │ │ │ ├── collapse-right-sidebar@2x.png │ │ │ ├── collapse-right-sidebar@3x.png │ │ │ ├── collapse@2x.png │ │ │ ├── collapse@3x.png │ │ │ ├── connection@2x.png │ │ │ ├── connection@3x.png │ │ │ ├── connector-dotted@2x.png │ │ │ ├── connector-dotted@3x.png │ │ │ ├── connector@2x.png │ │ │ ├── connector@3x.png │ │ │ ├── contact-book@2x.png │ │ │ ├── contact-book@3x.png │ │ │ ├── cover@2x.png │ │ │ ├── cover@3x.png │ │ │ ├── customize@2x.png │ │ │ ├── customize@3x.png │ │ │ ├── dark@2x.png │ │ │ ├── dark@3x.png │ │ │ ├── decline@2x.png │ │ │ ├── decline@3x.png │ │ │ ├── delete@2x.png │ │ │ ├── delete@3x.png │ │ │ ├── desktop@2x.png │ │ │ ├── desktop@3x.png │ │ │ ├── diamond@2x.png │ │ │ ├── diamond@3x.png │ │ │ ├── done@2x.png │ │ │ ├── done@3x.png │ │ │ ├── dropdown@2x.png │ │ │ ├── dropdown@3x.png │ │ │ ├── email@2x.png │ │ │ ├── email@3x.png │ │ │ ├── expand-left-sidebar@2x.png │ │ │ ├── expand-left-sidebar@3x.png │ │ │ ├── expand-right-sidebar@2x.png │ │ │ ├── expand-right-sidebar@3x.png │ │ │ ├── external@2x.png │ │ │ ├── external@3x.png │ │ │ ├── focal-point@2x.png │ │ │ ├── focal-point@3x.png │ │ │ ├── folder@2x.png │ │ │ ├── folder@3x.png │ │ │ ├── forward@2x.png │ │ │ ├── forward@3x.png │ │ │ ├── friend@2x.png │ │ │ ├── friend@3x.png │ │ │ ├── fullscreen@2x.png │ │ │ ├── fullscreen@3x.png │ │ │ ├── gif@2x.png │ │ │ ├── gif@3x.png │ │ │ ├── group@2x.png │ │ │ ├── group@3x.png │ │ │ ├── hashtag@2x.png │ │ │ ├── hashtag@3x.png │ │ │ ├── history@2x.png │ │ │ ├── history@3x.png │ │ │ ├── inactive-left@2x.png │ │ │ ├── inactive-left@3x.png │ │ │ ├── inactive@2x-1.png │ │ │ ├── inactive@2x.png │ │ │ ├── inactive@3x-1.png │ │ │ ├── inactive@3x.png │ │ │ ├── info@2x.png │ │ │ ├── info@3x.png │ │ │ ├── keycard-card@2x.png │ │ │ ├── keycard-card@3x.png │ │ │ ├── light@2x.png │ │ │ ├── light@3x.png │ │ │ ├── lightning@2x.png │ │ │ ├── lightning@3x.png │ │ │ ├── link@2x.png │ │ │ ├── link@3x.png │ │ │ ├── locked@2x.png │ │ │ ├── locked@3x.png │ │ │ ├── logout@2x.png │ │ │ ├── logout@3x.png │ │ │ ├── members@2x.png │ │ │ ├── members@3x.png │ │ │ ├── mention@2x.png │ │ │ ├── mention@3x.png │ │ │ ├── messages@2x.png │ │ │ ├── messages@3x.png │ │ │ ├── mobile@2x.png │ │ │ ├── mobile@3x.png │ │ │ ├── more@2x.png │ │ │ ├── more@3x.png │ │ │ ├── mute@2x.png │ │ │ ├── mute@3x.png │ │ │ ├── negative-state@2x.png │ │ │ ├── negative-state@3x.png │ │ │ ├── negative@2x.png │ │ │ ├── negative@3x.png │ │ │ ├── nft@2x.png │ │ │ ├── nft@3x.png │ │ │ ├── not-started@2x.png │ │ │ ├── not-started@3x.png │ │ │ ├── notification@2x.png │ │ │ ├── notification@3x.png │ │ │ ├── notifications-unread@2x.png │ │ │ ├── notifications-unread@3x.png │ │ │ ├── online-left@2x.png │ │ │ ├── online-left@3x.png │ │ │ ├── online@2x.png │ │ │ ├── online@3x.png │ │ │ ├── open@2x.png │ │ │ ├── open@3x.png │ │ │ ├── options@2x.png │ │ │ ├── options@3x.png │ │ │ ├── pending-state@2x.png │ │ │ ├── pending-state@3x.png │ │ │ ├── pending-user@2x.png │ │ │ ├── pending-user@3x.png │ │ │ ├── pin@2x.png │ │ │ ├── pin@3x.png │ │ │ ├── placeholder@2x.png │ │ │ ├── placeholder@3x.png │ │ │ ├── positive-right@2x.png │ │ │ ├── positive-right@3x.png │ │ │ ├── positive-state@2x.png │ │ │ ├── positive-state@3x.png │ │ │ ├── positive@2x.png │ │ │ ├── positive@3x.png │ │ │ ├── privacy@2x.png │ │ │ ├── privacy@3x.png │ │ │ ├── profile@2x.png │ │ │ ├── profile@3x.png │ │ │ ├── progress@2x.png │ │ │ ├── progress@3x.png │ │ │ ├── pullup@2x.png │ │ │ ├── pullup@3x.png │ │ │ ├── reaction@2x.png │ │ │ ├── reaction@3x.png │ │ │ ├── receive@2x.png │ │ │ ├── receive@3x.png │ │ │ ├── refresh@2x.png │ │ │ ├── refresh@3x.png │ │ │ ├── remove-user@2x.png │ │ │ ├── remove-user@3x.png │ │ │ ├── remove@2x.png │ │ │ ├── remove@3x.png │ │ │ ├── reply@2x.png │ │ │ ├── reply@3x.png │ │ │ ├── sad-face@2x.png │ │ │ ├── sad-face@3x.png │ │ │ ├── sad@2x.png │ │ │ ├── sad@3x.png │ │ │ ├── save@2x.png │ │ │ ├── save@3x.png │ │ │ ├── scanning@2x.png │ │ │ ├── scanning@3x.png │ │ │ ├── search@2x.png │ │ │ ├── search@3x.png │ │ │ ├── send@2x.png │ │ │ ├── send@3x.png │ │ │ ├── share@2x.png │ │ │ ├── share@3x.png │ │ │ ├── sort@2x.png │ │ │ ├── sort@3x.png │ │ │ ├── stickers@2x.png │ │ │ ├── stickers@3x.png │ │ │ ├── swap@2x.png │ │ │ ├── swap@3x.png │ │ │ ├── token@2x.png │ │ │ ├── token@3x.png │ │ │ ├── unblock@2x.png │ │ │ ├── unblock@3x.png │ │ │ ├── unlocked@2x.png │ │ │ ├── unlocked@3x.png │ │ │ ├── unmute@2x.png │ │ │ ├── unmute@3x.png │ │ │ ├── unpin@2x.png │ │ │ ├── unpin@3x.png │ │ │ ├── unread@2x.png │ │ │ ├── unread@3x.png │ │ │ ├── volume-max@2x.png │ │ │ ├── volume-max@3x.png │ │ │ ├── volume-min@2x.png │ │ │ ├── volume-min@3x.png │ │ │ ├── volume@2x.png │ │ │ ├── volume@3x.png │ │ │ ├── warning@2x-1.png │ │ │ ├── warning@2x.png │ │ │ ├── warning@3x-1.png │ │ │ ├── warning@3x.png │ │ │ ├── web@2x.png │ │ │ ├── web@3x.png │ │ │ ├── world@2x.png │ │ │ └── world@3x.png │ │ ├── 20x20 │ │ │ ├── account-number@2x.png │ │ │ ├── account-number@3x.png │ │ │ ├── active-member@2x.png │ │ │ ├── active-member@3x.png │ │ │ ├── active-members@2x.png │ │ │ ├── active-members@3x.png │ │ │ ├── active@2x.png │ │ │ ├── active@3x.png │ │ │ ├── activity-center@2x.png │ │ │ ├── activity-center@3x.png │ │ │ ├── activity@2x.png │ │ │ ├── activity@3x.png │ │ │ ├── add-reaction@2x.png │ │ │ ├── add-reaction@3x.png │ │ │ ├── add-small@2x.png │ │ │ ├── add-small@3x.png │ │ │ ├── add-token@2x.png │ │ │ ├── add-token@3x.png │ │ │ ├── add-user@2x.png │ │ │ ├── add-user@3x.png │ │ │ ├── add@2x.png │ │ │ ├── add@3x.png │ │ │ ├── advanced@2x.png │ │ │ ├── advanced@3x.png │ │ │ ├── airdrop@2x.png │ │ │ ├── airdrop@3x.png │ │ │ ├── alert@2x.png │ │ │ ├── alert@3x.png │ │ │ ├── alphabetically@2x.png │ │ │ ├── alphabetically@3x.png │ │ │ ├── android@2x.png │ │ │ ├── android@3x.png │ │ │ ├── anonymous@2x.png │ │ │ ├── anonymous@3x.png │ │ │ ├── arrow-down@2x.png │ │ │ ├── arrow-down@3x.png │ │ │ ├── arrow-left@2x.png │ │ │ ├── arrow-left@3x.png │ │ │ ├── arrow-right@2x.png │ │ │ ├── arrow-right@3x.png │ │ │ ├── arrow-top@2x.png │ │ │ ├── arrow-top@3x.png │ │ │ ├── arrow-up@2x.png │ │ │ ├── arrow-up@3x.png │ │ │ ├── attach@2x.png │ │ │ ├── attach@3x.png │ │ │ ├── audio@2x.png │ │ │ ├── audio@3x.png │ │ │ ├── automatic@2x.png │ │ │ ├── automatic@3x.png │ │ │ ├── backspace@2x.png │ │ │ ├── backspace@3x.png │ │ │ ├── ban-user@2x.png │ │ │ ├── ban-user@3x.png │ │ │ ├── block@2x.png │ │ │ ├── block@3x.png │ │ │ ├── bold@2x.png │ │ │ ├── bold@3x.png │ │ │ ├── bridge@2x.png │ │ │ ├── bridge@3x.png │ │ │ ├── browser-context@2x.png │ │ │ ├── browser-context@3x.png │ │ │ ├── browser@2x.png │ │ │ ├── browser@3x.png │ │ │ ├── bullet-list@2x.png │ │ │ ├── bullet-list@3x.png │ │ │ ├── bullet@2x.png │ │ │ ├── bullet@3x.png │ │ │ ├── buy@2x.png │ │ │ ├── buy@3x.png │ │ │ ├── calendar@2x.png │ │ │ ├── calendar@3x.png │ │ │ ├── camera@2x.png │ │ │ ├── camera@3x.png │ │ │ ├── card-view@2x.png │ │ │ ├── card-view@3x.png │ │ │ ├── centre-align@2x.png │ │ │ ├── centre-align@3x.png │ │ │ ├── chart@2x.png │ │ │ ├── chart@3x.png │ │ │ ├── chatkey@2x.png │ │ │ ├── chatkey@3x.png │ │ │ ├── check-circle@2x.png │ │ │ ├── check-circle@3x.png │ │ │ ├── check-small@2x.png │ │ │ ├── check-small@3x.png │ │ │ ├── check@2x.png │ │ │ ├── check@3x.png │ │ │ ├── checktoken@2x.png │ │ │ ├── checktoken@3x.png │ │ │ ├── chevron-down@2x.png │ │ │ ├── chevron-down@3x.png │ │ │ ├── chevron-left@2x.png │ │ │ ├── chevron-left@3x.png │ │ │ ├── chevron-right@2x.png │ │ │ ├── chevron-right@3x.png │ │ │ ├── chevron-top@2x.png │ │ │ ├── chevron-top@3x.png │ │ │ ├── chevron-up@2x.png │ │ │ ├── chevron-up@3x.png │ │ │ ├── chevrons-left@2x.png │ │ │ ├── chevrons-left@3x.png │ │ │ ├── chevrons-right@2x.png │ │ │ ├── chevrons-right@3x.png │ │ │ ├── circle@2x.png │ │ │ ├── circle@3x.png │ │ │ ├── clear@2x.png │ │ │ ├── clear@3x.png │ │ │ ├── close-circle@2x.png │ │ │ ├── close-circle@3x.png │ │ │ ├── close@2x.png │ │ │ ├── close@3x.png │ │ │ ├── code-block@2x.png │ │ │ ├── code-block@3x.png │ │ │ ├── code@2x.png │ │ │ ├── code@3x.png │ │ │ ├── collapse-ls@2x.png │ │ │ ├── collapse-ls@3x.png │ │ │ ├── collapse-rs@2x.png │ │ │ ├── collapse-rs@3x.png │ │ │ ├── collapse-topbar@2x.png │ │ │ ├── collapse-topbar@3x.png │ │ │ ├── collapse@2x.png │ │ │ ├── collapse@3x.png │ │ │ ├── colour-pick@2x.png │ │ │ ├── colour-pick@3x.png │ │ │ ├── command@2x.png │ │ │ ├── command@3x.png │ │ │ ├── communities@2x.png │ │ │ ├── communities@3x.png │ │ │ ├── compact@2x.png │ │ │ ├── compact@3x.png │ │ │ ├── complete-id@2x.png │ │ │ ├── complete-id@3x.png │ │ │ ├── confetti@2x.png │ │ │ ├── confetti@3x.png │ │ │ ├── connection@2x.png │ │ │ ├── connection@3x.png │ │ │ ├── contact-book@2x.png │ │ │ ├── contact-book@3x.png │ │ │ ├── contact@2x.png │ │ │ ├── contact@3x.png │ │ │ ├── copy@2x.png │ │ │ ├── copy@3x.png │ │ │ ├── correct-dark@2x.png │ │ │ ├── correct-dark@3x.png │ │ │ ├── correct@2x.png │ │ │ ├── correct@3x.png │ │ │ ├── cross-circle@2x.png │ │ │ ├── cross-circle@3x.png │ │ │ ├── crown@2x.png │ │ │ ├── crown@3x.png │ │ │ ├── customize@2x.png │ │ │ ├── customize@3x.png │ │ │ ├── danger@2x.png │ │ │ ├── danger@3x.png │ │ │ ├── dapps@2x.png │ │ │ ├── dapps@3x.png │ │ │ ├── dark@2x.png │ │ │ ├── dark@3x.png │ │ │ ├── dashboard@2x.png │ │ │ ├── dashboard@3x.png │ │ │ ├── data-usage@2x.png │ │ │ ├── data-usage@3x.png │ │ │ ├── decline@2x.png │ │ │ ├── decline@3x.png │ │ │ ├── delete@2x.png │ │ │ ├── delete@3x.png │ │ │ ├── derivated-path@2x.png │ │ │ ├── derivated-path@3x.png │ │ │ ├── desktop@2x.png │ │ │ ├── desktop@3x.png │ │ │ ├── destroy@2x.png │ │ │ ├── destroy@3x.png │ │ │ ├── disconnect@2x.png │ │ │ ├── disconnect@3x.png │ │ │ ├── dock@2x.png │ │ │ ├── dock@3x.png │ │ │ ├── done@2x.png │ │ │ ├── done@3x.png │ │ │ ├── download@2x.png │ │ │ ├── download@3x.png │ │ │ ├── drag@2x.png │ │ │ ├── drag@3x.png │ │ │ ├── dropdown@2x.png │ │ │ ├── dropdown@3x.png │ │ │ ├── duration@2x.png │ │ │ ├── duration@3x.png │ │ │ ├── edit@2x.png │ │ │ ├── edit@3x.png │ │ │ ├── email@2x.png │ │ │ ├── email@3x.png │ │ │ ├── epic@2x.png │ │ │ ├── epic@3x.png │ │ │ ├── expand-ls@2x.png │ │ │ ├── expand-ls@3x.png │ │ │ ├── expand-rs@2x.png │ │ │ ├── expand-rs@3x.png │ │ │ ├── expand-topbar@2x.png │ │ │ ├── expand-topbar@3x.png │ │ │ ├── expand@2x.png │ │ │ ├── expand@3x.png │ │ │ ├── external@2x.png │ │ │ ├── external@3x.png │ │ │ ├── face-id@2x.png │ │ │ ├── face-id@3x.png │ │ │ ├── faceid-key@2x.png │ │ │ ├── faceid-key@3x.png │ │ │ ├── faces@2x.png │ │ │ ├── faces@3x.png │ │ │ ├── favourite@2x.png │ │ │ ├── favourite@3x.png │ │ │ ├── feed@2x.png │ │ │ ├── feed@3x.png │ │ │ ├── file@2x.png │ │ │ ├── file@3x.png │ │ │ ├── flag@2x.png │ │ │ ├── flag@3x.png │ │ │ ├── flags@2x.png │ │ │ ├── flags@3x.png │ │ │ ├── flash-off@2x.png │ │ │ ├── flash-off@3x.png │ │ │ ├── flash@2x.png │ │ │ ├── flash@3x.png │ │ │ ├── flashlight-off@2x.png │ │ │ ├── flashlight-off@3x.png │ │ │ ├── flashlight-on@2x.png │ │ │ ├── flashlight-on@3x.png │ │ │ ├── flip@2x.png │ │ │ ├── flip@3x.png │ │ │ ├── focus@2x.png │ │ │ ├── focus@3x.png │ │ │ ├── folder@2x.png │ │ │ ├── folder@3x.png │ │ │ ├── food@2x.png │ │ │ ├── food@3x.png │ │ │ ├── format@2x.png │ │ │ ├── format@3x.png │ │ │ ├── forward@2x.png │ │ │ ├── forward@3x.png │ │ │ ├── friend@2x.png │ │ │ ├── friend@3x.png │ │ │ ├── gas@2x.png │ │ │ ├── gas@3x.png │ │ │ ├── gavel@2x.png │ │ │ ├── gavel@3x.png │ │ │ ├── gif@2x.png │ │ │ ├── gif@3x.png │ │ │ ├── gift@2x.png │ │ │ ├── gift@3x.png │ │ │ ├── globe@2x.png │ │ │ ├── globe@3x.png │ │ │ ├── group@2x.png │ │ │ ├── group@3x.png │ │ │ ├── hashtag@2x-1.png │ │ │ ├── hashtag@2x.png │ │ │ ├── hashtag@3x-1.png │ │ │ ├── hashtag@3x.png │ │ │ ├── heart-break@2x.png │ │ │ ├── heart-break@3x.png │ │ │ ├── heart@2x.png │ │ │ ├── heart@3x.png │ │ │ ├── help@2x.png │ │ │ ├── help@3x.png │ │ │ ├── hide-password@2x.png │ │ │ ├── hide-password@3x.png │ │ │ ├── hide@2x.png │ │ │ ├── hide@3x.png │ │ │ ├── history@2x.png │ │ │ ├── history@3x.png │ │ │ ├── hold@2x.png │ │ │ ├── hold@3x.png │ │ │ ├── hourglass@2x.png │ │ │ ├── hourglass@3x.png │ │ │ ├── image@2x.png │ │ │ ├── image@3x.png │ │ │ ├── import@2x.png │ │ │ ├── import@3x.png │ │ │ ├── inactive-left@2x.png │ │ │ ├── inactive-left@3x.png │ │ │ ├── inactive@2x-1.png │ │ │ ├── inactive@2x.png │ │ │ ├── inactive@3x-1.png │ │ │ ├── inactive@3x.png │ │ │ ├── incorrect-dark@2x.png │ │ │ ├── incorrect-dark@3x.png │ │ │ ├── incorrect@2x.png │ │ │ ├── incorrect@3x.png │ │ │ ├── info-badge@2x.png │ │ │ ├── info-badge@3x.png │ │ │ ├── info@2x.png │ │ │ ├── info@3x.png │ │ │ ├── italic@2x.png │ │ │ ├── italic@3x.png │ │ │ ├── justify@2x.png │ │ │ ├── justify@3x.png │ │ │ ├── key@2x.png │ │ │ ├── key@3x.png │ │ │ ├── keyboard@2x.png │ │ │ ├── keyboard@3x.png │ │ │ ├── keycard-card@2x.png │ │ │ ├── keycard-card@3x.png │ │ │ ├── keycard-logo@2x.png │ │ │ ├── keycard-logo@3x.png │ │ │ ├── keycard@2x.png │ │ │ ├── keycard@3x.png │ │ │ ├── kick-user@2x.png │ │ │ ├── kick-user@3x.png │ │ │ ├── language@2x.png │ │ │ ├── language@3x.png │ │ │ ├── laptop@2x.png │ │ │ ├── laptop@3x.png │ │ │ ├── left-align@2x.png │ │ │ ├── left-align@3x.png │ │ │ ├── light@2x.png │ │ │ ├── light@3x.png │ │ │ ├── link@2x.png │ │ │ ├── link@3x.png │ │ │ ├── list-view-collapsed@2x.png │ │ │ ├── list-view-collapsed@3x.png │ │ │ ├── list-view@2x.png │ │ │ ├── list-view@3x.png │ │ │ ├── loading@2x.png │ │ │ ├── loading@3x.png │ │ │ ├── locked@2x.png │ │ │ ├── locked@3x.png │ │ │ ├── log-out@2x.png │ │ │ ├── log-out@3x.png │ │ │ ├── mark-as-read@2x.png │ │ │ ├── mark-as-read@3x.png │ │ │ ├── media@2x.png │ │ │ ├── media@3x.png │ │ │ ├── members@2x.png │ │ │ ├── members@3x.png │ │ │ ├── mention@2x.png │ │ │ ├── mention@3x.png │ │ │ ├── menu@2x.png │ │ │ ├── menu@3x.png │ │ │ ├── messages@2x-1.png │ │ │ ├── messages@2x.png │ │ │ ├── messages@3x-1.png │ │ │ ├── messages@3x.png │ │ │ ├── mint@2x.png │ │ │ ├── mint@3x.png │ │ │ ├── mobile@2x.png │ │ │ ├── mobile@3x.png │ │ │ ├── move-up@2x.png │ │ │ ├── move-up@3x.png │ │ │ ├── multi-profile@2x.png │ │ │ ├── multi-profile@3x.png │ │ │ ├── muted@2x.png │ │ │ ├── muted@3x.png │ │ │ ├── mutual-contact@2x.png │ │ │ ├── mutual-contact@3x.png │ │ │ ├── nature@2x.png │ │ │ ├── nature@3x.png │ │ │ ├── negative-state@2x.png │ │ │ ├── negative-state@3x.png │ │ │ ├── networks@2x.png │ │ │ ├── networks@3x.png │ │ │ ├── new-message@2x.png │ │ │ ├── new-message@3x.png │ │ │ ├── new-window@2x.png │ │ │ ├── new-window@3x.png │ │ │ ├── nft@2x.png │ │ │ ├── nft@3x.png │ │ │ ├── node@2x.png │ │ │ ├── node@3x.png │ │ │ ├── not-started@2x.png │ │ │ ├── not-started@3x.png │ │ │ ├── notification@2x.png │ │ │ ├── notification@3x.png │ │ │ ├── notifications-unread@2x.png │ │ │ ├── notifications-unread@3x.png │ │ │ ├── notifications@2x.png │ │ │ ├── notifications@3x.png │ │ │ ├── numbered-list@2x.png │ │ │ ├── numbered-list@3x.png │ │ │ ├── objects@2x.png │ │ │ ├── objects@3x.png │ │ │ ├── offline@2x.png │ │ │ ├── offline@3x.png │ │ │ ├── online-left@2x.png │ │ │ ├── online-left@3x.png │ │ │ ├── online@2x.png │ │ │ ├── online@3x.png │ │ │ ├── open@2x.png │ │ │ ├── open@3x.png │ │ │ ├── opensea@2x.png │ │ │ ├── opensea@3x.png │ │ │ ├── options-circle@2x.png │ │ │ ├── options-circle@3x.png │ │ │ ├── options@2x.png │ │ │ ├── options@3x.png │ │ │ ├── pallete@2x.png │ │ │ ├── pallete@3x.png │ │ │ ├── password@2x.png │ │ │ ├── password@3x.png │ │ │ ├── pause-audio@2x.png │ │ │ ├── pause-audio@3x.png │ │ │ ├── pause@2x.png │ │ │ ├── pause@3x.png │ │ │ ├── pending-dark-blur@2x.png │ │ │ ├── pending-dark-blur@3x.png │ │ │ ├── pending-dark@2x.png │ │ │ ├── pending-dark@3x.png │ │ │ ├── pending-light@2x.png │ │ │ ├── pending-light@3x.png │ │ │ ├── pending-state@2x.png │ │ │ ├── pending-state@3x.png │ │ │ ├── pending-user@2x.png │ │ │ ├── pending-user@3x.png │ │ │ ├── pending@2x.png │ │ │ ├── pending@3x.png │ │ │ ├── percentage@2x.png │ │ │ ├── percentage@3x.png │ │ │ ├── pin@2x.png │ │ │ ├── pin@3x.png │ │ │ ├── pincode@2x.png │ │ │ ├── pincode@3x.png │ │ │ ├── placeholder@2x.png │ │ │ ├── placeholder@3x.png │ │ │ ├── play-audio@2x.png │ │ │ ├── play-audio@3x.png │ │ │ ├── play@2x.png │ │ │ ├── play@3x.png │ │ │ ├── positive-state@2x.png │ │ │ ├── positive-state@3x.png │ │ │ ├── privacy@2x.png │ │ │ ├── privacy@3x.png │ │ │ ├── profile@2x.png │ │ │ ├── profile@3x.png │ │ │ ├── pullup@2x.png │ │ │ ├── pullup@3x.png │ │ │ ├── qr-code@2x.png │ │ │ ├── qr-code@3x.png │ │ │ ├── reaction@2x.png │ │ │ ├── reaction@3x.png │ │ │ ├── receive-message@2x.png │ │ │ ├── receive-message@3x.png │ │ │ ├── receive@2x.png │ │ │ ├── receive@3x.png │ │ │ ├── recent@2x.png │ │ │ ├── recent@3x.png │ │ │ ├── refresh@2x.png │ │ │ ├── refresh@3x.png │ │ │ ├── relaxed@2x.png │ │ │ ├── relaxed@3x.png │ │ │ ├── remove-user@2x.png │ │ │ ├── remove-user@3x.png │ │ │ ├── remove@2x.png │ │ │ ├── remove@3x.png │ │ │ ├── reorder@2x.png │ │ │ ├── reorder@3x.png │ │ │ ├── reply@2x.png │ │ │ ├── reply@3x.png │ │ │ ├── reveal-whitelist@2x.png │ │ │ ├── reveal-whitelist@3x.png │ │ │ ├── reveal@2x.png │ │ │ ├── reveal@3x.png │ │ │ ├── revere@2x.png │ │ │ ├── revere@3x.png │ │ │ ├── revert@2x.png │ │ │ ├── revert@3x.png │ │ │ ├── review-id@2x.png │ │ │ ├── review-id@3x.png │ │ │ ├── review-request@2x.png │ │ │ ├── review-request@3x.png │ │ │ ├── right-align@2x.png │ │ │ ├── right-align@3x.png │ │ │ ├── rotate@2x.png │ │ │ ├── rotate@3x.png │ │ │ ├── sad@2x.png │ │ │ ├── sad@3x.png │ │ │ ├── save@2x.png │ │ │ ├── save@3x.png │ │ │ ├── scan-big@2x.png │ │ │ ├── scan-big@3x.png │ │ │ ├── scan@2x.png │ │ │ ├── scan@3x.png │ │ │ ├── search@2x.png │ │ │ ├── search@3x.png │ │ │ ├── seed@2x.png │ │ │ ├── seed@3x.png │ │ │ ├── send-message@2x.png │ │ │ ├── send-message@3x.png │ │ │ ├── send@2x.png │ │ │ ├── send@3x.png │ │ │ ├── settings@2x.png │ │ │ ├── settings@3x.png │ │ │ ├── share@2x.png │ │ │ ├── share@3x.png │ │ │ ├── signature@2x.png │ │ │ ├── signature@3x.png │ │ │ ├── sort@2x.png │ │ │ ├── sort@3x.png │ │ │ ├── speed@2x.png │ │ │ ├── speed@3x.png │ │ │ ├── status-logo-bw@2x.png │ │ │ ├── status-logo-bw@3x.png │ │ │ ├── status-logo@2x.png │ │ │ ├── status-logo@3x.png │ │ │ ├── status@2x.png │ │ │ ├── status@3x.png │ │ │ ├── stickers@2x.png │ │ │ ├── stickers@3x.png │ │ │ ├── stop@2x.png │ │ │ ├── stop@3x.png │ │ │ ├── strikethrough@2x.png │ │ │ ├── strikethrough@3x.png │ │ │ ├── subscript@2x.png │ │ │ ├── subscript@3x.png │ │ │ ├── superscript@2x.png │ │ │ ├── superscript@3x.png │ │ │ ├── swap@2x.png │ │ │ ├── swap@3x.png │ │ │ ├── symbols@2x.png │ │ │ ├── symbols@3x.png │ │ │ ├── syncing@2x.png │ │ │ ├── syncing@3x.png │ │ │ ├── table@2x.png │ │ │ ├── table@3x.png │ │ │ ├── tablet@2x.png │ │ │ ├── tablet@3x.png │ │ │ ├── tabs@2x.png │ │ │ ├── tabs@3x.png │ │ │ ├── toggle@2x.png │ │ │ ├── toggle@3x.png │ │ │ ├── token-sales@2x.png │ │ │ ├── token-sales@3x.png │ │ │ ├── token@2x.png │ │ │ ├── token@3x.png │ │ │ ├── topbar-dock@2x.png │ │ │ ├── topbar-dock@3x.png │ │ │ ├── topbar@2x.png │ │ │ ├── topbar@3x.png │ │ │ ├── touch-id@2x.png │ │ │ ├── touch-id@3x.png │ │ │ ├── transaction@2x.png │ │ │ ├── transaction@3x.png │ │ │ ├── travel@2x.png │ │ │ ├── travel@3x.png │ │ │ ├── ublock-user@2x.png │ │ │ ├── ublock-user@3x.png │ │ │ ├── unblock@2x.png │ │ │ ├── unblock@3x.png │ │ │ ├── underline@2x.png │ │ │ ├── underline@3x.png │ │ │ ├── unlocked@2x.png │ │ │ ├── unlocked@3x.png │ │ │ ├── unpin@2x.png │ │ │ ├── unpin@3x.png │ │ │ ├── unread@2x.png │ │ │ ├── unread@3x.png │ │ │ ├── untrustworthy@2x.png │ │ │ ├── untrustworthy@3x.png │ │ │ ├── up-to-date@2x.png │ │ │ ├── up-to-date@3x.png │ │ │ ├── verified@2x.png │ │ │ ├── verified@3x.png │ │ │ ├── video@2x.png │ │ │ ├── video@3x.png │ │ │ ├── waffle@2x.png │ │ │ ├── waffle@3x.png │ │ │ ├── wallet@2x.png │ │ │ ├── wallet@3x.png │ │ │ ├── warning@2x.png │ │ │ ├── warning@3x.png │ │ │ ├── world@2x.png │ │ │ ├── world@3x.png │ │ │ ├── zoom-in@2x.png │ │ │ ├── zoom-in@3x.png │ │ │ ├── zoom-out@2x.png │ │ │ └── zoom-out@3x.png │ │ ├── 24x24 │ │ │ ├── browser@2x.png │ │ │ ├── browser@3x.png │ │ │ ├── communities@2x.png │ │ │ ├── communities@3x.png │ │ │ ├── discover@2x.png │ │ │ ├── discover@3x.png │ │ │ ├── feed@2x.png │ │ │ ├── feed@3x.png │ │ │ ├── flash-camera@2x.png │ │ │ ├── flash-camera@3x.png │ │ │ ├── messages@2x.png │ │ │ ├── messages@3x.png │ │ │ ├── nodes@2x.png │ │ │ ├── nodes@3x.png │ │ │ ├── placeholder@2x.png │ │ │ ├── placeholder@3x.png │ │ │ ├── settings@2x.png │ │ │ ├── settings@3x.png │ │ │ ├── swap@2x.png │ │ │ ├── swap@3x.png │ │ │ ├── wallet@2x.png │ │ │ └── wallet@3x.png │ │ ├── 32x32 │ │ │ ├── derivation-path@2x.png │ │ │ ├── derivation-path@3x.png │ │ │ ├── identicon-ring@2x.png │ │ │ ├── identicon-ring@3x.png │ │ │ ├── members@2x.png │ │ │ └── members@3x.png │ │ └── 48x48 │ │ │ ├── rotate-camera@2x.png │ │ │ └── rotate-camera@3x.png │ ├── mock2 │ │ ├── bored-ape.png │ │ ├── coinbase@2x.png │ │ ├── collectible-monkey.png │ │ ├── collectible.png │ │ ├── collectible1.png │ │ ├── collectible2.png │ │ ├── collectible3.png │ │ ├── collectible4.png │ │ ├── collectible5.png │ │ ├── collectible6.png │ │ ├── community-banner@2x.png │ │ ├── community-cover.png │ │ ├── community-logo@2x.png │ │ ├── contact.png │ │ ├── dark-blur-background@2x.png │ │ ├── dark-blur-background@3x.png │ │ ├── dark_blur_bg.png │ │ ├── decentraland.png │ │ ├── decentraland@2x.png │ │ ├── decentraland@3x.png │ │ ├── diamond.png │ │ ├── gif@2x.png │ │ ├── light-blur-background@2x.png │ │ ├── light-blur-background@3x.png │ │ ├── monkey.png │ │ ├── photo1@2x.png │ │ ├── photo2@2x.png │ │ ├── photo3@2x.png │ │ ├── pinterest.png │ │ ├── qr-code@2x.png │ │ ├── qr-code@3x.png │ │ ├── rarible.png │ │ ├── rarible@2x.png │ │ ├── rarible@3x.png │ │ ├── ring.png │ │ ├── small_opt_card_icon.png │ │ ├── small_opt_card_main.png │ │ ├── status-logo.png │ │ ├── sticker@2x.png │ │ ├── user_picture_female2@2x.png │ │ ├── user_picture_male4@2x.png │ │ ├── user_picture_male5@2x.png │ │ └── verified.png │ ├── networks │ │ ├── Arbitrum@2x.png │ │ ├── Arbitrum@3x.png │ │ ├── Base@2x.png │ │ ├── Base@3x.png │ │ ├── Binance@2x.png │ │ ├── Binance@3x.png │ │ ├── Ethereum@2x.png │ │ ├── Ethereum@3x.png │ │ ├── Gnosis@2x.png │ │ ├── Gnosis@3x.png │ │ ├── Hermez@2x.png │ │ ├── Hermez@3x.png │ │ ├── Optimism@2x.png │ │ ├── Optimism@3x.png │ │ ├── Paraswap@2x.png │ │ ├── Paraswap@3x.png │ │ ├── Polygon@2x.png │ │ ├── Polygon@3x.png │ │ ├── Scroll@2x.png │ │ ├── Scroll@3x.png │ │ ├── Status@2x.png │ │ ├── Status@3x.png │ │ ├── Taiko@2x.png │ │ ├── Taiko@3x.png │ │ ├── Unknown@2x.png │ │ ├── Unknown@3x.png │ │ ├── xDAI@2x.png │ │ ├── xDAI@3x.png │ │ ├── zkSync@2x.png │ │ └── zkSync@3x.png │ ├── reactions │ │ ├── angry.png │ │ ├── angry@2x.png │ │ ├── angry@3x.png │ │ ├── laugh.png │ │ ├── laugh@2x.png │ │ ├── laugh@3x.png │ │ ├── love.png │ │ ├── love@2x.png │ │ ├── love@3x.png │ │ ├── sad.png │ │ ├── sad@2x.png │ │ ├── sad@3x.png │ │ ├── thumbs-down.png │ │ ├── thumbs-down@2x.png │ │ ├── thumbs-down@3x.png │ │ ├── thumbs-up.png │ │ ├── thumbs-up@2x.png │ │ └── thumbs-up@3x.png │ ├── socials │ │ ├── bigger │ │ │ ├── default │ │ │ │ ├── facebook@2x.png │ │ │ │ ├── facebook@3x.png │ │ │ │ ├── flickr@2x.png │ │ │ │ ├── flickr@3x.png │ │ │ │ ├── github@2x.png │ │ │ │ ├── github@3x.png │ │ │ │ ├── instagram@2x.png │ │ │ │ ├── instagram@3x.png │ │ │ │ ├── lens@2x.png │ │ │ │ ├── lens@3x.png │ │ │ │ ├── link@2x.png │ │ │ │ ├── link@3x.png │ │ │ │ ├── linkedin@2x.png │ │ │ │ ├── linkedin@3x.png │ │ │ │ ├── mirror@2x.png │ │ │ │ ├── mirror@3x.png │ │ │ │ ├── opensea@2x.png │ │ │ │ ├── opensea@3x.png │ │ │ │ ├── pinterest@2x.png │ │ │ │ ├── pinterest@3x.png │ │ │ │ ├── rarible@2x.png │ │ │ │ ├── rarible@3x.png │ │ │ │ ├── reddit@2x.png │ │ │ │ ├── reddit@3x.png │ │ │ │ ├── snapchat@2x.png │ │ │ │ ├── snapchat@3x.png │ │ │ │ ├── spotify@2x.png │ │ │ │ ├── spotify@3x.png │ │ │ │ ├── status@2x.png │ │ │ │ ├── status@3x.png │ │ │ │ ├── superrare@2x.png │ │ │ │ ├── superrare@3x.png │ │ │ │ ├── tumblr@2x.png │ │ │ │ ├── tumblr@3x.png │ │ │ │ ├── twitch@2x.png │ │ │ │ ├── twitch@3x.png │ │ │ │ ├── twitter@2x.png │ │ │ │ ├── twitter@3x.png │ │ │ │ ├── youtube@2x.png │ │ │ │ └── youtube@3x.png │ │ │ └── solid │ │ │ │ ├── facebook@2x.png │ │ │ │ ├── facebook@3x.png │ │ │ │ ├── flickr@2x.png │ │ │ │ ├── flickr@3x.png │ │ │ │ ├── github@2x.png │ │ │ │ ├── github@3x.png │ │ │ │ ├── instagram@2x.png │ │ │ │ ├── instagram@3x.png │ │ │ │ ├── lens@2x.png │ │ │ │ ├── lens@3x.png │ │ │ │ ├── link@2x.png │ │ │ │ ├── link@3x.png │ │ │ │ ├── linkedin@2x.png │ │ │ │ ├── linkedin@3x.png │ │ │ │ ├── mirror@2x.png │ │ │ │ ├── mirror@3x.png │ │ │ │ ├── opensea@2x.png │ │ │ │ ├── opensea@3x.png │ │ │ │ ├── pinterest@2x.png │ │ │ │ ├── pinterest@3x.png │ │ │ │ ├── rarible@2x.png │ │ │ │ ├── rarible@3x.png │ │ │ │ ├── reddit@2x.png │ │ │ │ ├── reddit@3x.png │ │ │ │ ├── snapchat@2x.png │ │ │ │ ├── snapchat@3x.png │ │ │ │ ├── spotify@2x.png │ │ │ │ ├── spotify@3x.png │ │ │ │ ├── status@2x.png │ │ │ │ ├── status@3x.png │ │ │ │ ├── superrare@2x.png │ │ │ │ ├── superrare@3x.png │ │ │ │ ├── tumblr@2x.png │ │ │ │ ├── tumblr@3x.png │ │ │ │ ├── twitch@2x.png │ │ │ │ ├── twitch@3x.png │ │ │ │ ├── twitter@2x.png │ │ │ │ ├── twitter@3x.png │ │ │ │ ├── youtube@2x.png │ │ │ │ └── youtube@3x.png │ │ └── default │ │ │ ├── default │ │ │ ├── facebook@2x.png │ │ │ ├── facebook@3x.png │ │ │ ├── flickr@2x.png │ │ │ ├── flickr@3x.png │ │ │ ├── github@2x.png │ │ │ ├── github@3x.png │ │ │ ├── instagram@2x.png │ │ │ ├── instagram@3x.png │ │ │ ├── lens@2x.png │ │ │ ├── lens@3x.png │ │ │ ├── link@2x.png │ │ │ ├── link@3x.png │ │ │ ├── linkedin@2x.png │ │ │ ├── linkedin@3x.png │ │ │ ├── mirror@2x.png │ │ │ ├── mirror@3x.png │ │ │ ├── opensea@2x.png │ │ │ ├── opensea@3x.png │ │ │ ├── pinterest@2x.png │ │ │ ├── pinterest@3x.png │ │ │ ├── rarible@2x.png │ │ │ ├── rarible@3x.png │ │ │ ├── reddit@2x.png │ │ │ ├── reddit@3x.png │ │ │ ├── snapchat@2x.png │ │ │ ├── snapchat@3x.png │ │ │ ├── spotify@2x.png │ │ │ ├── spotify@3x.png │ │ │ ├── status@2x.png │ │ │ ├── status@3x.png │ │ │ ├── superrare@2x.png │ │ │ ├── superrare@3x.png │ │ │ ├── tumblr@2x.png │ │ │ ├── tumblr@3x.png │ │ │ ├── twitch@2x.png │ │ │ ├── twitch@3x.png │ │ │ ├── twitter@2x.png │ │ │ ├── twitter@3x.png │ │ │ ├── youtube@2x.png │ │ │ └── youtube@3x.png │ │ │ └── solid │ │ │ ├── facebook@2x.png │ │ │ ├── facebook@3x.png │ │ │ ├── flickr@2x.png │ │ │ ├── flickr@3x.png │ │ │ ├── github@2x.png │ │ │ ├── github@3x.png │ │ │ ├── instagram@2x.png │ │ │ ├── instagram@3x.png │ │ │ ├── lens@2x.png │ │ │ ├── lens@3x.png │ │ │ ├── link@2x.png │ │ │ ├── link@3x.png │ │ │ ├── linkedin@2x.png │ │ │ ├── linkedin@3x.png │ │ │ ├── mirror@2x.png │ │ │ ├── mirror@3x.png │ │ │ ├── opensea@2x.png │ │ │ ├── opensea@3x.png │ │ │ ├── pinterest@2x.png │ │ │ ├── pinterest@3x.png │ │ │ ├── rarible@2x.png │ │ │ ├── rarible@3x.png │ │ │ ├── reddit@2x.png │ │ │ ├── reddit@3x.png │ │ │ ├── snapchat@2x.png │ │ │ ├── snapchat@3x.png │ │ │ ├── spotify@2x.png │ │ │ ├── spotify@3x.png │ │ │ ├── status@2x.png │ │ │ ├── status@3x.png │ │ │ ├── superrare@2x.png │ │ │ ├── superrare@3x.png │ │ │ ├── tumblr@2x.png │ │ │ ├── tumblr@3x.png │ │ │ ├── twitch@2x.png │ │ │ ├── twitch@3x.png │ │ │ ├── twitter@2x.png │ │ │ ├── twitter@3x.png │ │ │ ├── youtube@2x.png │ │ │ └── youtube@3x.png │ ├── tokens │ │ ├── bsc │ │ │ └── 0-native.png │ │ ├── default-native.png │ │ ├── default-native@2x.png │ │ ├── default-native@3x.png │ │ ├── default-token.png │ │ ├── default-token@2x.png │ │ ├── default-token@3x.png │ │ ├── mainnet │ │ │ ├── 0-native.png │ │ │ ├── 0-native@2x.png │ │ │ ├── 0-native@3x.png │ │ │ ├── 0XBTC.png │ │ │ ├── 0XBTC@2x.png │ │ │ ├── 0XBTC@3x.png │ │ │ ├── 1ST.png │ │ │ ├── 1ST@2x.png │ │ │ ├── 1ST@3x.png │ │ │ ├── ABT.png │ │ │ ├── ABT@2x.png │ │ │ ├── ABT@3x.png │ │ │ ├── ABYSS.png │ │ │ ├── ABYSS@2x.png │ │ │ ├── ABYSS@3x.png │ │ │ ├── AE.png │ │ │ ├── AE@2x.png │ │ │ ├── AE@3x.png │ │ │ ├── AGLD@2x.png │ │ │ ├── AGLD@3x.png │ │ │ ├── AKRO.png │ │ │ ├── AKRO@2x.png │ │ │ ├── AKRO@3x.png │ │ │ ├── AMB.png │ │ │ ├── AMB@2x.png │ │ │ ├── AMB@3x.png │ │ │ ├── AMPL.png │ │ │ ├── AMPL@2x.png │ │ │ ├── AMPL@3x.png │ │ │ ├── ANT.png │ │ │ ├── ANT@2x.png │ │ │ ├── ANT@3x.png │ │ │ ├── APPC.png │ │ │ ├── APPC@2x.png │ │ │ ├── APPC@3x.png │ │ │ ├── AST.png │ │ │ ├── AST@2x.png │ │ │ ├── AST@3x.png │ │ │ ├── ATMChain.png │ │ │ ├── ATMChain@2x.png │ │ │ ├── ATMChain@3x.png │ │ │ ├── BAL.png │ │ │ ├── BAL@2x.png │ │ │ ├── BAL@3x.png │ │ │ ├── BAM.png │ │ │ ├── BAM@2x.png │ │ │ ├── BAM@3x.png │ │ │ ├── BAND.png │ │ │ ├── BAND@2x.png │ │ │ ├── BAND@3x.png │ │ │ ├── BAT.png │ │ │ ├── BAT@2x.png │ │ │ ├── BAT@3x.png │ │ │ ├── BLT.png │ │ │ ├── BLT@2x.png │ │ │ ├── BLT@3x.png │ │ │ ├── BLZ.png │ │ │ ├── BLZ@2x.png │ │ │ ├── BLZ@3x.png │ │ │ ├── BNB.png │ │ │ ├── BNB@2x.png │ │ │ ├── BNB@3x.png │ │ │ ├── BNT.png │ │ │ ├── BNT@2x.png │ │ │ ├── BNT@3x.png │ │ │ ├── BRLN.png │ │ │ ├── BRLN@2x.png │ │ │ ├── BRLN@3x.png │ │ │ ├── BTC.png │ │ │ ├── BTC@2x.png │ │ │ ├── BTC@3x.png │ │ │ ├── BTM.png │ │ │ ├── BTM@2x.png │ │ │ ├── BTM@3x.png │ │ │ ├── BTU.png │ │ │ ├── BTU@2x.png │ │ │ ├── BTU@3x.png │ │ │ ├── CDT.png │ │ │ ├── CDT@2x.png │ │ │ ├── CDT@3x.png │ │ │ ├── CFI.png │ │ │ ├── CFI@2x.png │ │ │ ├── CFI@3x.png │ │ │ ├── CK.png │ │ │ ├── CK@2x.png │ │ │ ├── CK@3x.png │ │ │ ├── CND.png │ │ │ ├── CND@2x.png │ │ │ ├── CND@3x.png │ │ │ ├── COB.png │ │ │ ├── COB@2x.png │ │ │ ├── COB@3x.png │ │ │ ├── COMP.png │ │ │ ├── COMP@2x.png │ │ │ ├── COMP@3x.png │ │ │ ├── CRV@2x.png │ │ │ ├── CRV@3x.png │ │ │ ├── CVC.png │ │ │ ├── CVC@2x.png │ │ │ ├── CVC@3x.png │ │ │ ├── Centra.png │ │ │ ├── Centra@2x.png │ │ │ ├── Centra@3x.png │ │ │ ├── DAI@2x.png │ │ │ ├── DAI@3x.png │ │ │ ├── DAT.png │ │ │ ├── DAT@2x.png │ │ │ ├── DAT@3x.png │ │ │ ├── DATA.png │ │ │ ├── DATA@2x.png │ │ │ ├── DATA@3x.png │ │ │ ├── DCN.png │ │ │ ├── DCN@2x.png │ │ │ ├── DCN@3x.png │ │ │ ├── DGD.png │ │ │ ├── DGD@2x.png │ │ │ ├── DGD@3x.png │ │ │ ├── DGX.png │ │ │ ├── DGX@2x.png │ │ │ ├── DGX@3x.png │ │ │ ├── DLT.png │ │ │ ├── DLT@2x.png │ │ │ ├── DLT@3x.png │ │ │ ├── DNT.png │ │ │ ├── DNT@2x.png │ │ │ ├── DNT@3x.png │ │ │ ├── DPY.png │ │ │ ├── DPY@2x.png │ │ │ ├── DPY@3x.png │ │ │ ├── DRT.png │ │ │ ├── DRT@2x.png │ │ │ ├── DRT@3x.png │ │ │ ├── DTA.png │ │ │ ├── DTA@2x.png │ │ │ ├── DTA@3x.png │ │ │ ├── EDG.png │ │ │ ├── EDG@2x.png │ │ │ ├── EDG@3x.png │ │ │ ├── EDO.png │ │ │ ├── EDO@2x.png │ │ │ ├── EDO@3x.png │ │ │ ├── EKG.png │ │ │ ├── EKG@2x.png │ │ │ ├── EKG@3x.png │ │ │ ├── EKO.png │ │ │ ├── EKO@2x.png │ │ │ ├── EKO@3x.png │ │ │ ├── ELF.png │ │ │ ├── ELF@2x.png │ │ │ ├── ELF@3x.png │ │ │ ├── EMONA.png │ │ │ ├── EMONA@2x.png │ │ │ ├── EMONA@3x.png │ │ │ ├── ENG.png │ │ │ ├── ENG@2x.png │ │ │ ├── ENG@3x.png │ │ │ ├── ENJ.png │ │ │ ├── ENJ@2x.png │ │ │ ├── ENJ@3x.png │ │ │ ├── ENS.png │ │ │ ├── EOS.png │ │ │ ├── EOS@2x.png │ │ │ ├── EOS@3x.png │ │ │ ├── EQUAD.png │ │ │ ├── EQUAD@2x.png │ │ │ ├── EQUAD@3x.png │ │ │ ├── ETH2x-FLI.png │ │ │ ├── ETH2x-FLI@2x.png │ │ │ ├── ETH2x-FLI@3x.png │ │ │ ├── ETH@2x.png │ │ │ ├── ETH@3x.png │ │ │ ├── ETHOS.png │ │ │ ├── ETHOS@2x.png │ │ │ ├── ETHOS@3x.png │ │ │ ├── EVX.png │ │ │ ├── EVX@2x.png │ │ │ ├── EVX@3x.png │ │ │ ├── FUEL.png │ │ │ ├── FUEL@2x.png │ │ │ ├── FUEL@3x.png │ │ │ ├── FUN.png │ │ │ ├── FUN@2x.png │ │ │ ├── FUN@3x.png │ │ │ ├── FXC.png │ │ │ ├── FXC@2x.png │ │ │ ├── FXC@3x.png │ │ │ ├── GDC.png │ │ │ ├── GDC@2x.png │ │ │ ├── GDC@3x.png │ │ │ ├── GEN.png │ │ │ ├── GEN@2x.png │ │ │ ├── GEN@3x.png │ │ │ ├── GLM.png │ │ │ ├── GLM@2x.png │ │ │ ├── GLM@3x.png │ │ │ ├── GNO.png │ │ │ ├── GNO@2x.png │ │ │ ├── GNO@3x.png │ │ │ ├── GNT.png │ │ │ ├── GNT@2x.png │ │ │ ├── GNT@3x.png │ │ │ ├── GRID.png │ │ │ ├── GRID@2x.png │ │ │ ├── GRID@3x.png │ │ │ ├── GRT.png │ │ │ ├── GRT@2x.png │ │ │ ├── HEZ.png │ │ │ ├── HST.png │ │ │ ├── HST@2x.png │ │ │ ├── HST@3x.png │ │ │ ├── HT.png │ │ │ ├── HT@2x.png │ │ │ ├── HT@3x.png │ │ │ ├── ICN.png │ │ │ ├── ICN@2x.png │ │ │ ├── ICN@3x.png │ │ │ ├── ICOS.png │ │ │ ├── ICOS@2x.png │ │ │ ├── ICOS@3x.png │ │ │ ├── IOST.png │ │ │ ├── IOST@2x.png │ │ │ ├── IOST@3x.png │ │ │ ├── KDO.png │ │ │ ├── KDO@2x.png │ │ │ ├── KDO@3x.png │ │ │ ├── KIN.png │ │ │ ├── KIN@2x.png │ │ │ ├── KIN@3x.png │ │ │ ├── KNC.png │ │ │ ├── KNC@2x.png │ │ │ ├── KNC@3x.png │ │ │ ├── Kudos.png │ │ │ ├── Kudos@2x.png │ │ │ ├── Kudos@3x.png │ │ │ ├── LEND.png │ │ │ ├── LEND@2x.png │ │ │ ├── LEND@3x.png │ │ │ ├── LINK.png │ │ │ ├── LINK@2x.png │ │ │ ├── LINK@3x.png │ │ │ ├── LISK.png │ │ │ ├── LISK@2x.png │ │ │ ├── LISK@3x.png │ │ │ ├── LOOM.png │ │ │ ├── LOOM@2x.png │ │ │ ├── LOOM@3x.png │ │ │ ├── LPT.png │ │ │ ├── LPT@2x.png │ │ │ ├── LPT@3x.png │ │ │ ├── LRC.png │ │ │ ├── LRC@2x.png │ │ │ ├── LRC@3x.png │ │ │ ├── MANA.png │ │ │ ├── MANA@2x.png │ │ │ ├── MANA@3x.png │ │ │ ├── MCO.png │ │ │ ├── MCO@2x.png │ │ │ ├── MCO@3x.png │ │ │ ├── MDA.png │ │ │ ├── MDA@2x.png │ │ │ ├── MDA@3x.png │ │ │ ├── MET.png │ │ │ ├── MET@2x.png │ │ │ ├── MET@3x.png │ │ │ ├── MFG.png │ │ │ ├── MFG@2x.png │ │ │ ├── MFG@3x.png │ │ │ ├── MGO.png │ │ │ ├── MGO@2x.png │ │ │ ├── MGO@3x.png │ │ │ ├── MKR.png │ │ │ ├── MKR@2x.png │ │ │ ├── MKR@3x.png │ │ │ ├── MLN.png │ │ │ ├── MLN@2x.png │ │ │ ├── MLN@3x.png │ │ │ ├── MOC.png │ │ │ ├── MOC@2x.png │ │ │ ├── MOC@3x.png │ │ │ ├── MOD.png │ │ │ ├── MOD@2x.png │ │ │ ├── MOD@3x.png │ │ │ ├── MTH.png │ │ │ ├── MTH@2x.png │ │ │ ├── MTH@3x.png │ │ │ ├── MTL.png │ │ │ ├── MTL@2x.png │ │ │ ├── MTL@3x.png │ │ │ ├── MYB.png │ │ │ ├── MYB@2x.png │ │ │ ├── MYB@3x.png │ │ │ ├── NEXO.png │ │ │ ├── NEXO@2x.png │ │ │ ├── NEXO@3x.png │ │ │ ├── NEXXO.png │ │ │ ├── NEXXO@2x.png │ │ │ ├── NEXXO@3x.png │ │ │ ├── NMR.png │ │ │ ├── NMR@2x.png │ │ │ ├── NMR@3x.png │ │ │ ├── NPXS.png │ │ │ ├── NPXS@2x.png │ │ │ ├── NPXS@3x.png │ │ │ ├── OGN.png │ │ │ ├── OGN@2x.png │ │ │ ├── OGN@3x.png │ │ │ ├── OMG.png │ │ │ ├── OMG@2x.png │ │ │ ├── OMG@3x.png │ │ │ ├── OTN.png │ │ │ ├── OTN@2x.png │ │ │ ├── OTN@3x.png │ │ │ ├── OXT.png │ │ │ ├── OXT@2x.png │ │ │ ├── OXT@3x.png │ │ │ ├── PAX.png │ │ │ ├── PAX@2x.png │ │ │ ├── PAX@3x.png │ │ │ ├── PAXG.png │ │ │ ├── PAXG@2x.png │ │ │ ├── PAXG@3x.png │ │ │ ├── PAY.png │ │ │ ├── PAY@2x.png │ │ │ ├── PAY@3x.png │ │ │ ├── PBTC.png │ │ │ ├── PBTC@2x.png │ │ │ ├── PBTC@3x.png │ │ │ ├── PLR.png │ │ │ ├── PLR@2x.png │ │ │ ├── PLR@3x.png │ │ │ ├── POE.png │ │ │ ├── POE@2x.png │ │ │ ├── POE@3x.png │ │ │ ├── POLY.png │ │ │ ├── POLY@2x.png │ │ │ ├── POLY@3x.png │ │ │ ├── POWR.png │ │ │ ├── POWR@2x.png │ │ │ ├── POWR@3x.png │ │ │ ├── PPP.png │ │ │ ├── PPP@2x.png │ │ │ ├── PPP@3x.png │ │ │ ├── PPT.png │ │ │ ├── PPT@2x.png │ │ │ ├── PPT@3x.png │ │ │ ├── PT.png │ │ │ ├── PT@2x.png │ │ │ ├── PT@3x.png │ │ │ ├── QKC.png │ │ │ ├── QKC@2x.png │ │ │ ├── QKC@3x.png │ │ │ ├── QRL.png │ │ │ ├── QRL@2x.png │ │ │ ├── QRL@3x.png │ │ │ ├── QSP.png │ │ │ ├── QSP@2x.png │ │ │ ├── QSP@3x.png │ │ │ ├── R.png │ │ │ ├── R@2x.png │ │ │ ├── R@3x.png │ │ │ ├── RAE.png │ │ │ ├── RAE@2x.png │ │ │ ├── RAE@3x.png │ │ │ ├── RARE.png │ │ │ ├── RCN.png │ │ │ ├── RCN@2x.png │ │ │ ├── RCN@3x.png │ │ │ ├── RDN.png │ │ │ ├── RDN@2x.png │ │ │ ├── RDN@3x.png │ │ │ ├── REN.png │ │ │ ├── REN@2x.png │ │ │ ├── REN@3x.png │ │ │ ├── REP.png │ │ │ ├── REP@2x.png │ │ │ ├── REP@3x.png │ │ │ ├── REQ.png │ │ │ ├── REQ@2x.png │ │ │ ├── REQ@3x.png │ │ │ ├── RHOC.png │ │ │ ├── RHOC@2x.png │ │ │ ├── RHOC@3x.png │ │ │ ├── RLC.png │ │ │ ├── RLC@2x.png │ │ │ ├── RLC@3x.png │ │ │ ├── ROL.png │ │ │ ├── ROL@2x.png │ │ │ ├── ROL@3x.png │ │ │ ├── SAI.png │ │ │ ├── SAI@2x.png │ │ │ ├── SAI@3x.png │ │ │ ├── SALT.png │ │ │ ├── SALT@2x.png │ │ │ ├── SALT@3x.png │ │ │ ├── SAN.png │ │ │ ├── SAN@2x.png │ │ │ ├── SAN@3x.png │ │ │ ├── SNGLS.png │ │ │ ├── SNGLS@2x.png │ │ │ ├── SNGLS@3x.png │ │ │ ├── SNM.png │ │ │ ├── SNM@2x.png │ │ │ ├── SNM@3x.png │ │ │ ├── SNT.png │ │ │ ├── SNT@2x.png │ │ │ ├── SNT@3x.png │ │ │ ├── SNX.png │ │ │ ├── SNX@2x.png │ │ │ ├── SNX@3x.png │ │ │ ├── SOCKS.png │ │ │ ├── SOCKS@2x.png │ │ │ ├── SOCKS@3x.png │ │ │ ├── SPANK.png │ │ │ ├── SPANK@2x.png │ │ │ ├── SPANK@3x.png │ │ │ ├── SPIKE.png │ │ │ ├── SPIKE@2x.png │ │ │ ├── SPIKE@3x.png │ │ │ ├── SPN.png │ │ │ ├── SPN@2x.png │ │ │ ├── SPN@3x.png │ │ │ ├── ST.png │ │ │ ├── ST@2x.png │ │ │ ├── ST@3x.png │ │ │ ├── STORJ.png │ │ │ ├── STORJ@2x.png │ │ │ ├── STORJ@3x.png │ │ │ ├── STORM.png │ │ │ ├── STORM@2x.png │ │ │ ├── STORM@3x.png │ │ │ ├── STRK.png │ │ │ ├── STRK@2x.png │ │ │ ├── STRK@3x.png │ │ │ ├── STT.png │ │ │ ├── STT@2x.png │ │ │ ├── STT@3x.png │ │ │ ├── STX.png │ │ │ ├── STX@2x.png │ │ │ ├── STX@3x.png │ │ │ ├── SUB.png │ │ │ ├── SUB@2x.png │ │ │ ├── SUB@3x.png │ │ │ ├── SUPR.png │ │ │ ├── SUPRR.png │ │ │ ├── TAAS.png │ │ │ ├── TAAS@2x.png │ │ │ ├── TAAS@3x.png │ │ │ ├── TAUD.png │ │ │ ├── TAUD@2x.png │ │ │ ├── TAUD@3x.png │ │ │ ├── TCAD.png │ │ │ ├── TCAD@2x.png │ │ │ ├── TCAD@3x.png │ │ │ ├── TGBP.png │ │ │ ├── TGBP@2x.png │ │ │ ├── TGBP@3x.png │ │ │ ├── TKN.png │ │ │ ├── TKN@2x.png │ │ │ ├── TKN@3x.png │ │ │ ├── TKX.png │ │ │ ├── TKX@2x.png │ │ │ ├── TKX@3x.png │ │ │ ├── TNT.png │ │ │ ├── TNT@2x.png │ │ │ ├── TNT@3x.png │ │ │ ├── TRST.png │ │ │ ├── TRST@2x.png │ │ │ ├── TRST@3x.png │ │ │ ├── TRX.png │ │ │ ├── TRX@2x.png │ │ │ ├── TRX@3x.png │ │ │ ├── TUSD.png │ │ │ ├── TUSD@2x.png │ │ │ ├── TUSD@3x.png │ │ │ ├── UBI.png │ │ │ ├── UBI@2x.png │ │ │ ├── UBI@3x.png │ │ │ ├── UBT.png │ │ │ ├── UBT@2x.png │ │ │ ├── UBT@3x.png │ │ │ ├── UKG.png │ │ │ ├── UKG@2x.png │ │ │ ├── UKG@3x.png │ │ │ ├── UNI.png │ │ │ ├── UNI@2x.png │ │ │ ├── UNI@3x.png │ │ │ ├── UPP.png │ │ │ ├── UPP@2x.png │ │ │ ├── UPP@3x.png │ │ │ ├── USDC.png │ │ │ ├── USDC@2x.png │ │ │ ├── USDC@3x.png │ │ │ ├── USDS.png │ │ │ ├── USDS@2x.png │ │ │ ├── USDS@3x.png │ │ │ ├── USDT.png │ │ │ ├── USDT@2x.png │ │ │ ├── USDT@3x.png │ │ │ ├── VERI.png │ │ │ ├── VERI@2x.png │ │ │ ├── VERI@3x.png │ │ │ ├── VGX.png │ │ │ ├── VGX@2x.png │ │ │ ├── VGX@3x.png │ │ │ ├── VIB.png │ │ │ ├── VIB@2x.png │ │ │ ├── VIB@3x.png │ │ │ ├── WBTC.png │ │ │ ├── WBTC@2x.png │ │ │ ├── WBTC@3x.png │ │ │ ├── WETH.png │ │ │ ├── WETH@2x.png │ │ │ ├── WETH@3x.png │ │ │ ├── WINGS.png │ │ │ ├── WINGS@2x.png │ │ │ ├── WINGS@3x.png │ │ │ ├── WTC.png │ │ │ ├── WTC@2x.png │ │ │ ├── WTC@3x.png │ │ │ ├── WaBi.png │ │ │ ├── WaBi@2x.png │ │ │ ├── WaBi@3x.png │ │ │ ├── XAUR.png │ │ │ ├── XAUR@2x.png │ │ │ ├── XAUR@3x.png │ │ │ ├── XPA.png │ │ │ ├── XPA@2x.png │ │ │ ├── XPA@3x.png │ │ │ ├── XRL.png │ │ │ ├── XRL@2x.png │ │ │ ├── XRL@3x.png │ │ │ ├── XUC.png │ │ │ ├── XUC@2x.png │ │ │ ├── XUC@3x.png │ │ │ ├── ZRX.png │ │ │ ├── ZRX@2x.png │ │ │ ├── ZRX@3x.png │ │ │ ├── ZSC.png │ │ │ ├── ZSC@2x.png │ │ │ ├── ZSC@3x.png │ │ │ ├── aUSDC.png │ │ │ ├── aUSDC@2x.png │ │ │ ├── aUSDC@3x.png │ │ │ ├── cDAI.png │ │ │ ├── cDAI@2x.png │ │ │ ├── cDAI@3x.png │ │ │ ├── sUSD.png │ │ │ ├── sUSD@2x.png │ │ │ └── sUSD@3x.png │ │ ├── poa │ │ │ ├── 0-native.png │ │ │ ├── 0-native@2x.png │ │ │ └── 0-native@3x.png │ │ ├── rinkeby │ │ │ ├── KDO.png │ │ │ ├── KDO@2x.png │ │ │ ├── KDO@3x.png │ │ │ ├── MOKSHA.png │ │ │ ├── MOKSHA@2x.png │ │ │ └── MOKSHA@3x.png │ │ ├── testnet │ │ │ ├── 0-native.png │ │ │ ├── 0-native@2x.png │ │ │ ├── 0-native@3x.png │ │ │ ├── ADI.png │ │ │ ├── ADI@2x.png │ │ │ ├── ADI@3x.png │ │ │ ├── HND.png │ │ │ ├── HND@2x.png │ │ │ ├── HND@3x.png │ │ │ ├── LXS.png │ │ │ ├── LXS@2x.png │ │ │ ├── LXS@3x.png │ │ │ ├── MDS.png │ │ │ ├── MDS@2x.png │ │ │ ├── MDS@3x.png │ │ │ ├── SUPR.png │ │ │ ├── WGN.png │ │ │ ├── WGN@2x.png │ │ │ ├── WGN@3x.png │ │ │ ├── ant.png │ │ │ ├── ant@2x.png │ │ │ ├── ant@3x.png │ │ │ ├── aragon.png │ │ │ ├── aragon@2x.png │ │ │ └── aragon@3x.png │ │ └── xdai │ │ │ ├── 0-native.png │ │ │ ├── 0-native@2x.png │ │ │ ├── 0-native@3x.png │ │ │ ├── BUFF.png │ │ │ ├── BUFF@2x.png │ │ │ └── BUFF@3x.png │ ├── ui │ │ ├── browser-dark@2x.jpg │ │ ├── browser-dark@3x.jpg │ │ ├── browser@2x.jpg │ │ ├── browser@3x.jpg │ │ ├── chat-dark@2x.jpg │ │ ├── chat-dark@3x.jpg │ │ ├── chat@2x.jpg │ │ ├── chat@3x.jpg │ │ ├── coinbase-community-background@2x.png │ │ ├── coinbase_community-background@3x.png │ │ ├── collectible-dark@2x.png │ │ ├── collectible-dark@3x.png │ │ ├── collectible@2x.png │ │ ├── collectible@3x.png │ │ ├── dapp-store.png │ │ ├── discover.png │ │ ├── empty-chats-header@2x.png │ │ ├── empty-chats-header@3x.png │ │ ├── empty-wallet@2x.png │ │ ├── empty-wallet@3x.png │ │ ├── ens-header-dark@2x.png │ │ ├── ens-header-dark@3x.png │ │ ├── ens-header@2x.png │ │ ├── ens-header@3x.png │ │ ├── graph@2x.png │ │ ├── graph@3x.png │ │ ├── hand-wave.png │ │ ├── hand-wave@2x.png │ │ ├── hand-wave@3x.png │ │ ├── hardwallet-card.png │ │ ├── keycard-connection.png │ │ ├── keycard-empty.png │ │ ├── keycard-key.png │ │ ├── keycard-lock.png │ │ ├── keycard-logo-blue.png │ │ ├── keycard-logo-gray.png │ │ ├── keycard-logo.png │ │ ├── keycard-phone.png │ │ ├── keycard-wrong.png │ │ ├── keycard.png │ │ ├── keys-dark@2x.jpg │ │ ├── keys-dark@3x.jpg │ │ ├── keys@2x.jpg │ │ ├── keys@3x.jpg │ │ ├── lock.png │ │ ├── message-gap-circle-bg-dark@2x.png │ │ ├── message-gap-circle-bg-dark@3x.png │ │ ├── message-gap-circle-bg-light@2x.png │ │ ├── message-gap-circle-bg-light@3x.png │ │ ├── message-gap-hborder-dark@2x.png │ │ ├── message-gap-hborder-dark@3x.png │ │ ├── message-gap-hborder-light@2x.png │ │ ├── message-gap-hborder-light@3x.png │ │ ├── message-gap-vborder-light@2x.png │ │ ├── message-gap-vborder-light@3x.png │ │ ├── new-chat-header@2x.png │ │ ├── new-chat-header@3x.png │ │ ├── no-contacts-dark@2x.png │ │ ├── no-contacts-dark@3x.png │ │ ├── no-contacts@2x.png │ │ ├── no-contacts@3x.png │ │ ├── not-keycard.png │ │ ├── notifications@2x.png │ │ ├── notifications@3x.png │ │ ├── onboarding-phone.png │ │ ├── phone-nfc-off.png │ │ ├── phone-nfc-on.png │ │ ├── status-logo.png │ │ ├── theme-dark@2x.png │ │ ├── theme-dark@3x.png │ │ ├── theme-light@2x.png │ │ ├── theme-light@3x.png │ │ ├── theme-system@2x.png │ │ ├── theme-system@3x.png │ │ ├── tribute-to-talk.png │ │ ├── unfurl-dark@2x.png │ │ ├── unfurl-dark@3x.png │ │ ├── unfurl@2x.png │ │ ├── unfurl@3x.png │ │ ├── wallet-dark@2x.jpg │ │ ├── wallet-dark@3x.jpg │ │ ├── wallet@2x.jpg │ │ ├── wallet@3x.jpg │ │ ├── warning-sign.png │ │ ├── welcome-dark@2x.jpg │ │ ├── welcome-dark@3x.jpg │ │ ├── welcome@2x.jpg │ │ └── welcome@3x.jpg │ └── ui2 │ │ ├── add-contact@2x.png │ │ ├── add-contact@3x.png │ │ ├── add-key-to-keycard@2x.png │ │ ├── add-key-to-keycard@3x.png │ │ ├── angry-man-dark@2x.png │ │ ├── angry-man-dark@3x.png │ │ ├── angry-man-light@2x.png │ │ ├── angry-man-light@3x.png │ │ ├── biometrics@2x.png │ │ ├── biometrics@3x.png │ │ ├── buy@2x.png │ │ ├── buy@3x.png │ │ ├── cat-in-box-dark@2x.png │ │ ├── cat-in-box-dark@3x.png │ │ ├── cat-in-box-light@2x.png │ │ ├── cat-in-box-light@3x.png │ │ ├── chat-privately-with-friends@2x.png │ │ ├── chat-privately-with-friends@3x.png │ │ ├── desktop-how-to-pair-logged-in@2x.png │ │ ├── desktop-how-to-pair-logged-in@3x.png │ │ ├── desktop-how-to-pair-sign-in@2x.png │ │ ├── desktop-how-to-pair-sign-in@3x.png │ │ ├── discover@2x.png │ │ ├── discover@3x.png │ │ ├── div@2x.png │ │ ├── div@3x.png │ │ ├── ethereum-address@2x.png │ │ ├── ethereum-address@3x.png │ │ ├── find-sync-code-desktop@2x.png │ │ ├── find-sync-code-desktop@3x.png │ │ ├── find-sync-code-mobile@2x.png │ │ ├── find-sync-code-mobile@3x.png │ │ ├── generate-keys@2x.png │ │ ├── generate-keys@3x.png │ │ ├── import-key-to-keycard@2x.png │ │ ├── import-key-to-keycard@3x.png │ │ ├── invite-friends@2x.png │ │ ├── invite-friends@3x.png │ │ ├── keycard-backup-positive@2x.png │ │ ├── keycard-backup-positive@3x.png │ │ ├── keycard-buy.png │ │ ├── keycard-change-pin-negative@2x.png │ │ ├── keycard-change-pin-negative@3x.png │ │ ├── keycard-change-pin-positive@2x.png │ │ ├── keycard-change-pin-positive@3x.png │ │ ├── keycard-change-pin@2x.png │ │ ├── keycard-change-pin@3x.png │ │ ├── keycard-check@2x.png │ │ ├── keycard-check@3x.png │ │ ├── keycard-chip-dark@2x.png │ │ ├── keycard-chip-dark@3x.png │ │ ├── keycard-chip-light@2x.png │ │ ├── keycard-chip-light@3x.png │ │ ├── keycard-logo@2x.png │ │ ├── keycard-logo@3x.png │ │ ├── keycard-migration-failed@2x.png │ │ ├── keycard-migration-failed@3x.png │ │ ├── keycard-migration-succeeded@2x.png │ │ ├── keycard-migration-succeeded@3x.png │ │ ├── keycard-migration@2x.png │ │ ├── keycard-migration@3x.png │ │ ├── keycard-not-empty@2x.png │ │ ├── keycard-not-empty@3x.png │ │ ├── keycard-not-same@2x.png │ │ ├── keycard-not-same@3x.png │ │ ├── keycard-orange@2x.png │ │ ├── keycard-orange@3x.png │ │ ├── keycard-profile-already-added@2x.png │ │ ├── keycard-profile-already-added@3x.png │ │ ├── keycard-reset-negative@2x.png │ │ ├── keycard-reset-negative@3x.png │ │ ├── keycard-reset-positive@2x.png │ │ ├── keycard-reset-positive@3x.png │ │ ├── keycard-unblock-positive@2x.png │ │ ├── keycard-unblock-positive@3x.png │ │ ├── keycard-unblock@2x.png │ │ ├── keycard-unblock@3x.png │ │ ├── keycard@2x.png │ │ ├── keycard@3x.png │ │ ├── lifestyle@2x.png │ │ ├── lifestyle@3x.png │ │ ├── login-syncing@2x.png │ │ ├── login-syncing@3x.png │ │ ├── mobile-how-to-pair-logged-in@2x.png │ │ ├── mobile-how-to-pair-logged-in@3x.png │ │ ├── mobile-how-to-pair-sign-in@2x.png │ │ ├── mobile-how-to-pair-sign-in@3x.png │ │ ├── music@2x.png │ │ ├── music@3x.png │ │ ├── nfc-fail@2x.png │ │ ├── nfc-fail@3x.png │ │ ├── nfc-prompt-android@2x.png │ │ ├── nfc-prompt-android@3x.png │ │ ├── nfc-prompt@2x.png │ │ ├── nfc-prompt@3x.png │ │ ├── nfc-success@2x.png │ │ ├── nfc-success@3x.png │ │ ├── no-activity-dark@2x.png │ │ ├── no-activity-dark@3x.png │ │ ├── no-activity-light@2x.png │ │ ├── no-activity-light@3x.png │ │ ├── no-assets-dark@2x.png │ │ ├── no-assets-dark@3x.png │ │ ├── no-assets-light@2x.png │ │ ├── no-assets-light@3x.png │ │ ├── no-collectibles-dark@2x.png │ │ ├── no-collectibles-dark@3x.png │ │ ├── no-collectibles-light@2x.png │ │ ├── no-collectibles-light@3x.png │ │ ├── no-communities-dark@2x.png │ │ ├── no-communities-dark@3x.png │ │ ├── no-communities-light@2x.png │ │ ├── no-communities-light@3x.png │ │ ├── no-contacts-dark@2x.png │ │ ├── no-contacts-dark@3x.png │ │ ├── no-contacts-light@2x.png │ │ ├── no-contacts-light@3x.png │ │ ├── no-contacts-to-chat-dark@2x.png │ │ ├── no-contacts-to-chat-dark@3x.png │ │ ├── no-contacts-to-chat-light@2x.png │ │ ├── no-contacts-to-chat-light@3x.png │ │ ├── no-contacts-to-invite-dark@2x.png │ │ ├── no-contacts-to-invite-dark@3x.png │ │ ├── no-contacts-to-invite-light@2x.png │ │ ├── no-contacts-to-invite-light@3x.png │ │ ├── no-dapps-dark@2x.png │ │ ├── no-dapps-dark@3x.png │ │ ├── no-dapps-light@2x.png │ │ ├── no-dapps-light@3x.png │ │ ├── no-funds-dark@2x.png │ │ ├── no-funds-dark@3x.png │ │ ├── no-funds-light@2x.png │ │ ├── no-funds-light@3x.png │ │ ├── no-group-chats-dark@2x.png │ │ ├── no-group-chats-dark@3x.png │ │ ├── no-group-chats-light@2x.png │ │ ├── no-group-chats-light@3x.png │ │ ├── no-notifications-dark@2x.png │ │ ├── no-notifications-dark@3x.png │ │ ├── no-notifications-light@2x.png │ │ ├── no-notifications-light@3x.png │ │ ├── no-opened-communities-dark@2x.png │ │ ├── no-opened-communities-dark@3x.png │ │ ├── no-opened-communities-light@2x.png │ │ ├── no-opened-communities-light@3x.png │ │ ├── no-pending-communities-dark@2x.png │ │ ├── no-pending-communities-dark@3x.png │ │ ├── no-pending-communities-light@2x.png │ │ ├── no-pending-communities-light@3x.png │ │ ├── no-permissions-dark@2x.png │ │ ├── no-permissions-dark@3x.png │ │ ├── no-permissions-light@2x.png │ │ ├── no-permissions-light@3x.png │ │ ├── no-pinned-messages-dark@2x.png │ │ ├── no-pinned-messages-dark@3x.png │ │ ├── no-pinned-messages-light@2x.png │ │ ├── no-pinned-messages-light@3x.png │ │ ├── no-received-requests-dark@2x.png │ │ ├── no-received-requests-dark@3x.png │ │ ├── no-received-requests-light@2x.png │ │ ├── no-received-requests-light@3x.png │ │ ├── no-sent-requests-dark@2x.png │ │ ├── no-sent-requests-dark@3x.png │ │ ├── no-sent-requests-light@2x.png │ │ ├── no-sent-requests-light@3x.png │ │ ├── not-keycard@2x.png │ │ ├── not-keycard@3x.png │ │ ├── notifications@2x.png │ │ ├── notifications@3x.png │ │ ├── own-buy-and-swap-your-crypto@2x.png │ │ ├── own-buy-and-swap-your-crypto@3x.png │ │ ├── podcasts@2x.png │ │ ├── podcasts@3x.png │ │ ├── preparing-status@2x.png │ │ ├── preparing-status@3x.png │ │ ├── qr-code@2x.png │ │ ├── qr-code@3x.png │ │ ├── receive@2x.png │ │ ├── receive@3x.png │ │ ├── recovery-phrase@2x.png │ │ ├── recovery-phrase@3x.png │ │ ├── store-your-assets-on-keycard@2x.png │ │ ├── store-your-assets-on-keycard@3x.png │ │ ├── sweating-man-dark@2x.png │ │ ├── sweating-man-dark@3x.png │ │ ├── sweating-man-light@2x.png │ │ ├── sweating-man-light@3x.png │ │ ├── syncing_devices@2x.png │ │ ├── syncing_devices@3x.png │ │ ├── syncing_wrong@2x.png │ │ ├── syncing_wrong@3x.png │ │ ├── transaction-progress@2x.png │ │ ├── transaction-progress@3x.png │ │ ├── usage-data@2x.png │ │ ├── usage-data@3x.png │ │ ├── welcome_illustration@2x.png │ │ └── welcome_illustration@3x.png ├── js │ └── provider.js ├── privacy.mdwn └── terms-of-use.mdwn ├── scripts ├── adb_devices_abis.sh ├── build-android.sh ├── check-metro-shadow-process.sh ├── check-nix-shell.sh ├── colors.sh ├── compress_image.sh ├── cut-release.sh ├── diawi-upload.mjs ├── encrypt-keychain.sh ├── fdroid-pr.sh ├── gen-random-passphrase.sh ├── generate-keystore.sh ├── google-free.sh ├── hooks │ └── prepare-commit-msg ├── inotify_fix.sh ├── lint │ ├── direct-require-component-outside-quo.sh │ ├── donotmerge-git-commits.sh │ ├── re-frame-in-quo-components.sh │ ├── require-i18n-resource-first.sh │ ├── trailing-newline.sh │ └── translations.clj ├── list-pull-requests.sh ├── merge-pr.sh ├── patch-npm-lib.sh ├── pr-statistics.sh ├── run-android.sh ├── run-ios-device.sh ├── run-ios.sh ├── run-metro.sh ├── sign-android.sh ├── update-status-go.sh ├── version │ ├── build_no.sh │ └── gen_build_no.sh ├── wait-for-metro-port.sh └── wait-for.sh ├── shadow-cljs.edn ├── shell.nix ├── src ├── dev │ ├── README.md │ └── re_frisk_preload.cljs ├── js │ └── worklets │ │ ├── bottom_sheet.js │ │ ├── chat │ │ └── messenger │ │ │ ├── composer.js │ │ │ ├── lightbox.js │ │ │ └── messages.js │ │ ├── communities.js │ │ ├── core.js │ │ ├── header_animations.js │ │ ├── identifiers_highlighting.js │ │ ├── onboarding_carousel.js │ │ ├── profile_header.js │ │ ├── record_audio.js │ │ ├── scroll_view.js │ │ └── shell │ │ ├── bottom_tabs.js │ │ └── home_stack.js ├── keycard │ └── keycard.cljs ├── legacy │ └── status_im │ │ ├── browser │ │ ├── core.cljs │ │ ├── effects.cljs │ │ ├── permissions.cljs │ │ └── webview_ref.cljs │ │ ├── chat │ │ └── models │ │ │ ├── loading.cljs │ │ │ ├── mentions.cljs │ │ │ ├── message.cljs │ │ │ └── message_test.cljs │ │ ├── communities │ │ ├── core.cljs │ │ └── e2e.cljs │ │ ├── data_store │ │ ├── activities.cljs │ │ ├── activities_test.cljs │ │ ├── chats.cljs │ │ ├── chats_test.cljs │ │ ├── communities.cljs │ │ ├── invitations.cljs │ │ ├── messages.cljs │ │ ├── messages_test.cljs │ │ ├── pin_messages.cljs │ │ ├── settings.cljs │ │ └── visibility_status_updates.cljs │ │ ├── ens │ │ └── core.cljs │ │ ├── ethereum │ │ ├── decode.cljs │ │ ├── encode.cljs │ │ ├── ens.cljs │ │ ├── macros.clj │ │ ├── mnemonic.cljs │ │ ├── mnemonic_test.cljs │ │ ├── tokens.cljs │ │ └── transactions │ │ │ └── core.cljs │ │ ├── events.cljs │ │ ├── fleet │ │ ├── core.cljs │ │ ├── core_test.cljs │ │ └── default_fleet.cljs │ │ ├── group_chats │ │ └── core.cljs │ │ ├── log_level │ │ └── core.cljs │ │ ├── mailserver │ │ └── core.cljs │ │ ├── multiaccounts │ │ ├── create │ │ │ └── core.cljs │ │ ├── db.cljs │ │ ├── login │ │ │ └── core.cljs │ │ ├── model.cljs │ │ ├── model_test.cljs │ │ └── update │ │ │ ├── core.cljs │ │ │ └── core_test.cljs │ │ ├── node │ │ └── core.cljs │ │ ├── notifications │ │ └── wallet.cljs │ │ ├── pairing │ │ └── core.cljs │ │ ├── popover │ │ └── core.cljs │ │ ├── profile │ │ └── core.cljs │ │ ├── qr_scanner │ │ └── core.cljs │ │ ├── react_native │ │ └── resources.cljs │ │ ├── search │ │ └── core.cljs │ │ ├── stickers │ │ └── core.cljs │ │ ├── subs │ │ ├── browser.cljs │ │ ├── mailservers.cljs │ │ └── root.cljs │ │ ├── test_runner.cljs │ │ ├── ui │ │ ├── components │ │ │ ├── action_sheet.cljs │ │ │ ├── animation.cljs │ │ │ ├── badge.cljs │ │ │ ├── button │ │ │ │ └── view.cljs │ │ │ ├── chat_icon │ │ │ │ ├── screen.cljs │ │ │ │ └── styles.cljs │ │ │ ├── colors.cljs │ │ │ ├── common │ │ │ │ ├── common.cljs │ │ │ │ └── styles.cljs │ │ │ ├── connectivity │ │ │ │ └── view.cljs │ │ │ ├── controls │ │ │ │ ├── styles.cljs │ │ │ │ └── view.cljs │ │ │ ├── core.cljs │ │ │ ├── dialog.cljs │ │ │ ├── fast_image.cljs │ │ │ ├── header.cljs │ │ │ ├── icons │ │ │ │ ├── icons.clj │ │ │ │ └── icons.cljs │ │ │ ├── invite │ │ │ │ └── events.cljs │ │ │ ├── list │ │ │ │ ├── header.cljs │ │ │ │ ├── item.cljs │ │ │ │ ├── styles.cljs │ │ │ │ └── views.cljs │ │ │ ├── list_selection.cljs │ │ │ ├── plus_button.cljs │ │ │ ├── radio.cljs │ │ │ ├── react.cljs │ │ │ ├── separator.cljs │ │ │ ├── spacing.cljs │ │ │ ├── status_bar │ │ │ │ └── view.cljs │ │ │ ├── text.cljs │ │ │ ├── text_input.cljs │ │ │ ├── text_style.cljs │ │ │ ├── toolbar.cljs │ │ │ ├── tooltip.cljs │ │ │ ├── tooltip │ │ │ │ ├── animations.cljs │ │ │ │ ├── styles.cljs │ │ │ │ └── views.cljs │ │ │ ├── topbar.cljs │ │ │ ├── typography.cljs │ │ │ ├── unviewed_indicator.cljs │ │ │ └── webview.cljs │ │ └── screens │ │ │ ├── appearance │ │ │ └── views.cljs │ │ │ ├── browser │ │ │ ├── accounts.cljs │ │ │ ├── empty_tab │ │ │ │ ├── styles.cljs │ │ │ │ └── views.cljs │ │ │ ├── options │ │ │ │ └── views.cljs │ │ │ ├── permissions │ │ │ │ └── views.cljs │ │ │ ├── site_blocked │ │ │ │ ├── styles.cljs │ │ │ │ └── views.cljs │ │ │ ├── stack.cljs │ │ │ ├── styles.cljs │ │ │ ├── tabs │ │ │ │ └── views.cljs │ │ │ └── views.cljs │ │ │ ├── bug_report.cljs │ │ │ ├── chat │ │ │ ├── group.cljs │ │ │ ├── message │ │ │ │ ├── legacy_style.cljs │ │ │ │ └── legacy_view.cljs │ │ │ └── photos.cljs │ │ │ ├── communities │ │ │ └── members.cljs │ │ │ ├── help_center │ │ │ ├── styles.cljs │ │ │ └── views.cljs │ │ │ ├── log_level_settings │ │ │ └── styles.cljs │ │ │ ├── pairing │ │ │ ├── styles.cljs │ │ │ └── views.cljs │ │ │ ├── popover │ │ │ └── views.cljs │ │ │ ├── profile │ │ │ ├── components │ │ │ │ ├── styles.cljs │ │ │ │ └── views.cljs │ │ │ ├── contact │ │ │ │ └── views.cljs │ │ │ ├── group_chat │ │ │ │ └── views.cljs │ │ │ ├── user │ │ │ │ └── views.cljs │ │ │ └── visibility_status │ │ │ │ ├── styles.cljs │ │ │ │ └── utils.cljs │ │ │ ├── progress │ │ │ └── views.cljs │ │ │ ├── reset_password │ │ │ └── views.cljs │ │ │ ├── rpc_usage_info.cljs │ │ │ └── screens.cljs │ │ ├── utils │ │ ├── async.cljs │ │ ├── async_test.cljs │ │ ├── deprecated_types.cljs │ │ ├── dimensions.cljs │ │ ├── js_resources.cljs │ │ ├── logging │ │ │ ├── core.cljs │ │ │ └── view.cljs │ │ ├── mobile_sync.cljs │ │ ├── random.cljs │ │ ├── random_test.cljs │ │ ├── signing_phrase │ │ │ ├── core.cljs │ │ │ ├── core_test.cljs │ │ │ └── dictionaries │ │ │ │ └── en.cljs │ │ ├── slurp.clj │ │ ├── styles.clj │ │ ├── styles.cljs │ │ ├── transducers.cljs │ │ ├── transducers_test.cljs │ │ ├── utils.cljs │ │ └── views.clj │ │ ├── visibility_status_popover │ │ └── core.cljs │ │ ├── visibility_status_updates │ │ └── core.cljs │ │ └── waku │ │ └── core.cljs ├── mocks │ └── js_dependencies.cljs ├── native_module │ ├── core.cljs │ ├── push_notifications.cljs │ └── utils.cljs ├── quo │ ├── README.md │ ├── components │ │ ├── animated_header_flatlist │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── avatars │ │ │ ├── account_avatar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── channel_avatar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── collection_avatar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── community_avatar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── dapp_avatar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── group_avatar.cljs │ │ │ ├── group_avatar │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── icon_avatar.cljs │ │ │ ├── token_avatar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── user_avatar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── wallet_user_avatar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── banners │ │ │ ├── alert_banner │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── banner │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── blur │ │ │ └── view.cljs │ │ ├── browser │ │ │ └── browser_input │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── buttons │ │ │ ├── button │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── properties.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── composer_button │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── dynamic_button │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── logout_button │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── predictive_keyboard │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── slide_button │ │ │ │ ├── animations.cljs │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── constants.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── utils.cljs │ │ │ │ └── view.cljs │ │ │ ├── swap_order_button │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── wallet_button │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── wallet_ctas │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── calendar │ │ │ ├── calendar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── days_grid │ │ │ │ │ ├── style.cljs │ │ │ │ │ ├── utils.cljs │ │ │ │ │ ├── utils_test.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── month_picker │ │ │ │ │ ├── component_spec.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ ├── utils.cljs │ │ │ │ │ ├── utils_test.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── utils.cljs │ │ │ │ ├── utils_test.cljs │ │ │ │ ├── view.cljs │ │ │ │ ├── weekdays_header │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── years_list │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ ├── calendar_day │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── calendar_year │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── cards │ │ │ └── wallet_card │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── code │ │ │ ├── common │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── snippet │ │ │ │ └── view.cljs │ │ │ └── snippet_preview │ │ │ │ └── view.cljs │ │ ├── colors │ │ │ ├── color │ │ │ │ ├── constants.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── color_picker │ │ │ │ ├── component_spec.cljs │ │ │ │ └── view.cljs │ │ ├── common │ │ │ ├── dot_separator.cljs │ │ │ ├── list │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── new_feature_dot.cljs │ │ │ ├── new_feature_gradient.cljs │ │ │ ├── no_flicker_image.cljs │ │ │ ├── notification_dot │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── separator │ │ │ │ └── view.cljs │ │ │ └── unread_grey_dot │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── community │ │ │ ├── banner │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── channel_action │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── channel_actions │ │ │ │ └── view.cljs │ │ │ ├── community_card_view.cljs │ │ │ ├── community_detail_token_gating │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── community_list_view.cljs │ │ │ ├── community_stat │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── community_token_gating │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── community_view.cljs │ │ │ ├── icon.cljs │ │ │ └── style.cljs │ │ ├── counter │ │ │ ├── collectible_counter │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── counter │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── fraction_counter │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── step │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── dividers │ │ │ ├── date.cljs │ │ │ ├── divider_label │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── divider_line │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── new_messages.cljs │ │ │ └── strength_divider │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── drawers │ │ │ ├── action_drawers │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── bottom_actions │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── documentation_drawers │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── drawer_action │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── drawer_buttons │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── drawer_top │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── permission_context │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── dropdowns │ │ │ ├── dropdown │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── properties.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── dropdown_input │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── properties.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── network_dropdown │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── empty_state │ │ │ └── empty_state │ │ │ │ ├── styles.cljs │ │ │ │ └── view.cljs │ │ ├── gradient │ │ │ └── gradient_cover │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── graph │ │ │ ├── interactive_graph │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── utils.cljs │ │ │ ├── utils_test.cljs │ │ │ └── wallet_graph │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── icon.cljs │ │ ├── icons │ │ │ ├── icons.clj │ │ │ ├── icons.cljs │ │ │ └── svg.cljs │ │ ├── info │ │ │ ├── info_message │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── information_box │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── inputs │ │ │ ├── address_input │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── input │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── locked_input │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── profile_input │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── recovery_phrase │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── search_input │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── title_input │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── ios │ │ │ └── drawer_bar │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── keycard │ │ │ ├── component_spec.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── links │ │ │ ├── internal_link_card │ │ │ │ ├── channel │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── community │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── user │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ ├── link_preview │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── url_preview │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── url_preview_list │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── list_items │ │ │ ├── account │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── account_list_card │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── address │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── approval_info │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── channel │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── community │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── dapp │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── market_token │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── menu_item.cljs │ │ │ ├── missing_keypair │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── network_list │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── preview_list │ │ │ │ ├── properties.cljs │ │ │ │ └── view.cljs │ │ │ ├── quiz_item │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── saved_address │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── saved_contact_address │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── status_list_item │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── token_info │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── token_network │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── token_value │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── user.cljs │ │ ├── loaders │ │ │ └── skeleton_list │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── constants.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── markdown │ │ │ ├── list │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── text.cljs │ │ │ └── text_component_spec.cljs │ │ ├── messages │ │ │ ├── author │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── gap.cljs │ │ │ └── system_message │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── navigation │ │ │ ├── bottom_nav_tab │ │ │ │ ├── styles.cljs │ │ │ │ └── view.cljs │ │ │ ├── floating_shell_button │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── page_nav │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── top_nav │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── notifications │ │ │ ├── activity_log │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── activity_logs_photos │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── count_down_circle.cljs │ │ │ ├── notification │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── toast │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── numbered_keyboard │ │ │ ├── keyboard_key │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── numbered_keyboard │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── onboarding │ │ │ └── small_option_card │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── overlay │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── password │ │ │ ├── password_tips │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── tips │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── pin_input │ │ │ ├── pin │ │ │ │ └── view.cljs │ │ │ └── view.cljs │ │ ├── profile │ │ │ ├── collectible │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── collectible_list_item │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── expanded_collectible │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── link_card │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── properties.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── profile_card │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── select_profile │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── showcase_nav │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── record_audio │ │ │ ├── record_audio │ │ │ │ ├── buttons │ │ │ │ │ ├── delete_button.cljs │ │ │ │ │ ├── lock_button.cljs │ │ │ │ │ ├── record_button.cljs │ │ │ │ │ ├── record_button_big.cljs │ │ │ │ │ └── send_button.cljs │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── constants.cljs │ │ │ │ ├── handlers.cljs │ │ │ │ ├── helpers.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── soundtrack │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── selectors │ │ │ ├── disclaimer │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── filter │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── react │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── react_selector │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── reaction_resource.cljs │ │ │ ├── reactions_selector │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── selectors │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── settings │ │ │ ├── accounts │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── category │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── data_item │ │ │ │ │ └── view.cljs │ │ │ │ ├── reorder │ │ │ │ │ └── view.cljs │ │ │ │ ├── settings │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── data_item │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── page_setting │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── privacy_option │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── reorder_item │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── items │ │ │ │ │ ├── item.cljs │ │ │ │ │ ├── item_placeholder.cljs │ │ │ │ │ ├── item_skeleton.cljs │ │ │ │ │ └── item_tabs.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── types.cljs │ │ │ │ └── view.cljs │ │ │ ├── section_label │ │ │ │ └── view.cljs │ │ │ └── settings_item │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── share │ │ │ ├── qr_code │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── share_qr_code │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── slideshow │ │ │ └── slider_bar │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── tabs │ │ │ ├── account_selector.cljs │ │ │ ├── segmented_tab.cljs │ │ │ ├── tab │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── tabs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── tags │ │ │ ├── base_tag.cljs │ │ │ ├── collectible_tag │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── context_tag │ │ │ │ ├── schema.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── network_status_tag │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── network_tags │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── number_tag │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── permission_tag.cljs │ │ │ ├── status_tags.cljs │ │ │ ├── status_tags_component_spec.cljs │ │ │ ├── summary_tag │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── tag.cljs │ │ │ ├── tags.cljs │ │ │ ├── tiny_tag │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── token_tag │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── text_combinations │ │ │ ├── channel_name │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── page_top │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── standard_title │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── style.cljs │ │ │ ├── username │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── view.cljs │ │ ├── utilities │ │ │ ├── social │ │ │ │ ├── loader.clj │ │ │ │ ├── loader.cljs │ │ │ │ └── view.cljs │ │ │ └── token │ │ │ │ ├── loader.clj │ │ │ │ ├── loader.cljs │ │ │ │ └── view.cljs │ │ └── wallet │ │ │ ├── account_card │ │ │ ├── component_spec.cljs │ │ │ ├── properties.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── account_origin │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── account_overview │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── account_permissions │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── address_text │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── amount_input │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── approval_label │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── confirmation_progress │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── keypair │ │ │ ├── component_spec.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── missing_keypairs │ │ │ ├── component_spec.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── network_amount │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── network_bridge │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── network_link │ │ │ ├── helpers.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── network_routing │ │ │ ├── animation.cljs │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── progress_bar │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── required_tokens │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── summary_info │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── swap_input │ │ │ ├── component_spec.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── token_input │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── transaction_progress │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── transaction_summary │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── wallet_activity │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ └── wallet_overview │ │ │ ├── component_spec.cljs │ │ │ ├── schema.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ ├── context.cljs │ ├── core.cljs │ ├── core_spec.cljs │ └── foundations │ │ ├── colors.cljs │ │ ├── colors_test.cljs │ │ ├── customization_colors.cljs │ │ ├── gradients.cljs │ │ ├── resources.cljs │ │ ├── shadows.cljs │ │ └── typography.cljs ├── react_native │ ├── async_storage.cljs │ ├── audio_toolkit.cljs │ ├── background_timer.cljs │ ├── biometrics.cljs │ ├── blob.cljs │ ├── blur.cljs │ ├── camera_kit.cljs │ ├── cameraroll.cljs │ ├── charts.cljs │ ├── clipboard.cljs │ ├── config.cljs │ ├── core.cljs │ ├── draggable_flatlist.cljs │ ├── fast_image.cljs │ ├── firebase.cljc │ ├── firebase │ │ ├── firebase_fdroid.cljs │ │ ├── firebase_google.cljs │ │ └── firebase_unsupported.cljs │ ├── flat_list.cljs │ ├── fs.cljs │ ├── gesture.cljs │ ├── hole_view.cljs │ ├── hooks.cljs │ ├── image_crop_picker.cljs │ ├── image_resizer.cljs │ ├── keychain.cljs │ ├── linear_gradient.cljs │ ├── masked_view.cljs │ ├── mmkv.cljs │ ├── navigation.cljs │ ├── net_info.cljs │ ├── orientation.cljs │ ├── pdf_viewer.cljs │ ├── permissions.cljs │ ├── platform.cljs │ ├── push_notification_ios.cljs │ ├── reanimated.cljs │ ├── safe_area.cljs │ ├── safe_area_context.cljs │ ├── section_list.cljs │ ├── shadow.cljs │ ├── shake.cljs │ ├── share.cljs │ ├── slider.cljs │ ├── svg.cljs │ ├── syntax_highlighter.cljs │ ├── utils.cljs │ └── wallet_connect.cljs ├── reagent │ ├── config.cljs │ └── config_test.cljs ├── schema │ ├── README.md │ ├── common.cljs │ ├── core.clj │ ├── core.cljs │ ├── quo.cljs │ ├── re_frame.cljs │ ├── registry.cljs │ ├── state.cljs │ ├── style.cljs │ └── view.cljs ├── status_im │ ├── app │ │ ├── README.md │ │ ├── market │ │ │ └── events.cljs │ │ └── wallet │ │ │ └── events.cljs │ ├── app_build │ │ ├── core.clj │ │ └── core.cljs │ ├── common │ │ ├── alert │ │ │ └── effects.cljs │ │ ├── alert_banner │ │ │ ├── events.cljs │ │ │ ├── events_test.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── app_monitoring │ │ │ ├── effects.cljs │ │ │ └── events.cljs │ │ ├── async_storage │ │ │ └── effects.cljs │ │ ├── avatar_picture_picker │ │ │ └── view.cljs │ │ ├── biometric │ │ │ ├── effects.cljs │ │ │ ├── events.cljs │ │ │ ├── events_test.cljs │ │ │ └── utils.cljs │ │ ├── bottom_sheet │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── bottom_sheet_screen │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── check_before_syncing │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── confirmation_drawer │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── contact_list │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── contact_list_item │ │ │ └── view.cljs │ │ ├── controlled_input │ │ │ └── utils.cljs │ │ ├── data_confirmation_sheet │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── device_permissions.cljs │ │ ├── emoji_picker │ │ │ ├── constants.cljs │ │ │ ├── data.cljs │ │ │ ├── events.cljs │ │ │ ├── style.cljs │ │ │ ├── utils.cljs │ │ │ ├── utils_test.cljs │ │ │ └── view.cljs │ │ ├── enter_seed_phrase │ │ │ ├── events.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── events_helper.cljs │ │ ├── floating_button_page │ │ │ ├── component_spec.cljs │ │ │ ├── floating_container │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── font │ │ │ ├── effects.cljs │ │ │ └── events.cljs │ │ ├── home │ │ │ ├── actions │ │ │ │ └── view.cljs │ │ │ ├── banner │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── constants.cljs │ │ │ ├── empty_state │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── header_spacing │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── title_column │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── top_nav │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── image_crop_picker │ │ │ └── events.cljs │ │ ├── json_rpc │ │ │ └── events.cljs │ │ ├── keychain │ │ │ └── events.cljs │ │ ├── kv_storage │ │ │ └── effects.cljs │ │ ├── lightbox │ │ │ ├── animations.cljs │ │ │ ├── bottom_view.cljs │ │ │ ├── constants.cljs │ │ │ ├── effects.cljs │ │ │ ├── events.cljs │ │ │ ├── style.cljs │ │ │ ├── text_sheet │ │ │ │ ├── style.cljs │ │ │ │ ├── utils.cljs │ │ │ │ └── view.cljs │ │ │ ├── top_view.cljs │ │ │ ├── utils.cljs │ │ │ ├── view.cljs │ │ │ └── zoomable_image │ │ │ │ ├── constants.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── utils.cljs │ │ │ │ └── view.cljs │ │ ├── log.cljs │ │ ├── mute_drawer │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── muting │ │ │ ├── helpers.cljs │ │ │ └── helpers_test.cljs │ │ ├── new_device_sheet │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── not_implemented.cljs │ │ ├── pairing │ │ │ └── events.cljs │ │ ├── password_with_hint │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── pdf_viewer │ │ │ └── view.cljs │ │ ├── peer_stats │ │ │ └── events.cljs │ │ ├── pixel_ratio.cljs │ │ ├── plus_button │ │ │ └── view.cljs │ │ ├── privacy │ │ │ └── view.cljs │ │ ├── privacy_mode │ │ │ ├── events.cljs │ │ │ └── view.cljs │ │ ├── qr_codes │ │ │ └── view.cljs │ │ ├── raw_data_block │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── refreshable_flat_list │ │ │ └── view.cljs │ │ ├── resources.cljs │ │ ├── router.cljs │ │ ├── router_test.cljs │ │ ├── scalable_avatar │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── scan_qr_code │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── scroll_page │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── serialization.cljs │ │ ├── shared_urls │ │ │ ├── data_store.cljs │ │ │ └── events.cljs │ │ ├── signals │ │ │ └── events.cljs │ │ ├── standard_authentication │ │ │ ├── core.cljs │ │ │ ├── enter_password │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── events.cljs │ │ │ ├── events_schema.cljs │ │ │ ├── events_test.cljs │ │ │ ├── forgot_password_doc │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── keycard_events.cljs │ │ │ ├── password_input │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── slide_auth.cljs │ │ │ ├── slide_sign.cljs │ │ │ └── utils.cljs │ │ ├── terms │ │ │ └── view.cljs │ │ ├── theme │ │ │ ├── core.cljs │ │ │ ├── effects.cljs │ │ │ └── events.cljs │ │ ├── toasts │ │ │ ├── animation.cljs │ │ │ ├── events.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ ├── universal_links.cljs │ │ ├── universal_links_test.cljs │ │ └── validation │ │ │ ├── general.cljs │ │ │ ├── general_test.cljs │ │ │ ├── keypair.cljs │ │ │ ├── keypair_test.cljs │ │ │ ├── password.cljs │ │ │ ├── profile.cljs │ │ │ └── profile_test.cljs │ ├── config.cljs │ ├── constants.cljs │ ├── contexts │ │ ├── centralized_metrics │ │ │ ├── effects.cljs │ │ │ ├── events.cljs │ │ │ ├── events_test.cljs │ │ │ ├── tracking.cljs │ │ │ └── tracking_test.cljs │ │ ├── chat │ │ │ ├── actions │ │ │ │ └── view.cljs │ │ │ ├── contacts │ │ │ │ ├── drawers │ │ │ │ │ └── nickname_drawer │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ ├── events.cljs │ │ │ │ └── events_test.cljs │ │ │ ├── effects.cljs │ │ │ ├── events.cljs │ │ │ ├── events_test.cljs │ │ │ ├── group │ │ │ │ ├── common │ │ │ │ │ ├── group_edit.cljs │ │ │ │ │ └── style.cljs │ │ │ │ ├── create │ │ │ │ │ └── view.cljs │ │ │ │ ├── details │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── events.cljs │ │ │ │ └── update │ │ │ │ │ └── view.cljs │ │ │ ├── home │ │ │ │ ├── add_new_contact │ │ │ │ │ ├── effects.cljs │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ ├── scan │ │ │ │ │ │ └── scan_profile_qr_page.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── views.cljs │ │ │ │ ├── chat_list_item │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── contact_request │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── new_chat │ │ │ │ │ ├── styles.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ └── messenger │ │ │ │ ├── camera │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ │ ├── composer │ │ │ │ ├── actions │ │ │ │ │ ├── image │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── constants.cljs │ │ │ │ ├── edit │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── effects.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── handlers.cljs │ │ │ │ ├── images │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── link_preview │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── mentions │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── reply │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── selection.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── utils.cljs │ │ │ │ └── view.cljs │ │ │ │ ├── menus │ │ │ │ └── pinned_messages │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── messages │ │ │ │ ├── avatar │ │ │ │ │ └── view.cljs │ │ │ │ ├── constants.cljs │ │ │ │ ├── contact_requests │ │ │ │ │ └── bottom_drawer │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ ├── content │ │ │ │ │ ├── album │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── component_spec.cljs │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── deleted │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── emoji_message │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── image │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── lightbox │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ ├── utils.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── link_preview │ │ │ │ │ │ ├── view.cljs │ │ │ │ │ │ └── view_test.cljs │ │ │ │ │ ├── pin │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── reactions │ │ │ │ │ │ ├── events.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── status │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── status_link_preview │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── sticker_message │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ ├── system │ │ │ │ │ │ └── text │ │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── text │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── unknown │ │ │ │ │ │ └── view.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── delete_message │ │ │ │ │ ├── events.cljs │ │ │ │ │ └── events_test.cljs │ │ │ │ ├── delete_message_for_me │ │ │ │ │ ├── events.cljs │ │ │ │ │ └── events_test.cljs │ │ │ │ ├── drawers │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── list │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ ├── state.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── navigation │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── pin │ │ │ │ │ ├── banner │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── events.cljs │ │ │ │ │ └── events_test.cljs │ │ │ │ ├── resolver │ │ │ │ │ ├── message_resolver.cljs │ │ │ │ │ └── message_resolver_test.cljs │ │ │ │ ├── scroll_to_bottom │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── transport │ │ │ │ │ └── events.cljs │ │ │ │ └── view.cljs │ │ │ │ ├── photo_selector │ │ │ │ ├── album_selector │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── effects.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ │ └── placeholder │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── communities │ │ │ ├── actions │ │ │ │ ├── accounts_selection │ │ │ │ │ ├── effects.cljs │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── addresses_for_permissions │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── airdrop_addresses │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── channel_view_details │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── chat │ │ │ │ │ └── view.cljs │ │ │ │ ├── community_options │ │ │ │ │ ├── component_spec.cljs │ │ │ │ │ ├── events.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── community_rules │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── community_rules_list │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── generic_menu │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── invite_contacts │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── leave │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── permissions_sheet │ │ │ │ │ └── view.cljs │ │ │ │ ├── see_rules │ │ │ │ │ └── view.cljs │ │ │ │ ├── share_community │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── share_community_channel │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ ├── discover │ │ │ │ ├── events.cljs │ │ │ │ ├── events_test.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── events.cljs │ │ │ ├── events_test.cljs │ │ │ ├── home │ │ │ │ ├── events.cljs │ │ │ │ └── view.cljs │ │ │ ├── overview │ │ │ │ ├── events.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── sharing │ │ │ │ └── events.cljs │ │ │ └── utils.cljs │ │ ├── contact │ │ │ └── blocking │ │ │ │ └── events.cljs │ │ ├── keycard │ │ │ ├── authorise │ │ │ │ └── view.cljs │ │ │ ├── backup │ │ │ │ ├── events.cljs │ │ │ │ └── view.cljs │ │ │ ├── change_pin │ │ │ │ ├── events.cljs │ │ │ │ └── view.cljs │ │ │ ├── check │ │ │ │ └── view.cljs │ │ │ ├── common │ │ │ │ └── view.cljs │ │ │ ├── create │ │ │ │ ├── events.cljs │ │ │ │ └── view.cljs │ │ │ ├── different_card │ │ │ │ └── view.cljs │ │ │ ├── effects.cljs │ │ │ ├── error │ │ │ │ └── view.cljs │ │ │ ├── events.cljs │ │ │ ├── factory_reset │ │ │ │ └── view.cljs │ │ │ ├── feature_unavailable │ │ │ │ ├── events.cljs │ │ │ │ └── view.cljs │ │ │ ├── init │ │ │ │ └── events.cljs │ │ │ ├── login │ │ │ │ ├── events.cljs │ │ │ │ └── view.cljs │ │ │ ├── manage │ │ │ │ ├── events.cljs │ │ │ │ ├── profile_keys │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ ├── migrate │ │ │ │ ├── events.cljs │ │ │ │ ├── fail │ │ │ │ │ └── view.cljs │ │ │ │ ├── profile_keys │ │ │ │ │ └── view.cljs │ │ │ │ ├── re_encrypting │ │ │ │ │ ├── events.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── sheets │ │ │ │ │ └── view.cljs │ │ │ │ ├── success │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ ├── nfc │ │ │ │ ├── effects.cljs │ │ │ │ ├── events.cljs │ │ │ │ └── sheets │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ ├── not_keycard │ │ │ │ └── view.cljs │ │ │ ├── pin │ │ │ │ ├── create │ │ │ │ │ └── view.cljs │ │ │ │ ├── enter │ │ │ │ │ └── view.cljs │ │ │ │ ├── events.cljs │ │ │ │ └── view.cljs │ │ │ ├── sign │ │ │ │ └── events.cljs │ │ │ ├── unblock │ │ │ │ ├── events.cljs │ │ │ │ └── view.cljs │ │ │ └── utils.cljs │ │ ├── market │ │ │ ├── token │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── view.cljs │ │ ├── network │ │ │ ├── db.cljs │ │ │ ├── effects.cljs │ │ │ └── events.cljs │ │ ├── onboarding │ │ │ ├── common │ │ │ │ ├── background │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── carousel │ │ │ │ │ ├── animation.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── overlay │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ ├── create_password │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── create_profile │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── enable_biometrics │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── enable_notifications │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── events.cljs │ │ │ ├── getting_started_doc │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── interceptors.cljs │ │ │ ├── intro │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── log_in │ │ │ │ └── view.cljs │ │ │ ├── preparing_status │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── share_usage │ │ │ │ ├── learn_more_sheet.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── sign_in │ │ │ │ └── view.cljs │ │ │ └── syncing │ │ │ │ └── progress │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── preview │ │ │ ├── feature_flags │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── quo │ │ │ │ ├── animated_header_list │ │ │ │ │ └── animated_header_list.cljs │ │ │ │ ├── avatars │ │ │ │ │ ├── account_avatar.cljs │ │ │ │ │ ├── channel_avatar.cljs │ │ │ │ │ ├── collection_avatar.cljs │ │ │ │ │ ├── community_avatar.cljs │ │ │ │ │ ├── dapp_avatar.cljs │ │ │ │ │ ├── group_avatar.cljs │ │ │ │ │ ├── icon_avatar.cljs │ │ │ │ │ ├── token_avatar.cljs │ │ │ │ │ ├── user_avatar.cljs │ │ │ │ │ └── wallet_user_avatar.cljs │ │ │ │ ├── banners │ │ │ │ │ ├── alert_banner.cljs │ │ │ │ │ └── banner.cljs │ │ │ │ ├── browser │ │ │ │ │ └── browser_input.cljs │ │ │ │ ├── buttons │ │ │ │ │ ├── button.cljs │ │ │ │ │ ├── composer_button.cljs │ │ │ │ │ ├── dynamic_button.cljs │ │ │ │ │ ├── predictive_keyboard.cljs │ │ │ │ │ ├── slide_button.cljs │ │ │ │ │ ├── swap_order_button.cljs │ │ │ │ │ ├── wallet_button.cljs │ │ │ │ │ └── wallet_ctas.cljs │ │ │ │ ├── calendar │ │ │ │ │ ├── calendar.cljs │ │ │ │ │ ├── calendar_day.cljs │ │ │ │ │ └── calendar_year.cljs │ │ │ │ ├── cards │ │ │ │ │ └── wallet_card.cljs │ │ │ │ ├── code │ │ │ │ │ ├── snippet.cljs │ │ │ │ │ └── snippet_preview.cljs │ │ │ │ ├── colors │ │ │ │ │ ├── color.cljs │ │ │ │ │ └── color_picker.cljs │ │ │ │ ├── common.cljs │ │ │ │ ├── community │ │ │ │ │ ├── channel_action.cljs │ │ │ │ │ ├── channel_actions.cljs │ │ │ │ │ ├── community_card_view.cljs │ │ │ │ │ ├── community_detail_token_gating.cljs │ │ │ │ │ ├── community_membership_list_view.cljs │ │ │ │ │ ├── community_stat.cljs │ │ │ │ │ ├── community_token_gating.cljs │ │ │ │ │ ├── data.cljs │ │ │ │ │ ├── discover_card.cljs │ │ │ │ │ └── list_item.cljs │ │ │ │ ├── component_preview │ │ │ │ │ ├── events.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── counter │ │ │ │ │ ├── collectible_counter.cljs │ │ │ │ │ ├── counter.cljs │ │ │ │ │ └── step.cljs │ │ │ │ ├── dividers │ │ │ │ │ ├── date.cljs │ │ │ │ │ ├── divider_label.cljs │ │ │ │ │ ├── divider_line.cljs │ │ │ │ │ ├── new_messages.cljs │ │ │ │ │ └── strength_divider.cljs │ │ │ │ ├── drawers │ │ │ │ │ ├── action_drawers.cljs │ │ │ │ │ ├── bottom_actions.cljs │ │ │ │ │ ├── documentation_drawers.cljs │ │ │ │ │ ├── drawer_action.cljs │ │ │ │ │ ├── drawer_buttons.cljs │ │ │ │ │ ├── drawer_top.cljs │ │ │ │ │ └── permission_drawers.cljs │ │ │ │ ├── dropdowns │ │ │ │ │ ├── dropdown.cljs │ │ │ │ │ ├── dropdown_input.cljs │ │ │ │ │ └── network_dropdown.cljs │ │ │ │ ├── empty_state │ │ │ │ │ └── empty_state.cljs │ │ │ │ ├── foundations │ │ │ │ │ ├── gradients.cljs │ │ │ │ │ └── shadows.cljs │ │ │ │ ├── gradient │ │ │ │ │ └── gradient_cover.cljs │ │ │ │ ├── graph │ │ │ │ │ ├── interactive_graph.cljs │ │ │ │ │ └── wallet_graph.cljs │ │ │ │ ├── info │ │ │ │ │ ├── info_message.cljs │ │ │ │ │ └── information_box.cljs │ │ │ │ ├── inputs │ │ │ │ │ ├── address_input.cljs │ │ │ │ │ ├── input.cljs │ │ │ │ │ ├── locked_input.cljs │ │ │ │ │ ├── profile_input.cljs │ │ │ │ │ ├── recovery_phrase_input.cljs │ │ │ │ │ ├── search_input.cljs │ │ │ │ │ └── title_input.cljs │ │ │ │ ├── ios │ │ │ │ │ └── drawer_bar.cljs │ │ │ │ ├── keycard │ │ │ │ │ └── keycard.cljs │ │ │ │ ├── links │ │ │ │ │ ├── internal_link_card.cljs │ │ │ │ │ ├── link_preview.cljs │ │ │ │ │ ├── url_preview.cljs │ │ │ │ │ └── url_preview_list.cljs │ │ │ │ ├── list_items │ │ │ │ │ ├── account.cljs │ │ │ │ │ ├── account_list_card.cljs │ │ │ │ │ ├── address.cljs │ │ │ │ │ ├── approval_info.cljs │ │ │ │ │ ├── channel.cljs │ │ │ │ │ ├── dapp.cljs │ │ │ │ │ ├── market_token.cljs │ │ │ │ │ ├── missing_keypair.cljs │ │ │ │ │ ├── network_list.cljs │ │ │ │ │ ├── preview_lists.cljs │ │ │ │ │ ├── quiz_item.cljs │ │ │ │ │ ├── saved_address.cljs │ │ │ │ │ ├── saved_contact_address.cljs │ │ │ │ │ ├── status_list_item.cljs │ │ │ │ │ ├── token_network.cljs │ │ │ │ │ ├── token_value.cljs │ │ │ │ │ └── user_list.cljs │ │ │ │ ├── loaders │ │ │ │ │ └── skeleton_list.cljs │ │ │ │ ├── main.cljs │ │ │ │ ├── markdown │ │ │ │ │ ├── list.cljs │ │ │ │ │ └── text.cljs │ │ │ │ ├── messages │ │ │ │ │ ├── author.cljs │ │ │ │ │ ├── gap.cljs │ │ │ │ │ └── system_message.cljs │ │ │ │ ├── navigation │ │ │ │ │ ├── bottom_nav_tab.cljs │ │ │ │ │ ├── floating_shell_button.cljs │ │ │ │ │ ├── page_nav.cljs │ │ │ │ │ └── top_nav.cljs │ │ │ │ ├── notifications │ │ │ │ │ ├── activity_logs.cljs │ │ │ │ │ ├── activity_logs_photos.cljs │ │ │ │ │ ├── notification.cljs │ │ │ │ │ └── toast.cljs │ │ │ │ ├── numbered_keyboard │ │ │ │ │ ├── keyboard_key.cljs │ │ │ │ │ └── numbered_keyboard.cljs │ │ │ │ ├── onboarding │ │ │ │ │ └── small_option_card.cljs │ │ │ │ ├── password │ │ │ │ │ ├── password_tips.cljs │ │ │ │ │ └── tips.cljs │ │ │ │ ├── pin_input │ │ │ │ │ └── pin_input.cljs │ │ │ │ ├── preview.cljs │ │ │ │ ├── profile │ │ │ │ │ ├── collectible.cljs │ │ │ │ │ ├── collectible_list_item.cljs │ │ │ │ │ ├── expanded_collectible.cljs │ │ │ │ │ ├── link_card.cljs │ │ │ │ │ ├── profile_card.cljs │ │ │ │ │ ├── select_profile.cljs │ │ │ │ │ └── showcase_nav.cljs │ │ │ │ ├── record_audio │ │ │ │ │ └── record_audio.cljs │ │ │ │ ├── selectors │ │ │ │ │ ├── disclaimer.cljs │ │ │ │ │ ├── filter.cljs │ │ │ │ │ ├── react.cljs │ │ │ │ │ ├── react_selector.cljs │ │ │ │ │ ├── reactions_selector.cljs │ │ │ │ │ └── selectors.cljs │ │ │ │ ├── settings │ │ │ │ │ ├── accounts.cljs │ │ │ │ │ ├── category.cljs │ │ │ │ │ ├── data_item.cljs │ │ │ │ │ ├── page_setting.cljs │ │ │ │ │ ├── privacy_option.cljs │ │ │ │ │ ├── reorder_item.cljs │ │ │ │ │ ├── section_label.cljs │ │ │ │ │ └── settings_item.cljs │ │ │ │ ├── share │ │ │ │ │ ├── qr_code.cljs │ │ │ │ │ └── share_qr_code.cljs │ │ │ │ ├── slideshow │ │ │ │ │ └── slider_bar.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── tabs │ │ │ │ │ ├── account_selector.cljs │ │ │ │ │ ├── segmented_tab.cljs │ │ │ │ │ └── tabs.cljs │ │ │ │ ├── tags │ │ │ │ │ ├── collectible_tag.cljs │ │ │ │ │ ├── context_tags.cljs │ │ │ │ │ ├── network_status_tag.cljs │ │ │ │ │ ├── network_tags.cljs │ │ │ │ │ ├── number_tag.cljs │ │ │ │ │ ├── permission_tag.cljs │ │ │ │ │ ├── status_tags.cljs │ │ │ │ │ ├── summary_tag.cljs │ │ │ │ │ ├── tag.cljs │ │ │ │ │ ├── tags.cljs │ │ │ │ │ ├── tiny_tag.cljs │ │ │ │ │ └── token_tag.cljs │ │ │ │ ├── text_combinations │ │ │ │ │ ├── channel_name.cljs │ │ │ │ │ ├── page_top.cljs │ │ │ │ │ ├── preview.cljs │ │ │ │ │ ├── standard_title.cljs │ │ │ │ │ └── username.cljs │ │ │ │ └── wallet │ │ │ │ │ ├── account_card.cljs │ │ │ │ │ ├── account_origin.cljs │ │ │ │ │ ├── account_overview.cljs │ │ │ │ │ ├── account_permissions.cljs │ │ │ │ │ ├── amount_input.cljs │ │ │ │ │ ├── approval_label.cljs │ │ │ │ │ ├── confirmation_progress.cljs │ │ │ │ │ ├── keypair.cljs │ │ │ │ │ ├── missing_keypairs.cljs │ │ │ │ │ ├── network_amount.cljs │ │ │ │ │ ├── network_bridge.cljs │ │ │ │ │ ├── network_link.cljs │ │ │ │ │ ├── network_routing.cljs │ │ │ │ │ ├── progress_bar.cljs │ │ │ │ │ ├── required_tokens.cljs │ │ │ │ │ ├── summary_info.cljs │ │ │ │ │ ├── swap_input.cljs │ │ │ │ │ ├── token_input.cljs │ │ │ │ │ ├── transaction_progress.cljs │ │ │ │ │ ├── transaction_summary.cljs │ │ │ │ │ ├── wallet_activity.cljs │ │ │ │ │ └── wallet_overview.cljs │ │ │ └── status_im │ │ │ │ ├── banners │ │ │ │ └── alert_banner.cljs │ │ │ │ ├── common │ │ │ │ └── floating_button_page │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── main.cljs │ │ │ │ └── style.cljs │ │ ├── profile │ │ │ ├── backup_recovery_phrase │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── config.cljs │ │ │ ├── contact │ │ │ │ ├── actions │ │ │ │ │ └── view.cljs │ │ │ │ ├── add_nickname │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── block_contact │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── contact_request │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── contact_review │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── header │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── share │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── unblock_contact │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ ├── create │ │ │ │ ├── effects.cljs │ │ │ │ └── events.cljs │ │ │ ├── data_store.cljs │ │ │ ├── db.cljs │ │ │ ├── edit │ │ │ │ ├── accent_colour │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── bio │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── header │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── introduce_yourself │ │ │ │ │ └── view.cljs │ │ │ │ ├── list_items.cljs │ │ │ │ ├── modal │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── name │ │ │ │ │ ├── events.cljs │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── effects.cljs │ │ │ ├── events.cljs │ │ │ ├── login │ │ │ │ ├── effects.cljs │ │ │ │ └── events.cljs │ │ │ ├── logout │ │ │ │ ├── effects.cljs │ │ │ │ └── events.cljs │ │ │ ├── profiles │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── push_notifications │ │ │ │ ├── effects.cljs │ │ │ │ ├── events.cljs │ │ │ │ └── local │ │ │ │ │ ├── effects.cljs │ │ │ │ │ └── events.cljs │ │ │ ├── recover │ │ │ │ ├── effects.cljs │ │ │ │ └── events.cljs │ │ │ ├── rpc.cljs │ │ │ ├── settings │ │ │ │ ├── effects.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── header │ │ │ │ │ ├── header_shape.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ ├── utils.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── list_items.cljs │ │ │ │ ├── screens │ │ │ │ │ ├── messages │ │ │ │ │ │ ├── blocked_users │ │ │ │ │ │ │ └── view.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── notifications │ │ │ │ │ │ ├── styles.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── password │ │ │ │ │ │ ├── change_password │ │ │ │ │ │ │ ├── effects.cljs │ │ │ │ │ │ │ ├── events.cljs │ │ │ │ │ │ │ ├── header.cljs │ │ │ │ │ │ │ ├── loading.cljs │ │ │ │ │ │ │ ├── new_password_form.cljs │ │ │ │ │ │ │ ├── old_password_form.cljs │ │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ │ └── view.cljs │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ └── syncing │ │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── view.cljs │ │ │ │ └── visibility_sheet │ │ │ │ │ └── view.cljs │ │ │ ├── utils.cljs │ │ │ └── utils_test.cljs │ │ ├── push_notifications │ │ │ ├── notifications.cljs │ │ │ ├── permissions.cljs │ │ │ └── remote_token.cljs │ │ ├── settings │ │ │ ├── about │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── advanced │ │ │ │ ├── events.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── common │ │ │ │ └── header.cljs │ │ │ ├── keycard │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── language_and_currency │ │ │ │ ├── currency │ │ │ │ │ ├── style.cljs │ │ │ │ │ ├── utils.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── data_store.cljs │ │ │ │ ├── data_store_test.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── events_test.cljs │ │ │ │ └── view.cljs │ │ │ ├── privacy_and_security │ │ │ │ ├── profile_picture │ │ │ │ │ └── view.cljs │ │ │ │ ├── share_usage │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── wallet │ │ │ │ ├── data_store.cljs │ │ │ │ ├── effects.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── events_test.cljs │ │ │ │ ├── keypairs_and_accounts │ │ │ │ ├── actions │ │ │ │ │ └── view.cljs │ │ │ │ ├── missing_keypairs │ │ │ │ │ ├── encrypted_qr │ │ │ │ │ │ ├── countdown │ │ │ │ │ │ │ └── view.cljs │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── import_private_key │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── import_seed_phrase │ │ │ │ │ │ └── view.cljs │ │ │ │ │ └── scan_qr │ │ │ │ │ │ └── view.cljs │ │ │ │ ├── remove │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── rename │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ │ ├── network_settings │ │ │ │ ├── max_active_networks_sheet.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── testnet_mode │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ │ ├── saved_addresses │ │ │ │ ├── add_address_to_save │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── events_test.cljs │ │ │ │ ├── save_address │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── share_address │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── sheets │ │ │ │ │ ├── address_options │ │ │ │ │ │ └── view.cljs │ │ │ │ │ └── remove_address │ │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ │ └── wallet_options │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ ├── shell │ │ │ ├── activity_center │ │ │ │ ├── context.cljs │ │ │ │ ├── drawer │ │ │ │ │ └── view.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── events_test.cljs │ │ │ │ ├── header │ │ │ │ │ └── view.cljs │ │ │ │ ├── notification │ │ │ │ │ ├── admin │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── common │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── community_kicked │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── community_request │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── contact_requests │ │ │ │ │ │ ├── events.cljs │ │ │ │ │ │ ├── events_test.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── contact_verification │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── membership │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── mentions │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── news │ │ │ │ │ │ └── view.cljs │ │ │ │ │ ├── reply │ │ │ │ │ │ ├── style.cljs │ │ │ │ │ │ └── view.cljs │ │ │ │ │ └── syncing │ │ │ │ │ │ └── view.cljs │ │ │ │ ├── notification_types.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── tabs │ │ │ │ │ ├── empty_tab │ │ │ │ │ │ └── view.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ ├── bottom_tabs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── constants.cljs │ │ │ ├── effects.cljs │ │ │ ├── events.cljs │ │ │ ├── home_stack │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── qr_reader │ │ │ │ ├── events.cljs │ │ │ │ ├── sheets │ │ │ │ │ └── scanned_wallet_address.cljs │ │ │ │ └── view.cljs │ │ │ ├── share │ │ │ │ ├── events.cljs │ │ │ │ ├── profile │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── view.cljs │ │ │ │ └── wallet │ │ │ │ │ ├── component_spec.cljs │ │ │ │ │ └── view.cljs │ │ │ ├── shared_values.cljs │ │ │ ├── state.cljs │ │ │ ├── utils.cljs │ │ │ └── view.cljs │ │ ├── syncing │ │ │ ├── device │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── enter_sync_code │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── events.cljs │ │ │ ├── find_sync_code │ │ │ │ └── view.cljs │ │ │ ├── how_to_pair │ │ │ │ └── view.cljs │ │ │ ├── scan_sync_code │ │ │ │ ├── animation.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── scan_sync_code_page │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── setup_syncing │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── syncing_devices_list │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── syncing_instructions │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── utils.cljs │ │ └── wallet │ │ │ ├── account │ │ │ ├── db.cljs │ │ │ ├── edit_account │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── share_address │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── style.cljs │ │ │ ├── tabs │ │ │ │ ├── about │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── assets │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ └── view.cljs │ │ │ ├── add_account │ │ │ ├── add_address_to_watch │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── confirm_address │ │ │ │ │ ├── component_spec.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── create_account │ │ │ │ ├── edit_derivation_path │ │ │ │ ├── path_format_sheet │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── events_test.cljs │ │ │ │ ├── import_private_key │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ │ ├── key_pair_name │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ │ ├── new_keypair │ │ │ │ └── confirm_backup │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── select_keypair │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ ├── utils.cljs │ │ │ │ └── view.cljs │ │ │ ├── bridge │ │ │ ├── bridge_to │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── flow_config.cljs │ │ │ ├── input_amount │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── select_asset │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── buy_crypto │ │ │ └── events.cljs │ │ │ ├── collectible │ │ │ ├── events.cljs │ │ │ ├── events_test.cljs │ │ │ ├── options │ │ │ │ └── view.cljs │ │ │ ├── style.cljs │ │ │ ├── tabs │ │ │ │ ├── about │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── activity │ │ │ │ │ └── view.cljs │ │ │ │ ├── overview │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ ├── utils.cljs │ │ │ ├── utils_test.cljs │ │ │ └── view.cljs │ │ │ ├── common │ │ │ ├── account_switcher │ │ │ │ └── view.cljs │ │ │ ├── activity_tab │ │ │ │ ├── activity_types │ │ │ │ │ └── view.cljs │ │ │ │ ├── constants.cljs │ │ │ │ ├── events.cljs │ │ │ │ ├── options │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ ├── asset_list │ │ │ │ └── view.cljs │ │ │ ├── collectibles_tab │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── empty_tab │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── fiat_text │ │ │ │ └── view.cljs │ │ │ ├── scan_account │ │ │ │ └── view.cljs │ │ │ ├── screen_base │ │ │ │ └── create_or_edit_account │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ ├── token_value │ │ │ │ └── view.cljs │ │ │ ├── transaction_settings │ │ │ │ ├── core.cljs │ │ │ │ ├── gas_amount │ │ │ │ │ └── view.cljs │ │ │ │ ├── gas_price │ │ │ │ │ └── view.cljs │ │ │ │ ├── max_fee │ │ │ │ │ └── view.cljs │ │ │ │ ├── nonce │ │ │ │ │ └── view.cljs │ │ │ │ ├── priority_fee │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ ├── utils.cljs │ │ │ ├── utils │ │ │ │ └── networks.cljs │ │ │ ├── utils_test.cljs │ │ │ ├── validation.cljs │ │ │ └── wizard │ │ │ │ ├── events.cljs │ │ │ │ └── utils.cljs │ │ │ ├── connected_dapps │ │ │ ├── disconnect_dapp │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── scan_dapp │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── style.cljs │ │ │ └── view.cljs │ │ │ ├── data_store.cljs │ │ │ ├── data_store_test.cljs │ │ │ ├── db.cljs │ │ │ ├── db_path.cljs │ │ │ ├── effects.cljs │ │ │ ├── events.cljs │ │ │ ├── events_test.cljs │ │ │ ├── home │ │ │ ├── style.cljs │ │ │ ├── tabs │ │ │ │ ├── assets │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── view.cljs │ │ │ ├── item_types.cljs │ │ │ ├── networks │ │ │ ├── config.cljs │ │ │ ├── core.cljs │ │ │ ├── core_test.cljs │ │ │ ├── db.cljs │ │ │ ├── db_test.cljs │ │ │ ├── effects.cljs │ │ │ ├── events.cljs │ │ │ ├── filter.cljs │ │ │ ├── filter_test.cljs │ │ │ ├── new_networks.cljs │ │ │ └── validation.cljs │ │ │ ├── router │ │ │ ├── core.cljs │ │ │ ├── router_test.cljs │ │ │ └── schema.cljs │ │ │ ├── rpc.cljs │ │ │ ├── rpc_data_store │ │ │ ├── networks.cljs │ │ │ └── utils.cljs │ │ │ ├── send │ │ │ ├── events.cljs │ │ │ ├── events_test.cljs │ │ │ ├── flow_config.cljs │ │ │ ├── from │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── input_amount │ │ │ │ ├── component_spec.cljs │ │ │ │ ├── estimated_fees.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── routes │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── select_address │ │ │ │ ├── style.cljs │ │ │ │ ├── tabs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ └── view.cljs │ │ │ ├── select_asset │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── select_collectible_amount │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── send_amount │ │ │ │ └── view.cljs │ │ │ ├── transaction_confirmation │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── transaction_progress │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── utils.cljs │ │ │ └── utils_test.cljs │ │ │ ├── sheets │ │ │ ├── account_options │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── account_origin │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── buy_network_selection │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── buy_token │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── missing_keypair │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── network_filter │ │ │ │ ├── network_field.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── network_selection │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── remove_account │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── select_account │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── select_asset │ │ │ │ ├── asset_list │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── slippage_settings │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── signals.cljs │ │ │ ├── swap │ │ │ ├── events.cljs │ │ │ ├── select_account │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── select_asset_to_pay │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── set_spending_cap │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── setup_swap │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── swap_confirmation │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ └── utils.cljs │ │ │ ├── tokens │ │ │ ├── data.cljs │ │ │ ├── effects.cljs │ │ │ ├── events.cljs │ │ │ ├── events_test.cljs │ │ │ └── rpc.cljs │ │ │ └── wallet_connect │ │ │ ├── events │ │ │ ├── core.cljs │ │ │ ├── effects.cljs │ │ │ ├── network.cljs │ │ │ ├── session_proposals.cljs │ │ │ ├── session_requests.cljs │ │ │ ├── session_responses.cljs │ │ │ ├── session_responses_test.cljs │ │ │ ├── sessions.cljs │ │ │ └── sessions_test.cljs │ │ │ ├── modals │ │ │ ├── change_network │ │ │ │ └── view.cljs │ │ │ ├── common │ │ │ │ ├── data_block │ │ │ │ │ └── view.cljs │ │ │ │ ├── fees_data_item │ │ │ │ │ └── view.cljs │ │ │ │ ├── footer │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── header │ │ │ │ │ ├── components.cljs │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── list_info_box │ │ │ │ │ ├── style.cljs │ │ │ │ │ └── view.cljs │ │ │ │ ├── page_nav │ │ │ │ │ └── view.cljs │ │ │ │ └── style.cljs │ │ │ ├── send_transaction │ │ │ │ └── view.cljs │ │ │ ├── session_proposal │ │ │ │ ├── style.cljs │ │ │ │ └── view.cljs │ │ │ ├── sign_message │ │ │ │ └── view.cljs │ │ │ └── sign_transaction │ │ │ │ └── view.cljs │ │ │ └── utils │ │ │ ├── data_store.cljs │ │ │ ├── data_store_test.cljs │ │ │ ├── networks.cljs │ │ │ ├── rpc.cljs │ │ │ ├── sessions.cljs │ │ │ ├── transactions.cljs │ │ │ ├── typed_data.cljs │ │ │ ├── typed_data_test.cljs │ │ │ └── uri.cljs │ ├── core.cljs │ ├── core_spec.cljs │ ├── db.cljs │ ├── domain │ │ ├── README.md │ │ ├── market │ │ │ └── events.cljs │ │ └── subs.cljs │ ├── events.cljs │ ├── feature_flags.cljs │ ├── gateway │ │ ├── README.md │ │ ├── events.cljs │ │ └── market │ │ │ ├── core.cljs │ │ │ ├── core_test.cljs │ │ │ ├── events.cljs │ │ │ └── transform.cljs │ ├── navigation │ │ ├── core.cljs │ │ ├── effects.cljs │ │ ├── events.cljs │ │ ├── options.cljs │ │ ├── roots.cljs │ │ ├── screens.cljs │ │ ├── state.cljs │ │ ├── transitions.cljs │ │ └── view.cljs │ ├── setup │ │ ├── dev.cljs │ │ ├── global_error.cljs │ │ ├── hot_reload.cljs │ │ ├── i18n_resources.cljs │ │ ├── interceptor_metrics.cljc │ │ ├── interceptors.cljs │ │ ├── oops.cljs │ │ ├── schema.cljs │ │ ├── schema_preload.cljs │ │ ├── status_backend_client.cljs │ │ └── test_preload.cljs │ ├── subs │ │ ├── activity_center.cljs │ │ ├── activity_center_test.cljs │ │ ├── alert_banner.cljs │ │ ├── alert_banner_test.cljs │ │ ├── biometrics.cljs │ │ ├── chat │ │ │ └── utils.cljs │ │ ├── chats.cljs │ │ ├── chats_test.cljs │ │ ├── communities.cljs │ │ ├── communities_test.cljs │ │ ├── community │ │ │ ├── account_selection.cljs │ │ │ └── account_selection_test.cljs │ │ ├── contact.cljs │ │ ├── contact │ │ │ └── utils.cljs │ │ ├── contact_test.cljs │ │ ├── general.cljs │ │ ├── general_test.cljs │ │ ├── keycard.cljs │ │ ├── messages.cljs │ │ ├── messages_test.cljs │ │ ├── onboarding.cljs │ │ ├── pairing.cljs │ │ ├── profile.cljs │ │ ├── profile_test.cljs │ │ ├── root.cljs │ │ ├── settings.cljs │ │ ├── shell.cljs │ │ ├── shell_test.cljs │ │ ├── standard_authentication.cljs │ │ └── wallet │ │ │ ├── activities.cljs │ │ │ ├── activities_test.cljs │ │ │ ├── add_account │ │ │ └── address_to_watch.cljs │ │ │ ├── buy.cljs │ │ │ ├── collectibles.cljs │ │ │ ├── dapps │ │ │ ├── core.cljs │ │ │ ├── proposals.cljs │ │ │ ├── proposals_test.cljs │ │ │ ├── requests.cljs │ │ │ ├── sessions.cljs │ │ │ └── transactions.cljs │ │ │ ├── networks.cljs │ │ │ ├── networks_test.cljs │ │ │ ├── saved_addresses.cljs │ │ │ ├── saved_addresses_test.cljs │ │ │ ├── send.cljs │ │ │ ├── send_test.cljs │ │ │ ├── swap.cljs │ │ │ ├── swap_test.cljs │ │ │ ├── wallet.cljs │ │ │ └── wallet_test.cljs │ └── ui │ │ ├── README.md │ │ └── market │ │ ├── style.cljs │ │ ├── subs.cljs │ │ └── view.cljs ├── test_helpers │ ├── component.clj │ ├── component.cljs │ ├── component_tests_preload.cljs │ ├── integration.cljs │ ├── matchers.clj │ ├── matchers.cljs │ ├── unit.clj │ └── unit.cljs ├── tests │ ├── contract_test │ │ ├── core_test.cljs │ │ ├── profile_test.cljs │ │ ├── utils.cljs │ │ ├── wallet_recovered_account_test.cljs │ │ └── wallet_test.cljs │ ├── integration_test │ │ ├── chat_test.cljs │ │ ├── constants.cljs │ │ ├── core_test.cljs │ │ ├── profile_test.cljs │ │ └── standard_auth_test.cljs │ ├── test_utils.cljs │ └── wallet_test_data.cljs └── utils │ ├── address.cljs │ ├── address_test.cljs │ ├── collection.cljs │ ├── collection_test.cljs │ ├── datetime.cljs │ ├── datetime_test.cljs │ ├── debounce.cljs │ ├── emojilib.cljs │ ├── ens │ ├── core.cljs │ ├── stateofus.cljs │ └── stateofus_test.cljs │ ├── ethereum │ ├── chain.cljs │ ├── chain_test.cljs │ └── eip │ │ ├── eip55.cljs │ │ ├── eip55_test.cljs │ │ ├── eip681.cljs │ │ └── eip681_test.cljs │ ├── hex.cljs │ ├── i18n.cljs │ ├── i18n_goog.cljs │ ├── image_server.cljs │ ├── image_server_test.cljs │ ├── map.cljs │ ├── money.cljs │ ├── money_test.cljs │ ├── number.cljs │ ├── number_test.cljs │ ├── promesa.clj │ ├── re_frame.clj │ ├── re_frame.cljs │ ├── re_frame_test.cljs │ ├── red_black_tree.cljs │ ├── responsiveness.cljs │ ├── security │ ├── core.cljs │ ├── security_html.cljs │ ├── security_html_test.cljs │ └── security_test.cljs │ ├── signatures.cljs │ ├── string.cljs │ ├── string_test.cljs │ ├── transforms.cljs │ ├── transforms_test.cljs │ ├── url.cljs │ ├── url_test.cljs │ ├── vector.cljs │ ├── vector_test.cljs │ └── worklets │ ├── chat │ └── messenger │ │ ├── composer.cljs │ │ ├── lightbox.cljs │ │ └── messages.cljs │ ├── communities.cljs │ ├── core.cljs │ ├── header_animations.cljs │ ├── onboarding_carousel.cljs │ ├── profile_header.cljs │ ├── record_audio.cljs │ └── shell.cljs ├── status-go-version.json ├── supervisord.conf ├── test-resources └── override.js ├── test ├── appium │ ├── README.md │ ├── docker │ │ ├── Dockerfile │ │ ├── HOWTO.md │ │ └── entry_point.sh │ ├── pytest.ini │ ├── requirements.txt │ ├── support │ │ ├── api │ │ │ ├── lightweight_browser_api.py │ │ │ └── network_api.py │ │ ├── base_test_report.py │ │ ├── github_report.py │ │ ├── helpers.py │ │ ├── lambda_test.py │ │ ├── test_data.py │ │ └── testrail_report.py │ ├── tests │ │ ├── __init__.py │ │ ├── activity_center │ │ │ └── test_activity_center.py │ │ ├── base_test_case.py │ │ ├── communities │ │ │ └── test_community.py │ │ ├── conftest.py │ │ ├── deep_links │ │ │ └── test_deep_and_universal_links.py │ │ ├── different_os │ │ │ └── test_different_android_versions.py │ │ ├── marks.py │ │ ├── private_chats │ │ │ ├── test_group_chat.py │ │ │ └── test_one_to_one_chat.py │ │ ├── profile │ │ │ ├── test_fallback.py │ │ │ └── test_profile.py │ │ ├── wallet │ │ │ ├── test_collectibles.py │ │ │ ├── test_wallet_connect.py │ │ │ └── test_wallet_mainnet_no_send.py │ │ └── wallet_txs │ │ │ ├── test_wallet_mainnet_txs.py │ │ │ └── test_wallet_testnet.py │ └── views │ │ ├── __init__.py │ │ ├── base_element.py │ │ ├── base_view.py │ │ ├── chat_view.py │ │ ├── dapps_view.py │ │ ├── dbs │ │ └── waku_backup │ │ │ └── user.py │ │ ├── elements_templates │ │ ├── BVL_collectible_image_template.png │ │ ├── BVL_expanded_collectible_image_template.png │ │ ├── Glitch Punks_collectible_image_template.png │ │ ├── Glitch Punks_expanded_collectible_image_template.png │ │ ├── image_1_chat_view.png │ │ ├── image_1_gallery_view.png │ │ ├── image_2_chat_view.png │ │ ├── image_2_gallery_view.png │ │ ├── images_gallery.png │ │ ├── images_gallery_inverted.png │ │ ├── profile_image.png │ │ ├── profile_image_contacts_profile.png │ │ ├── profile_image_in_1_1_chat.png │ │ ├── profile_image_sign_in_view.png │ │ ├── status_community_join_button.png │ │ └── status_community_logo.png │ │ ├── home_view.py │ │ ├── profile_view.py │ │ ├── sign_in_view.py │ │ ├── wallet_view.py │ │ └── web_views │ │ ├── base_web_view.py │ │ └── external_browser_view.py ├── docker │ ├── README.md │ ├── bootnode │ │ └── static │ │ │ └── bootnode.key │ ├── clojure │ │ └── Dockerfile │ ├── docker-compose.yml │ └── status-go │ │ └── Dockerfile ├── env │ └── dev │ │ └── env │ │ └── test │ │ ├── runner.cljs │ │ └── utils.cljs └── jest │ ├── jest.config.js │ └── jestSetup.js ├── translations ├── af.json ├── ar.json ├── bel.json ├── bn.json ├── cs.json ├── da.json ├── de.json ├── de_ch.json ├── el.json ├── en.json ├── es.json ├── es_419.json ├── es_AR.json ├── es_mx.json ├── fa.json ├── fi.json ├── fil.json ├── fr.json ├── fr_ch.json ├── fy.json ├── he.json ├── hi.json ├── hu.json ├── id.json ├── it.json ├── it_ch.json ├── ja.json ├── ko.json ├── la.json ├── lt.json ├── lv.json ├── ms.json ├── nb.json ├── ne.json ├── nl.json ├── pl.json ├── pt.json ├── pt_BR.json ├── pt_pt.json ├── ro.json ├── ru.json ├── sl.json ├── sr_rs_cyrl.json ├── sr_rs_latn.json ├── sv.json ├── sw.json ├── th.json ├── tl.json ├── tr.json ├── uk.json ├── ur.json ├── vi.json ├── zh.json ├── zh_Hans_CN.json ├── zh_TW.json ├── zh_hans.json ├── zh_hant.json ├── zh_hant_hk.json ├── zh_hant_sg.json ├── zh_hant_tw.json ├── zh_wuu.json └── zh_yue.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.buckconfig -------------------------------------------------------------------------------- /.clj-kondo/babashka/fs/config.edn: -------------------------------------------------------------------------------- 1 | {:lint-as {babashka.fs/with-temp-dir clojure.core/let}} 2 | -------------------------------------------------------------------------------- /.clj-kondo/babashka/sci/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.clj-kondo/babashka/sci/config.edn -------------------------------------------------------------------------------- /.clj-kondo/babashka/sci/sci/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.clj-kondo/babashka/sci/sci/core.clj -------------------------------------------------------------------------------- /.clj-kondo/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.clj-kondo/config.edn -------------------------------------------------------------------------------- /.clj-kondo/funcool/promesa/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.clj-kondo/funcool/promesa/config.edn -------------------------------------------------------------------------------- /.clj-kondo/metosin/malli/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.clj-kondo/metosin/malli/config.edn -------------------------------------------------------------------------------- /.clj-kondo/status-im/cljs/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.clj-kondo/status-im/cljs/test.clj -------------------------------------------------------------------------------- /.clj-kondo/status-im/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.clj-kondo/status-im/config.edn -------------------------------------------------------------------------------- /.clj-kondo/status-im/utils/i18n.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.clj-kondo/status-im/utils/i18n.clj -------------------------------------------------------------------------------- /.clj-kondo/taoensso/encore/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.clj-kondo/taoensso/encore/config.edn -------------------------------------------------------------------------------- /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.env -------------------------------------------------------------------------------- /.env.e2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.env.e2e -------------------------------------------------------------------------------- /.env.jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.env.jenkins -------------------------------------------------------------------------------- /.env.nightly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.env.nightly -------------------------------------------------------------------------------- /.env.release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.env.release -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | layout node 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | *.patch eol=lf 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/github-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.github/github-bot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lsp/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.lsp/config.edn -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.mailmap -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.vscode/settings.example.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.watchmanconfig -------------------------------------------------------------------------------- /.zprintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/.zprintrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/RELEASES.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.34.1 2 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/googleServices.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/app/googleServices.gradle -------------------------------------------------------------------------------- /android/app/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/app/jni/Android.mk -------------------------------------------------------------------------------- /android/app/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/app/jni/Application.mk -------------------------------------------------------------------------------- /android/app/jni/Log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/app/jni/Log.c -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/init.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/init.gradle -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/babel.config.js -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/binding.gyp -------------------------------------------------------------------------------- /ci/Jenkinsfile: -------------------------------------------------------------------------------- 1 | Jenkinsfile.combined -------------------------------------------------------------------------------- /ci/Jenkinsfile.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/Jenkinsfile.android -------------------------------------------------------------------------------- /ci/Jenkinsfile.combined: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/Jenkinsfile.combined -------------------------------------------------------------------------------- /ci/Jenkinsfile.e2e-nightly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/Jenkinsfile.e2e-nightly -------------------------------------------------------------------------------- /ci/Jenkinsfile.ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/Jenkinsfile.ios -------------------------------------------------------------------------------- /ci/Jenkinsfile.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/Jenkinsfile.tests -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/tests/Jenkinsfile.e2e-nightly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/tests/Jenkinsfile.e2e-nightly -------------------------------------------------------------------------------- /ci/tests/Jenkinsfile.e2e-prs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/tests/Jenkinsfile.e2e-prs -------------------------------------------------------------------------------- /ci/tests/Jenkinsfile.e2e-upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/tests/Jenkinsfile.e2e-upgrade -------------------------------------------------------------------------------- /ci/tools/Jenkinsfile.fastlane-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/tools/Jenkinsfile.fastlane-clean -------------------------------------------------------------------------------- /ci/tools/Jenkinsfile.nix-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/tools/Jenkinsfile.nix-cache -------------------------------------------------------------------------------- /ci/tools/Jenkinsfile.playstore-meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/tools/Jenkinsfile.playstore-meta -------------------------------------------------------------------------------- /ci/tools/Jenkinsfile.pod-repo-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/tools/Jenkinsfile.pod-repo-update -------------------------------------------------------------------------------- /ci/tools/Jenkinsfile.xcode-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ci/tools/Jenkinsfile.xcode-clean -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/default.nix -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/adding-new-chains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/adding-new-chains.md -------------------------------------------------------------------------------- /doc/architecture-layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/architecture-layers.md -------------------------------------------------------------------------------- /doc/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/debugging.md -------------------------------------------------------------------------------- /doc/decisions/0002-extension-uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/decisions/0002-extension-uri.md -------------------------------------------------------------------------------- /doc/decisions/0003-geth-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/decisions/0003-geth-node.md -------------------------------------------------------------------------------- /doc/decisions/0013-tribute-to-talk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/decisions/0013-tribute-to-talk.md -------------------------------------------------------------------------------- /doc/decisions/0014-wallet-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/decisions/0014-wallet-team.md -------------------------------------------------------------------------------- /doc/decisions/0015-team-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/decisions/0015-team-structure.md -------------------------------------------------------------------------------- /doc/decisions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/decisions/README.md -------------------------------------------------------------------------------- /doc/decisions/templates/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/decisions/templates/template.md -------------------------------------------------------------------------------- /doc/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/dependencies.md -------------------------------------------------------------------------------- /doc/fdroid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/fdroid.md -------------------------------------------------------------------------------- /doc/how-to-catch-crash-on-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/how-to-catch-crash-on-ios.md -------------------------------------------------------------------------------- /doc/ide-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/ide-setup.md -------------------------------------------------------------------------------- /doc/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/architecture.png -------------------------------------------------------------------------------- /doc/images/debugging/geth-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/debugging/geth-path.png -------------------------------------------------------------------------------- /doc/images/debugging/log-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/debugging/log-settings.png -------------------------------------------------------------------------------- /doc/images/debugging/re-frisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/debugging/re-frisk.png -------------------------------------------------------------------------------- /doc/images/debugging/share-logs.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/debugging/share-logs.jpeg -------------------------------------------------------------------------------- /doc/images/figma-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/figma-properties.png -------------------------------------------------------------------------------- /doc/images/ide-setup/10_REPL_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/10_REPL_8.png -------------------------------------------------------------------------------- /doc/images/ide-setup/11_REPL_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/11_REPL_9.png -------------------------------------------------------------------------------- /doc/images/ide-setup/12_REPL_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/12_REPL_10.png -------------------------------------------------------------------------------- /doc/images/ide-setup/2_resolve.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/2_resolve.jpeg -------------------------------------------------------------------------------- /doc/images/ide-setup/3_REPL_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/3_REPL_1.png -------------------------------------------------------------------------------- /doc/images/ide-setup/4_REPL_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/4_REPL_2.png -------------------------------------------------------------------------------- /doc/images/ide-setup/5_REPL_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/5_REPL_3.png -------------------------------------------------------------------------------- /doc/images/ide-setup/6_REPL_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/6_REPL_4.png -------------------------------------------------------------------------------- /doc/images/ide-setup/7_REPL_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/7_REPL_5.png -------------------------------------------------------------------------------- /doc/images/ide-setup/8_REPL_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/8_REPL_6.png -------------------------------------------------------------------------------- /doc/images/ide-setup/9_REPL_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/ide-setup/9_REPL_7.png -------------------------------------------------------------------------------- /doc/images/layers-relationships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/layers-relationships.png -------------------------------------------------------------------------------- /doc/images/quo-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/images/quo-component.png -------------------------------------------------------------------------------- /doc/import-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/import-assets.md -------------------------------------------------------------------------------- /doc/logging-and-sharing-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/logging-and-sharing-flow.md -------------------------------------------------------------------------------- /doc/merging-pr-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/merging-pr-process.md -------------------------------------------------------------------------------- /doc/new-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/new-guidelines.md -------------------------------------------------------------------------------- /doc/patching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/patching.md -------------------------------------------------------------------------------- /doc/pipeline_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/pipeline_process.md -------------------------------------------------------------------------------- /doc/pixel-perfection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/pixel-perfection.md -------------------------------------------------------------------------------- /doc/post-mortem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/post-mortem.md -------------------------------------------------------------------------------- /doc/pr-review-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/pr-review-policy.md -------------------------------------------------------------------------------- /doc/react_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/react_tree.png -------------------------------------------------------------------------------- /doc/release-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/release-checklist.md -------------------------------------------------------------------------------- /doc/release-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/release-guide.md -------------------------------------------------------------------------------- /doc/sign_in/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/sign_in/readme.md -------------------------------------------------------------------------------- /doc/sign_in/sign_in_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/sign_in/sign_in_diagram.jpg -------------------------------------------------------------------------------- /doc/sign_in/sign_in_diagram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/sign_in/sign_in_diagram.xml -------------------------------------------------------------------------------- /doc/starting-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/starting-guide.md -------------------------------------------------------------------------------- /doc/status-go-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/status-go-changes.md -------------------------------------------------------------------------------- /doc/tests/component-tests-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/tests/component-tests-overview.md -------------------------------------------------------------------------------- /doc/tests/how-to-launch-e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/tests/how-to-launch-e2e.md -------------------------------------------------------------------------------- /doc/tests/how-to-run-local-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/tests/how-to-run-local-tests.md -------------------------------------------------------------------------------- /doc/tests/tests-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/tests/tests-overview.md -------------------------------------------------------------------------------- /doc/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/troubleshooting.md -------------------------------------------------------------------------------- /doc/ui-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/ui-guidelines.md -------------------------------------------------------------------------------- /doc/use-status-backend-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/doc/use-status-backend-server.md -------------------------------------------------------------------------------- /fastlane/.env: -------------------------------------------------------------------------------- 1 | RCT_NO_LAUNCH_PACKAGER=true 2 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/fastlane/Gemfile -------------------------------------------------------------------------------- /fastlane/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/fastlane/Gemfile.lock -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/fastlane/default.nix -------------------------------------------------------------------------------- /fastlane/gemset.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/fastlane/gemset.nix -------------------------------------------------------------------------------- /fastlane/metadata/android/ar-SA/short_description.txt: -------------------------------------------------------------------------------- 1 | ربط Private Finance وWeb3 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ar-SA/title.txt: -------------------------------------------------------------------------------- 1 | Status: محفظة إيثريوم كريبتو 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Connect Private Finance & Web3 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Status: Ethereum Crypto Wallet 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Conecta tus finanzas y la web3 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Status: Billetera Ethereum 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- 1 | Finance privée + Web3 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Status: Portefeuille Ethereum 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- 1 | プライベート ファイナンスと Web3 を接続 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- 1 | 개인 금융 및 Web3 연결 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | Status: 이더리움 크립토 지갑 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Privacidade Financeira e Web3 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Status: Carteira Ethereum 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- 1 | Web3 финансы и приват чат 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Status: Ethereum Криптокошелек 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- 1 | Özel Finans ve Web3'ü Bağlayın 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Status Ethereum Kripto Cüzdanı 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk-UA/short_description.txt: -------------------------------------------------------------------------------- 1 | Web3 фінанси та приват чат 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk-UA/title.txt: -------------------------------------------------------------------------------- 1 | Status Ethereum Криптогаманець 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 连接个人金融和Web3 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | Status: 以太坊加密钱包 2 | -------------------------------------------------------------------------------- /fastlane/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/fastlane/update.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Bridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/Bridge.swift -------------------------------------------------------------------------------- /ios/Dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/Dummy.swift -------------------------------------------------------------------------------- /ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/StatusIm-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm-Bridging-Header.h -------------------------------------------------------------------------------- /ios/StatusIm/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm/AppDelegate.h -------------------------------------------------------------------------------- /ios/StatusIm/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm/AppDelegate.mm -------------------------------------------------------------------------------- /ios/StatusIm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm/Info.plist -------------------------------------------------------------------------------- /ios/StatusIm/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/StatusIm/StatusIm.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm/StatusIm.entitlements -------------------------------------------------------------------------------- /ios/StatusIm/launch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm/launch-icon.png -------------------------------------------------------------------------------- /ios/StatusIm/launch-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm/launch-icon@2x.png -------------------------------------------------------------------------------- /ios/StatusIm/launch-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm/launch-icon@3x.png -------------------------------------------------------------------------------- /ios/StatusIm/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusIm/main.m -------------------------------------------------------------------------------- /ios/StatusImPR/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusImPR/Info.plist -------------------------------------------------------------------------------- /ios/StatusImTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusImTests-Bridging-Header.h -------------------------------------------------------------------------------- /ios/StatusImTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusImTests/Info.plist -------------------------------------------------------------------------------- /ios/StatusImTests/StatusImTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/StatusImTests/StatusImTests.m -------------------------------------------------------------------------------- /ios/fonts/Inter-UI-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/fonts/Inter-UI-Bold.otf -------------------------------------------------------------------------------- /ios/fonts/Inter-UI-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/fonts/Inter-UI-Medium.otf -------------------------------------------------------------------------------- /ios/fonts/Inter-UI-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/fonts/Inter-UI-Regular.otf -------------------------------------------------------------------------------- /ios/launch-image-universal.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/launch-image-universal.storyboard -------------------------------------------------------------------------------- /ios/nanopb.framework/nanopb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/nanopb.framework/nanopb -------------------------------------------------------------------------------- /ios/scripts/set_xcode_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/ios/scripts/set_xcode_version.sh -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/logs/README.md -------------------------------------------------------------------------------- /maestro/create-account-or-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/maestro/create-account-or-login.yaml -------------------------------------------------------------------------------- /maestro/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/maestro/login.yaml -------------------------------------------------------------------------------- /maestro/onboarding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/maestro/onboarding.yaml -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/metro.config.js -------------------------------------------------------------------------------- /modules/react-native-status/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/modules/react-native-status/index.js -------------------------------------------------------------------------------- /nix/DETAILS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/DETAILS.md -------------------------------------------------------------------------------- /nix/KNOWN_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/KNOWN_ISSUES.md -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/default.nix -------------------------------------------------------------------------------- /nix/deps/clojure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/clojure/README.md -------------------------------------------------------------------------------- /nix/deps/clojure/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/clojure/default.nix -------------------------------------------------------------------------------- /nix/deps/clojure/deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/clojure/deps.json -------------------------------------------------------------------------------- /nix/deps/clojure/deps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/clojure/deps.list -------------------------------------------------------------------------------- /nix/deps/clojure/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/clojure/generate.sh -------------------------------------------------------------------------------- /nix/deps/gradle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/README.md -------------------------------------------------------------------------------- /nix/deps/gradle/add_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/add_package.sh -------------------------------------------------------------------------------- /nix/deps/gradle/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/default.nix -------------------------------------------------------------------------------- /nix/deps/gradle/deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/deps.json -------------------------------------------------------------------------------- /nix/deps/gradle/deps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/deps.list -------------------------------------------------------------------------------- /nix/deps/gradle/deps.urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/deps.urls -------------------------------------------------------------------------------- /nix/deps/gradle/deps_hack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/deps_hack.sh -------------------------------------------------------------------------------- /nix/deps/gradle/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/generate.sh -------------------------------------------------------------------------------- /nix/deps/gradle/get_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/get_deps.sh -------------------------------------------------------------------------------- /nix/deps/gradle/get_projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/get_projects.sh -------------------------------------------------------------------------------- /nix/deps/gradle/proj.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/proj.list -------------------------------------------------------------------------------- /nix/deps/gradle/url2json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/gradle/url2json.sh -------------------------------------------------------------------------------- /nix/deps/nodejs-patched/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/nodejs-patched/README.md -------------------------------------------------------------------------------- /nix/deps/nodejs-patched/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/nodejs-patched/default.nix -------------------------------------------------------------------------------- /nix/deps/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/nodejs/README.md -------------------------------------------------------------------------------- /nix/deps/nodejs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/nodejs/default.nix -------------------------------------------------------------------------------- /nix/deps/react-native/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/react-native/default.nix -------------------------------------------------------------------------------- /nix/deps/react-native/deps.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/deps/react-native/deps.nix -------------------------------------------------------------------------------- /nix/lib/checkEnvVarSet.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/lib/checkEnvVarSet.nix -------------------------------------------------------------------------------- /nix/lib/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/lib/default.nix -------------------------------------------------------------------------------- /nix/lib/getEnvWithDefault.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/lib/getEnvWithDefault.nix -------------------------------------------------------------------------------- /nix/lib/mergeSh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/lib/mergeSh.nix -------------------------------------------------------------------------------- /nix/lib/mkFilter.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/lib/mkFilter.nix -------------------------------------------------------------------------------- /nix/lib/mkFilter_test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/lib/mkFilter_test.nix -------------------------------------------------------------------------------- /nix/lib/sanitizeVersion.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/lib/sanitizeVersion.nix -------------------------------------------------------------------------------- /nix/mobile/android/build.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/android/build.nix -------------------------------------------------------------------------------- /nix/mobile/android/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/android/default.nix -------------------------------------------------------------------------------- /nix/mobile/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/default.nix -------------------------------------------------------------------------------- /nix/mobile/fastlane/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/fastlane/default.nix -------------------------------------------------------------------------------- /nix/mobile/ios/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/ios/default.nix -------------------------------------------------------------------------------- /nix/mobile/ios/shells/bundler.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/ios/shells/bundler.nix -------------------------------------------------------------------------------- /nix/mobile/ios/shells/cocoapods.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/ios/shells/cocoapods.nix -------------------------------------------------------------------------------- /nix/mobile/ios/shells/nodejs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/ios/shells/nodejs.nix -------------------------------------------------------------------------------- /nix/mobile/ios/shells/status-go.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/ios/shells/status-go.nix -------------------------------------------------------------------------------- /nix/mobile/jsbundle/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/mobile/jsbundle/default.nix -------------------------------------------------------------------------------- /nix/nix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/nix.conf -------------------------------------------------------------------------------- /nix/overlay.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/overlay.nix -------------------------------------------------------------------------------- /nix/pkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/pkgs.nix -------------------------------------------------------------------------------- /nix/pkgs/aapt2/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/pkgs/aapt2/default.nix -------------------------------------------------------------------------------- /nix/pkgs/android-sdk/compose.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/pkgs/android-sdk/compose.nix -------------------------------------------------------------------------------- /nix/pkgs/android-sdk/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/pkgs/android-sdk/default.nix -------------------------------------------------------------------------------- /nix/pkgs/android-sdk/pkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/pkgs/android-sdk/pkgs.nix -------------------------------------------------------------------------------- /nix/pkgs/android-sdk/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/pkgs/android-sdk/shell.nix -------------------------------------------------------------------------------- /nix/pkgs/gomobile/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/pkgs/gomobile/default.nix -------------------------------------------------------------------------------- /nix/pkgs/patch-maven-srcs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/pkgs/patch-maven-srcs/default.nix -------------------------------------------------------------------------------- /nix/pkgs/patched-go/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/pkgs/patched-go/default.nix -------------------------------------------------------------------------------- /nix/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/build.sh -------------------------------------------------------------------------------- /nix/scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/clean.sh -------------------------------------------------------------------------------- /nix/scripts/gcroots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/gcroots.sh -------------------------------------------------------------------------------- /nix/scripts/kill_proc_prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/kill_proc_prompt.sh -------------------------------------------------------------------------------- /nix/scripts/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/lib.sh -------------------------------------------------------------------------------- /nix/scripts/node_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/node_modules.sh -------------------------------------------------------------------------------- /nix/scripts/purge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/purge.sh -------------------------------------------------------------------------------- /nix/scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/setup.sh -------------------------------------------------------------------------------- /nix/scripts/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/shell.sh -------------------------------------------------------------------------------- /nix/scripts/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/source.sh -------------------------------------------------------------------------------- /nix/scripts/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/upgrade.sh -------------------------------------------------------------------------------- /nix/scripts/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/scripts/version.sh -------------------------------------------------------------------------------- /nix/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/shell.nix -------------------------------------------------------------------------------- /nix/shells.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/shells.nix -------------------------------------------------------------------------------- /nix/status-go/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/status-go/default.nix -------------------------------------------------------------------------------- /nix/status-go/library/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/status-go/library/default.nix -------------------------------------------------------------------------------- /nix/status-go/mobile/build.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/status-go/mobile/build.nix -------------------------------------------------------------------------------- /nix/status-go/mobile/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/status-go/mobile/default.nix -------------------------------------------------------------------------------- /nix/status-go/source.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/status-go/source.nix -------------------------------------------------------------------------------- /nix/targets.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/nix/targets.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/package.json -------------------------------------------------------------------------------- /patches/BlurView-build.gradle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/BlurView-build.gradle.patch -------------------------------------------------------------------------------- /patches/BlurView.ios.tsx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/BlurView.ios.tsx.patch -------------------------------------------------------------------------------- /patches/BlurView.mm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/BlurView.mm.patch -------------------------------------------------------------------------------- /patches/CameraRoll.ts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/CameraRoll.ts.patch -------------------------------------------------------------------------------- /patches/CameraRollModule.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/CameraRollModule.java.patch -------------------------------------------------------------------------------- /patches/RNCCameraRoll.mm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/RNCCameraRoll.mm.patch -------------------------------------------------------------------------------- /patches/react-native-android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/react-native-android.patch -------------------------------------------------------------------------------- /patches/react-native-keychain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/react-native-keychain.patch -------------------------------------------------------------------------------- /patches/react-native-script.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/react-native-script.patch -------------------------------------------------------------------------------- /patches/react-native.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/patches/react-native.patch -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/react-native.config.js -------------------------------------------------------------------------------- /resources/config/fleets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/config/fleets.json -------------------------------------------------------------------------------- /resources/data/emojis/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/data/emojis/en.json -------------------------------------------------------------------------------- /resources/fonts/Inter-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/fonts/Inter-Bold.otf -------------------------------------------------------------------------------- /resources/fonts/Inter-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/fonts/Inter-BoldItalic.otf -------------------------------------------------------------------------------- /resources/fonts/Inter-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/fonts/Inter-Italic.otf -------------------------------------------------------------------------------- /resources/fonts/Inter-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/fonts/Inter-Medium.otf -------------------------------------------------------------------------------- /resources/fonts/Inter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/fonts/Inter-Regular.otf -------------------------------------------------------------------------------- /resources/fonts/Inter-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/fonts/Inter-SemiBold.otf -------------------------------------------------------------------------------- /resources/images/dapps/1inch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/1inch@2x.png -------------------------------------------------------------------------------- /resources/images/dapps/1inch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/1inch@3x.png -------------------------------------------------------------------------------- /resources/images/dapps/Aave@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/Aave@2x.png -------------------------------------------------------------------------------- /resources/images/dapps/Aave@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/Aave@3x.png -------------------------------------------------------------------------------- /resources/images/dapps/Uniswap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/Uniswap@2x.png -------------------------------------------------------------------------------- /resources/images/dapps/Uniswap@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/Uniswap@3x.png -------------------------------------------------------------------------------- /resources/images/dapps/Zapper@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/Zapper@2x.png -------------------------------------------------------------------------------- /resources/images/dapps/Zapper@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/Zapper@3x.png -------------------------------------------------------------------------------- /resources/images/dapps/Zerion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/Zerion@2x.png -------------------------------------------------------------------------------- /resources/images/dapps/Zerion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/dapps/Zerion@3x.png -------------------------------------------------------------------------------- /resources/images/icons/account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/account@2x.png -------------------------------------------------------------------------------- /resources/images/icons/account@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/account@3x.png -------------------------------------------------------------------------------- /resources/images/icons/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/add@2x.png -------------------------------------------------------------------------------- /resources/images/icons/add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/add@3x.png -------------------------------------------------------------------------------- /resources/images/icons/address@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/address@2x.png -------------------------------------------------------------------------------- /resources/images/icons/address@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/address@3x.png -------------------------------------------------------------------------------- /resources/images/icons/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/back@2x.png -------------------------------------------------------------------------------- /resources/images/icons/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/back@3x.png -------------------------------------------------------------------------------- /resources/images/icons/browser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/browser@2x.png -------------------------------------------------------------------------------- /resources/images/icons/browser@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/browser@3x.png -------------------------------------------------------------------------------- /resources/images/icons/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/camera@2x.png -------------------------------------------------------------------------------- /resources/images/icons/camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/camera@3x.png -------------------------------------------------------------------------------- /resources/images/icons/cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/cancel@2x.png -------------------------------------------------------------------------------- /resources/images/icons/cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/cancel@3x.png -------------------------------------------------------------------------------- /resources/images/icons/change@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/change@2x.png -------------------------------------------------------------------------------- /resources/images/icons/change@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/change@3x.png -------------------------------------------------------------------------------- /resources/images/icons/channel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/channel@2x.png -------------------------------------------------------------------------------- /resources/images/icons/channel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/channel@3x.png -------------------------------------------------------------------------------- /resources/images/icons/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/check@2x.png -------------------------------------------------------------------------------- /resources/images/icons/check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/check@3x.png -------------------------------------------------------------------------------- /resources/images/icons/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/close@2x.png -------------------------------------------------------------------------------- /resources/images/icons/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/close@3x.png -------------------------------------------------------------------------------- /resources/images/icons/copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/copy@2x.png -------------------------------------------------------------------------------- /resources/images/icons/copy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/copy@3x.png -------------------------------------------------------------------------------- /resources/images/icons/dapp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/dapp@2x.png -------------------------------------------------------------------------------- /resources/images/icons/dapp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/dapp@3x.png -------------------------------------------------------------------------------- /resources/images/icons/delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/delete@2x.png -------------------------------------------------------------------------------- /resources/images/icons/delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/delete@3x.png -------------------------------------------------------------------------------- /resources/images/icons/desktop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/desktop@2x.png -------------------------------------------------------------------------------- /resources/images/icons/desktop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/desktop@3x.png -------------------------------------------------------------------------------- /resources/images/icons/edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/edit@2x.png -------------------------------------------------------------------------------- /resources/images/icons/edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/edit@3x.png -------------------------------------------------------------------------------- /resources/images/icons/emojis@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/emojis@2x.png -------------------------------------------------------------------------------- /resources/images/icons/emojis@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/emojis@3x.png -------------------------------------------------------------------------------- /resources/images/icons/faceid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/faceid@2x.png -------------------------------------------------------------------------------- /resources/images/icons/faceid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/faceid@3x.png -------------------------------------------------------------------------------- /resources/images/icons/filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/filter@2x.png -------------------------------------------------------------------------------- /resources/images/icons/filter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/filter@3x.png -------------------------------------------------------------------------------- /resources/images/icons/flags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/flags@2x.png -------------------------------------------------------------------------------- /resources/images/icons/flags@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/flags@3x.png -------------------------------------------------------------------------------- /resources/images/icons/flash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/flash@2x.png -------------------------------------------------------------------------------- /resources/images/icons/flash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/flash@3x.png -------------------------------------------------------------------------------- /resources/images/icons/food@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/food@2x.png -------------------------------------------------------------------------------- /resources/images/icons/food@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/food@3x.png -------------------------------------------------------------------------------- /resources/images/icons/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/forward@2x.png -------------------------------------------------------------------------------- /resources/images/icons/forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/forward@3x.png -------------------------------------------------------------------------------- /resources/images/icons/gallery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/gallery@2x.png -------------------------------------------------------------------------------- /resources/images/icons/gallery@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/gallery@3x.png -------------------------------------------------------------------------------- /resources/images/icons/gif@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/gif@2x.png -------------------------------------------------------------------------------- /resources/images/icons/gif@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/gif@3x.png -------------------------------------------------------------------------------- /resources/images/icons/help@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/help@2x.png -------------------------------------------------------------------------------- /resources/images/icons/help@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/help@3x.png -------------------------------------------------------------------------------- /resources/images/icons/hide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/hide@2x.png -------------------------------------------------------------------------------- /resources/images/icons/hide@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/hide@3x.png -------------------------------------------------------------------------------- /resources/images/icons/history@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/history@2x.png -------------------------------------------------------------------------------- /resources/images/icons/history@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/history@3x.png -------------------------------------------------------------------------------- /resources/images/icons/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/info@2x.png -------------------------------------------------------------------------------- /resources/images/icons/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/info@3x.png -------------------------------------------------------------------------------- /resources/images/icons/key@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/key@2x.png -------------------------------------------------------------------------------- /resources/images/icons/key@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/key@3x.png -------------------------------------------------------------------------------- /resources/images/icons/keycard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/keycard@2x.png -------------------------------------------------------------------------------- /resources/images/icons/keycard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/keycard@3x.png -------------------------------------------------------------------------------- /resources/images/icons/link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/link@2x.png -------------------------------------------------------------------------------- /resources/images/icons/link@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/link@3x.png -------------------------------------------------------------------------------- /resources/images/icons/log_out@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/log_out@2x.png -------------------------------------------------------------------------------- /resources/images/icons/log_out@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/log_out@3x.png -------------------------------------------------------------------------------- /resources/images/icons/max@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/max@2x.png -------------------------------------------------------------------------------- /resources/images/icons/max@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/max@3x.png -------------------------------------------------------------------------------- /resources/images/icons/mention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/mention@2x.png -------------------------------------------------------------------------------- /resources/images/icons/mention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/mention@3x.png -------------------------------------------------------------------------------- /resources/images/icons/message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/message@2x.png -------------------------------------------------------------------------------- /resources/images/icons/message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/message@3x.png -------------------------------------------------------------------------------- /resources/images/icons/mobile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/mobile@2x.png -------------------------------------------------------------------------------- /resources/images/icons/mobile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/mobile@3x.png -------------------------------------------------------------------------------- /resources/images/icons/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/more@2x.png -------------------------------------------------------------------------------- /resources/images/icons/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/more@3x.png -------------------------------------------------------------------------------- /resources/images/icons/network@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/network@2x.png -------------------------------------------------------------------------------- /resources/images/icons/network@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/network@3x.png -------------------------------------------------------------------------------- /resources/images/icons/next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/next@2x.png -------------------------------------------------------------------------------- /resources/images/icons/next@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/next@3x.png -------------------------------------------------------------------------------- /resources/images/icons/objects@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/objects@2x.png -------------------------------------------------------------------------------- /resources/images/icons/objects@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/objects@3x.png -------------------------------------------------------------------------------- /resources/images/icons/offline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/offline@2x.png -------------------------------------------------------------------------------- /resources/images/icons/offline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/offline@3x.png -------------------------------------------------------------------------------- /resources/images/icons/paste@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/paste@2x.png -------------------------------------------------------------------------------- /resources/images/icons/paste@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/paste@3x.png -------------------------------------------------------------------------------- /resources/images/icons/pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/pause@2x.png -------------------------------------------------------------------------------- /resources/images/icons/pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/pause@3x.png -------------------------------------------------------------------------------- /resources/images/icons/photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/photo@2x.png -------------------------------------------------------------------------------- /resources/images/icons/photo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/photo@3x.png -------------------------------------------------------------------------------- /resources/images/icons/pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/pin@2x.png -------------------------------------------------------------------------------- /resources/images/icons/pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/pin@3x.png -------------------------------------------------------------------------------- /resources/images/icons/play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/play@2x.png -------------------------------------------------------------------------------- /resources/images/icons/play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/play@3x.png -------------------------------------------------------------------------------- /resources/images/icons/print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/print@2x.png -------------------------------------------------------------------------------- /resources/images/icons/print@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/print@3x.png -------------------------------------------------------------------------------- /resources/images/icons/profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/profile@2x.png -------------------------------------------------------------------------------- /resources/images/icons/profile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/profile@3x.png -------------------------------------------------------------------------------- /resources/images/icons/qr2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/qr2@2x.png -------------------------------------------------------------------------------- /resources/images/icons/qr2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/qr2@3x.png -------------------------------------------------------------------------------- /resources/images/icons/qr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/qr@2x.png -------------------------------------------------------------------------------- /resources/images/icons/qr@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/qr@3x.png -------------------------------------------------------------------------------- /resources/images/icons/receive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/receive@2x.png -------------------------------------------------------------------------------- /resources/images/icons/receive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/receive@3x.png -------------------------------------------------------------------------------- /resources/images/icons/recent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/recent@2x.png -------------------------------------------------------------------------------- /resources/images/icons/recent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/recent@3x.png -------------------------------------------------------------------------------- /resources/images/icons/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/refresh@2x.png -------------------------------------------------------------------------------- /resources/images/icons/refresh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/refresh@3x.png -------------------------------------------------------------------------------- /resources/images/icons/reply@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/reply@2x.png -------------------------------------------------------------------------------- /resources/images/icons/reply@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/reply@3x.png -------------------------------------------------------------------------------- /resources/images/icons/save@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/save@2x.png -------------------------------------------------------------------------------- /resources/images/icons/save@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/save@3x.png -------------------------------------------------------------------------------- /resources/images/icons/scan2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/scan2@2x.png -------------------------------------------------------------------------------- /resources/images/icons/scan2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/scan2@3x.png -------------------------------------------------------------------------------- /resources/images/icons/scan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/scan@2x.png -------------------------------------------------------------------------------- /resources/images/icons/scan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/scan@3x.png -------------------------------------------------------------------------------- /resources/images/icons/search2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/search2@2x.png -------------------------------------------------------------------------------- /resources/images/icons/search2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/search2@3x.png -------------------------------------------------------------------------------- /resources/images/icons/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/search@2x.png -------------------------------------------------------------------------------- /resources/images/icons/search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/search@3x.png -------------------------------------------------------------------------------- /resources/images/icons/send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/send@2x.png -------------------------------------------------------------------------------- /resources/images/icons/send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/send@3x.png -------------------------------------------------------------------------------- /resources/images/icons/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/share@2x.png -------------------------------------------------------------------------------- /resources/images/icons/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/share@3x.png -------------------------------------------------------------------------------- /resources/images/icons/show@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/show@2x.png -------------------------------------------------------------------------------- /resources/images/icons/show@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/show@3x.png -------------------------------------------------------------------------------- /resources/images/icons/smileys@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/smileys@2x.png -------------------------------------------------------------------------------- /resources/images/icons/smileys@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/smileys@3x.png -------------------------------------------------------------------------------- /resources/images/icons/speech@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/speech@2x.png -------------------------------------------------------------------------------- /resources/images/icons/speech@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/speech@3x.png -------------------------------------------------------------------------------- /resources/images/icons/status@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/status@2x.png -------------------------------------------------------------------------------- /resources/images/icons/status@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/status@3x.png -------------------------------------------------------------------------------- /resources/images/icons/symbols@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/symbols@2x.png -------------------------------------------------------------------------------- /resources/images/icons/symbols@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/symbols@3x.png -------------------------------------------------------------------------------- /resources/images/icons/tabs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/tabs@2x.png -------------------------------------------------------------------------------- /resources/images/icons/tabs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/tabs@3x.png -------------------------------------------------------------------------------- /resources/images/icons/text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/text@2x.png -------------------------------------------------------------------------------- /resources/images/icons/text@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/text@3x.png -------------------------------------------------------------------------------- /resources/images/icons/token@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/token@2x.png -------------------------------------------------------------------------------- /resources/images/icons/token@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/token@3x.png -------------------------------------------------------------------------------- /resources/images/icons/travel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/travel@2x.png -------------------------------------------------------------------------------- /resources/images/icons/travel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/travel@3x.png -------------------------------------------------------------------------------- /resources/images/icons/wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/wallet@2x.png -------------------------------------------------------------------------------- /resources/images/icons/wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/wallet@3x.png -------------------------------------------------------------------------------- /resources/images/icons/warning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/warning@2x.png -------------------------------------------------------------------------------- /resources/images/icons/warning@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/icons/warning@3x.png -------------------------------------------------------------------------------- /resources/images/mock2/bored-ape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/bored-ape.png -------------------------------------------------------------------------------- /resources/images/mock2/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/contact.png -------------------------------------------------------------------------------- /resources/images/mock2/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/diamond.png -------------------------------------------------------------------------------- /resources/images/mock2/gif@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/gif@2x.png -------------------------------------------------------------------------------- /resources/images/mock2/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/monkey.png -------------------------------------------------------------------------------- /resources/images/mock2/photo1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/photo1@2x.png -------------------------------------------------------------------------------- /resources/images/mock2/photo2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/photo2@2x.png -------------------------------------------------------------------------------- /resources/images/mock2/photo3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/photo3@2x.png -------------------------------------------------------------------------------- /resources/images/mock2/pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/pinterest.png -------------------------------------------------------------------------------- /resources/images/mock2/qr-code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/qr-code@2x.png -------------------------------------------------------------------------------- /resources/images/mock2/qr-code@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/qr-code@3x.png -------------------------------------------------------------------------------- /resources/images/mock2/rarible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/rarible.png -------------------------------------------------------------------------------- /resources/images/mock2/rarible@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/rarible@2x.png -------------------------------------------------------------------------------- /resources/images/mock2/rarible@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/rarible@3x.png -------------------------------------------------------------------------------- /resources/images/mock2/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/ring.png -------------------------------------------------------------------------------- /resources/images/mock2/sticker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/sticker@2x.png -------------------------------------------------------------------------------- /resources/images/mock2/verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/mock2/verified.png -------------------------------------------------------------------------------- /resources/images/networks/Base@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/networks/Base@2x.png -------------------------------------------------------------------------------- /resources/images/networks/Base@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/networks/Base@3x.png -------------------------------------------------------------------------------- /resources/images/networks/xDAI@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/networks/xDAI@2x.png -------------------------------------------------------------------------------- /resources/images/networks/xDAI@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/networks/xDAI@3x.png -------------------------------------------------------------------------------- /resources/images/reactions/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/reactions/angry.png -------------------------------------------------------------------------------- /resources/images/reactions/laugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/reactions/laugh.png -------------------------------------------------------------------------------- /resources/images/reactions/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/reactions/love.png -------------------------------------------------------------------------------- /resources/images/reactions/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/reactions/sad.png -------------------------------------------------------------------------------- /resources/images/reactions/sad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/reactions/sad@2x.png -------------------------------------------------------------------------------- /resources/images/reactions/sad@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/reactions/sad@3x.png -------------------------------------------------------------------------------- /resources/images/tokens/mainnet/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/tokens/mainnet/R.png -------------------------------------------------------------------------------- /resources/images/tokens/xdai/BUFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/tokens/xdai/BUFF.png -------------------------------------------------------------------------------- /resources/images/ui/browser@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/browser@2x.jpg -------------------------------------------------------------------------------- /resources/images/ui/browser@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/browser@3x.jpg -------------------------------------------------------------------------------- /resources/images/ui/chat-dark@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/chat-dark@2x.jpg -------------------------------------------------------------------------------- /resources/images/ui/chat-dark@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/chat-dark@3x.jpg -------------------------------------------------------------------------------- /resources/images/ui/chat@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/chat@2x.jpg -------------------------------------------------------------------------------- /resources/images/ui/chat@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/chat@3x.jpg -------------------------------------------------------------------------------- /resources/images/ui/dapp-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/dapp-store.png -------------------------------------------------------------------------------- /resources/images/ui/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/discover.png -------------------------------------------------------------------------------- /resources/images/ui/ens-header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/ens-header@2x.png -------------------------------------------------------------------------------- /resources/images/ui/ens-header@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/ens-header@3x.png -------------------------------------------------------------------------------- /resources/images/ui/graph@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/graph@2x.png -------------------------------------------------------------------------------- /resources/images/ui/graph@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/graph@3x.png -------------------------------------------------------------------------------- /resources/images/ui/hand-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/hand-wave.png -------------------------------------------------------------------------------- /resources/images/ui/hand-wave@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/hand-wave@2x.png -------------------------------------------------------------------------------- /resources/images/ui/hand-wave@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/hand-wave@3x.png -------------------------------------------------------------------------------- /resources/images/ui/keycard-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keycard-empty.png -------------------------------------------------------------------------------- /resources/images/ui/keycard-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keycard-key.png -------------------------------------------------------------------------------- /resources/images/ui/keycard-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keycard-lock.png -------------------------------------------------------------------------------- /resources/images/ui/keycard-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keycard-logo.png -------------------------------------------------------------------------------- /resources/images/ui/keycard-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keycard-phone.png -------------------------------------------------------------------------------- /resources/images/ui/keycard-wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keycard-wrong.png -------------------------------------------------------------------------------- /resources/images/ui/keycard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keycard.png -------------------------------------------------------------------------------- /resources/images/ui/keys-dark@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keys-dark@2x.jpg -------------------------------------------------------------------------------- /resources/images/ui/keys-dark@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keys-dark@3x.jpg -------------------------------------------------------------------------------- /resources/images/ui/keys@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keys@2x.jpg -------------------------------------------------------------------------------- /resources/images/ui/keys@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/keys@3x.jpg -------------------------------------------------------------------------------- /resources/images/ui/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/lock.png -------------------------------------------------------------------------------- /resources/images/ui/not-keycard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/not-keycard.png -------------------------------------------------------------------------------- /resources/images/ui/phone-nfc-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/phone-nfc-off.png -------------------------------------------------------------------------------- /resources/images/ui/phone-nfc-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/phone-nfc-on.png -------------------------------------------------------------------------------- /resources/images/ui/status-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/status-logo.png -------------------------------------------------------------------------------- /resources/images/ui/theme-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/theme-dark@2x.png -------------------------------------------------------------------------------- /resources/images/ui/theme-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/theme-dark@3x.png -------------------------------------------------------------------------------- /resources/images/ui/unfurl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/unfurl@2x.png -------------------------------------------------------------------------------- /resources/images/ui/unfurl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/unfurl@3x.png -------------------------------------------------------------------------------- /resources/images/ui/wallet@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/wallet@2x.jpg -------------------------------------------------------------------------------- /resources/images/ui/wallet@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/wallet@3x.jpg -------------------------------------------------------------------------------- /resources/images/ui/warning-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/warning-sign.png -------------------------------------------------------------------------------- /resources/images/ui/welcome@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/welcome@2x.jpg -------------------------------------------------------------------------------- /resources/images/ui/welcome@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui/welcome@3x.jpg -------------------------------------------------------------------------------- /resources/images/ui2/buy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/buy@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/buy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/buy@3x.png -------------------------------------------------------------------------------- /resources/images/ui2/discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/discover@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/discover@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/discover@3x.png -------------------------------------------------------------------------------- /resources/images/ui2/div@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/div@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/div@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/div@3x.png -------------------------------------------------------------------------------- /resources/images/ui2/keycard-buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/keycard-buy.png -------------------------------------------------------------------------------- /resources/images/ui2/keycard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/keycard@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/keycard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/keycard@3x.png -------------------------------------------------------------------------------- /resources/images/ui2/lifestyle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/lifestyle@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/lifestyle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/lifestyle@3x.png -------------------------------------------------------------------------------- /resources/images/ui2/music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/music@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/music@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/music@3x.png -------------------------------------------------------------------------------- /resources/images/ui2/nfc-fail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/nfc-fail@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/nfc-fail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/nfc-fail@3x.png -------------------------------------------------------------------------------- /resources/images/ui2/podcasts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/podcasts@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/podcasts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/podcasts@3x.png -------------------------------------------------------------------------------- /resources/images/ui2/qr-code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/qr-code@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/qr-code@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/qr-code@3x.png -------------------------------------------------------------------------------- /resources/images/ui2/receive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/receive@2x.png -------------------------------------------------------------------------------- /resources/images/ui2/receive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/images/ui2/receive@3x.png -------------------------------------------------------------------------------- /resources/js/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/js/provider.js -------------------------------------------------------------------------------- /resources/privacy.mdwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/privacy.mdwn -------------------------------------------------------------------------------- /resources/terms-of-use.mdwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/resources/terms-of-use.mdwn -------------------------------------------------------------------------------- /scripts/adb_devices_abis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/adb_devices_abis.sh -------------------------------------------------------------------------------- /scripts/build-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/build-android.sh -------------------------------------------------------------------------------- /scripts/check-metro-shadow-process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/check-metro-shadow-process.sh -------------------------------------------------------------------------------- /scripts/check-nix-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/check-nix-shell.sh -------------------------------------------------------------------------------- /scripts/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/colors.sh -------------------------------------------------------------------------------- /scripts/compress_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/compress_image.sh -------------------------------------------------------------------------------- /scripts/cut-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/cut-release.sh -------------------------------------------------------------------------------- /scripts/diawi-upload.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/diawi-upload.mjs -------------------------------------------------------------------------------- /scripts/encrypt-keychain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/encrypt-keychain.sh -------------------------------------------------------------------------------- /scripts/fdroid-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/fdroid-pr.sh -------------------------------------------------------------------------------- /scripts/gen-random-passphrase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/gen-random-passphrase.sh -------------------------------------------------------------------------------- /scripts/generate-keystore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/generate-keystore.sh -------------------------------------------------------------------------------- /scripts/google-free.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/google-free.sh -------------------------------------------------------------------------------- /scripts/hooks/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/hooks/prepare-commit-msg -------------------------------------------------------------------------------- /scripts/inotify_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/inotify_fix.sh -------------------------------------------------------------------------------- /scripts/lint/trailing-newline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/lint/trailing-newline.sh -------------------------------------------------------------------------------- /scripts/lint/translations.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/lint/translations.clj -------------------------------------------------------------------------------- /scripts/list-pull-requests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/list-pull-requests.sh -------------------------------------------------------------------------------- /scripts/merge-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/merge-pr.sh -------------------------------------------------------------------------------- /scripts/patch-npm-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/patch-npm-lib.sh -------------------------------------------------------------------------------- /scripts/pr-statistics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/pr-statistics.sh -------------------------------------------------------------------------------- /scripts/run-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/run-android.sh -------------------------------------------------------------------------------- /scripts/run-ios-device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/run-ios-device.sh -------------------------------------------------------------------------------- /scripts/run-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/run-ios.sh -------------------------------------------------------------------------------- /scripts/run-metro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/run-metro.sh -------------------------------------------------------------------------------- /scripts/sign-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/sign-android.sh -------------------------------------------------------------------------------- /scripts/update-status-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/update-status-go.sh -------------------------------------------------------------------------------- /scripts/version/build_no.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/version/build_no.sh -------------------------------------------------------------------------------- /scripts/version/gen_build_no.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/version/gen_build_no.sh -------------------------------------------------------------------------------- /scripts/wait-for-metro-port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/wait-for-metro-port.sh -------------------------------------------------------------------------------- /scripts/wait-for.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/scripts/wait-for.sh -------------------------------------------------------------------------------- /shadow-cljs.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/shadow-cljs.edn -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/shell.nix -------------------------------------------------------------------------------- /src/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/dev/README.md -------------------------------------------------------------------------------- /src/dev/re_frisk_preload.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/dev/re_frisk_preload.cljs -------------------------------------------------------------------------------- /src/js/worklets/bottom_sheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/js/worklets/bottom_sheet.js -------------------------------------------------------------------------------- /src/js/worklets/communities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/js/worklets/communities.js -------------------------------------------------------------------------------- /src/js/worklets/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/js/worklets/core.js -------------------------------------------------------------------------------- /src/js/worklets/header_animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/js/worklets/header_animations.js -------------------------------------------------------------------------------- /src/js/worklets/profile_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/js/worklets/profile_header.js -------------------------------------------------------------------------------- /src/js/worklets/record_audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/js/worklets/record_audio.js -------------------------------------------------------------------------------- /src/js/worklets/scroll_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/js/worklets/scroll_view.js -------------------------------------------------------------------------------- /src/js/worklets/shell/bottom_tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/js/worklets/shell/bottom_tabs.js -------------------------------------------------------------------------------- /src/js/worklets/shell/home_stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/js/worklets/shell/home_stack.js -------------------------------------------------------------------------------- /src/keycard/keycard.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/keycard/keycard.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/ens/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/ens/core.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/events.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/fleet/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/fleet/core.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/node/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/node/core.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/search/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/search/core.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/subs/root.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/subs/root.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/test_runner.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/test_runner.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/ui/components/radio.cljs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/legacy/status_im/ui/components/status_bar/view.cljs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/legacy/status_im/ui/screens/help_center/styles.cljs: -------------------------------------------------------------------------------- 1 | (ns legacy.status-im.ui.screens.help-center.styles) 2 | -------------------------------------------------------------------------------- /src/legacy/status_im/ui/screens/profile/contact/views.cljs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/legacy/status_im/ui/screens/profile/group_chat/views.cljs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/legacy/status_im/utils/async.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/utils/async.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/utils/slurp.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/utils/slurp.clj -------------------------------------------------------------------------------- /src/legacy/status_im/utils/styles.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/utils/styles.clj -------------------------------------------------------------------------------- /src/legacy/status_im/utils/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/utils/utils.cljs -------------------------------------------------------------------------------- /src/legacy/status_im/utils/views.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/utils/views.clj -------------------------------------------------------------------------------- /src/legacy/status_im/waku/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/legacy/status_im/waku/core.cljs -------------------------------------------------------------------------------- /src/mocks/js_dependencies.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/mocks/js_dependencies.cljs -------------------------------------------------------------------------------- /src/native_module/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/native_module/core.cljs -------------------------------------------------------------------------------- /src/native_module/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/native_module/utils.cljs -------------------------------------------------------------------------------- /src/quo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/README.md -------------------------------------------------------------------------------- /src/quo/components/avatars/group_avatar.cljs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/quo/components/blur/view.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/blur/view.cljs -------------------------------------------------------------------------------- /src/quo/components/dividers/date.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/dividers/date.cljs -------------------------------------------------------------------------------- /src/quo/components/graph/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/graph/utils.cljs -------------------------------------------------------------------------------- /src/quo/components/icon.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/icon.cljs -------------------------------------------------------------------------------- /src/quo/components/icons/icons.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/icons/icons.clj -------------------------------------------------------------------------------- /src/quo/components/icons/icons.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/icons/icons.cljs -------------------------------------------------------------------------------- /src/quo/components/icons/svg.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/icons/svg.cljs -------------------------------------------------------------------------------- /src/quo/components/keycard/style.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/keycard/style.cljs -------------------------------------------------------------------------------- /src/quo/components/keycard/view.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/keycard/view.cljs -------------------------------------------------------------------------------- /src/quo/components/markdown/text.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/markdown/text.cljs -------------------------------------------------------------------------------- /src/quo/components/messages/gap.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/messages/gap.cljs -------------------------------------------------------------------------------- /src/quo/components/overlay/style.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/overlay/style.cljs -------------------------------------------------------------------------------- /src/quo/components/tags/tag.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/tags/tag.cljs -------------------------------------------------------------------------------- /src/quo/components/tags/tags.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/components/tags/tags.cljs -------------------------------------------------------------------------------- /src/quo/context.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/context.cljs -------------------------------------------------------------------------------- /src/quo/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/core.cljs -------------------------------------------------------------------------------- /src/quo/core_spec.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/core_spec.cljs -------------------------------------------------------------------------------- /src/quo/foundations/colors.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/foundations/colors.cljs -------------------------------------------------------------------------------- /src/quo/foundations/gradients.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/foundations/gradients.cljs -------------------------------------------------------------------------------- /src/quo/foundations/resources.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/foundations/resources.cljs -------------------------------------------------------------------------------- /src/quo/foundations/shadows.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/quo/foundations/shadows.cljs -------------------------------------------------------------------------------- /src/react_native/biometrics.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/biometrics.cljs -------------------------------------------------------------------------------- /src/react_native/blob.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/blob.cljs -------------------------------------------------------------------------------- /src/react_native/blur.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/blur.cljs -------------------------------------------------------------------------------- /src/react_native/camera_kit.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/camera_kit.cljs -------------------------------------------------------------------------------- /src/react_native/cameraroll.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/cameraroll.cljs -------------------------------------------------------------------------------- /src/react_native/charts.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/charts.cljs -------------------------------------------------------------------------------- /src/react_native/clipboard.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/clipboard.cljs -------------------------------------------------------------------------------- /src/react_native/config.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/config.cljs -------------------------------------------------------------------------------- /src/react_native/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/core.cljs -------------------------------------------------------------------------------- /src/react_native/fast_image.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/fast_image.cljs -------------------------------------------------------------------------------- /src/react_native/firebase.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/firebase.cljc -------------------------------------------------------------------------------- /src/react_native/flat_list.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/flat_list.cljs -------------------------------------------------------------------------------- /src/react_native/fs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/fs.cljs -------------------------------------------------------------------------------- /src/react_native/gesture.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/gesture.cljs -------------------------------------------------------------------------------- /src/react_native/hole_view.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/hole_view.cljs -------------------------------------------------------------------------------- /src/react_native/hooks.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/hooks.cljs -------------------------------------------------------------------------------- /src/react_native/keychain.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/keychain.cljs -------------------------------------------------------------------------------- /src/react_native/masked_view.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/masked_view.cljs -------------------------------------------------------------------------------- /src/react_native/mmkv.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/mmkv.cljs -------------------------------------------------------------------------------- /src/react_native/navigation.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/navigation.cljs -------------------------------------------------------------------------------- /src/react_native/net_info.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/net_info.cljs -------------------------------------------------------------------------------- /src/react_native/orientation.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/orientation.cljs -------------------------------------------------------------------------------- /src/react_native/pdf_viewer.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/pdf_viewer.cljs -------------------------------------------------------------------------------- /src/react_native/permissions.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/permissions.cljs -------------------------------------------------------------------------------- /src/react_native/platform.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/platform.cljs -------------------------------------------------------------------------------- /src/react_native/reanimated.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/reanimated.cljs -------------------------------------------------------------------------------- /src/react_native/safe_area.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/safe_area.cljs -------------------------------------------------------------------------------- /src/react_native/section_list.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/section_list.cljs -------------------------------------------------------------------------------- /src/react_native/shadow.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/shadow.cljs -------------------------------------------------------------------------------- /src/react_native/shake.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/shake.cljs -------------------------------------------------------------------------------- /src/react_native/share.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/share.cljs -------------------------------------------------------------------------------- /src/react_native/slider.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/slider.cljs -------------------------------------------------------------------------------- /src/react_native/svg.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/svg.cljs -------------------------------------------------------------------------------- /src/react_native/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/react_native/utils.cljs -------------------------------------------------------------------------------- /src/reagent/config.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/reagent/config.cljs -------------------------------------------------------------------------------- /src/reagent/config_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/reagent/config_test.cljs -------------------------------------------------------------------------------- /src/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/README.md -------------------------------------------------------------------------------- /src/schema/common.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/common.cljs -------------------------------------------------------------------------------- /src/schema/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/core.clj -------------------------------------------------------------------------------- /src/schema/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/core.cljs -------------------------------------------------------------------------------- /src/schema/quo.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/quo.cljs -------------------------------------------------------------------------------- /src/schema/re_frame.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/re_frame.cljs -------------------------------------------------------------------------------- /src/schema/registry.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/registry.cljs -------------------------------------------------------------------------------- /src/schema/state.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/state.cljs -------------------------------------------------------------------------------- /src/schema/style.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/style.cljs -------------------------------------------------------------------------------- /src/schema/view.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/schema/view.cljs -------------------------------------------------------------------------------- /src/status_im/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/app/README.md -------------------------------------------------------------------------------- /src/status_im/app_build/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/app_build/core.clj -------------------------------------------------------------------------------- /src/status_im/app_build/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/app_build/core.cljs -------------------------------------------------------------------------------- /src/status_im/common/log.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/common/log.cljs -------------------------------------------------------------------------------- /src/status_im/common/router.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/common/router.cljs -------------------------------------------------------------------------------- /src/status_im/config.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/config.cljs -------------------------------------------------------------------------------- /src/status_im/constants.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/constants.cljs -------------------------------------------------------------------------------- /src/status_im/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/core.cljs -------------------------------------------------------------------------------- /src/status_im/core_spec.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/core_spec.cljs -------------------------------------------------------------------------------- /src/status_im/db.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/db.cljs -------------------------------------------------------------------------------- /src/status_im/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/domain/README.md -------------------------------------------------------------------------------- /src/status_im/domain/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/domain/subs.cljs -------------------------------------------------------------------------------- /src/status_im/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/events.cljs -------------------------------------------------------------------------------- /src/status_im/feature_flags.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/feature_flags.cljs -------------------------------------------------------------------------------- /src/status_im/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/gateway/README.md -------------------------------------------------------------------------------- /src/status_im/gateway/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/gateway/events.cljs -------------------------------------------------------------------------------- /src/status_im/navigation/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/navigation/core.cljs -------------------------------------------------------------------------------- /src/status_im/navigation/view.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/navigation/view.cljs -------------------------------------------------------------------------------- /src/status_im/setup/dev.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/setup/dev.cljs -------------------------------------------------------------------------------- /src/status_im/setup/oops.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/setup/oops.cljs -------------------------------------------------------------------------------- /src/status_im/setup/schema.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/setup/schema.cljs -------------------------------------------------------------------------------- /src/status_im/subs/biometrics.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/biometrics.cljs -------------------------------------------------------------------------------- /src/status_im/subs/chat/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/chat/utils.cljs -------------------------------------------------------------------------------- /src/status_im/subs/chats.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/chats.cljs -------------------------------------------------------------------------------- /src/status_im/subs/chats_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/chats_test.cljs -------------------------------------------------------------------------------- /src/status_im/subs/contact.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/contact.cljs -------------------------------------------------------------------------------- /src/status_im/subs/general.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/general.cljs -------------------------------------------------------------------------------- /src/status_im/subs/keycard.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/keycard.cljs -------------------------------------------------------------------------------- /src/status_im/subs/messages.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/messages.cljs -------------------------------------------------------------------------------- /src/status_im/subs/onboarding.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/onboarding.cljs -------------------------------------------------------------------------------- /src/status_im/subs/pairing.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/pairing.cljs -------------------------------------------------------------------------------- /src/status_im/subs/profile.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/profile.cljs -------------------------------------------------------------------------------- /src/status_im/subs/root.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/root.cljs -------------------------------------------------------------------------------- /src/status_im/subs/settings.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/settings.cljs -------------------------------------------------------------------------------- /src/status_im/subs/shell.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/shell.cljs -------------------------------------------------------------------------------- /src/status_im/subs/shell_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/shell_test.cljs -------------------------------------------------------------------------------- /src/status_im/subs/wallet/buy.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/subs/wallet/buy.cljs -------------------------------------------------------------------------------- /src/status_im/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/ui/README.md -------------------------------------------------------------------------------- /src/status_im/ui/market/style.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/ui/market/style.cljs -------------------------------------------------------------------------------- /src/status_im/ui/market/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/ui/market/subs.cljs -------------------------------------------------------------------------------- /src/status_im/ui/market/view.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/status_im/ui/market/view.cljs -------------------------------------------------------------------------------- /src/test_helpers/component.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/test_helpers/component.clj -------------------------------------------------------------------------------- /src/test_helpers/component.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/test_helpers/component.cljs -------------------------------------------------------------------------------- /src/test_helpers/integration.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/test_helpers/integration.cljs -------------------------------------------------------------------------------- /src/test_helpers/matchers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/test_helpers/matchers.clj -------------------------------------------------------------------------------- /src/test_helpers/matchers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/test_helpers/matchers.cljs -------------------------------------------------------------------------------- /src/test_helpers/unit.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/test_helpers/unit.clj -------------------------------------------------------------------------------- /src/test_helpers/unit.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/test_helpers/unit.cljs -------------------------------------------------------------------------------- /src/tests/contract_test/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/tests/contract_test/utils.cljs -------------------------------------------------------------------------------- /src/tests/test_utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/tests/test_utils.cljs -------------------------------------------------------------------------------- /src/tests/wallet_test_data.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/tests/wallet_test_data.cljs -------------------------------------------------------------------------------- /src/utils/address.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/address.cljs -------------------------------------------------------------------------------- /src/utils/address_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/address_test.cljs -------------------------------------------------------------------------------- /src/utils/collection.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/collection.cljs -------------------------------------------------------------------------------- /src/utils/collection_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/collection_test.cljs -------------------------------------------------------------------------------- /src/utils/datetime.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/datetime.cljs -------------------------------------------------------------------------------- /src/utils/datetime_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/datetime_test.cljs -------------------------------------------------------------------------------- /src/utils/debounce.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/debounce.cljs -------------------------------------------------------------------------------- /src/utils/emojilib.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/emojilib.cljs -------------------------------------------------------------------------------- /src/utils/ens/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/ens/core.cljs -------------------------------------------------------------------------------- /src/utils/ens/stateofus.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/ens/stateofus.cljs -------------------------------------------------------------------------------- /src/utils/ens/stateofus_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/ens/stateofus_test.cljs -------------------------------------------------------------------------------- /src/utils/ethereum/chain.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/ethereum/chain.cljs -------------------------------------------------------------------------------- /src/utils/ethereum/chain_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/ethereum/chain_test.cljs -------------------------------------------------------------------------------- /src/utils/ethereum/eip/eip55.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/ethereum/eip/eip55.cljs -------------------------------------------------------------------------------- /src/utils/ethereum/eip/eip681.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/ethereum/eip/eip681.cljs -------------------------------------------------------------------------------- /src/utils/hex.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/hex.cljs -------------------------------------------------------------------------------- /src/utils/i18n.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/i18n.cljs -------------------------------------------------------------------------------- /src/utils/i18n_goog.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/i18n_goog.cljs -------------------------------------------------------------------------------- /src/utils/image_server.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/image_server.cljs -------------------------------------------------------------------------------- /src/utils/image_server_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/image_server_test.cljs -------------------------------------------------------------------------------- /src/utils/map.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/map.cljs -------------------------------------------------------------------------------- /src/utils/money.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/money.cljs -------------------------------------------------------------------------------- /src/utils/money_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/money_test.cljs -------------------------------------------------------------------------------- /src/utils/number.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/number.cljs -------------------------------------------------------------------------------- /src/utils/number_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/number_test.cljs -------------------------------------------------------------------------------- /src/utils/promesa.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/promesa.clj -------------------------------------------------------------------------------- /src/utils/re_frame.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/re_frame.clj -------------------------------------------------------------------------------- /src/utils/re_frame.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/re_frame.cljs -------------------------------------------------------------------------------- /src/utils/re_frame_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/re_frame_test.cljs -------------------------------------------------------------------------------- /src/utils/red_black_tree.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/red_black_tree.cljs -------------------------------------------------------------------------------- /src/utils/responsiveness.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/responsiveness.cljs -------------------------------------------------------------------------------- /src/utils/security/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/security/core.cljs -------------------------------------------------------------------------------- /src/utils/signatures.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/signatures.cljs -------------------------------------------------------------------------------- /src/utils/string.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/string.cljs -------------------------------------------------------------------------------- /src/utils/string_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/string_test.cljs -------------------------------------------------------------------------------- /src/utils/transforms.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/transforms.cljs -------------------------------------------------------------------------------- /src/utils/transforms_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/transforms_test.cljs -------------------------------------------------------------------------------- /src/utils/url.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/url.cljs -------------------------------------------------------------------------------- /src/utils/url_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/url_test.cljs -------------------------------------------------------------------------------- /src/utils/vector.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/vector.cljs -------------------------------------------------------------------------------- /src/utils/vector_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/vector_test.cljs -------------------------------------------------------------------------------- /src/utils/worklets/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/worklets/core.cljs -------------------------------------------------------------------------------- /src/utils/worklets/shell.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/src/utils/worklets/shell.cljs -------------------------------------------------------------------------------- /status-go-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/status-go-version.json -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/supervisord.conf -------------------------------------------------------------------------------- /test-resources/override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test-resources/override.js -------------------------------------------------------------------------------- /test/appium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/README.md -------------------------------------------------------------------------------- /test/appium/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/docker/Dockerfile -------------------------------------------------------------------------------- /test/appium/docker/HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/docker/HOWTO.md -------------------------------------------------------------------------------- /test/appium/docker/entry_point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/docker/entry_point.sh -------------------------------------------------------------------------------- /test/appium/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/pytest.ini -------------------------------------------------------------------------------- /test/appium/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/requirements.txt -------------------------------------------------------------------------------- /test/appium/support/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/support/helpers.py -------------------------------------------------------------------------------- /test/appium/support/lambda_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/support/lambda_test.py -------------------------------------------------------------------------------- /test/appium/support/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/support/test_data.py -------------------------------------------------------------------------------- /test/appium/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/tests/__init__.py -------------------------------------------------------------------------------- /test/appium/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/tests/conftest.py -------------------------------------------------------------------------------- /test/appium/tests/marks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/tests/marks.py -------------------------------------------------------------------------------- /test/appium/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/appium/views/base_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/views/base_element.py -------------------------------------------------------------------------------- /test/appium/views/base_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/views/base_view.py -------------------------------------------------------------------------------- /test/appium/views/chat_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/views/chat_view.py -------------------------------------------------------------------------------- /test/appium/views/dapps_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/views/dapps_view.py -------------------------------------------------------------------------------- /test/appium/views/home_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/views/home_view.py -------------------------------------------------------------------------------- /test/appium/views/profile_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/views/profile_view.py -------------------------------------------------------------------------------- /test/appium/views/sign_in_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/views/sign_in_view.py -------------------------------------------------------------------------------- /test/appium/views/wallet_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/appium/views/wallet_view.py -------------------------------------------------------------------------------- /test/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/docker/README.md -------------------------------------------------------------------------------- /test/docker/clojure/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/docker/clojure/Dockerfile -------------------------------------------------------------------------------- /test/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/docker/docker-compose.yml -------------------------------------------------------------------------------- /test/docker/status-go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/docker/status-go/Dockerfile -------------------------------------------------------------------------------- /test/env/dev/env/test/runner.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/env/dev/env/test/runner.cljs -------------------------------------------------------------------------------- /test/env/dev/env/test/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/env/dev/env/test/utils.cljs -------------------------------------------------------------------------------- /test/jest/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/jest/jest.config.js -------------------------------------------------------------------------------- /test/jest/jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/test/jest/jestSetup.js -------------------------------------------------------------------------------- /translations/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/af.json -------------------------------------------------------------------------------- /translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/ar.json -------------------------------------------------------------------------------- /translations/bel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/bel.json -------------------------------------------------------------------------------- /translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/bn.json -------------------------------------------------------------------------------- /translations/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/cs.json -------------------------------------------------------------------------------- /translations/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/da.json -------------------------------------------------------------------------------- /translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/de.json -------------------------------------------------------------------------------- /translations/de_ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/de_ch.json -------------------------------------------------------------------------------- /translations/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/el.json -------------------------------------------------------------------------------- /translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/en.json -------------------------------------------------------------------------------- /translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/es.json -------------------------------------------------------------------------------- /translations/es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/es_419.json -------------------------------------------------------------------------------- /translations/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/es_AR.json -------------------------------------------------------------------------------- /translations/es_mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/es_mx.json -------------------------------------------------------------------------------- /translations/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/fa.json -------------------------------------------------------------------------------- /translations/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/fi.json -------------------------------------------------------------------------------- /translations/fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/fil.json -------------------------------------------------------------------------------- /translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/fr.json -------------------------------------------------------------------------------- /translations/fr_ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/fr_ch.json -------------------------------------------------------------------------------- /translations/fy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/fy.json -------------------------------------------------------------------------------- /translations/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/he.json -------------------------------------------------------------------------------- /translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/hi.json -------------------------------------------------------------------------------- /translations/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/hu.json -------------------------------------------------------------------------------- /translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/id.json -------------------------------------------------------------------------------- /translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/it.json -------------------------------------------------------------------------------- /translations/it_ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/it_ch.json -------------------------------------------------------------------------------- /translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/ja.json -------------------------------------------------------------------------------- /translations/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/ko.json -------------------------------------------------------------------------------- /translations/la.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/la.json -------------------------------------------------------------------------------- /translations/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/lt.json -------------------------------------------------------------------------------- /translations/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/lv.json -------------------------------------------------------------------------------- /translations/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/ms.json -------------------------------------------------------------------------------- /translations/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/nb.json -------------------------------------------------------------------------------- /translations/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/ne.json -------------------------------------------------------------------------------- /translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/nl.json -------------------------------------------------------------------------------- /translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/pl.json -------------------------------------------------------------------------------- /translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/pt.json -------------------------------------------------------------------------------- /translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/pt_BR.json -------------------------------------------------------------------------------- /translations/pt_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/pt_pt.json -------------------------------------------------------------------------------- /translations/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/ro.json -------------------------------------------------------------------------------- /translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/ru.json -------------------------------------------------------------------------------- /translations/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/sl.json -------------------------------------------------------------------------------- /translations/sr_rs_cyrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/sr_rs_cyrl.json -------------------------------------------------------------------------------- /translations/sr_rs_latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/sr_rs_latn.json -------------------------------------------------------------------------------- /translations/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/sv.json -------------------------------------------------------------------------------- /translations/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/sw.json -------------------------------------------------------------------------------- /translations/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/th.json -------------------------------------------------------------------------------- /translations/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/tl.json -------------------------------------------------------------------------------- /translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/tr.json -------------------------------------------------------------------------------- /translations/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/uk.json -------------------------------------------------------------------------------- /translations/ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/ur.json -------------------------------------------------------------------------------- /translations/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/vi.json -------------------------------------------------------------------------------- /translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh.json -------------------------------------------------------------------------------- /translations/zh_Hans_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh_Hans_CN.json -------------------------------------------------------------------------------- /translations/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh_TW.json -------------------------------------------------------------------------------- /translations/zh_hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh_hans.json -------------------------------------------------------------------------------- /translations/zh_hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh_hant.json -------------------------------------------------------------------------------- /translations/zh_hant_hk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh_hant_hk.json -------------------------------------------------------------------------------- /translations/zh_hant_sg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh_hant_sg.json -------------------------------------------------------------------------------- /translations/zh_hant_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh_hant_tw.json -------------------------------------------------------------------------------- /translations/zh_wuu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh_wuu.json -------------------------------------------------------------------------------- /translations/zh_yue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/translations/zh_yue.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/status-im/status-mobile/HEAD/yarn.lock --------------------------------------------------------------------------------