├── .babelrc ├── .bundle └── config ├── .env.demo ├── .env.dev ├── .env.release ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .node-version ├── .prettierrc.js ├── .travis.yml ├── .watchmanconfig ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── app │ │ │ └── ironbelly │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── fonts │ │ │ │ ├── Poppins-ExtraBold.ttf │ │ │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ │ │ ├── Poppins-ExtraLight.ttf │ │ │ │ ├── Poppins-ExtraLightItalic.ttf │ │ │ │ ├── Poppins-Italic.ttf │ │ │ │ ├── Poppins-Light.ttf │ │ │ │ ├── Poppins-LightItalic.ttf │ │ │ │ ├── Poppins-Medium.ttf │ │ │ │ ├── Poppins-MediumItalic.ttf │ │ │ │ ├── Poppins-Regular.ttf │ │ │ │ ├── Poppins-SemiBold.ttf │ │ │ │ ├── Poppins-SemiBoldItalic.ttf │ │ │ │ ├── Poppins-Thin.ttf │ │ │ │ └── Poppins-ThinItalic.ttf │ │ │ └── tor │ │ │ │ ├── bridges.txt │ │ │ │ ├── geoip │ │ │ │ └── geoip6 │ │ ├── java │ │ │ └── app │ │ │ │ └── ironbelly │ │ │ │ ├── CustomGrinBridge.java │ │ │ │ ├── GrinBridge.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ ├── SplashActivity.java │ │ │ │ └── tor │ │ │ │ ├── TorConfig.kt │ │ │ │ ├── TorProxyManager.kt │ │ │ │ ├── TorProxyState.kt │ │ │ │ └── TorResourceInstaller.kt │ │ ├── jniLibs │ │ │ └── Android.mk │ │ └── res │ │ │ ├── drawable │ │ │ ├── background_splash.xml │ │ │ └── rn_edit_text_material.xml │ │ │ ├── layout │ │ │ └── launch_screen.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── filepaths.xml │ │ │ └── network_security_config.xml │ │ └── release │ │ └── java │ │ └── app │ │ └── ironbelly │ │ └── ReactNativeFlipper.java ├── build.gradle ├── get_apk_from_aab.sh ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── docs ├── balance.png ├── balance.uml ├── navigation.png ├── navigation.uml ├── refresh.png ├── refresh.uml └── release_test.md ├── e2e ├── config.json ├── init.js ├── utils.js └── walletInit.spec.js ├── fastlane ├── Appfile ├── Deliverfile ├── Fastfile ├── Pluginfile ├── README.md ├── Snapfile └── SnapshotHelper.swift ├── index.js ├── ios ├── .xcode.env ├── .xcode.env.local ├── Cartfile ├── Cartfile.resolved ├── Ironbelly.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Ironbelly.xcscheme │ │ └── Snapshots.xcscheme ├── Ironbelly.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Ironbelly │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── icon_20pt.png │ │ │ ├── icon_20pt@2x-1.png │ │ │ ├── icon_20pt@2x.png │ │ │ ├── icon_20pt@3x.png │ │ │ ├── icon_29pt.png │ │ │ ├── icon_29pt@2x-1.png │ │ │ ├── icon_29pt@2x.png │ │ │ ├── icon_29pt@3x.png │ │ │ ├── icon_40pt.png │ │ │ ├── icon_40pt@2x-1.png │ │ │ ├── icon_40pt@2x.png │ │ │ ├── icon_40pt@3x.png │ │ │ ├── icon_60pt@2x.png │ │ │ ├── icon_60pt@3x.png │ │ │ ├── icon_76pt.png │ │ │ ├── icon_76pt@2x.png │ │ │ └── icon_83.5@2x.png │ │ ├── Contents.json │ │ └── LaunchLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchLogo.png │ │ │ ├── LaunchLogo@2x.png │ │ │ └── LaunchLogo@3x.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── GrinBridge.m │ ├── GrinBridge.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Tor │ │ ├── Helpers │ │ │ ├── Ipv6Tester.swift │ │ │ ├── NetworkTools.h │ │ │ └── NetworkTools.m │ │ ├── OnionConnector.swift │ │ ├── OnionManager.swift │ │ └── OnionSettings.swift │ ├── Utils.swift │ ├── Wallet-Bridging-Header.h │ └── assets │ │ └── src │ │ └── assets │ │ └── images │ │ ├── ReceiveTX.png │ │ ├── ReceiveTX@2x.png │ │ ├── ReceiveTX@3x.png │ │ ├── SendTX.png │ │ ├── SendTX@2x.png │ │ ├── SendTX@3x.png │ │ ├── Settings.png │ │ ├── Settings@2x.png │ │ ├── Settings@3x.png │ │ ├── Share.png │ │ ├── Share@2x.png │ │ ├── Share@3x.png │ │ ├── x.png │ │ ├── x@2x.png │ │ └── x@3x.png ├── IronbellyTests │ └── IronbellyTests.m ├── Podfile ├── Podfile.lock ├── UITests │ ├── Info.plist │ └── UITests.swift └── Wallet.xcframework │ └── Info.plist ├── jest.config.js ├── metro.config.js ├── package.json ├── patches ├── react-native-background-timer+2.4.1.patch ├── react-native-config+1.5.1.patch ├── react-native-fs+2.20.0.patch ├── react-native-keep-awake+4.0.0.patch ├── react-native-linear-gradient+2.8.3.patch ├── react-native-navigation-bar-color+2.0.2.patch ├── react-native-splash-screen+3.3.0.patch └── react-native-vector-icons+10.0.3.patch ├── react-native.config.js ├── rn-polyfill-depricated-proptypes.js ├── rust ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── scripts │ ├── build.sh │ ├── init.sh │ └── variables.sh └── src │ ├── android.rs │ ├── errors.rs │ ├── ios.rs │ └── lib.rs ├── scripts ├── additional-licenses.js ├── applesimutils.sh ├── licenses.js ├── npm.sh └── test.sh ├── sign-with-local.sh ├── src ├── App.tsx ├── assets │ ├── fonts │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ ├── Poppins-Thin.ttf │ │ └── Poppins-ThinItalic.ttf │ └── images │ │ ├── ChevronLeft.png │ │ ├── ChevronLeft@2x.png │ │ ├── ChevronLeft@3x.png │ │ ├── ChevronRight.png │ │ ├── ChevronRight@2x.png │ │ ├── ChevronRight@3x.png │ │ ├── Close.png │ │ ├── Close@2x.png │ │ ├── Close@3x.png │ │ ├── Share.png │ │ ├── Share@2x.png │ │ ├── Share@3x.png │ │ ├── landing.png │ │ ├── landing@2x.png │ │ ├── landing@3x.png │ │ ├── x.png │ │ ├── x@2x.png │ │ └── x@3x.png ├── bridges │ └── wallet.ts ├── common │ ├── bip39words.ts │ ├── colors.ts │ ├── index.ts │ ├── logger.ts │ ├── migrations.ts │ ├── redux.ts │ ├── sideEffects.ts │ └── types.ts ├── components │ ├── Balance.tsx │ ├── CardTitle.tsx │ ├── CopyButton.tsx │ ├── CopyHeader.tsx │ ├── CustomFont.tsx │ ├── FormTextInput.tsx │ ├── Header.tsx │ ├── HeaderSpan.tsx │ ├── InputContentRow.tsx │ ├── Notice.tsx │ ├── NumericInput.tsx │ ├── PasteButton.tsx │ ├── ScanQRCodeButton.tsx │ ├── SectionTitle.tsx │ ├── SettingsListItem.tsx │ ├── ShareButton.tsx │ ├── ShareRow.tsx │ ├── ShowQRCodeButton.tsx │ ├── Textarea.tsx │ ├── TxListItem.tsx │ └── TxPostConfirmationModal.tsx ├── documents │ ├── legal-disclaimer-ios.ts │ └── receive-from-another-person.ts ├── mocks.ts ├── modules │ ├── app.ts │ ├── balance.ts │ ├── currency-rates.ts │ ├── navigation.tsx │ ├── settings.ts │ ├── toaster.ts │ ├── tor.ts │ ├── tx.ts │ ├── tx │ │ └── receive.ts │ └── wallet.ts ├── screens │ ├── Landing.tsx │ ├── LegalDisclaimer.tsx │ ├── License.tsx │ ├── Licenses.tsx │ ├── NewPassword.tsx │ ├── Overview.tsx │ ├── PaperKey │ │ ├── Show.tsx │ │ └── Verify.tsx │ ├── Password.tsx │ ├── ScanQRCode.tsx │ ├── Settings.tsx │ ├── Settings │ │ ├── Currency.tsx │ │ ├── GrinNode.tsx │ │ └── Support.tsx │ ├── ShowQRCode.tsx │ ├── TxDetails.tsx │ ├── TxIncompleteReceive │ │ ├── GrinAddress.tsx │ │ └── TxIncompleteReceive.tsx │ ├── TxIncompleteSend │ │ ├── SlateCreated.tsx │ │ ├── SlateNotCreated.tsx │ │ └── TxIncompleteSend.tsx │ └── WalletScan.tsx └── themes.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.babelrc -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.bundle/config -------------------------------------------------------------------------------- /.env.demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.env.demo -------------------------------------------------------------------------------- /.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.env.dev -------------------------------------------------------------------------------- /.env.release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.env.release -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: i1skn 2 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/README.md -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/app/ironbelly/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/debug/java/app/ironbelly/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/fonts/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/tor/bridges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/tor/bridges.txt -------------------------------------------------------------------------------- /android/app/src/main/assets/tor/geoip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/tor/geoip -------------------------------------------------------------------------------- /android/app/src/main/assets/tor/geoip6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/assets/tor/geoip6 -------------------------------------------------------------------------------- /android/app/src/main/java/app/ironbelly/CustomGrinBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/java/app/ironbelly/CustomGrinBridge.java -------------------------------------------------------------------------------- /android/app/src/main/java/app/ironbelly/GrinBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/java/app/ironbelly/GrinBridge.java -------------------------------------------------------------------------------- /android/app/src/main/java/app/ironbelly/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/java/app/ironbelly/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/app/ironbelly/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/java/app/ironbelly/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/app/ironbelly/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/java/app/ironbelly/SplashActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/app/ironbelly/tor/TorConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/java/app/ironbelly/tor/TorConfig.kt -------------------------------------------------------------------------------- /android/app/src/main/java/app/ironbelly/tor/TorProxyManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/java/app/ironbelly/tor/TorProxyManager.kt -------------------------------------------------------------------------------- /android/app/src/main/java/app/ironbelly/tor/TorProxyState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/java/app/ironbelly/tor/TorProxyState.kt -------------------------------------------------------------------------------- /android/app/src/main/java/app/ironbelly/tor/TorResourceInstaller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/java/app/ironbelly/tor/TorResourceInstaller.kt -------------------------------------------------------------------------------- /android/app/src/main/jniLibs/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/jniLibs/Android.mk -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/drawable/background_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /android/app/src/release/java/app/ironbelly/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/app/src/release/java/app/ironbelly/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/get_apk_from_aab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/get_apk_from_aab.sh -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/app.json -------------------------------------------------------------------------------- /docs/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/docs/balance.png -------------------------------------------------------------------------------- /docs/balance.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/docs/balance.uml -------------------------------------------------------------------------------- /docs/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/docs/navigation.png -------------------------------------------------------------------------------- /docs/navigation.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/docs/navigation.uml -------------------------------------------------------------------------------- /docs/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/docs/refresh.png -------------------------------------------------------------------------------- /docs/refresh.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/docs/refresh.uml -------------------------------------------------------------------------------- /docs/release_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/docs/release_test.md -------------------------------------------------------------------------------- /e2e/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/e2e/config.json -------------------------------------------------------------------------------- /e2e/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/e2e/init.js -------------------------------------------------------------------------------- /e2e/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/e2e/utils.js -------------------------------------------------------------------------------- /e2e/walletInit.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/e2e/walletInit.spec.js -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/fastlane/Deliverfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/fastlane/SnapshotHelper.swift -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/.xcode.env.local: -------------------------------------------------------------------------------- 1 | export NODE_BINARY="/Users/i1skn/.n/bin/node" 2 | -------------------------------------------------------------------------------- /ios/Cartfile: -------------------------------------------------------------------------------- 1 | github "iCepa/Tor.framework" "master" 2 | -------------------------------------------------------------------------------- /ios/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "iCepa/Tor.framework" "19eb9505bd77d14757322541b26a6dca7f03dfde" 2 | -------------------------------------------------------------------------------- /ios/Ironbelly.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Ironbelly.xcodeproj/xcshareddata/xcschemes/Ironbelly.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly.xcodeproj/xcshareddata/xcschemes/Ironbelly.xcscheme -------------------------------------------------------------------------------- /ios/Ironbelly.xcodeproj/xcshareddata/xcschemes/Snapshots.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly.xcodeproj/xcshareddata/xcschemes/Snapshots.xcscheme -------------------------------------------------------------------------------- /ios/Ironbelly.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Ironbelly.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Ironbelly.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Ironbelly/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_20pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_20pt.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x-1.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_20pt@3x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_29pt.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x-1.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_40pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_40pt.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x-1.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_40pt@3x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_60pt@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_60pt@3x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_76pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_76pt.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_76pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_76pt@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/AppIcon.appiconset/icon_83.5@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/LaunchLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/LaunchLogo.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/LaunchLogo.imageset/LaunchLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/LaunchLogo.imageset/LaunchLogo.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/LaunchLogo.imageset/LaunchLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/LaunchLogo.imageset/LaunchLogo@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Assets.xcassets/LaunchLogo.imageset/LaunchLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Assets.xcassets/LaunchLogo.imageset/LaunchLogo@3x.png -------------------------------------------------------------------------------- /ios/Ironbelly/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Ironbelly/GrinBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/GrinBridge.m -------------------------------------------------------------------------------- /ios/Ironbelly/GrinBridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/GrinBridge.swift -------------------------------------------------------------------------------- /ios/Ironbelly/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Ironbelly/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Ironbelly/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Info.plist -------------------------------------------------------------------------------- /ios/Ironbelly/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Ironbelly/Tor/Helpers/Ipv6Tester.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Tor/Helpers/Ipv6Tester.swift -------------------------------------------------------------------------------- /ios/Ironbelly/Tor/Helpers/NetworkTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Tor/Helpers/NetworkTools.h -------------------------------------------------------------------------------- /ios/Ironbelly/Tor/Helpers/NetworkTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Tor/Helpers/NetworkTools.m -------------------------------------------------------------------------------- /ios/Ironbelly/Tor/OnionConnector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Tor/OnionConnector.swift -------------------------------------------------------------------------------- /ios/Ironbelly/Tor/OnionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Tor/OnionManager.swift -------------------------------------------------------------------------------- /ios/Ironbelly/Tor/OnionSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Tor/OnionSettings.swift -------------------------------------------------------------------------------- /ios/Ironbelly/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Utils.swift -------------------------------------------------------------------------------- /ios/Ironbelly/Wallet-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/Wallet-Bridging-Header.h -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/ReceiveTX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/ReceiveTX.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/ReceiveTX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/ReceiveTX@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/ReceiveTX@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/ReceiveTX@3x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/SendTX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/SendTX.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/SendTX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/SendTX@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/SendTX@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/SendTX@3x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/Settings.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/Settings@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/Settings@3x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/Share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/Share.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/Share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/Share@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/Share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/Share@3x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/x@2x.png -------------------------------------------------------------------------------- /ios/Ironbelly/assets/src/assets/images/x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Ironbelly/assets/src/assets/images/x@3x.png -------------------------------------------------------------------------------- /ios/IronbellyTests/IronbellyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/IronbellyTests/IronbellyTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/UITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/UITests/Info.plist -------------------------------------------------------------------------------- /ios/UITests/UITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/UITests/UITests.swift -------------------------------------------------------------------------------- /ios/Wallet.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/ios/Wallet.xcframework/Info.plist -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/package.json -------------------------------------------------------------------------------- /patches/react-native-background-timer+2.4.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/patches/react-native-background-timer+2.4.1.patch -------------------------------------------------------------------------------- /patches/react-native-config+1.5.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/patches/react-native-config+1.5.1.patch -------------------------------------------------------------------------------- /patches/react-native-fs+2.20.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/patches/react-native-fs+2.20.0.patch -------------------------------------------------------------------------------- /patches/react-native-keep-awake+4.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/patches/react-native-keep-awake+4.0.0.patch -------------------------------------------------------------------------------- /patches/react-native-linear-gradient+2.8.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/patches/react-native-linear-gradient+2.8.3.patch -------------------------------------------------------------------------------- /patches/react-native-navigation-bar-color+2.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/patches/react-native-navigation-bar-color+2.0.2.patch -------------------------------------------------------------------------------- /patches/react-native-splash-screen+3.3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/patches/react-native-splash-screen+3.3.0.patch -------------------------------------------------------------------------------- /patches/react-native-vector-icons+10.0.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/patches/react-native-vector-icons+10.0.3.patch -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/react-native.config.js -------------------------------------------------------------------------------- /rn-polyfill-depricated-proptypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rn-polyfill-depricated-proptypes.js -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/build.rs -------------------------------------------------------------------------------- /rust/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/scripts/build.sh -------------------------------------------------------------------------------- /rust/scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/scripts/init.sh -------------------------------------------------------------------------------- /rust/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/scripts/variables.sh -------------------------------------------------------------------------------- /rust/src/android.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/src/android.rs -------------------------------------------------------------------------------- /rust/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/src/errors.rs -------------------------------------------------------------------------------- /rust/src/ios.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/src/ios.rs -------------------------------------------------------------------------------- /rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/rust/src/lib.rs -------------------------------------------------------------------------------- /scripts/additional-licenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/scripts/additional-licenses.js -------------------------------------------------------------------------------- /scripts/applesimutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/scripts/applesimutils.sh -------------------------------------------------------------------------------- /scripts/licenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/scripts/licenses.js -------------------------------------------------------------------------------- /scripts/npm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | npm install 3 | -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /sign-with-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/sign-with-local.sh -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/fonts/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /src/assets/images/ChevronLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/ChevronLeft.png -------------------------------------------------------------------------------- /src/assets/images/ChevronLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/ChevronLeft@2x.png -------------------------------------------------------------------------------- /src/assets/images/ChevronLeft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/ChevronLeft@3x.png -------------------------------------------------------------------------------- /src/assets/images/ChevronRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/ChevronRight.png -------------------------------------------------------------------------------- /src/assets/images/ChevronRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/ChevronRight@2x.png -------------------------------------------------------------------------------- /src/assets/images/ChevronRight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/ChevronRight@3x.png -------------------------------------------------------------------------------- /src/assets/images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/Close.png -------------------------------------------------------------------------------- /src/assets/images/Close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/Close@2x.png -------------------------------------------------------------------------------- /src/assets/images/Close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/Close@3x.png -------------------------------------------------------------------------------- /src/assets/images/Share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/Share.png -------------------------------------------------------------------------------- /src/assets/images/Share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/Share@2x.png -------------------------------------------------------------------------------- /src/assets/images/Share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/Share@3x.png -------------------------------------------------------------------------------- /src/assets/images/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/landing.png -------------------------------------------------------------------------------- /src/assets/images/landing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/landing@2x.png -------------------------------------------------------------------------------- /src/assets/images/landing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/landing@3x.png -------------------------------------------------------------------------------- /src/assets/images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/x.png -------------------------------------------------------------------------------- /src/assets/images/x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/x@2x.png -------------------------------------------------------------------------------- /src/assets/images/x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/assets/images/x@3x.png -------------------------------------------------------------------------------- /src/bridges/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/bridges/wallet.ts -------------------------------------------------------------------------------- /src/common/bip39words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/common/bip39words.ts -------------------------------------------------------------------------------- /src/common/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/common/colors.ts -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/common/logger.ts -------------------------------------------------------------------------------- /src/common/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/common/migrations.ts -------------------------------------------------------------------------------- /src/common/redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/common/redux.ts -------------------------------------------------------------------------------- /src/common/sideEffects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/common/sideEffects.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/components/Balance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/Balance.tsx -------------------------------------------------------------------------------- /src/components/CardTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/CardTitle.tsx -------------------------------------------------------------------------------- /src/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/components/CopyHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/CopyHeader.tsx -------------------------------------------------------------------------------- /src/components/CustomFont.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/CustomFont.tsx -------------------------------------------------------------------------------- /src/components/FormTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/FormTextInput.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/HeaderSpan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/HeaderSpan.tsx -------------------------------------------------------------------------------- /src/components/InputContentRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/InputContentRow.tsx -------------------------------------------------------------------------------- /src/components/Notice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/Notice.tsx -------------------------------------------------------------------------------- /src/components/NumericInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/NumericInput.tsx -------------------------------------------------------------------------------- /src/components/PasteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/PasteButton.tsx -------------------------------------------------------------------------------- /src/components/ScanQRCodeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/ScanQRCodeButton.tsx -------------------------------------------------------------------------------- /src/components/SectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/SectionTitle.tsx -------------------------------------------------------------------------------- /src/components/SettingsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/SettingsListItem.tsx -------------------------------------------------------------------------------- /src/components/ShareButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/ShareButton.tsx -------------------------------------------------------------------------------- /src/components/ShareRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/ShareRow.tsx -------------------------------------------------------------------------------- /src/components/ShowQRCodeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/ShowQRCodeButton.tsx -------------------------------------------------------------------------------- /src/components/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/Textarea.tsx -------------------------------------------------------------------------------- /src/components/TxListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/TxListItem.tsx -------------------------------------------------------------------------------- /src/components/TxPostConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/components/TxPostConfirmationModal.tsx -------------------------------------------------------------------------------- /src/documents/legal-disclaimer-ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/documents/legal-disclaimer-ios.ts -------------------------------------------------------------------------------- /src/documents/receive-from-another-person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/documents/receive-from-another-person.ts -------------------------------------------------------------------------------- /src/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/mocks.ts -------------------------------------------------------------------------------- /src/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/app.ts -------------------------------------------------------------------------------- /src/modules/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/balance.ts -------------------------------------------------------------------------------- /src/modules/currency-rates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/currency-rates.ts -------------------------------------------------------------------------------- /src/modules/navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/navigation.tsx -------------------------------------------------------------------------------- /src/modules/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/settings.ts -------------------------------------------------------------------------------- /src/modules/toaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/toaster.ts -------------------------------------------------------------------------------- /src/modules/tor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/tor.ts -------------------------------------------------------------------------------- /src/modules/tx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/tx.ts -------------------------------------------------------------------------------- /src/modules/tx/receive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/tx/receive.ts -------------------------------------------------------------------------------- /src/modules/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/modules/wallet.ts -------------------------------------------------------------------------------- /src/screens/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/Landing.tsx -------------------------------------------------------------------------------- /src/screens/LegalDisclaimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/LegalDisclaimer.tsx -------------------------------------------------------------------------------- /src/screens/License.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/License.tsx -------------------------------------------------------------------------------- /src/screens/Licenses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/Licenses.tsx -------------------------------------------------------------------------------- /src/screens/NewPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/NewPassword.tsx -------------------------------------------------------------------------------- /src/screens/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/Overview.tsx -------------------------------------------------------------------------------- /src/screens/PaperKey/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/PaperKey/Show.tsx -------------------------------------------------------------------------------- /src/screens/PaperKey/Verify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/PaperKey/Verify.tsx -------------------------------------------------------------------------------- /src/screens/Password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/Password.tsx -------------------------------------------------------------------------------- /src/screens/ScanQRCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/ScanQRCode.tsx -------------------------------------------------------------------------------- /src/screens/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/Settings.tsx -------------------------------------------------------------------------------- /src/screens/Settings/Currency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/Settings/Currency.tsx -------------------------------------------------------------------------------- /src/screens/Settings/GrinNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/Settings/GrinNode.tsx -------------------------------------------------------------------------------- /src/screens/Settings/Support.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/Settings/Support.tsx -------------------------------------------------------------------------------- /src/screens/ShowQRCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/ShowQRCode.tsx -------------------------------------------------------------------------------- /src/screens/TxDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/TxDetails.tsx -------------------------------------------------------------------------------- /src/screens/TxIncompleteReceive/GrinAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/TxIncompleteReceive/GrinAddress.tsx -------------------------------------------------------------------------------- /src/screens/TxIncompleteReceive/TxIncompleteReceive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/TxIncompleteReceive/TxIncompleteReceive.tsx -------------------------------------------------------------------------------- /src/screens/TxIncompleteSend/SlateCreated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/TxIncompleteSend/SlateCreated.tsx -------------------------------------------------------------------------------- /src/screens/TxIncompleteSend/SlateNotCreated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/TxIncompleteSend/SlateNotCreated.tsx -------------------------------------------------------------------------------- /src/screens/TxIncompleteSend/TxIncompleteSend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/TxIncompleteSend/TxIncompleteSend.tsx -------------------------------------------------------------------------------- /src/screens/WalletScan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/screens/WalletScan.tsx -------------------------------------------------------------------------------- /src/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/src/themes.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1skn/ironbelly/HEAD/yarn.lock --------------------------------------------------------------------------------