├── .editorconfig ├── .eslintignore ├── .eslintrc.yml ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── SECURITY.md ├── SUPPORT.md ├── codeql │ └── codeql-config.yml ├── pull_request_template.md └── workflows │ ├── build_desktop.yml │ ├── build_docker.yml │ ├── codeql-analysis.yml │ ├── rollback_desktop.yml │ ├── snyk-monitor-js-desktop.yml │ ├── test_desktop.yml │ ├── test_mobile.yml │ └── test_shared.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .prettierignore ├── .prettierrc ├── .snyk ├── .tool-versions ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── crowdin.yml ├── docs ├── copyrightHeader ├── dev │ ├── entangled-mobile.md │ ├── localisation.md │ ├── realm.md │ └── styleguide.md ├── featureguide │ └── featureguide.md └── overview.md ├── package.json ├── scripts └── post-merge-githook.sh ├── src ├── desktop │ ├── .gitignore │ ├── .yarnrc │ ├── CHANGELOG.md │ ├── README.md │ ├── __mocks__ │ │ ├── electronMock.js │ │ ├── fileMock.js │ │ ├── iriMock.js │ │ ├── markdownMock.js │ │ ├── samples │ │ │ ├── keychain.js │ │ │ └── trytes.js │ │ ├── stateMock.json │ │ └── styleMock.js │ ├── __tests__ │ │ ├── e2e │ │ │ ├── Onboarding.test.js │ │ │ └── Wallet.test.js │ │ ├── libs │ │ │ ├── crypto.test.js │ │ │ └── seedStore │ │ │ │ ├── keychain.test.js │ │ │ │ ├── ledger.test.js │ │ │ │ └── seedStoreCore.test.js │ │ ├── native │ │ │ └── preload │ │ │ │ └── electron.test.js │ │ └── ui │ │ │ ├── components │ │ │ ├── __snapshots__ │ │ │ │ ├── balance.test.jsx.snap │ │ │ │ ├── button.test.jsx.snap │ │ │ │ ├── chart.test.jsx.snap │ │ │ │ ├── checkbox.test.jsx.snap │ │ │ │ ├── checksum.test.jsx.snap │ │ │ │ ├── clipboard.test.jsx.snap │ │ │ │ ├── icon.test.jsx.snap │ │ │ │ ├── info.test.jsx.snap │ │ │ │ ├── list.test.jsx.snap │ │ │ │ ├── progress.test.jsx.snap │ │ │ │ ├── qr.test.js.snap │ │ │ │ ├── seedPrint.test.jsx.snap │ │ │ │ ├── toggle.test.jsx.snap │ │ │ │ └── tooltip.test.jsx.snap │ │ │ ├── balance.test.jsx │ │ │ ├── button.test.jsx │ │ │ ├── chart.test.jsx │ │ │ ├── checkbox.test.jsx │ │ │ ├── checksum.test.jsx │ │ │ ├── clipboard.test.jsx │ │ │ ├── icon.test.jsx │ │ │ ├── info.test.jsx │ │ │ ├── input │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── address.test.jsx.snap │ │ │ │ │ ├── amount.test.jsx.snap │ │ │ │ │ ├── number.test.jsx.snap │ │ │ │ │ ├── password.test.jsx.snap │ │ │ │ │ ├── seed.test.jsx.snap │ │ │ │ │ ├── select.test.jsx.snap │ │ │ │ │ └── text.test.jsx.snap │ │ │ │ ├── address.test.jsx │ │ │ │ ├── amount.test.jsx │ │ │ │ ├── number.test.jsx │ │ │ │ ├── password.test.jsx │ │ │ │ ├── seed.test.jsx │ │ │ │ ├── select.test.jsx │ │ │ │ └── text.test.jsx │ │ │ ├── list.test.jsx │ │ │ ├── modals │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── modal.test.jsx.snap │ │ │ │ └── modal.test.jsx │ │ │ ├── progress.test.jsx │ │ │ ├── qr.test.js │ │ │ ├── seedPrint.test.jsx │ │ │ ├── toggle.test.jsx │ │ │ └── tooltip.test.jsx │ │ │ ├── global │ │ │ ├── __snapshots__ │ │ │ │ ├── about.test.jsx.snap │ │ │ │ ├── alerts.test.jsx.snap │ │ │ │ ├── errorLog.test.jsx.snap │ │ │ │ ├── seedExport.test.jsx.snap │ │ │ │ ├── titlebar.test.jsx.snap │ │ │ │ └── updateProgress.test.jsx.snap │ │ │ ├── about.test.jsx │ │ │ ├── alerts.test.jsx │ │ │ ├── errorLog.test.jsx │ │ │ ├── seedExport.test.jsx │ │ │ ├── titlebar.test.jsx │ │ │ └── updateProgress.test.jsx │ │ │ └── views │ │ │ ├── onboarding │ │ │ ├── __snapshots__ │ │ │ │ ├── accountName.test.jsx-snap.png │ │ │ │ ├── accountPassword.test.jsx-snap.png │ │ │ │ ├── done.test.jsx-snap.png │ │ │ │ ├── login.test.jsx-snap.png │ │ │ │ ├── seedGenerate.test.jsx-snap.png │ │ │ │ ├── seedIntro.test.jsx-snap.png │ │ │ │ ├── seedSave.test.jsx-snap.png │ │ │ │ ├── seedVerify.test.jsx-snap.png │ │ │ │ └── welcome.test.jsx-snap.png │ │ │ ├── accountName.test.jsx │ │ │ ├── accountPassword.test.jsx │ │ │ ├── done.test.jsx │ │ │ ├── login.test.jsx │ │ │ ├── seedGenerate.test.jsx │ │ │ ├── seedIntro.test.jsx │ │ │ ├── seedSave.test.jsx │ │ │ ├── seedStore │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ledger.test.jsx-snap.png │ │ │ │ └── ledger.test.jsx │ │ │ ├── seedVerify.test.jsx │ │ │ └── welcome.test.jsx │ │ │ ├── settings │ │ │ ├── __snapshots__ │ │ │ │ ├── advanced.test.jsx-snap.png │ │ │ │ ├── currency.test.jsx-snap.png │ │ │ │ ├── language.test.jsx-snap.png │ │ │ │ ├── mode.test.jsx-snap.png │ │ │ │ ├── node.test.jsx-snap.png │ │ │ │ ├── password.test.jsx-snap.png │ │ │ │ └── theme.test.jsx-snap.png │ │ │ ├── account │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── addresses.test.jsx-snap.png │ │ │ │ └── addresses.test.jsx │ │ │ ├── advanced.test.jsx │ │ │ ├── currency.test.jsx │ │ │ ├── language.test.jsx │ │ │ ├── mode.test.jsx │ │ │ ├── node.test.jsx │ │ │ ├── password.test.jsx │ │ │ └── theme.test.jsx │ │ │ └── wallet │ │ │ ├── __snapshots__ │ │ │ ├── dashboard.test.jsx-snap.png │ │ │ ├── receive.test.jsx-snap.png │ │ │ └── send.test.jsx-snap.png │ │ │ ├── dashboard.test.jsx │ │ │ ├── receive.test.jsx │ │ │ └── send.test.jsx │ ├── assets │ │ ├── RC │ │ │ ├── backdrop.png │ │ │ ├── backdrop@2x.png │ │ │ ├── background.tiff │ │ │ ├── icon-1024.png │ │ │ ├── icon.icns │ │ │ ├── icon.ico │ │ │ └── trayTemplate@2x.png │ │ ├── backdrop.png │ │ ├── backdrop@2x.png │ │ ├── background.tiff │ │ ├── icon-1024.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ └── trayTemplate@2x.png │ ├── babel.config.js │ ├── bugsnag.js │ ├── bugsnag.sh │ ├── entitlements.mac.plist │ ├── native │ │ ├── Index.js │ │ ├── hardware │ │ │ └── Ledger.js │ │ ├── libs │ │ │ ├── Entangled.js │ │ │ ├── Menu.js │ │ │ ├── Realm.js │ │ │ └── kdbx.js │ │ └── preload │ │ │ ├── Electron.js │ │ │ ├── development.js │ │ │ ├── production.js │ │ │ └── tray.js │ ├── npm-shrinkwrap.json │ ├── package.json │ ├── patches │ │ ├── @jest-runner+electron+3.0.0.patch │ │ ├── app-builder-lib+22.5.1.patch │ │ └── electron-updater+4.0.14.patch │ ├── scripts │ │ ├── jestEnv.js │ │ ├── jestLibs.js │ │ ├── jestSetup.js │ │ ├── jestTeardown.js │ │ ├── notarize.macos.js │ │ └── webpackServer.js │ ├── src │ │ ├── index.js │ │ ├── libs │ │ │ ├── SeedStore │ │ │ │ ├── Keychain.js │ │ │ │ ├── Ledger.js │ │ │ │ ├── SeedStoreCore.js │ │ │ │ └── index.js │ │ │ ├── bugsnag.js │ │ │ ├── constants.js │ │ │ ├── crypto.js │ │ │ ├── realm.js │ │ │ └── storage.js │ │ └── ui │ │ │ ├── Index.js │ │ │ ├── Tray.js │ │ │ ├── components │ │ │ ├── Balance.js │ │ │ ├── Button.js │ │ │ ├── Chart.js │ │ │ ├── Checkbox.js │ │ │ ├── Checksum.js │ │ │ ├── Clipboard.js │ │ │ ├── Dropzone.js │ │ │ ├── Icon.js │ │ │ ├── Info.js │ │ │ ├── List.js │ │ │ ├── Loading.js │ │ │ ├── Loading.scss │ │ │ ├── Logo.js │ │ │ ├── Lottie.js │ │ │ ├── Progress.js │ │ │ ├── QR.js │ │ │ ├── Scrollbar.js │ │ │ ├── SeedPrint.js │ │ │ ├── Tab.js │ │ │ ├── Toggle.js │ │ │ ├── Tooltip.js │ │ │ ├── Transaction.js │ │ │ ├── Waves.js │ │ │ ├── balance.scss │ │ │ ├── button.scss │ │ │ ├── chart.scss │ │ │ ├── checkbox.scss │ │ │ ├── clipboard.scss │ │ │ ├── dropzone.scss │ │ │ ├── icon.scss │ │ │ ├── info.scss │ │ │ ├── input │ │ │ │ ├── Address.js │ │ │ │ ├── Amount.js │ │ │ │ ├── Number.js │ │ │ │ ├── Password.js │ │ │ │ ├── Seed.js │ │ │ │ ├── Select.js │ │ │ │ ├── Text.js │ │ │ │ └── input.scss │ │ │ ├── list.scss │ │ │ ├── logo.scss │ │ │ ├── modal │ │ │ │ ├── Confirm.js │ │ │ │ ├── Modal.js │ │ │ │ ├── Password.js │ │ │ │ └── modal.scss │ │ │ ├── progress.scss │ │ │ ├── scrollbar.scss │ │ │ ├── seedPrint.scss │ │ │ ├── tab.scss │ │ │ ├── toggle.scss │ │ │ ├── tooltip.scss │ │ │ └── waves.scss │ │ │ ├── global │ │ │ ├── About.js │ │ │ ├── Alerts.js │ │ │ ├── ErrorLog.js │ │ │ ├── FatalError.js │ │ │ ├── Idle.js │ │ │ ├── Migration.js │ │ │ ├── Polling.js │ │ │ ├── SeedExport.js │ │ │ ├── Theme.js │ │ │ ├── Titlebar.js │ │ │ ├── UpdateProgress.js │ │ │ ├── about.scss │ │ │ ├── alerts.scss │ │ │ ├── seedExport.scss │ │ │ ├── seedStore │ │ │ │ ├── Ledger.js │ │ │ │ └── index.scss │ │ │ ├── theming.scss │ │ │ └── titlebar.scss │ │ │ ├── index.scss │ │ │ ├── style │ │ │ ├── _animations.scss │ │ │ ├── _reset.scss │ │ │ └── _typography.scss │ │ │ ├── tray.scss │ │ │ └── views │ │ │ ├── onboarding │ │ │ ├── AccountName.js │ │ │ ├── AccountPassword.js │ │ │ ├── Done.js │ │ │ ├── Index.js │ │ │ ├── Login.js │ │ │ ├── SeedGenerate.js │ │ │ ├── SeedIntro.js │ │ │ ├── SeedSave.js │ │ │ ├── SeedSaveWrite.js │ │ │ ├── SeedVerify.js │ │ │ ├── Welcome.js │ │ │ ├── index.scss │ │ │ ├── seedStore │ │ │ │ ├── Ledger.js │ │ │ │ └── index.scss │ │ │ └── welcome.scss │ │ │ ├── settings │ │ │ ├── Advanced.js │ │ │ ├── Currency.js │ │ │ ├── Index.js │ │ │ ├── Language.js │ │ │ ├── Mode.js │ │ │ ├── Node.js │ │ │ ├── NodeCustom.js │ │ │ ├── Password.js │ │ │ ├── Theme.js │ │ │ ├── account │ │ │ │ ├── Addresses.js │ │ │ │ ├── Name.js │ │ │ │ ├── Remove.js │ │ │ │ ├── Seed.js │ │ │ │ ├── Tools.js │ │ │ │ ├── addresses.scss │ │ │ │ └── seed.scss │ │ │ └── index.scss │ │ │ └── wallet │ │ │ ├── Dashboard.js │ │ │ ├── Index.js │ │ │ ├── Receive.js │ │ │ ├── Send.js │ │ │ ├── Sidebar.js │ │ │ ├── dashboard.scss │ │ │ ├── index.scss │ │ │ ├── receive.scss │ │ │ └── send.scss │ └── webpack.config │ │ ├── config.app.js │ │ ├── config.main.js │ │ └── index.js ├── mobile │ ├── .babelrc │ ├── .buckconfig │ ├── .eslintrc.yml │ ├── .gitattributes │ ├── .snyk │ ├── .watchmanconfig │ ├── .yarnrc │ ├── README.md │ ├── __mocks__ │ │ ├── react-native-device-info.js │ │ └── theme.js │ ├── __tests__ │ │ ├── .eslintrc.yml │ │ ├── libs │ │ │ ├── crypto.spec.js │ │ │ └── keychain.spec.js │ │ └── ui │ │ │ ├── components │ │ │ ├── Checksum.spec.js │ │ │ ├── CtaButton.spec.js │ │ │ ├── CustomTextInput.spec.js │ │ │ ├── Dropdown.spec.js │ │ │ ├── EnterPasswordOnLogin.spec.js │ │ │ ├── Header.spec.js │ │ │ ├── Letter.spec.js │ │ │ ├── LogoutConfirmationModal.spec.js │ │ │ ├── NotificationLogModal.spec.js │ │ │ ├── Poll.spec.js │ │ │ ├── QrScanner.spec.js │ │ │ ├── RootDetectionModal.spec.js │ │ │ ├── SeedVaultImportComponent.spec.js │ │ │ ├── SimpleTransactionRow.spec.js │ │ │ ├── Tab.spec.js │ │ │ ├── TransactionHistoryModal.spec.js │ │ │ └── TransactionRow.spec.js │ │ │ └── views │ │ │ ├── onboarding │ │ │ └── SetAccountName.spec.js │ │ │ └── wallet │ │ │ ├── AddCustomNode.spec.js │ │ │ ├── AdvancedSettings.spec.js │ │ │ ├── Balance.spec.js │ │ │ ├── CurrencySelection.spec.js │ │ │ ├── EditAccountName.spec.js │ │ │ ├── MainSettings.spec.js │ │ │ ├── ManualSync.spec.js │ │ │ ├── Send.spec.js │ │ │ ├── SnapshotTransition.spec.js │ │ │ └── ViewAddresses.spec.js │ ├── android │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── app │ │ │ ├── BUCK │ │ │ ├── bin │ │ │ │ └── BUCK │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── beta │ │ │ │ ├── ic_launcher-web.png │ │ │ │ └── res │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-web.png │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ ├── background_splash.xml │ │ │ │ │ └── icon.png │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ └── xml │ │ │ │ │ └── network_security_config.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── Icons.ttf │ │ │ │ │ ├── SourceCodePro-Medium.ttf │ │ │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ │ │ ├── SourceSansPro-Light.ttf │ │ │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ │ │ └── SourceSansPro-SemiBold.ttf │ │ │ │ ├── ic_launcher-web.png │ │ │ │ ├── java │ │ │ │ ├── com │ │ │ │ │ └── iota │ │ │ │ │ │ └── trinity │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ ├── module │ │ │ │ │ └── share │ │ │ │ │ │ ├── ShareSecure.java │ │ │ │ │ │ └── ShareSecurePackage.java │ │ │ │ └── org │ │ │ │ │ └── iota │ │ │ │ │ └── mobile │ │ │ │ │ ├── Argon2Android.java │ │ │ │ │ ├── Converter.java │ │ │ │ │ ├── EntangledAndroid.java │ │ │ │ │ ├── IOTAMobilePackage.java │ │ │ │ │ ├── Interface.java │ │ │ │ │ └── NativeUtilsAndroid.java │ │ │ │ ├── jniLibs │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libdummy.so │ │ │ │ ├── armeabi-v7a │ │ │ │ │ └── libdummy.so │ │ │ │ ├── x86 │ │ │ │ │ └── libdummy.so │ │ │ │ └── x86_64 │ │ │ │ │ └── libdummy.so │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background_splash.xml │ │ │ │ └── icon.png │ │ │ │ ├── layout │ │ │ │ └── launch_screen.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── icon.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── icon.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── icon.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── icon.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── icon.png │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── filepaths.xml │ │ ├── build.gradle │ │ ├── fastlane │ │ │ ├── Appfile │ │ │ ├── Fastfile │ │ │ ├── Pluginfile │ │ │ ├── README.md │ │ │ └── actions │ │ │ │ ├── increment_version_name.rb │ │ │ │ └── set_meta_data.rb │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── keystores │ │ │ ├── BUCK │ │ │ └── debug.keystore.properties │ │ └── settings.gradle │ ├── app.json │ ├── index.js │ ├── ios │ │ ├── Argon2 │ │ │ ├── Argon2Core.swift │ │ │ ├── Argon2IOS.m │ │ │ └── Argon2IOS.swift │ │ ├── Config │ │ │ ├── buildnumber.xcconfig │ │ │ ├── iotaWallet-debug-config.xcconfig │ │ │ ├── iotaWallet-release-config.xcconfig │ │ │ ├── iotaWalletTests-debug-config.xcconfig │ │ │ └── iotaWalletTests-release-config.xcconfig │ │ ├── EntangledIOS │ │ │ ├── EntangledIOS.h │ │ │ ├── EntangledIOS.m │ │ │ ├── EntangledIOSUtils.h │ │ │ ├── EntangledIOSUtils.m │ │ │ ├── EntangledKit.framework │ │ │ │ ├── EntangledKit │ │ │ │ ├── Headers │ │ │ │ │ ├── EntangledKit.h │ │ │ │ │ └── Interface.h │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── bindings.h │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── Launch Screen.storyboard │ │ ├── NativeUtils │ │ │ ├── NativeUtilsIOS.m │ │ │ └── NativeUtilsIOS.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── SourceSansPro-Bold.ttf │ │ ├── SourceSansPro-Light.ttf │ │ ├── SourceSansPro-Regular.ttf │ │ ├── ar.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── cs.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── da.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── de.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── el.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── es-419.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── es.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── fastlane │ │ │ ├── Deliverfile │ │ │ ├── Fastfile │ │ │ ├── Pluginfile │ │ │ ├── README.md │ │ │ ├── Snapfile │ │ │ ├── SnapshotHelper.swift │ │ │ └── metadata │ │ │ │ └── en-GB │ │ │ │ ├── description.txt │ │ │ │ ├── keywords.txt │ │ │ │ ├── name.txt │ │ │ │ ├── promotional_text.txt │ │ │ │ ├── release_notes.txt │ │ │ │ ├── subtitle.txt │ │ │ │ └── support_url.txt │ │ ├── fi.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── fr.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── he.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── hi.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── id.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── iotaWallet-tvOS │ │ │ └── Info.plist │ │ ├── iotaWallet-tvOSTests │ │ │ └── Info.plist │ │ ├── iotaWallet.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── iotaWallet-AppStore.xcscheme │ │ │ │ ├── iotaWallet-Beta.xcscheme │ │ │ │ ├── iotaWallet-Debug.xcscheme │ │ │ │ ├── iotaWallet-tvOS.xcscheme │ │ │ │ └── iotaWalletUITests.xcscheme │ │ ├── iotaWallet.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── iotaWallet │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Empty.swift │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x-1.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x-1.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x-1.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x-1.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ │ │ └── ItunesArtwork@2x.png │ │ │ │ ├── AppIconBeta.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 │ │ │ │ ├── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iota-logo-white.png │ │ │ │ │ ├── iota-logo-white_2x.png │ │ │ │ │ └── iota-logo-white_3x.png │ │ │ │ ├── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ │ └── SplashIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iota-logo-white.png │ │ │ │ │ ├── iota-logo-white_2x.png │ │ │ │ │ └── iota-logo-white_3x.png │ │ │ ├── Info.plist │ │ │ ├── iotaWallet-Bridging-Header.h │ │ │ ├── iotaWallet.entitlements │ │ │ └── main.m │ │ ├── iotaWalletTests │ │ │ ├── Info.plist │ │ │ └── iotaWalletTests.m │ │ ├── iotaWalletUITests │ │ │ ├── Info.plist │ │ │ ├── SnapshotHelper.swift │ │ │ └── iotaWalletUITests.swift │ │ ├── it.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── ja.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── ko.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── localizations │ │ │ ├── ar.xliff │ │ │ ├── bg.xliff │ │ │ ├── ca.xliff │ │ │ ├── cs.xliff │ │ │ ├── da.xliff │ │ │ ├── de.xliff │ │ │ ├── de_CH.xliff │ │ │ ├── el.xliff │ │ │ ├── en.xliff │ │ │ ├── es-419.xliff │ │ │ ├── es.xliff │ │ │ ├── es_419.xliff │ │ │ ├── et.xliff │ │ │ ├── fa.xliff │ │ │ ├── fi.xliff │ │ │ ├── fr.xliff │ │ │ ├── he.xliff │ │ │ ├── hi.xliff │ │ │ ├── hr.xliff │ │ │ ├── hu.xliff │ │ │ ├── id.xliff │ │ │ ├── it.xliff │ │ │ ├── ja.xliff │ │ │ ├── ka.xliff │ │ │ ├── kn.xliff │ │ │ ├── ko.xliff │ │ │ ├── lt.xliff │ │ │ ├── lv.xliff │ │ │ ├── mi.xliff │ │ │ ├── ml.xliff │ │ │ ├── nb.xliff │ │ │ ├── nl.xliff │ │ │ ├── no.xliff │ │ │ ├── pl.xliff │ │ │ ├── pt-BR.xliff │ │ │ ├── pt-PT.xliff │ │ │ ├── pt.xliff │ │ │ ├── pt_BR.xliff │ │ │ ├── ro.xliff │ │ │ ├── ru.xliff │ │ │ ├── sk.xliff │ │ │ ├── sl.xliff │ │ │ ├── sr_CS.xliff │ │ │ ├── sr_Latn.xliff │ │ │ ├── sv.xliff │ │ │ ├── ta.xliff │ │ │ ├── th.xliff │ │ │ ├── tr.xliff │ │ │ ├── ur.xliff │ │ │ ├── vi.xliff │ │ │ ├── zh-Hans.xliff │ │ │ └── zh-Hant.xliff │ │ ├── lv.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── nb.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── nl.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── pl.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── pt-BR.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── pt-PT.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── ro.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── ru.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── sk.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── sl.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── sv.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── tr.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── ur.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ ├── zh-Hans.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ │ └── zh-Hant.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── LaunchScreen.xib │ ├── nodejs-assets │ │ └── nodejs-project │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ ├── package.json │ ├── patches │ │ ├── buffer+4.9.1.patch │ │ ├── bugsnag-react-native+2.23.6.patch │ │ ├── react-native+0.59.10.patch │ │ ├── react-native-camera+1.5.1.patch │ │ ├── react-native-device-info+0.13.0.patch │ │ ├── react-native-document-picker+3.3.2.patch │ │ ├── react-native-keychain+3.0.0.patch │ │ └── react-native-schemes-manager+2.0.0.patch │ ├── rn-cli.config.js │ ├── safetynet.sh │ ├── scripts │ │ └── build-entangled-android.sh │ ├── shim.js │ ├── src │ │ ├── libs │ │ │ ├── SeedStore │ │ │ │ ├── Keychain.js │ │ │ │ ├── SeedStoreCore.js │ │ │ │ └── index.js │ │ │ ├── bugsnag.js │ │ │ ├── crypto.js │ │ │ ├── device.js │ │ │ ├── dimensions.js │ │ │ ├── keychain.js │ │ │ ├── nativeModules.js │ │ │ ├── navigation.js │ │ │ ├── progressSteps.js │ │ │ ├── realm.js │ │ │ ├── safetynet.js │ │ │ └── store.js │ │ └── ui │ │ │ ├── components │ │ │ ├── AmountTextInput.js │ │ │ ├── AnimatedComponent.js │ │ │ ├── BackPress.js │ │ │ ├── BiometricInfoModal.js │ │ │ ├── Button.js │ │ │ ├── Chart.js │ │ │ ├── Checksum.js │ │ │ ├── ChecksumModal.js │ │ │ ├── CtaButton.js │ │ │ ├── CustomQRCode.js │ │ │ ├── CustomTextInput.js │ │ │ ├── DeepLinking.js │ │ │ ├── Dropdown.js │ │ │ ├── DualFooterButtons.js │ │ │ ├── DynamicStatusBar.js │ │ │ ├── EnterPassword.js │ │ │ ├── EnterPasswordOnLogin.js │ │ │ ├── FingerprintModal.js │ │ │ ├── Header.js │ │ │ ├── InfoBox.js │ │ │ ├── KeyboardMonitor.js │ │ │ ├── Letter.js │ │ │ ├── Logout.js │ │ │ ├── LogoutConfirmationModal.js │ │ │ ├── ManualRefresh.js │ │ │ ├── Migration.js │ │ │ ├── ModalButtons.js │ │ │ ├── ModalComponent.js │ │ │ ├── ModalView.js │ │ │ ├── MultiTextInput.js │ │ │ ├── NotificationButton.js │ │ │ ├── NotificationLogModal.js │ │ │ ├── OldProgressBar.js │ │ │ ├── PasswordFields.js │ │ │ ├── PasswordValidationModal.js │ │ │ ├── Poll.js │ │ │ ├── PrintModal.js │ │ │ ├── QrScanner.js │ │ │ ├── RootDetectionModal.js │ │ │ ├── SafeAreaView.js │ │ │ ├── ScramblingLetter.js │ │ │ ├── ScramblingText.js │ │ │ ├── SeedInfoModal.js │ │ │ ├── SeedPicker.js │ │ │ ├── SeedVaultExportComponent.js │ │ │ ├── SeedVaultImportComponent.js │ │ │ ├── SendProgressBar.js │ │ │ ├── SettingsBackButton.js │ │ │ ├── SettingsContent.js │ │ │ ├── SettingsDualFooter.js │ │ │ ├── SettingsRow.js │ │ │ ├── SettingsRowsContainer.js │ │ │ ├── SettingsSeparator.js │ │ │ ├── SimpleTransactionRow.js │ │ │ ├── SingleFooterButton.js │ │ │ ├── Slider.js │ │ │ ├── SnapshotTransitionInfoModal.js │ │ │ ├── StatefulDropdownAlert.js │ │ │ ├── Tab.js │ │ │ ├── TabContent.js │ │ │ ├── Tabs.js │ │ │ ├── TextWithLetterSpacing.js │ │ │ ├── Toggle.js │ │ │ ├── TopBar.js │ │ │ ├── TransactionFilters.js │ │ │ ├── TransactionHistoryModal.js │ │ │ ├── TransactionRow.js │ │ │ ├── TransferConfirmationModal.js │ │ │ ├── UnitInfoModal.js │ │ │ ├── UserActivity.js │ │ │ ├── UserInactivity.js │ │ │ ├── WithDropdownAlert.js │ │ │ └── WithStatusBar.js │ │ │ ├── routes │ │ │ ├── entry.js │ │ │ └── navigation.js │ │ │ ├── theme │ │ │ ├── fonts.js │ │ │ ├── general.js │ │ │ └── icons.js │ │ │ └── views │ │ │ ├── onboarding │ │ │ ├── EnterSeed.js │ │ │ ├── LanguageSetup.js │ │ │ ├── NewSeedSetup.js │ │ │ ├── OnboardingComplete.js │ │ │ ├── PrintBlankTemplate.js │ │ │ ├── PrivacyPolicy.js │ │ │ ├── SaveSeedConfirmation.js │ │ │ ├── SaveYourSeed.js │ │ │ ├── SeedReentry.js │ │ │ ├── SeedVaultBackup.js │ │ │ ├── SetAccountName.js │ │ │ ├── SetPassword.js │ │ │ ├── TermsAndConditions.js │ │ │ ├── WalletSetup.js │ │ │ ├── Welcome.js │ │ │ └── WriteSeedDown.js │ │ │ └── wallet │ │ │ ├── About.js │ │ │ ├── AccountManagement.js │ │ │ ├── AddCustomNode.js │ │ │ ├── AddNewAccount.js │ │ │ ├── AdvancedSettings.js │ │ │ ├── AutoPromotion.js │ │ │ ├── Balance.js │ │ │ ├── BiometricAuthentication.js │ │ │ ├── ChangePassword.js │ │ │ ├── CurrencySelection.js │ │ │ ├── DeepLinking.js │ │ │ ├── DeleteAccount.js │ │ │ ├── EditAccountName.js │ │ │ ├── ForceChangePassword.js │ │ │ ├── Help.js │ │ │ ├── History.js │ │ │ ├── Home.js │ │ │ ├── InactivityLogout.js │ │ │ ├── LanguageSelection.js │ │ │ ├── Loading.js │ │ │ ├── Login.js │ │ │ ├── MainSettings.js │ │ │ ├── ManualSync.js │ │ │ ├── ModeSelection.js │ │ │ ├── NodeSettings.js │ │ │ ├── Receive.js │ │ │ ├── SecuritySettings.js │ │ │ ├── SeedVaultSettings.js │ │ │ ├── Send.js │ │ │ ├── Settings.js │ │ │ ├── SnapshotTransition.js │ │ │ ├── StateExport.js │ │ │ ├── ThemeCustomisation.js │ │ │ ├── UseExistingSeed.js │ │ │ ├── ViewAddresses.js │ │ │ ├── ViewSeed.js │ │ │ ├── WalletResetConfirmation.js │ │ │ └── WalletResetRequirePassword.js │ ├── testConfig.js │ └── yarn.lock └── shared │ ├── .babelrc │ ├── .eslintrc.yml │ ├── .snyk │ ├── __tests__ │ ├── __samples__ │ │ ├── accounts.js │ │ ├── addresses.js │ │ ├── bundles.js │ │ ├── transactions.js │ │ └── trytes.js │ ├── actions │ │ ├── accounts.spec.js │ │ └── transfers.spec.js │ ├── beforeAll.spec.js │ ├── libs │ │ ├── i18n.spec.js │ │ ├── iota │ │ │ ├── accounts.spec.js │ │ │ ├── addresses.spec.js │ │ │ ├── extendedApi.spec.js │ │ │ ├── inputs.spec.js │ │ │ ├── quorum.spec.js │ │ │ ├── recovery.spec.js │ │ │ ├── transfers.spec.js │ │ │ └── utils.spec.js │ │ └── utils.spec.js │ ├── middlewares │ │ ├── alerts.spec.js │ │ └── network.spec.js │ ├── reducers │ │ ├── accounts.spec.js │ │ ├── alerts.spec.js │ │ ├── home.spec.js │ │ ├── marketData.spec.js │ │ ├── polling.spec.js │ │ ├── progress.spec.js │ │ ├── settings.spec.js │ │ ├── ui.spec.js │ │ └── wallet.spec.js │ ├── selectors │ │ ├── accounts.spec.js │ │ └── global.spec.js │ └── storage │ │ └── node.spec.js │ ├── actions │ ├── accounts.js │ ├── alerts.js │ ├── home.js │ ├── keychain.js │ ├── marketData.js │ ├── migrations.js │ ├── polling.js │ ├── progress.js │ ├── recovery.js │ ├── settings.js │ ├── transfers.js │ ├── ui.js │ └── wallet.js │ ├── animations │ ├── fingerprint.json │ ├── index.js │ ├── language.json │ ├── ledger.json │ ├── loading.json │ ├── logout.json │ ├── onboardingComplete.json │ ├── progressLoading.json │ ├── progressSuccess.json │ ├── sending.json │ ├── sendingDesktop.json │ ├── spinner.json │ └── welcome.json │ ├── config.js │ ├── containers │ ├── components │ │ ├── Chart.js │ │ └── List.js │ ├── global │ │ └── Alerts.js │ ├── settings │ │ ├── Currency.js │ │ └── Node.js │ └── wallet │ │ └── Send.js │ ├── custom-fonts │ ├── SourceCodePro-Medium.ttf │ ├── SourceSansPro-Bold.ttf │ ├── SourceSansPro-Light.ttf │ ├── SourceSansPro-Regular.json │ ├── SourceSansPro-Regular.ttf │ ├── SourceSansPro-SemiBold.ttf │ └── icons │ │ ├── Linearicons-Free.eot │ │ ├── Linearicons-Free.svg │ │ ├── Linearicons-Free.ttf │ │ ├── Linearicons-Free.woff │ │ └── Linearicons-Free.woff2 │ ├── icons │ ├── Icons.svg │ ├── Icons.ttf │ ├── generate.js │ ├── icons.js │ └── icons │ │ ├── addresses.svg │ │ ├── advanced.svg │ │ ├── arrowDown.svg │ │ ├── arrowLeft.svg │ │ ├── arrowRight.svg │ │ ├── arrowUp.svg │ │ ├── attention.svg │ │ ├── biometric.svg │ │ ├── bookmark.svg │ │ ├── camera.svg │ │ ├── cameraFlip.svg │ │ ├── chart.svg │ │ ├── chevronDown.svg │ │ ├── chevronLeft.svg │ │ ├── chevronRight.svg │ │ ├── chevronUp.svg │ │ ├── copy.svg │ │ ├── cross.svg │ │ ├── currency.svg │ │ ├── edit.svg │ │ ├── eye.svg │ │ ├── eyeSlash.svg │ │ ├── fingerprint.svg │ │ ├── fingerprintDisabled.svg │ │ ├── help.svg │ │ ├── history.svg │ │ ├── info.svg │ │ ├── iota.svg │ │ ├── key.svg │ │ ├── keyVertical.svg │ │ ├── language.svg │ │ ├── link.svg │ │ ├── logout.svg │ │ ├── minus.svg │ │ ├── mode.svg │ │ ├── node.svg │ │ ├── notification.svg │ │ ├── password.svg │ │ ├── plus.svg │ │ ├── plusAlt.svg │ │ ├── pow.svg │ │ ├── print.svg │ │ ├── receive.svg │ │ ├── search.svg │ │ ├── security.svg │ │ ├── send.svg │ │ ├── settings.svg │ │ ├── settingsAlt.svg │ │ ├── snapshot.svg │ │ ├── sync.svg │ │ ├── theme.svg │ │ ├── tick.svg │ │ ├── tickRound.svg │ │ ├── trash.svg │ │ ├── twoFA.svg │ │ ├── user.svg │ │ ├── vault.svg │ │ ├── wallet.svg │ │ └── write.svg │ ├── images │ ├── PaperWallets.js │ ├── checkbox-checked-black.png │ ├── checkbox-checked-white.png │ ├── checkbox-unchecked-black.png │ ├── checkbox-unchecked-white.png │ ├── circle-black.png │ ├── circle-white.png │ ├── dot-circle-black.png │ ├── dot-circle-white.png │ ├── error.png │ ├── infoIcon.png │ ├── successIcon.png │ └── warnIcon.png │ ├── libs │ ├── crypto.js │ ├── currency.js │ ├── date.js │ ├── errors.js │ ├── exports.js │ ├── global.js │ ├── html.js │ ├── i18n.js │ ├── i18next.js │ ├── iota │ │ ├── NodesManager.js │ │ ├── accounts.js │ │ ├── addresses.js │ │ ├── converter.js │ │ ├── extendedApi.js │ │ ├── index.js │ │ ├── inputs.js │ │ ├── quorum.js │ │ ├── recovery.js │ │ ├── transfers.js │ │ └── utils.js │ ├── migrations.js │ ├── originalRequire.js │ ├── password.js │ ├── storageToStateMappers.js │ ├── utils.js │ └── versions.json │ ├── locales │ ├── ar │ │ └── translation.json │ ├── bg │ │ └── translation.json │ ├── ca │ │ └── translation.json │ ├── cs │ │ └── translation.json │ ├── da │ │ └── translation.json │ ├── de-CH │ │ └── translation.json │ ├── de │ │ └── translation.json │ ├── el │ │ └── translation.json │ ├── en │ │ └── translation.json │ ├── es-ES │ │ └── translation.json │ ├── es-LA │ │ └── translation.json │ ├── et │ │ └── translation.json │ ├── fa │ │ └── translation.json │ ├── fi │ │ └── translation.json │ ├── fr │ │ └── translation.json │ ├── he │ │ └── translation.json │ ├── hi │ │ └── translation.json │ ├── hr │ │ └── translation.json │ ├── hu │ │ └── translation.json │ ├── id │ │ └── translation.json │ ├── it │ │ └── translation.json │ ├── ja │ │ └── translation.json │ ├── ka │ │ └── translation.json │ ├── kn │ │ └── translation.json │ ├── ko │ │ └── translation.json │ ├── lt │ │ └── translation.json │ ├── lv │ │ └── translation.json │ ├── mi │ │ └── translation.json │ ├── ml │ │ └── translation.json │ ├── nl │ │ └── translation.json │ ├── no │ │ └── translation.json │ ├── pl │ │ └── translation.json │ ├── pt-BR │ │ └── translation.json │ ├── pt-PT │ │ └── translation.json │ ├── ro │ │ └── translation.json │ ├── ru │ │ └── translation.json │ ├── sk │ │ └── translation.json │ ├── sl │ │ └── translation.json │ ├── sr │ │ └── translation.json │ ├── sv-SE │ │ └── translation.json │ ├── ta │ │ └── translation.json │ ├── th │ │ └── translation.json │ ├── tr │ │ └── translation.json │ ├── ur │ │ └── translation.json │ ├── vi │ │ └── translation.json │ ├── zh-CN │ │ └── translation.json │ └── zh-TW │ │ └── translation.json │ ├── markdown │ ├── dePrivacyPolicyAndroid.js │ ├── dePrivacyPolicyIOS.js │ ├── deTermsAndConditionsAndroid.js │ ├── deTermsAndConditionsIOS.js │ ├── enPrivacyPolicyAndroid.js │ ├── enPrivacyPolicyIOS.js │ ├── enTermsAndConditionsAndroid.js │ ├── enTermsAndConditionsIOS.js │ └── index.js │ ├── middlewares │ ├── alerts.js │ ├── modal.js │ ├── network.js │ └── version.js │ ├── package.json │ ├── reducers │ ├── accounts.js │ ├── alerts.js │ ├── home.js │ ├── keychain.js │ ├── marketData.js │ ├── polling.js │ ├── progress.js │ ├── settings.js │ ├── ui.js │ └── wallet.js │ ├── schemas │ ├── default.js │ ├── index.js │ ├── v0 │ │ └── index.js │ ├── v1 │ │ └── index.js │ ├── v10 │ │ └── index.js │ ├── v2 │ │ └── index.js │ ├── v3 │ │ └── index.js │ ├── v4 │ │ └── index.js │ ├── v5 │ │ └── index.js │ ├── v6 │ │ └── index.js │ ├── v7 │ │ └── index.js │ ├── v8 │ │ └── index.js │ └── v9 │ │ └── index.js │ ├── selectors │ ├── accounts.js │ └── global.js │ ├── storage │ └── index.js │ ├── store.js │ ├── themes │ ├── paper-wallet-filled.svg │ ├── paper-wallet.svg │ ├── sync.js │ ├── themes.js │ └── themes │ │ ├── Classic.js │ │ ├── Contemporary.js │ │ ├── Dark.js │ │ ├── Default.js │ │ ├── Electric.js │ │ ├── Ionic.js │ │ ├── Light.js │ │ ├── Mint.js │ │ └── SteelBlue.js │ ├── types │ └── index.js │ └── yarn.lock ├── trinity.png └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build_desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/workflows/build_desktop.yml -------------------------------------------------------------------------------- /.github/workflows/build_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/workflows/build_docker.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/rollback_desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/workflows/rollback_desktop.yml -------------------------------------------------------------------------------- /.github/workflows/snyk-monitor-js-desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/workflows/snyk-monitor-js-desktop.yml -------------------------------------------------------------------------------- /.github/workflows/test_desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/workflows/test_desktop.yml -------------------------------------------------------------------------------- /.github/workflows/test_mobile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/workflows/test_mobile.yml -------------------------------------------------------------------------------- /.github/workflows/test_shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.github/workflows/test_shared.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.prettierrc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/.snyk -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 8.9.1 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docs/copyrightHeader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/docs/copyrightHeader -------------------------------------------------------------------------------- /docs/dev/entangled-mobile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/docs/dev/entangled-mobile.md -------------------------------------------------------------------------------- /docs/dev/localisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/docs/dev/localisation.md -------------------------------------------------------------------------------- /docs/dev/realm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/docs/dev/realm.md -------------------------------------------------------------------------------- /docs/dev/styleguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/docs/dev/styleguide.md -------------------------------------------------------------------------------- /docs/featureguide/featureguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/docs/featureguide/featureguide.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/docs/overview.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/package.json -------------------------------------------------------------------------------- /scripts/post-merge-githook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/scripts/post-merge-githook.sh -------------------------------------------------------------------------------- /src/desktop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/.gitignore -------------------------------------------------------------------------------- /src/desktop/.yarnrc: -------------------------------------------------------------------------------- 1 | version-tag-prefix desktop-v 2 | -------------------------------------------------------------------------------- /src/desktop/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/CHANGELOG.md -------------------------------------------------------------------------------- /src/desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/README.md -------------------------------------------------------------------------------- /src/desktop/__mocks__/electronMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__mocks__/electronMock.js -------------------------------------------------------------------------------- /src/desktop/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/desktop/__mocks__/iriMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__mocks__/iriMock.js -------------------------------------------------------------------------------- /src/desktop/__mocks__/markdownMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__mocks__/markdownMock.js -------------------------------------------------------------------------------- /src/desktop/__mocks__/samples/keychain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__mocks__/samples/keychain.js -------------------------------------------------------------------------------- /src/desktop/__mocks__/samples/trytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__mocks__/samples/trytes.js -------------------------------------------------------------------------------- /src/desktop/__mocks__/stateMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__mocks__/stateMock.json -------------------------------------------------------------------------------- /src/desktop/__mocks__/styleMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__mocks__/styleMock.js -------------------------------------------------------------------------------- /src/desktop/__tests__/e2e/Onboarding.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/e2e/Onboarding.test.js -------------------------------------------------------------------------------- /src/desktop/__tests__/e2e/Wallet.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/e2e/Wallet.test.js -------------------------------------------------------------------------------- /src/desktop/__tests__/libs/crypto.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/libs/crypto.test.js -------------------------------------------------------------------------------- /src/desktop/__tests__/ui/components/icon.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/ui/components/icon.test.jsx -------------------------------------------------------------------------------- /src/desktop/__tests__/ui/components/info.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/ui/components/info.test.jsx -------------------------------------------------------------------------------- /src/desktop/__tests__/ui/components/list.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/ui/components/list.test.jsx -------------------------------------------------------------------------------- /src/desktop/__tests__/ui/components/qr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/ui/components/qr.test.js -------------------------------------------------------------------------------- /src/desktop/__tests__/ui/global/about.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/ui/global/about.test.jsx -------------------------------------------------------------------------------- /src/desktop/__tests__/ui/global/alerts.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/ui/global/alerts.test.jsx -------------------------------------------------------------------------------- /src/desktop/__tests__/ui/global/errorLog.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/ui/global/errorLog.test.jsx -------------------------------------------------------------------------------- /src/desktop/__tests__/ui/global/titlebar.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/__tests__/ui/global/titlebar.test.jsx -------------------------------------------------------------------------------- /src/desktop/assets/RC/backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/RC/backdrop.png -------------------------------------------------------------------------------- /src/desktop/assets/RC/backdrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/RC/backdrop@2x.png -------------------------------------------------------------------------------- /src/desktop/assets/RC/background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/RC/background.tiff -------------------------------------------------------------------------------- /src/desktop/assets/RC/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/RC/icon-1024.png -------------------------------------------------------------------------------- /src/desktop/assets/RC/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/RC/icon.icns -------------------------------------------------------------------------------- /src/desktop/assets/RC/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/RC/icon.ico -------------------------------------------------------------------------------- /src/desktop/assets/RC/trayTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/RC/trayTemplate@2x.png -------------------------------------------------------------------------------- /src/desktop/assets/backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/backdrop.png -------------------------------------------------------------------------------- /src/desktop/assets/backdrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/backdrop@2x.png -------------------------------------------------------------------------------- /src/desktop/assets/background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/background.tiff -------------------------------------------------------------------------------- /src/desktop/assets/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/icon-1024.png -------------------------------------------------------------------------------- /src/desktop/assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/icon.icns -------------------------------------------------------------------------------- /src/desktop/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/icon.ico -------------------------------------------------------------------------------- /src/desktop/assets/trayTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/assets/trayTemplate@2x.png -------------------------------------------------------------------------------- /src/desktop/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/babel.config.js -------------------------------------------------------------------------------- /src/desktop/bugsnag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/bugsnag.js -------------------------------------------------------------------------------- /src/desktop/bugsnag.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | exit 0 3 | -------------------------------------------------------------------------------- /src/desktop/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/entitlements.mac.plist -------------------------------------------------------------------------------- /src/desktop/native/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/Index.js -------------------------------------------------------------------------------- /src/desktop/native/hardware/Ledger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/hardware/Ledger.js -------------------------------------------------------------------------------- /src/desktop/native/libs/Entangled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/libs/Entangled.js -------------------------------------------------------------------------------- /src/desktop/native/libs/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/libs/Menu.js -------------------------------------------------------------------------------- /src/desktop/native/libs/Realm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/libs/Realm.js -------------------------------------------------------------------------------- /src/desktop/native/libs/kdbx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/libs/kdbx.js -------------------------------------------------------------------------------- /src/desktop/native/preload/Electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/preload/Electron.js -------------------------------------------------------------------------------- /src/desktop/native/preload/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/preload/development.js -------------------------------------------------------------------------------- /src/desktop/native/preload/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/preload/production.js -------------------------------------------------------------------------------- /src/desktop/native/preload/tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/native/preload/tray.js -------------------------------------------------------------------------------- /src/desktop/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/npm-shrinkwrap.json -------------------------------------------------------------------------------- /src/desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/package.json -------------------------------------------------------------------------------- /src/desktop/patches/app-builder-lib+22.5.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/patches/app-builder-lib+22.5.1.patch -------------------------------------------------------------------------------- /src/desktop/patches/electron-updater+4.0.14.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/patches/electron-updater+4.0.14.patch -------------------------------------------------------------------------------- /src/desktop/scripts/jestEnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/scripts/jestEnv.js -------------------------------------------------------------------------------- /src/desktop/scripts/jestLibs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/scripts/jestLibs.js -------------------------------------------------------------------------------- /src/desktop/scripts/jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/scripts/jestSetup.js -------------------------------------------------------------------------------- /src/desktop/scripts/jestTeardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/scripts/jestTeardown.js -------------------------------------------------------------------------------- /src/desktop/scripts/notarize.macos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/scripts/notarize.macos.js -------------------------------------------------------------------------------- /src/desktop/scripts/webpackServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/scripts/webpackServer.js -------------------------------------------------------------------------------- /src/desktop/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/index.js -------------------------------------------------------------------------------- /src/desktop/src/libs/SeedStore/Keychain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/libs/SeedStore/Keychain.js -------------------------------------------------------------------------------- /src/desktop/src/libs/SeedStore/Ledger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/libs/SeedStore/Ledger.js -------------------------------------------------------------------------------- /src/desktop/src/libs/SeedStore/SeedStoreCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/libs/SeedStore/SeedStoreCore.js -------------------------------------------------------------------------------- /src/desktop/src/libs/SeedStore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/libs/SeedStore/index.js -------------------------------------------------------------------------------- /src/desktop/src/libs/bugsnag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/libs/bugsnag.js -------------------------------------------------------------------------------- /src/desktop/src/libs/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/libs/constants.js -------------------------------------------------------------------------------- /src/desktop/src/libs/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/libs/crypto.js -------------------------------------------------------------------------------- /src/desktop/src/libs/realm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/libs/realm.js -------------------------------------------------------------------------------- /src/desktop/src/libs/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/libs/storage.js -------------------------------------------------------------------------------- /src/desktop/src/ui/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/Index.js -------------------------------------------------------------------------------- /src/desktop/src/ui/Tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/Tray.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Balance.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Button.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Chart.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Checkbox.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Checksum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Checksum.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Clipboard.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Dropzone.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Icon.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Info.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/List.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Loading.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Loading.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Logo.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Lottie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Lottie.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Progress.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/QR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/QR.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Scrollbar.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/SeedPrint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/SeedPrint.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Tab.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Toggle.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Tooltip.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Transaction.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/Waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/Waves.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/balance.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/balance.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/button.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/chart.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/checkbox.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/clipboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/clipboard.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/dropzone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/dropzone.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/icon.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/info.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/input/Address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/input/Address.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/input/Amount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/input/Amount.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/input/Number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/input/Number.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/input/Password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/input/Password.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/input/Seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/input/Seed.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/input/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/input/Select.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/input/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/input/Text.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/input/input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/input/input.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/list.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/logo.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/modal/Confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/modal/Confirm.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/modal/Modal.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/modal/Password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/modal/Password.js -------------------------------------------------------------------------------- /src/desktop/src/ui/components/modal/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/modal/modal.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/progress.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/scrollbar.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/seedPrint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/seedPrint.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/tab.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/toggle.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/tooltip.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/components/waves.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/components/waves.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/global/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/About.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/Alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/Alerts.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/ErrorLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/ErrorLog.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/FatalError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/FatalError.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/Idle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/Idle.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/Migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/Migration.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/Polling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/Polling.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/SeedExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/SeedExport.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/Theme.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/Titlebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/Titlebar.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/UpdateProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/UpdateProgress.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/about.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/global/alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/alerts.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/global/seedExport.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/seedExport.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/global/seedStore/Ledger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/seedStore/Ledger.js -------------------------------------------------------------------------------- /src/desktop/src/ui/global/seedStore/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/seedStore/index.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/global/theming.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/theming.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/global/titlebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/global/titlebar.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/index.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/style/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/style/_animations.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/style/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/style/_reset.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/style/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/style/_typography.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/tray.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/tray.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/views/onboarding/Done.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/onboarding/Done.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/onboarding/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/onboarding/Index.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/onboarding/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/onboarding/Login.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/onboarding/SeedIntro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/onboarding/SeedIntro.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/onboarding/SeedSave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/onboarding/SeedSave.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/onboarding/SeedVerify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/onboarding/SeedVerify.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/onboarding/Welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/onboarding/Welcome.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/onboarding/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/onboarding/index.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/views/onboarding/welcome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/onboarding/welcome.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/Advanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/Advanced.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/Currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/Currency.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/Index.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/Language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/Language.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/Mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/Mode.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/Node.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/NodeCustom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/NodeCustom.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/Password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/Password.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/Theme.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/account/Name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/account/Name.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/account/Seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/account/Seed.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/settings/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/settings/index.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/views/wallet/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/wallet/Dashboard.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/wallet/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/wallet/Index.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/wallet/Receive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/wallet/Receive.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/wallet/Send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/wallet/Send.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/wallet/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/wallet/Sidebar.js -------------------------------------------------------------------------------- /src/desktop/src/ui/views/wallet/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/wallet/dashboard.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/views/wallet/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/wallet/index.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/views/wallet/receive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/wallet/receive.scss -------------------------------------------------------------------------------- /src/desktop/src/ui/views/wallet/send.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/src/ui/views/wallet/send.scss -------------------------------------------------------------------------------- /src/desktop/webpack.config/config.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/webpack.config/config.app.js -------------------------------------------------------------------------------- /src/desktop/webpack.config/config.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/webpack.config/config.main.js -------------------------------------------------------------------------------- /src/desktop/webpack.config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/desktop/webpack.config/index.js -------------------------------------------------------------------------------- /src/mobile/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/.babelrc -------------------------------------------------------------------------------- /src/mobile/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/.buckconfig -------------------------------------------------------------------------------- /src/mobile/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | rules: 2 | import/named: 0 3 | -------------------------------------------------------------------------------- /src/mobile/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /src/mobile/.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/.snyk -------------------------------------------------------------------------------- /src/mobile/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/mobile/.yarnrc: -------------------------------------------------------------------------------- 1 | version-tag-prefix mobile-v 2 | -------------------------------------------------------------------------------- /src/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/README.md -------------------------------------------------------------------------------- /src/mobile/__mocks__/react-native-device-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__mocks__/react-native-device-info.js -------------------------------------------------------------------------------- /src/mobile/__mocks__/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__mocks__/theme.js -------------------------------------------------------------------------------- /src/mobile/__tests__/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__tests__/.eslintrc.yml -------------------------------------------------------------------------------- /src/mobile/__tests__/libs/crypto.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__tests__/libs/crypto.spec.js -------------------------------------------------------------------------------- /src/mobile/__tests__/libs/keychain.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__tests__/libs/keychain.spec.js -------------------------------------------------------------------------------- /src/mobile/__tests__/ui/components/Header.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__tests__/ui/components/Header.spec.js -------------------------------------------------------------------------------- /src/mobile/__tests__/ui/components/Letter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__tests__/ui/components/Letter.spec.js -------------------------------------------------------------------------------- /src/mobile/__tests__/ui/components/Poll.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__tests__/ui/components/Poll.spec.js -------------------------------------------------------------------------------- /src/mobile/__tests__/ui/components/Tab.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__tests__/ui/components/Tab.spec.js -------------------------------------------------------------------------------- /src/mobile/__tests__/ui/views/wallet/Send.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/__tests__/ui/views/wallet/Send.spec.js -------------------------------------------------------------------------------- /src/mobile/android/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/Gemfile -------------------------------------------------------------------------------- /src/mobile/android/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/Gemfile.lock -------------------------------------------------------------------------------- /src/mobile/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/app/BUCK -------------------------------------------------------------------------------- /src/mobile/android/app/bin/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/app/bin/BUCK -------------------------------------------------------------------------------- /src/mobile/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/app/build.gradle -------------------------------------------------------------------------------- /src/mobile/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /src/mobile/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/build.gradle -------------------------------------------------------------------------------- /src/mobile/android/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/fastlane/Appfile -------------------------------------------------------------------------------- /src/mobile/android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/fastlane/Fastfile -------------------------------------------------------------------------------- /src/mobile/android/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/fastlane/Pluginfile -------------------------------------------------------------------------------- /src/mobile/android/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/fastlane/README.md -------------------------------------------------------------------------------- /src/mobile/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/gradle.properties -------------------------------------------------------------------------------- /src/mobile/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/gradlew -------------------------------------------------------------------------------- /src/mobile/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/gradlew.bat -------------------------------------------------------------------------------- /src/mobile/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/keystores/BUCK -------------------------------------------------------------------------------- /src/mobile/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/android/settings.gradle -------------------------------------------------------------------------------- /src/mobile/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/app.json -------------------------------------------------------------------------------- /src/mobile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/index.js -------------------------------------------------------------------------------- /src/mobile/ios/Argon2/Argon2Core.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/Argon2/Argon2Core.swift -------------------------------------------------------------------------------- /src/mobile/ios/Argon2/Argon2IOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/Argon2/Argon2IOS.m -------------------------------------------------------------------------------- /src/mobile/ios/Argon2/Argon2IOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/Argon2/Argon2IOS.swift -------------------------------------------------------------------------------- /src/mobile/ios/Config/buildnumber.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/Config/buildnumber.xcconfig -------------------------------------------------------------------------------- /src/mobile/ios/EntangledIOS/EntangledIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/EntangledIOS/EntangledIOS.h -------------------------------------------------------------------------------- /src/mobile/ios/EntangledIOS/EntangledIOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/EntangledIOS/EntangledIOS.m -------------------------------------------------------------------------------- /src/mobile/ios/EntangledIOS/EntangledIOSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/EntangledIOS/EntangledIOSUtils.h -------------------------------------------------------------------------------- /src/mobile/ios/EntangledIOS/EntangledIOSUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/EntangledIOS/EntangledIOSUtils.m -------------------------------------------------------------------------------- /src/mobile/ios/EntangledIOS/EntangledKit.framework/Headers/EntangledKit.h: -------------------------------------------------------------------------------- 1 | #import "Interface.h" 2 | -------------------------------------------------------------------------------- /src/mobile/ios/EntangledIOS/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/EntangledIOS/bindings.h -------------------------------------------------------------------------------- /src/mobile/ios/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/Gemfile -------------------------------------------------------------------------------- /src/mobile/ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/Gemfile.lock -------------------------------------------------------------------------------- /src/mobile/ios/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/Launch Screen.storyboard -------------------------------------------------------------------------------- /src/mobile/ios/NativeUtils/NativeUtilsIOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/NativeUtils/NativeUtilsIOS.m -------------------------------------------------------------------------------- /src/mobile/ios/NativeUtils/NativeUtilsIOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/NativeUtils/NativeUtilsIOS.swift -------------------------------------------------------------------------------- /src/mobile/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/Podfile -------------------------------------------------------------------------------- /src/mobile/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/Podfile.lock -------------------------------------------------------------------------------- /src/mobile/ios/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /src/mobile/ios/SourceSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /src/mobile/ios/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /src/mobile/ios/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/ar.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/ar.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/cs.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/cs.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/da.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/da.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/de.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/el.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/el.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/en.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/es-419.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/es-419.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/es-419.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/es.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/es.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/fastlane/Deliverfile -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/fastlane/Pluginfile -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/fastlane/README.md -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/fastlane/Snapfile -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/fastlane/SnapshotHelper.swift -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/metadata/en-GB/name.txt: -------------------------------------------------------------------------------- 1 | Trinity Wallet 2 | -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/metadata/en-GB/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/metadata/en-GB/release_notes.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/metadata/en-GB/subtitle.txt: -------------------------------------------------------------------------------- 1 | The user-friendly IOTA wallet 2 | -------------------------------------------------------------------------------- /src/mobile/ios/fastlane/metadata/en-GB/support_url.txt: -------------------------------------------------------------------------------- 1 | https://docs.iota.org/trinity 2 | -------------------------------------------------------------------------------- /src/mobile/ios/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/fi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/fi.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/fr.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/he.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/he.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/hi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/hi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/hi.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/id.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/id.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/iotaWallet-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWallet-tvOS/Info.plist -------------------------------------------------------------------------------- /src/mobile/ios/iotaWallet-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWallet-tvOSTests/Info.plist -------------------------------------------------------------------------------- /src/mobile/ios/iotaWallet/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWallet/AppDelegate.h -------------------------------------------------------------------------------- /src/mobile/ios/iotaWallet/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWallet/AppDelegate.m -------------------------------------------------------------------------------- /src/mobile/ios/iotaWallet/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWallet/Empty.swift -------------------------------------------------------------------------------- /src/mobile/ios/iotaWallet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWallet/Info.plist -------------------------------------------------------------------------------- /src/mobile/ios/iotaWallet/iotaWallet.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWallet/iotaWallet.entitlements -------------------------------------------------------------------------------- /src/mobile/ios/iotaWallet/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWallet/main.m -------------------------------------------------------------------------------- /src/mobile/ios/iotaWalletTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWalletTests/Info.plist -------------------------------------------------------------------------------- /src/mobile/ios/iotaWalletTests/iotaWalletTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWalletTests/iotaWalletTests.m -------------------------------------------------------------------------------- /src/mobile/ios/iotaWalletUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/iotaWalletUITests/Info.plist -------------------------------------------------------------------------------- /src/mobile/ios/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/it.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/ja.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/ko.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/ko.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ar.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ar.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/bg.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/bg.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ca.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ca.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/cs.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/cs.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/da.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/da.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/de.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/de.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/de_CH.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/de_CH.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/el.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/el.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/en.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/es-419.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/es-419.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/es.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/es.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/es_419.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/es_419.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/et.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/et.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/fa.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/fa.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/fi.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/fi.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/fr.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/fr.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/he.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/he.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/hi.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/hi.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/hr.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/hr.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/hu.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/hu.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/id.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/id.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/it.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/it.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ja.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ja.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ka.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ka.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/kn.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/kn.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ko.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ko.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/lt.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/lt.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/lv.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/lv.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/mi.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/mi.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ml.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ml.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/nb.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/nb.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/nl.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/nl.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/no.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/no.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/pl.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/pl.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/pt-BR.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/pt-BR.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/pt-PT.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/pt-PT.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/pt.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/pt.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/pt_BR.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/pt_BR.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ro.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ro.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ru.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ru.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/sk.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/sk.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/sl.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/sl.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/sr_CS.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/sr_CS.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/sr_Latn.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/sr_Latn.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/sv.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/sv.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ta.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ta.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/th.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/th.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/tr.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/tr.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/ur.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/ur.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/vi.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/vi.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/zh-Hans.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/zh-Hans.xliff -------------------------------------------------------------------------------- /src/mobile/ios/localizations/zh-Hant.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/localizations/zh-Hant.xliff -------------------------------------------------------------------------------- /src/mobile/ios/lv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/lv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/lv.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/nb.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/nb.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/nl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/nl.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/pl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/pl.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/pt-BR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/pt-BR.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/pt-BR.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/pt-PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/pt-PT.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/pt-PT.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/ro.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/ro.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/ru.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/sk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/sk.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/sl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/sl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/sl.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/sv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/sv.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/tr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/tr.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/ur.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/ur.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/ur.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/zh-Hans.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/ios/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/ios/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/mobile/ios/zh-Hant.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/mobile/nodejs-assets/nodejs-project/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/nodejs-assets/nodejs-project/main.js -------------------------------------------------------------------------------- /src/mobile/nodejs-assets/nodejs-project/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/nodejs-assets/nodejs-project/yarn.lock -------------------------------------------------------------------------------- /src/mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/package.json -------------------------------------------------------------------------------- /src/mobile/patches/buffer+4.9.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/patches/buffer+4.9.1.patch -------------------------------------------------------------------------------- /src/mobile/patches/react-native+0.59.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/patches/react-native+0.59.10.patch -------------------------------------------------------------------------------- /src/mobile/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/rn-cli.config.js -------------------------------------------------------------------------------- /src/mobile/safetynet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/safetynet.sh -------------------------------------------------------------------------------- /src/mobile/scripts/build-entangled-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/scripts/build-entangled-android.sh -------------------------------------------------------------------------------- /src/mobile/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/shim.js -------------------------------------------------------------------------------- /src/mobile/src/libs/SeedStore/Keychain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/SeedStore/Keychain.js -------------------------------------------------------------------------------- /src/mobile/src/libs/SeedStore/SeedStoreCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/SeedStore/SeedStoreCore.js -------------------------------------------------------------------------------- /src/mobile/src/libs/SeedStore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/SeedStore/index.js -------------------------------------------------------------------------------- /src/mobile/src/libs/bugsnag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/bugsnag.js -------------------------------------------------------------------------------- /src/mobile/src/libs/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/crypto.js -------------------------------------------------------------------------------- /src/mobile/src/libs/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/device.js -------------------------------------------------------------------------------- /src/mobile/src/libs/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/dimensions.js -------------------------------------------------------------------------------- /src/mobile/src/libs/keychain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/keychain.js -------------------------------------------------------------------------------- /src/mobile/src/libs/nativeModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/nativeModules.js -------------------------------------------------------------------------------- /src/mobile/src/libs/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/navigation.js -------------------------------------------------------------------------------- /src/mobile/src/libs/progressSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/progressSteps.js -------------------------------------------------------------------------------- /src/mobile/src/libs/realm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/realm.js -------------------------------------------------------------------------------- /src/mobile/src/libs/safetynet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/safetynet.js -------------------------------------------------------------------------------- /src/mobile/src/libs/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/libs/store.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/AmountTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/AmountTextInput.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/AnimatedComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/AnimatedComponent.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/BackPress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/BackPress.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Button.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Chart.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Checksum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Checksum.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/ChecksumModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/ChecksumModal.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/CtaButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/CtaButton.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/CustomQRCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/CustomQRCode.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/CustomTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/CustomTextInput.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/DeepLinking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/DeepLinking.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Dropdown.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/DualFooterButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/DualFooterButtons.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/DynamicStatusBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/DynamicStatusBar.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/EnterPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/EnterPassword.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/FingerprintModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/FingerprintModal.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Header.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/InfoBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/InfoBox.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/KeyboardMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/KeyboardMonitor.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Letter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Letter.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Logout.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/ManualRefresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/ManualRefresh.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Migration.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/ModalButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/ModalButtons.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/ModalComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/ModalComponent.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/ModalView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/ModalView.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/MultiTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/MultiTextInput.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/OldProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/OldProgressBar.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/PasswordFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/PasswordFields.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Poll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Poll.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/PrintModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/PrintModal.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/QrScanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/QrScanner.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/SafeAreaView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/SafeAreaView.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/ScramblingLetter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/ScramblingLetter.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/ScramblingText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/ScramblingText.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/SeedInfoModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/SeedInfoModal.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/SeedPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/SeedPicker.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/SendProgressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/SendProgressBar.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/SettingsContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/SettingsContent.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/SettingsRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/SettingsRow.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/SettingsSeparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/SettingsSeparator.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Slider.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Tab.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/TabContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/TabContent.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Tabs.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/Toggle.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/TopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/TopBar.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/TransactionRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/TransactionRow.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/UnitInfoModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/UnitInfoModal.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/UserActivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/UserActivity.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/UserInactivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/UserInactivity.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/WithDropdownAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/WithDropdownAlert.js -------------------------------------------------------------------------------- /src/mobile/src/ui/components/WithStatusBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/components/WithStatusBar.js -------------------------------------------------------------------------------- /src/mobile/src/ui/routes/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/routes/entry.js -------------------------------------------------------------------------------- /src/mobile/src/ui/routes/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/routes/navigation.js -------------------------------------------------------------------------------- /src/mobile/src/ui/theme/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/theme/fonts.js -------------------------------------------------------------------------------- /src/mobile/src/ui/theme/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/theme/general.js -------------------------------------------------------------------------------- /src/mobile/src/ui/theme/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/theme/icons.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/onboarding/EnterSeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/onboarding/EnterSeed.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/onboarding/SeedReentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/onboarding/SeedReentry.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/onboarding/SetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/onboarding/SetPassword.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/onboarding/WalletSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/onboarding/WalletSetup.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/onboarding/Welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/onboarding/Welcome.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/About.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/AddCustomNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/AddCustomNode.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/AddNewAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/AddNewAccount.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/AutoPromotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/AutoPromotion.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/Balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/Balance.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/ChangePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/ChangePassword.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/DeepLinking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/DeepLinking.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/DeleteAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/DeleteAccount.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/EditAccountName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/EditAccountName.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/Help.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/History.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/History.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/Home.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/Loading.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/Login.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/MainSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/MainSettings.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/ManualSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/ManualSync.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/ModeSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/ModeSelection.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/NodeSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/NodeSettings.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/Receive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/Receive.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/Send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/Send.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/Settings.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/StateExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/StateExport.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/UseExistingSeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/UseExistingSeed.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/ViewAddresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/ViewAddresses.js -------------------------------------------------------------------------------- /src/mobile/src/ui/views/wallet/ViewSeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/src/ui/views/wallet/ViewSeed.js -------------------------------------------------------------------------------- /src/mobile/testConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/testConfig.js -------------------------------------------------------------------------------- /src/mobile/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/mobile/yarn.lock -------------------------------------------------------------------------------- /src/shared/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/.babelrc -------------------------------------------------------------------------------- /src/shared/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/.eslintrc.yml -------------------------------------------------------------------------------- /src/shared/.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/.snyk -------------------------------------------------------------------------------- /src/shared/__tests__/__samples__/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/__samples__/accounts.js -------------------------------------------------------------------------------- /src/shared/__tests__/__samples__/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/__samples__/addresses.js -------------------------------------------------------------------------------- /src/shared/__tests__/__samples__/bundles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/__samples__/bundles.js -------------------------------------------------------------------------------- /src/shared/__tests__/__samples__/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/__samples__/transactions.js -------------------------------------------------------------------------------- /src/shared/__tests__/__samples__/trytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/__samples__/trytes.js -------------------------------------------------------------------------------- /src/shared/__tests__/actions/accounts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/actions/accounts.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/actions/transfers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/actions/transfers.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/beforeAll.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/beforeAll.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/libs/i18n.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/libs/i18n.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/libs/iota/accounts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/libs/iota/accounts.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/libs/iota/addresses.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/libs/iota/addresses.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/libs/iota/inputs.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/libs/iota/inputs.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/libs/iota/quorum.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/libs/iota/quorum.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/libs/iota/recovery.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/libs/iota/recovery.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/libs/iota/transfers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/libs/iota/transfers.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/libs/iota/utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/libs/iota/utils.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/libs/utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/libs/utils.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/middlewares/alerts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/middlewares/alerts.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/middlewares/network.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/middlewares/network.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/reducers/accounts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/reducers/accounts.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/reducers/alerts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/reducers/alerts.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/reducers/home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/reducers/home.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/reducers/marketData.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/reducers/marketData.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/reducers/polling.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/reducers/polling.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/reducers/progress.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/reducers/progress.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/reducers/settings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/reducers/settings.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/reducers/ui.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/reducers/ui.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/reducers/wallet.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/reducers/wallet.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/selectors/accounts.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/selectors/accounts.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/selectors/global.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/selectors/global.spec.js -------------------------------------------------------------------------------- /src/shared/__tests__/storage/node.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/__tests__/storage/node.spec.js -------------------------------------------------------------------------------- /src/shared/actions/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/accounts.js -------------------------------------------------------------------------------- /src/shared/actions/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/alerts.js -------------------------------------------------------------------------------- /src/shared/actions/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/home.js -------------------------------------------------------------------------------- /src/shared/actions/keychain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/keychain.js -------------------------------------------------------------------------------- /src/shared/actions/marketData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/marketData.js -------------------------------------------------------------------------------- /src/shared/actions/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/migrations.js -------------------------------------------------------------------------------- /src/shared/actions/polling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/polling.js -------------------------------------------------------------------------------- /src/shared/actions/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/progress.js -------------------------------------------------------------------------------- /src/shared/actions/recovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/recovery.js -------------------------------------------------------------------------------- /src/shared/actions/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/settings.js -------------------------------------------------------------------------------- /src/shared/actions/transfers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/transfers.js -------------------------------------------------------------------------------- /src/shared/actions/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/ui.js -------------------------------------------------------------------------------- /src/shared/actions/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/actions/wallet.js -------------------------------------------------------------------------------- /src/shared/animations/fingerprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/fingerprint.json -------------------------------------------------------------------------------- /src/shared/animations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/index.js -------------------------------------------------------------------------------- /src/shared/animations/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/language.json -------------------------------------------------------------------------------- /src/shared/animations/ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/ledger.json -------------------------------------------------------------------------------- /src/shared/animations/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/loading.json -------------------------------------------------------------------------------- /src/shared/animations/logout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/logout.json -------------------------------------------------------------------------------- /src/shared/animations/onboardingComplete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/onboardingComplete.json -------------------------------------------------------------------------------- /src/shared/animations/progressLoading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/progressLoading.json -------------------------------------------------------------------------------- /src/shared/animations/progressSuccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/progressSuccess.json -------------------------------------------------------------------------------- /src/shared/animations/sending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/sending.json -------------------------------------------------------------------------------- /src/shared/animations/sendingDesktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/sendingDesktop.json -------------------------------------------------------------------------------- /src/shared/animations/spinner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/spinner.json -------------------------------------------------------------------------------- /src/shared/animations/welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/animations/welcome.json -------------------------------------------------------------------------------- /src/shared/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/config.js -------------------------------------------------------------------------------- /src/shared/containers/components/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/containers/components/Chart.js -------------------------------------------------------------------------------- /src/shared/containers/components/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/containers/components/List.js -------------------------------------------------------------------------------- /src/shared/containers/global/Alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/containers/global/Alerts.js -------------------------------------------------------------------------------- /src/shared/containers/settings/Currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/containers/settings/Currency.js -------------------------------------------------------------------------------- /src/shared/containers/settings/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/containers/settings/Node.js -------------------------------------------------------------------------------- /src/shared/containers/wallet/Send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/containers/wallet/Send.js -------------------------------------------------------------------------------- /src/shared/custom-fonts/SourceCodePro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/custom-fonts/SourceCodePro-Medium.ttf -------------------------------------------------------------------------------- /src/shared/custom-fonts/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/custom-fonts/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /src/shared/custom-fonts/SourceSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/custom-fonts/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /src/shared/icons/Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/Icons.svg -------------------------------------------------------------------------------- /src/shared/icons/Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/Icons.ttf -------------------------------------------------------------------------------- /src/shared/icons/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/generate.js -------------------------------------------------------------------------------- /src/shared/icons/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons.js -------------------------------------------------------------------------------- /src/shared/icons/icons/addresses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/addresses.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/advanced.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/advanced.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/arrowDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/arrowDown.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/arrowLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/arrowLeft.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/arrowRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/arrowRight.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/arrowUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/arrowUp.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/attention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/attention.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/biometric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/biometric.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/bookmark.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/camera.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/cameraFlip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/cameraFlip.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/chart.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/chevronDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/chevronDown.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/chevronLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/chevronLeft.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/chevronRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/chevronRight.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/chevronUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/chevronUp.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/copy.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/cross.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/currency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/currency.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/edit.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/eye.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/eyeSlash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/eyeSlash.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/fingerprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/fingerprint.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/fingerprintDisabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/fingerprintDisabled.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/help.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/history.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/info.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/iota.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/iota.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/key.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/keyVertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/keyVertical.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/language.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/link.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/logout.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/minus.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/mode.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/node.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/notification.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/password.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/plus.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/plusAlt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/plusAlt.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/pow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/pow.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/print.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/receive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/receive.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/search.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/security.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/send.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/settings.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/settingsAlt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/settingsAlt.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/snapshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/snapshot.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/sync.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/theme.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/tick.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/tickRound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/tickRound.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/trash.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/twoFA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/twoFA.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/user.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/vault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/vault.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/wallet.svg -------------------------------------------------------------------------------- /src/shared/icons/icons/write.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/icons/icons/write.svg -------------------------------------------------------------------------------- /src/shared/images/PaperWallets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/PaperWallets.js -------------------------------------------------------------------------------- /src/shared/images/checkbox-checked-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/checkbox-checked-black.png -------------------------------------------------------------------------------- /src/shared/images/checkbox-checked-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/checkbox-checked-white.png -------------------------------------------------------------------------------- /src/shared/images/checkbox-unchecked-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/checkbox-unchecked-black.png -------------------------------------------------------------------------------- /src/shared/images/checkbox-unchecked-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/checkbox-unchecked-white.png -------------------------------------------------------------------------------- /src/shared/images/circle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/circle-black.png -------------------------------------------------------------------------------- /src/shared/images/circle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/circle-white.png -------------------------------------------------------------------------------- /src/shared/images/dot-circle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/dot-circle-black.png -------------------------------------------------------------------------------- /src/shared/images/dot-circle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/dot-circle-white.png -------------------------------------------------------------------------------- /src/shared/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/error.png -------------------------------------------------------------------------------- /src/shared/images/infoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/infoIcon.png -------------------------------------------------------------------------------- /src/shared/images/successIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/successIcon.png -------------------------------------------------------------------------------- /src/shared/images/warnIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/images/warnIcon.png -------------------------------------------------------------------------------- /src/shared/libs/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/crypto.js -------------------------------------------------------------------------------- /src/shared/libs/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/currency.js -------------------------------------------------------------------------------- /src/shared/libs/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/date.js -------------------------------------------------------------------------------- /src/shared/libs/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/errors.js -------------------------------------------------------------------------------- /src/shared/libs/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/exports.js -------------------------------------------------------------------------------- /src/shared/libs/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/global.js -------------------------------------------------------------------------------- /src/shared/libs/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/html.js -------------------------------------------------------------------------------- /src/shared/libs/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/i18n.js -------------------------------------------------------------------------------- /src/shared/libs/i18next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/i18next.js -------------------------------------------------------------------------------- /src/shared/libs/iota/NodesManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/NodesManager.js -------------------------------------------------------------------------------- /src/shared/libs/iota/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/accounts.js -------------------------------------------------------------------------------- /src/shared/libs/iota/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/addresses.js -------------------------------------------------------------------------------- /src/shared/libs/iota/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/converter.js -------------------------------------------------------------------------------- /src/shared/libs/iota/extendedApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/extendedApi.js -------------------------------------------------------------------------------- /src/shared/libs/iota/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/index.js -------------------------------------------------------------------------------- /src/shared/libs/iota/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/inputs.js -------------------------------------------------------------------------------- /src/shared/libs/iota/quorum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/quorum.js -------------------------------------------------------------------------------- /src/shared/libs/iota/recovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/recovery.js -------------------------------------------------------------------------------- /src/shared/libs/iota/transfers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/transfers.js -------------------------------------------------------------------------------- /src/shared/libs/iota/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/iota/utils.js -------------------------------------------------------------------------------- /src/shared/libs/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/migrations.js -------------------------------------------------------------------------------- /src/shared/libs/originalRequire.js: -------------------------------------------------------------------------------- 1 | module.exports = require; 2 | -------------------------------------------------------------------------------- /src/shared/libs/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/password.js -------------------------------------------------------------------------------- /src/shared/libs/storageToStateMappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/storageToStateMappers.js -------------------------------------------------------------------------------- /src/shared/libs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/utils.js -------------------------------------------------------------------------------- /src/shared/libs/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/libs/versions.json -------------------------------------------------------------------------------- /src/shared/locales/ar/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ar/translation.json -------------------------------------------------------------------------------- /src/shared/locales/bg/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/bg/translation.json -------------------------------------------------------------------------------- /src/shared/locales/ca/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ca/translation.json -------------------------------------------------------------------------------- /src/shared/locales/cs/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/cs/translation.json -------------------------------------------------------------------------------- /src/shared/locales/da/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/da/translation.json -------------------------------------------------------------------------------- /src/shared/locales/de-CH/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/de-CH/translation.json -------------------------------------------------------------------------------- /src/shared/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/de/translation.json -------------------------------------------------------------------------------- /src/shared/locales/el/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/el/translation.json -------------------------------------------------------------------------------- /src/shared/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/en/translation.json -------------------------------------------------------------------------------- /src/shared/locales/es-ES/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/es-ES/translation.json -------------------------------------------------------------------------------- /src/shared/locales/es-LA/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/es-LA/translation.json -------------------------------------------------------------------------------- /src/shared/locales/et/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/et/translation.json -------------------------------------------------------------------------------- /src/shared/locales/fa/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/fa/translation.json -------------------------------------------------------------------------------- /src/shared/locales/fi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/fi/translation.json -------------------------------------------------------------------------------- /src/shared/locales/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/fr/translation.json -------------------------------------------------------------------------------- /src/shared/locales/he/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/he/translation.json -------------------------------------------------------------------------------- /src/shared/locales/hi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/hi/translation.json -------------------------------------------------------------------------------- /src/shared/locales/hr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/hr/translation.json -------------------------------------------------------------------------------- /src/shared/locales/hu/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/hu/translation.json -------------------------------------------------------------------------------- /src/shared/locales/id/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/id/translation.json -------------------------------------------------------------------------------- /src/shared/locales/it/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/it/translation.json -------------------------------------------------------------------------------- /src/shared/locales/ja/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ja/translation.json -------------------------------------------------------------------------------- /src/shared/locales/ka/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ka/translation.json -------------------------------------------------------------------------------- /src/shared/locales/kn/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/kn/translation.json -------------------------------------------------------------------------------- /src/shared/locales/ko/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ko/translation.json -------------------------------------------------------------------------------- /src/shared/locales/lt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/lt/translation.json -------------------------------------------------------------------------------- /src/shared/locales/lv/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/lv/translation.json -------------------------------------------------------------------------------- /src/shared/locales/mi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/mi/translation.json -------------------------------------------------------------------------------- /src/shared/locales/ml/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ml/translation.json -------------------------------------------------------------------------------- /src/shared/locales/nl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/nl/translation.json -------------------------------------------------------------------------------- /src/shared/locales/no/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/no/translation.json -------------------------------------------------------------------------------- /src/shared/locales/pl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/pl/translation.json -------------------------------------------------------------------------------- /src/shared/locales/pt-BR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/pt-BR/translation.json -------------------------------------------------------------------------------- /src/shared/locales/pt-PT/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/pt-PT/translation.json -------------------------------------------------------------------------------- /src/shared/locales/ro/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ro/translation.json -------------------------------------------------------------------------------- /src/shared/locales/ru/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ru/translation.json -------------------------------------------------------------------------------- /src/shared/locales/sk/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/sk/translation.json -------------------------------------------------------------------------------- /src/shared/locales/sl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/sl/translation.json -------------------------------------------------------------------------------- /src/shared/locales/sr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/sr/translation.json -------------------------------------------------------------------------------- /src/shared/locales/sv-SE/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/sv-SE/translation.json -------------------------------------------------------------------------------- /src/shared/locales/ta/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ta/translation.json -------------------------------------------------------------------------------- /src/shared/locales/th/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/th/translation.json -------------------------------------------------------------------------------- /src/shared/locales/tr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/tr/translation.json -------------------------------------------------------------------------------- /src/shared/locales/ur/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/ur/translation.json -------------------------------------------------------------------------------- /src/shared/locales/vi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/vi/translation.json -------------------------------------------------------------------------------- /src/shared/locales/zh-CN/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/zh-CN/translation.json -------------------------------------------------------------------------------- /src/shared/locales/zh-TW/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/locales/zh-TW/translation.json -------------------------------------------------------------------------------- /src/shared/markdown/dePrivacyPolicyAndroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/markdown/dePrivacyPolicyAndroid.js -------------------------------------------------------------------------------- /src/shared/markdown/dePrivacyPolicyIOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/markdown/dePrivacyPolicyIOS.js -------------------------------------------------------------------------------- /src/shared/markdown/deTermsAndConditionsIOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/markdown/deTermsAndConditionsIOS.js -------------------------------------------------------------------------------- /src/shared/markdown/enPrivacyPolicyAndroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/markdown/enPrivacyPolicyAndroid.js -------------------------------------------------------------------------------- /src/shared/markdown/enPrivacyPolicyIOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/markdown/enPrivacyPolicyIOS.js -------------------------------------------------------------------------------- /src/shared/markdown/enTermsAndConditionsIOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/markdown/enTermsAndConditionsIOS.js -------------------------------------------------------------------------------- /src/shared/markdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/markdown/index.js -------------------------------------------------------------------------------- /src/shared/middlewares/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/middlewares/alerts.js -------------------------------------------------------------------------------- /src/shared/middlewares/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/middlewares/modal.js -------------------------------------------------------------------------------- /src/shared/middlewares/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/middlewares/network.js -------------------------------------------------------------------------------- /src/shared/middlewares/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/middlewares/version.js -------------------------------------------------------------------------------- /src/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/package.json -------------------------------------------------------------------------------- /src/shared/reducers/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/accounts.js -------------------------------------------------------------------------------- /src/shared/reducers/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/alerts.js -------------------------------------------------------------------------------- /src/shared/reducers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/home.js -------------------------------------------------------------------------------- /src/shared/reducers/keychain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/keychain.js -------------------------------------------------------------------------------- /src/shared/reducers/marketData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/marketData.js -------------------------------------------------------------------------------- /src/shared/reducers/polling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/polling.js -------------------------------------------------------------------------------- /src/shared/reducers/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/progress.js -------------------------------------------------------------------------------- /src/shared/reducers/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/settings.js -------------------------------------------------------------------------------- /src/shared/reducers/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/ui.js -------------------------------------------------------------------------------- /src/shared/reducers/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/reducers/wallet.js -------------------------------------------------------------------------------- /src/shared/schemas/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/default.js -------------------------------------------------------------------------------- /src/shared/schemas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v0/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v0/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v1/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v10/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v10/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v2/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v3/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v4/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v4/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v5/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v6/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v7/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v7/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v8/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v8/index.js -------------------------------------------------------------------------------- /src/shared/schemas/v9/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/schemas/v9/index.js -------------------------------------------------------------------------------- /src/shared/selectors/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/selectors/accounts.js -------------------------------------------------------------------------------- /src/shared/selectors/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/selectors/global.js -------------------------------------------------------------------------------- /src/shared/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/storage/index.js -------------------------------------------------------------------------------- /src/shared/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/store.js -------------------------------------------------------------------------------- /src/shared/themes/paper-wallet-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/paper-wallet-filled.svg -------------------------------------------------------------------------------- /src/shared/themes/paper-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/paper-wallet.svg -------------------------------------------------------------------------------- /src/shared/themes/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/sync.js -------------------------------------------------------------------------------- /src/shared/themes/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes.js -------------------------------------------------------------------------------- /src/shared/themes/themes/Classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes/Classic.js -------------------------------------------------------------------------------- /src/shared/themes/themes/Contemporary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes/Contemporary.js -------------------------------------------------------------------------------- /src/shared/themes/themes/Dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes/Dark.js -------------------------------------------------------------------------------- /src/shared/themes/themes/Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes/Default.js -------------------------------------------------------------------------------- /src/shared/themes/themes/Electric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes/Electric.js -------------------------------------------------------------------------------- /src/shared/themes/themes/Ionic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes/Ionic.js -------------------------------------------------------------------------------- /src/shared/themes/themes/Light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes/Light.js -------------------------------------------------------------------------------- /src/shared/themes/themes/Mint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes/Mint.js -------------------------------------------------------------------------------- /src/shared/themes/themes/SteelBlue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/themes/themes/SteelBlue.js -------------------------------------------------------------------------------- /src/shared/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/types/index.js -------------------------------------------------------------------------------- /src/shared/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/src/shared/yarn.lock -------------------------------------------------------------------------------- /trinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/trinity.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iotaledger-archive/trinity-wallet/HEAD/yarn.lock --------------------------------------------------------------------------------