├── .babelrc ├── .buckconfig ├── .eslintignore ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── App.e2e.js ├── App.js ├── LICENSE ├── README.md ├── __mocks__ ├── react-native-camera.js ├── react-native-splash-screen.js └── react-native.js ├── __tests__ ├── __snapshots__ │ └── coinid-public-test.js.snap ├── coinid-public-test.js └── data │ ├── bitcoin.json │ ├── groestlcoin-testnet.json │ ├── groestlcoin.json │ ├── litecoin.json │ ├── myriad.json │ └── testnet.json ├── android ├── Gemfile ├── Gemfile.lock ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── coinid │ │ │ └── wallet │ │ │ └── DetoxTest.java │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ └── xml │ │ │ └── react_native_config.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Inter-UI-Black.ttf │ │ │ ├── Inter-UI-BlackItalic.ttf │ │ │ ├── Inter-UI-Bold.ttf │ │ │ ├── Inter-UI-BoldItalic.ttf │ │ │ ├── Inter-UI-Italic.ttf │ │ │ ├── Inter-UI-Medium.ttf │ │ │ ├── Inter-UI-MediumItalic.ttf │ │ │ ├── Inter-UI-Regular.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── icomoon.ttf │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── org │ │ │ └── coinid │ │ │ └── wallet │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable │ │ ├── gradient.png │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── launch_screen.xml │ │ └── launch_screen_window_bg.xml │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── coinid_logo.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── logo.png │ │ ├── mipmap-mdpi │ │ ├── coinid_logo.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── logo.png │ │ ├── mipmap-xhdpi │ │ ├── coinid_logo.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── logo.png │ │ ├── mipmap-xxhdpi │ │ ├── coinid_logo.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── logo.png │ │ ├── mipmap-xxxhdpi │ │ ├── coinid_logo.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── logo.png │ │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── filepaths.xml ├── build.gradle ├── fastlane │ ├── Appfile │ ├── Fastfile │ ├── README.md │ └── metadata │ │ └── android │ │ └── en-US │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ ├── title.txt │ │ └── video.txt ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── babel.config.js ├── bin ├── betaBuild ├── changeCoin ├── createBuildJSON ├── generateScreenshotsReport ├── helpers │ └── changeCoin │ │ ├── coin_config │ │ ├── btc │ │ │ ├── config.json │ │ │ └── files │ │ │ │ ├── android │ │ │ │ └── app │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── ic_launcher-web.png │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ ├── gradient.png │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ └── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── strings.xml │ │ │ │ ├── ios │ │ │ │ └── COINiDWallet │ │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon_20pt-1x.png │ │ │ │ │ ├── Icon_20pt-2x.png │ │ │ │ │ ├── Icon_20pt-3x.png │ │ │ │ │ ├── Icon_29pt-1x.png │ │ │ │ │ ├── Icon_29pt-2x.png │ │ │ │ │ ├── Icon_29pt-3x.png │ │ │ │ │ ├── Icon_40pt-1x.png │ │ │ │ │ ├── Icon_40pt-2x.png │ │ │ │ │ ├── Icon_40pt-3x.png │ │ │ │ │ ├── Icon_60pt-2x.png │ │ │ │ │ ├── Icon_60pt-3x.png │ │ │ │ │ ├── Icon_76pt-1x.png │ │ │ │ │ ├── Icon_76pt-2x.png │ │ │ │ │ ├── Icon_83.5pt-2x.png │ │ │ │ │ └── Icon_AppStore-1024pt.png │ │ │ │ │ ├── Gradient.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Gradient.png │ │ │ │ │ ├── Gradient@2x.png │ │ │ │ │ └── Gradient@3x.png │ │ │ │ │ └── Wallet Logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── logo@2x.png │ │ │ │ │ └── logo@3x.png │ │ │ │ └── src │ │ │ │ └── animations │ │ │ │ ├── gradient.json │ │ │ │ └── wallet_logo.json │ │ ├── grs │ │ │ ├── config.json │ │ │ └── files │ │ │ │ ├── android │ │ │ │ └── app │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── ic_launcher-web.png │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ ├── gradient.png │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ └── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── strings.xml │ │ │ │ ├── ios │ │ │ │ └── COINiDWallet │ │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon_20pt-1x.png │ │ │ │ │ ├── Icon_20pt-2x.png │ │ │ │ │ ├── Icon_20pt-3x.png │ │ │ │ │ ├── Icon_29pt-1x.png │ │ │ │ │ ├── Icon_29pt-2x.png │ │ │ │ │ ├── Icon_29pt-3x.png │ │ │ │ │ ├── Icon_40pt-1x.png │ │ │ │ │ ├── Icon_40pt-2x.png │ │ │ │ │ ├── Icon_40pt-3x.png │ │ │ │ │ ├── Icon_60pt-2x.png │ │ │ │ │ ├── Icon_60pt-3x.png │ │ │ │ │ ├── Icon_76pt-1x.png │ │ │ │ │ ├── Icon_76pt-2x.png │ │ │ │ │ ├── Icon_83.5pt-2x.png │ │ │ │ │ └── Icon_AppStore-1024pt.png │ │ │ │ │ ├── Gradient.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Gradient.png │ │ │ │ │ ├── Gradient@2x.png │ │ │ │ │ └── Gradient@3x.png │ │ │ │ │ └── Wallet Logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── Logo@2x.png │ │ │ │ │ └── Logo@3x.png │ │ │ │ └── src │ │ │ │ └── animations │ │ │ │ ├── gradient.json │ │ │ │ └── wallet_logo.json │ │ ├── ltc │ │ │ ├── config.json │ │ │ └── files │ │ │ │ ├── android │ │ │ │ └── app │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── ic_launcher-web.png │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ ├── gradient.png │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ └── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── strings.xml │ │ │ │ ├── ios │ │ │ │ └── COINiDWallet │ │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon_20pt-1x.png │ │ │ │ │ ├── Icon_20pt-2x.png │ │ │ │ │ ├── Icon_20pt-3x.png │ │ │ │ │ ├── Icon_29pt-1x.png │ │ │ │ │ ├── Icon_29pt-2x.png │ │ │ │ │ ├── Icon_29pt-3x.png │ │ │ │ │ ├── Icon_40pt-1x.png │ │ │ │ │ ├── Icon_40pt-2x.png │ │ │ │ │ ├── Icon_40pt-3x.png │ │ │ │ │ ├── Icon_60pt-2x.png │ │ │ │ │ ├── Icon_60pt-3x.png │ │ │ │ │ ├── Icon_76pt-1x.png │ │ │ │ │ ├── Icon_76pt-2x.png │ │ │ │ │ ├── Icon_83.5pt-2x.png │ │ │ │ │ └── Icon_AppStore-1024pt.png │ │ │ │ │ ├── Gradient.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Gradient.png │ │ │ │ │ ├── Gradient@2x.png │ │ │ │ │ └── Gradient@3x.png │ │ │ │ │ └── Wallet Logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── logo@2x.png │ │ │ │ │ └── logo@3x.png │ │ │ │ └── src │ │ │ │ └── animations │ │ │ │ ├── gradient.json │ │ │ │ └── wallet_logo.json │ │ ├── tbtc │ │ │ ├── config.json │ │ │ └── files │ │ │ │ ├── android │ │ │ │ └── app │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── ic_launcher-web.png │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ ├── gradient.png │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ └── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── strings.xml │ │ │ │ ├── ios │ │ │ │ └── COINiDWallet │ │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon_20pt-1x.png │ │ │ │ │ ├── Icon_20pt-2x.png │ │ │ │ │ ├── Icon_20pt-3x.png │ │ │ │ │ ├── Icon_29pt-1x.png │ │ │ │ │ ├── Icon_29pt-2x.png │ │ │ │ │ ├── Icon_29pt-3x.png │ │ │ │ │ ├── Icon_40pt-1x.png │ │ │ │ │ ├── Icon_40pt-2x.png │ │ │ │ │ ├── Icon_40pt-3x.png │ │ │ │ │ ├── Icon_60pt-2x.png │ │ │ │ │ ├── Icon_60pt-3x.png │ │ │ │ │ ├── Icon_76pt-1x.png │ │ │ │ │ ├── Icon_76pt-2x.png │ │ │ │ │ ├── Icon_83.5pt-2x.png │ │ │ │ │ └── Icon_AppStore-1024pt.png │ │ │ │ │ ├── Gradient.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Gradient.png │ │ │ │ │ ├── Gradient@2x.png │ │ │ │ │ └── Gradient@3x.png │ │ │ │ │ └── Wallet Logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── Logo@2x.png │ │ │ │ │ └── Logo@3x.png │ │ │ │ └── src │ │ │ │ └── animations │ │ │ │ ├── gradient.json │ │ │ │ └── wallet_logo.json │ │ ├── tgrs │ │ │ ├── config.json │ │ │ └── files │ │ │ │ ├── android │ │ │ │ └── app │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── ic_launcher-web.png │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ ├── gradient.png │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ └── logo.png │ │ │ │ │ └── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── strings.xml │ │ │ │ ├── ios │ │ │ │ └── COINiDWallet │ │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon_20pt-1x.png │ │ │ │ │ ├── Icon_20pt-2x.png │ │ │ │ │ ├── Icon_20pt-3x.png │ │ │ │ │ ├── Icon_29pt-1x.png │ │ │ │ │ ├── Icon_29pt-2x.png │ │ │ │ │ ├── Icon_29pt-3x.png │ │ │ │ │ ├── Icon_40pt-1x.png │ │ │ │ │ ├── Icon_40pt-2x.png │ │ │ │ │ ├── Icon_40pt-3x.png │ │ │ │ │ ├── Icon_60pt-2x.png │ │ │ │ │ ├── Icon_60pt-3x.png │ │ │ │ │ ├── Icon_76pt-1x.png │ │ │ │ │ ├── Icon_76pt-2x.png │ │ │ │ │ ├── Icon_83.5pt-2x.png │ │ │ │ │ └── Icon_AppStore-1024pt.png │ │ │ │ │ ├── Gradient.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Gradient.png │ │ │ │ │ ├── Gradient@2x.png │ │ │ │ │ └── Gradient@3x.png │ │ │ │ │ └── Wallet Logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── Logo@2x.png │ │ │ │ │ └── Logo@3x.png │ │ │ │ └── src │ │ │ │ └── animations │ │ │ │ ├── gradient.json │ │ │ │ └── wallet_logo.json │ │ └── xmy │ │ │ ├── config.json │ │ │ └── files │ │ │ ├── android │ │ │ └── app │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── ic_launcher-web.png │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── gradient.png │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── logo.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── logo.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── logo.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── logo.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── logo.png │ │ │ │ └── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── strings.xml │ │ │ ├── ios │ │ │ └── COINiDWallet │ │ │ │ └── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon_20pt-1x.png │ │ │ │ ├── Icon_20pt-2x.png │ │ │ │ ├── Icon_20pt-3x.png │ │ │ │ ├── Icon_29pt-1x.png │ │ │ │ ├── Icon_29pt-2x.png │ │ │ │ ├── Icon_29pt-3x.png │ │ │ │ ├── Icon_40pt-1x.png │ │ │ │ ├── Icon_40pt-2x.png │ │ │ │ ├── Icon_40pt-3x.png │ │ │ │ ├── Icon_60pt-2x.png │ │ │ │ ├── Icon_60pt-3x.png │ │ │ │ ├── Icon_76pt-1x.png │ │ │ │ ├── Icon_76pt-2x.png │ │ │ │ ├── Icon_83.5pt-2x.png │ │ │ │ └── Icon_AppStore-1024pt.png │ │ │ │ ├── Gradient.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Gradient.png │ │ │ │ ├── Gradient@2x.png │ │ │ │ └── Gradient@3x.png │ │ │ │ └── Wallet Logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Logo.png │ │ │ │ ├── Logo@2x.png │ │ │ │ └── Logo@3x.png │ │ │ └── src │ │ │ └── animations │ │ │ ├── gradient.json │ │ │ └── wallet_logo.json │ │ ├── index.js │ │ ├── package.json │ │ └── yarn.lock ├── runDetoxTests └── screenshots_report │ ├── generate.rb │ └── page.html.erb ├── e2e ├── config.json ├── data │ └── testnet.json ├── init.js └── tests.spec.js ├── findMatchingSimulator.js ├── global.js ├── index.js ├── ios ├── COINiDWallet.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── COINiDWallet.xcscheme │ │ └── COINiDWalletTests.xcscheme ├── COINiDWallet │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon_20pt-1x.png │ │ │ ├── Icon_20pt-2x.png │ │ │ ├── Icon_20pt-3x.png │ │ │ ├── Icon_29pt-1x.png │ │ │ ├── Icon_29pt-2x.png │ │ │ ├── Icon_29pt-3x.png │ │ │ ├── Icon_40pt-1x.png │ │ │ ├── Icon_40pt-2x.png │ │ │ ├── Icon_40pt-3x.png │ │ │ ├── Icon_60pt-2x.png │ │ │ ├── Icon_60pt-3x.png │ │ │ ├── Icon_76pt-1x.png │ │ │ ├── Icon_76pt-2x.png │ │ │ ├── Icon_83.5pt-2x.png │ │ │ └── Icon_AppStore-1024pt.png │ │ ├── Contents.json │ │ ├── Gradient.imageset │ │ │ ├── Contents.json │ │ │ ├── Gradient.png │ │ │ ├── Gradient@2x.png │ │ │ └── Gradient@3x.png │ │ └── Wallet Logo.imageset │ │ │ ├── Contents.json │ │ │ ├── Logo.png │ │ │ ├── Logo@2x.png │ │ │ └── Logo@3x.png │ ├── Info.plist │ └── main.m ├── Gemfile ├── Gemfile.lock ├── LaunchScreen.storyboard └── fastlane │ ├── Appfile │ ├── Fastfile │ └── README.md ├── metro.config.js ├── package.json ├── patches ├── react-native+0.59.9.patch └── react-native-iphone-x-helper+1.3.1.patch ├── shim.js ├── src ├── COINiDWallet.js ├── actionmenus │ ├── ActionMenuRouter.js │ ├── ReceiveActionMenu.js │ └── VerifyMessageActionMenu.js ├── animations │ ├── coinid_logo.json │ ├── coinid_logo_white.json │ ├── emptytrans_cold.json │ ├── emptytrans_hot.json │ ├── feather_cold.json │ ├── feather_hot.json │ ├── gradient.json │ ├── hourglass.json │ ├── lock.json │ ├── setupcold.json │ ├── setuphot.json │ ├── tick.json │ └── wallet_logo.json ├── assets │ ├── fonts │ │ ├── Inter-UI-Black.ttf │ │ ├── Inter-UI-BlackItalic.ttf │ │ ├── Inter-UI-Bold.ttf │ │ ├── Inter-UI-BoldItalic.ttf │ │ ├── Inter-UI-Italic.ttf │ │ ├── Inter-UI-Medium.ttf │ │ ├── Inter-UI-MediumItalic.ttf │ │ ├── Inter-UI-Regular.ttf │ │ ├── MaterialIcons-Regular.ttf │ │ └── icomoon.ttf │ └── images │ │ ├── coinid-logo.png │ │ ├── coinid-logo@2x.png │ │ ├── coinid-logo@3x.png │ │ ├── coinid_icon.png │ │ ├── coinid_icon@2x.png │ │ ├── coinid_icon@3x.png │ │ ├── expandable-arrow.png │ │ ├── qr_logo_full.png │ │ └── qr_logo_small.png ├── components │ ├── AmountInput.js │ ├── Balance.js │ ├── BatchList.js │ ├── BatchSummary.js │ ├── Button.js │ ├── COINiDTransport.js │ ├── CancelButton.js │ ├── CheckBoxSelect.js │ ├── ConnectionStatus.js │ ├── ConvertCurrency.js │ ├── DetailsModal.js │ ├── DialogTitle.js │ ├── DismissableByDragView.js │ ├── ExpandableView.js │ ├── FeeSlider.js │ ├── FontScale.js │ ├── Graph.js │ ├── InactiveOverlay.js │ ├── Loading.js │ ├── Modal.js │ ├── ReceiveQRCode.js │ ├── RowInfo.js │ ├── SettingsHeader.js │ ├── SettingsListItem.js │ ├── SettingsRoute.js │ ├── SettingsSection.js │ ├── Text.js │ ├── TransactionFilter.js │ ├── TransactionList.js │ ├── TransactionState.js │ ├── TranslatedText.js │ └── index.js ├── config │ ├── settings.js │ └── styling.js ├── contexts │ ├── DialogBoxContext.js │ ├── ExchangeRateContext.js │ ├── GlobalContext.js │ ├── LocaleContext.js │ ├── QRCodeContext.js │ ├── StatusBoxContext.js │ └── WalletContext.js ├── dialogs │ ├── COINiDNotFound.js │ ├── InputPublicKey.js │ ├── QRDataSender.js │ ├── Receive.js │ ├── SelectAddressType.js │ ├── SelectColdTransportType.js │ ├── Send.js │ ├── SetupWallet.js │ ├── Sign.js │ ├── SignMessage.js │ ├── SweepKeyDetails.js │ ├── SweepPrivateKey.js │ ├── TransactionDetails.js │ ├── ValidateAddress.js │ ├── VerifyMessage.js │ ├── index.js │ └── styles │ │ └── common.js ├── index.js ├── libs │ └── coinid-public │ │ ├── bip32-utils-extension.js │ │ ├── blockchain-bridge-blockbook.js │ │ ├── blockchain-bridge-insight.js │ │ ├── blockchain-fetch-bridge.js │ │ ├── blockchain.e2e.js │ │ ├── blockchain.js │ │ ├── index.js │ │ ├── transactionHelper.js │ │ └── utils.js ├── routes │ ├── dialogs.js │ ├── root.js │ └── settings.js ├── screens │ ├── Build.js │ ├── Home.js │ ├── InstalledWallet.js │ ├── QRDataReceiver.js │ ├── QRScan.js │ ├── Settings.js │ ├── Setup.js │ ├── Wallet.js │ └── index.js ├── settingstree │ ├── About.js │ ├── AccountInformation.js │ ├── AccountList.js │ ├── Home.js │ ├── Language.js │ ├── OfflineTransport.js │ ├── Passcode.js │ ├── PreferredCurrency.js │ ├── SignMessage.js │ └── index.js ├── translations │ ├── de.json │ ├── en.json │ ├── eo.json │ ├── es.json │ ├── fr.json │ ├── pt.json │ └── sv.json └── utils │ ├── __tests__ │ ├── addressHelper-test.js │ └── encrypt-test.js │ ├── addressHelper.js │ ├── device.js │ ├── encrypt.js │ ├── exchangeHelper.js │ ├── feeHelper.js │ ├── generic.js │ ├── noteHelper.js │ ├── numFormat.js │ ├── p2p-ble-central.js │ ├── p2p-ble-common.js │ ├── settingHelper.js │ ├── storageHelper.js │ └── styleMerge.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.11.3 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/App.e2e.js -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/react-native-camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__mocks__/react-native-camera.js -------------------------------------------------------------------------------- /__mocks__/react-native-splash-screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__mocks__/react-native-splash-screen.js -------------------------------------------------------------------------------- /__mocks__/react-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__mocks__/react-native.js -------------------------------------------------------------------------------- /__tests__/__snapshots__/coinid-public-test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__tests__/__snapshots__/coinid-public-test.js.snap -------------------------------------------------------------------------------- /__tests__/coinid-public-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__tests__/coinid-public-test.js -------------------------------------------------------------------------------- /__tests__/data/bitcoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__tests__/data/bitcoin.json -------------------------------------------------------------------------------- /__tests__/data/groestlcoin-testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__tests__/data/groestlcoin-testnet.json -------------------------------------------------------------------------------- /__tests__/data/groestlcoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__tests__/data/groestlcoin.json -------------------------------------------------------------------------------- /__tests__/data/litecoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__tests__/data/litecoin.json -------------------------------------------------------------------------------- /__tests__/data/myriad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__tests__/data/myriad.json -------------------------------------------------------------------------------- /__tests__/data/testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/__tests__/data/testnet.json -------------------------------------------------------------------------------- /android/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /android/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/Gemfile.lock -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/org/coinid/wallet/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/androidTest/java/org/coinid/wallet/DetoxTest.java -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/res/xml/react_native_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/debug/res/xml/react_native_config.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-UI-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Inter-UI-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-UI-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Inter-UI-BlackItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-UI-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Inter-UI-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-UI-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Inter-UI-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-UI-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Inter-UI-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-UI-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Inter-UI-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-UI-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Inter-UI-MediumItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Inter-UI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Inter-UI-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/main/java/org/coinid/wallet/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/java/org/coinid/wallet/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/coinid/wallet/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/java/org/coinid/wallet/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/drawable/gradient.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/drawable/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_screen_window_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/drawable/launch_screen_window_bg.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/coinid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-hdpi/coinid_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/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/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-hdpi/logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/coinid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-mdpi/coinid_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/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/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-mdpi/logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/coinid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-xhdpi/coinid_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/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/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-xhdpi/logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/coinid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-xxhdpi/coinid_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/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/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/coinid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-xxxhdpi/coinid_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/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/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/mipmap-xxxhdpi/logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/fastlane/Appfile: -------------------------------------------------------------------------------- 1 | package_name ( "org.coinid.wallet.tbtc") 2 | -------------------------------------------------------------------------------- /android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/fastlane/Fastfile -------------------------------------------------------------------------------- /android/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/fastlane/README.md -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Testnet Wallet for COINiD -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/betaBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/betaBuild -------------------------------------------------------------------------------- /bin/changeCoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/changeCoin -------------------------------------------------------------------------------- /bin/createBuildJSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/createBuildJSON -------------------------------------------------------------------------------- /bin/generateScreenshotsReport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/generateScreenshotsReport -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/config.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/drawable/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/drawable/gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-hdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-mdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/src/animations/gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/src/animations/gradient.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/btc/files/src/animations/wallet_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/btc/files/src/animations/wallet_logo.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/config.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/drawable/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/drawable/gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-hdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-mdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/src/animations/gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/src/animations/gradient.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/grs/files/src/animations/wallet_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/grs/files/src/animations/wallet_logo.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/config.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/drawable/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/drawable/gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-hdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-mdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/logo@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/src/animations/gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/src/animations/gradient.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/ltc/files/src/animations/wallet_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/ltc/files/src/animations/wallet_logo.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/config.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/drawable/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/drawable/gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-hdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-mdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/src/animations/gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/src/animations/gradient.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tbtc/files/src/animations/wallet_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tbtc/files/src/animations/wallet_logo.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/config.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/drawable/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/drawable/gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-hdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-mdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/src/animations/gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/src/animations/gradient.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/tgrs/files/src/animations/wallet_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/tgrs/files/src/animations/wallet_logo.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/config.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/drawable/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/drawable/gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-hdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-mdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/mipmap-xxxhdpi/logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/src/animations/gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/src/animations/gradient.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/coin_config/xmy/files/src/animations/wallet_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/coin_config/xmy/files/src/animations/wallet_logo.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/index.js -------------------------------------------------------------------------------- /bin/helpers/changeCoin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/package.json -------------------------------------------------------------------------------- /bin/helpers/changeCoin/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/helpers/changeCoin/yarn.lock -------------------------------------------------------------------------------- /bin/runDetoxTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/runDetoxTests -------------------------------------------------------------------------------- /bin/screenshots_report/generate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/screenshots_report/generate.rb -------------------------------------------------------------------------------- /bin/screenshots_report/page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/bin/screenshots_report/page.html.erb -------------------------------------------------------------------------------- /e2e/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/e2e/config.json -------------------------------------------------------------------------------- /e2e/data/testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/e2e/data/testnet.json -------------------------------------------------------------------------------- /e2e/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/e2e/init.js -------------------------------------------------------------------------------- /e2e/tests.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/e2e/tests.spec.js -------------------------------------------------------------------------------- /findMatchingSimulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/findMatchingSimulator.js -------------------------------------------------------------------------------- /global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/global.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/index.js -------------------------------------------------------------------------------- /ios/COINiDWallet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/COINiDWallet.xcodeproj/xcshareddata/xcschemes/COINiDWallet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet.xcodeproj/xcshareddata/xcschemes/COINiDWallet.xcscheme -------------------------------------------------------------------------------- /ios/COINiDWallet.xcodeproj/xcshareddata/xcschemes/COINiDWalletTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet.xcodeproj/xcshareddata/xcschemes/COINiDWalletTests.xcscheme -------------------------------------------------------------------------------- /ios/COINiDWallet/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/AppDelegate.h -------------------------------------------------------------------------------- /ios/COINiDWallet/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/AppDelegate.m -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-1x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-2x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_20pt-3x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-1x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-2x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_29pt-3x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-1x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-2x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_40pt-3x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-2x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_60pt-3x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-1x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_76pt-2x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_83.5pt-2x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/AppIcon.appiconset/Icon_AppStore-1024pt.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Contents.json -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@2x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/Gradient.imageset/Gradient@3x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Contents.json -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Images.xcassets/Wallet Logo.imageset/Logo@3x.png -------------------------------------------------------------------------------- /ios/COINiDWallet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/Info.plist -------------------------------------------------------------------------------- /ios/COINiDWallet/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/COINiDWallet/main.m -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/Gemfile.lock -------------------------------------------------------------------------------- /ios/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/fastlane/Appfile -------------------------------------------------------------------------------- /ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /ios/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/ios/fastlane/README.md -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/package.json -------------------------------------------------------------------------------- /patches/react-native+0.59.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/patches/react-native+0.59.9.patch -------------------------------------------------------------------------------- /patches/react-native-iphone-x-helper+1.3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/patches/react-native-iphone-x-helper+1.3.1.patch -------------------------------------------------------------------------------- /shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/shim.js -------------------------------------------------------------------------------- /src/COINiDWallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/COINiDWallet.js -------------------------------------------------------------------------------- /src/actionmenus/ActionMenuRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/actionmenus/ActionMenuRouter.js -------------------------------------------------------------------------------- /src/actionmenus/ReceiveActionMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/actionmenus/ReceiveActionMenu.js -------------------------------------------------------------------------------- /src/actionmenus/VerifyMessageActionMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/actionmenus/VerifyMessageActionMenu.js -------------------------------------------------------------------------------- /src/animations/coinid_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/coinid_logo.json -------------------------------------------------------------------------------- /src/animations/coinid_logo_white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/coinid_logo_white.json -------------------------------------------------------------------------------- /src/animations/emptytrans_cold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/emptytrans_cold.json -------------------------------------------------------------------------------- /src/animations/emptytrans_hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/emptytrans_hot.json -------------------------------------------------------------------------------- /src/animations/feather_cold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/feather_cold.json -------------------------------------------------------------------------------- /src/animations/feather_hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/feather_hot.json -------------------------------------------------------------------------------- /src/animations/gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/gradient.json -------------------------------------------------------------------------------- /src/animations/hourglass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/hourglass.json -------------------------------------------------------------------------------- /src/animations/lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/lock.json -------------------------------------------------------------------------------- /src/animations/setupcold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/setupcold.json -------------------------------------------------------------------------------- /src/animations/setuphot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/setuphot.json -------------------------------------------------------------------------------- /src/animations/tick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/tick.json -------------------------------------------------------------------------------- /src/animations/wallet_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/animations/wallet_logo.json -------------------------------------------------------------------------------- /src/assets/fonts/Inter-UI-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/Inter-UI-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-UI-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/Inter-UI-BlackItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-UI-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/Inter-UI-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-UI-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/Inter-UI-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-UI-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/Inter-UI-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-UI-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/Inter-UI-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-UI-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/Inter-UI-MediumItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-UI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/Inter-UI-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/assets/images/coinid-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/images/coinid-logo.png -------------------------------------------------------------------------------- /src/assets/images/coinid-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/images/coinid-logo@2x.png -------------------------------------------------------------------------------- /src/assets/images/coinid-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/images/coinid-logo@3x.png -------------------------------------------------------------------------------- /src/assets/images/coinid_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/images/coinid_icon.png -------------------------------------------------------------------------------- /src/assets/images/coinid_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/images/coinid_icon@2x.png -------------------------------------------------------------------------------- /src/assets/images/coinid_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/images/coinid_icon@3x.png -------------------------------------------------------------------------------- /src/assets/images/expandable-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/images/expandable-arrow.png -------------------------------------------------------------------------------- /src/assets/images/qr_logo_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/images/qr_logo_full.png -------------------------------------------------------------------------------- /src/assets/images/qr_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/assets/images/qr_logo_small.png -------------------------------------------------------------------------------- /src/components/AmountInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/AmountInput.js -------------------------------------------------------------------------------- /src/components/Balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/Balance.js -------------------------------------------------------------------------------- /src/components/BatchList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/BatchList.js -------------------------------------------------------------------------------- /src/components/BatchSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/BatchSummary.js -------------------------------------------------------------------------------- /src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/Button.js -------------------------------------------------------------------------------- /src/components/COINiDTransport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/COINiDTransport.js -------------------------------------------------------------------------------- /src/components/CancelButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/CancelButton.js -------------------------------------------------------------------------------- /src/components/CheckBoxSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/CheckBoxSelect.js -------------------------------------------------------------------------------- /src/components/ConnectionStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/ConnectionStatus.js -------------------------------------------------------------------------------- /src/components/ConvertCurrency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/ConvertCurrency.js -------------------------------------------------------------------------------- /src/components/DetailsModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/DetailsModal.js -------------------------------------------------------------------------------- /src/components/DialogTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/DialogTitle.js -------------------------------------------------------------------------------- /src/components/DismissableByDragView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/DismissableByDragView.js -------------------------------------------------------------------------------- /src/components/ExpandableView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/ExpandableView.js -------------------------------------------------------------------------------- /src/components/FeeSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/FeeSlider.js -------------------------------------------------------------------------------- /src/components/FontScale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/FontScale.js -------------------------------------------------------------------------------- /src/components/Graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/Graph.js -------------------------------------------------------------------------------- /src/components/InactiveOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/InactiveOverlay.js -------------------------------------------------------------------------------- /src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/Loading.js -------------------------------------------------------------------------------- /src/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/Modal.js -------------------------------------------------------------------------------- /src/components/ReceiveQRCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/ReceiveQRCode.js -------------------------------------------------------------------------------- /src/components/RowInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/RowInfo.js -------------------------------------------------------------------------------- /src/components/SettingsHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/SettingsHeader.js -------------------------------------------------------------------------------- /src/components/SettingsListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/SettingsListItem.js -------------------------------------------------------------------------------- /src/components/SettingsRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/SettingsRoute.js -------------------------------------------------------------------------------- /src/components/SettingsSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/SettingsSection.js -------------------------------------------------------------------------------- /src/components/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/Text.js -------------------------------------------------------------------------------- /src/components/TransactionFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/TransactionFilter.js -------------------------------------------------------------------------------- /src/components/TransactionList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/TransactionList.js -------------------------------------------------------------------------------- /src/components/TransactionState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/TransactionState.js -------------------------------------------------------------------------------- /src/components/TranslatedText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/TranslatedText.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/config/settings.js -------------------------------------------------------------------------------- /src/config/styling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/config/styling.js -------------------------------------------------------------------------------- /src/contexts/DialogBoxContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/contexts/DialogBoxContext.js -------------------------------------------------------------------------------- /src/contexts/ExchangeRateContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/contexts/ExchangeRateContext.js -------------------------------------------------------------------------------- /src/contexts/GlobalContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/contexts/GlobalContext.js -------------------------------------------------------------------------------- /src/contexts/LocaleContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/contexts/LocaleContext.js -------------------------------------------------------------------------------- /src/contexts/QRCodeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/contexts/QRCodeContext.js -------------------------------------------------------------------------------- /src/contexts/StatusBoxContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/contexts/StatusBoxContext.js -------------------------------------------------------------------------------- /src/contexts/WalletContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/contexts/WalletContext.js -------------------------------------------------------------------------------- /src/dialogs/COINiDNotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/COINiDNotFound.js -------------------------------------------------------------------------------- /src/dialogs/InputPublicKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/InputPublicKey.js -------------------------------------------------------------------------------- /src/dialogs/QRDataSender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/QRDataSender.js -------------------------------------------------------------------------------- /src/dialogs/Receive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/Receive.js -------------------------------------------------------------------------------- /src/dialogs/SelectAddressType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/SelectAddressType.js -------------------------------------------------------------------------------- /src/dialogs/SelectColdTransportType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/SelectColdTransportType.js -------------------------------------------------------------------------------- /src/dialogs/Send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/Send.js -------------------------------------------------------------------------------- /src/dialogs/SetupWallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/SetupWallet.js -------------------------------------------------------------------------------- /src/dialogs/Sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/Sign.js -------------------------------------------------------------------------------- /src/dialogs/SignMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/SignMessage.js -------------------------------------------------------------------------------- /src/dialogs/SweepKeyDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/SweepKeyDetails.js -------------------------------------------------------------------------------- /src/dialogs/SweepPrivateKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/SweepPrivateKey.js -------------------------------------------------------------------------------- /src/dialogs/TransactionDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/TransactionDetails.js -------------------------------------------------------------------------------- /src/dialogs/ValidateAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/ValidateAddress.js -------------------------------------------------------------------------------- /src/dialogs/VerifyMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/VerifyMessage.js -------------------------------------------------------------------------------- /src/dialogs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/index.js -------------------------------------------------------------------------------- /src/dialogs/styles/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/dialogs/styles/common.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/index.js -------------------------------------------------------------------------------- /src/libs/coinid-public/bip32-utils-extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/libs/coinid-public/bip32-utils-extension.js -------------------------------------------------------------------------------- /src/libs/coinid-public/blockchain-bridge-blockbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/libs/coinid-public/blockchain-bridge-blockbook.js -------------------------------------------------------------------------------- /src/libs/coinid-public/blockchain-bridge-insight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/libs/coinid-public/blockchain-bridge-insight.js -------------------------------------------------------------------------------- /src/libs/coinid-public/blockchain-fetch-bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/libs/coinid-public/blockchain-fetch-bridge.js -------------------------------------------------------------------------------- /src/libs/coinid-public/blockchain.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/libs/coinid-public/blockchain.e2e.js -------------------------------------------------------------------------------- /src/libs/coinid-public/blockchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/libs/coinid-public/blockchain.js -------------------------------------------------------------------------------- /src/libs/coinid-public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/libs/coinid-public/index.js -------------------------------------------------------------------------------- /src/libs/coinid-public/transactionHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/libs/coinid-public/transactionHelper.js -------------------------------------------------------------------------------- /src/libs/coinid-public/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/libs/coinid-public/utils.js -------------------------------------------------------------------------------- /src/routes/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/routes/dialogs.js -------------------------------------------------------------------------------- /src/routes/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/routes/root.js -------------------------------------------------------------------------------- /src/routes/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/routes/settings.js -------------------------------------------------------------------------------- /src/screens/Build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/screens/Build.js -------------------------------------------------------------------------------- /src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/screens/Home.js -------------------------------------------------------------------------------- /src/screens/InstalledWallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/screens/InstalledWallet.js -------------------------------------------------------------------------------- /src/screens/QRDataReceiver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/screens/QRDataReceiver.js -------------------------------------------------------------------------------- /src/screens/QRScan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/screens/QRScan.js -------------------------------------------------------------------------------- /src/screens/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/screens/Settings.js -------------------------------------------------------------------------------- /src/screens/Setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/screens/Setup.js -------------------------------------------------------------------------------- /src/screens/Wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/screens/Wallet.js -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/screens/index.js -------------------------------------------------------------------------------- /src/settingstree/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/About.js -------------------------------------------------------------------------------- /src/settingstree/AccountInformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/AccountInformation.js -------------------------------------------------------------------------------- /src/settingstree/AccountList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/AccountList.js -------------------------------------------------------------------------------- /src/settingstree/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/Home.js -------------------------------------------------------------------------------- /src/settingstree/Language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/Language.js -------------------------------------------------------------------------------- /src/settingstree/OfflineTransport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/OfflineTransport.js -------------------------------------------------------------------------------- /src/settingstree/Passcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/Passcode.js -------------------------------------------------------------------------------- /src/settingstree/PreferredCurrency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/PreferredCurrency.js -------------------------------------------------------------------------------- /src/settingstree/SignMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/SignMessage.js -------------------------------------------------------------------------------- /src/settingstree/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/settingstree/index.js -------------------------------------------------------------------------------- /src/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/translations/de.json -------------------------------------------------------------------------------- /src/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/translations/en.json -------------------------------------------------------------------------------- /src/translations/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/translations/eo.json -------------------------------------------------------------------------------- /src/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/translations/es.json -------------------------------------------------------------------------------- /src/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/translations/fr.json -------------------------------------------------------------------------------- /src/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/translations/pt.json -------------------------------------------------------------------------------- /src/translations/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/translations/sv.json -------------------------------------------------------------------------------- /src/utils/__tests__/addressHelper-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/__tests__/addressHelper-test.js -------------------------------------------------------------------------------- /src/utils/__tests__/encrypt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/__tests__/encrypt-test.js -------------------------------------------------------------------------------- /src/utils/addressHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/addressHelper.js -------------------------------------------------------------------------------- /src/utils/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/device.js -------------------------------------------------------------------------------- /src/utils/encrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/encrypt.js -------------------------------------------------------------------------------- /src/utils/exchangeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/exchangeHelper.js -------------------------------------------------------------------------------- /src/utils/feeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/feeHelper.js -------------------------------------------------------------------------------- /src/utils/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/generic.js -------------------------------------------------------------------------------- /src/utils/noteHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/noteHelper.js -------------------------------------------------------------------------------- /src/utils/numFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/numFormat.js -------------------------------------------------------------------------------- /src/utils/p2p-ble-central.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/p2p-ble-central.js -------------------------------------------------------------------------------- /src/utils/p2p-ble-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/p2p-ble-common.js -------------------------------------------------------------------------------- /src/utils/settingHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/settingHelper.js -------------------------------------------------------------------------------- /src/utils/storageHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/storageHelper.js -------------------------------------------------------------------------------- /src/utils/styleMerge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/src/utils/styleMerge.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COINiD/COINiDWallet/HEAD/yarn.lock --------------------------------------------------------------------------------