├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── .watchmanconfig ├── AppNavigator.js ├── AppWrapper.js ├── BuildConfig.json ├── Constants.js ├── Helpers.js ├── LICENSE ├── NavigationService.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── keystore │ │ ├── android-debug │ │ └── android-release │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ └── xml │ │ │ └── react_native_config.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── java │ │ └── com │ │ │ └── cybavo │ │ │ └── example │ │ │ └── rn │ │ │ └── wallet │ │ │ ├── LineLoginManager.java │ │ │ ├── LineLoginPackage.java │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ ├── MyModule.java │ │ │ └── wxapi │ │ │ └── WXEntryActivity.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── assets └── image │ ├── bch@3x.png │ ├── bnb@3x.png │ ├── btc@3x.png │ ├── currency_unknown@3x.png │ ├── eos@3x.png │ ├── eth@3x.png │ ├── gusd@3x.png │ ├── ltc@3x.png │ ├── pax@3x.png │ ├── trx@3x.png │ ├── tusd@3x.png │ ├── usdc@3x.png │ ├── usdt_erc20@3x.png │ ├── usdt_omni@3x.png │ └── xrp@3x.png ├── aws-exports.js ├── babel.config.js ├── components ├── ArrayPicker.js ├── Balance.js ├── CurrencyIcon.js ├── CurrencyPicker.js ├── CurrencyText.js ├── DisplayTime.js ├── Filter.js ├── InputPinCodeModal.js ├── TransactionList.js ├── WalletList.js └── WalletPicker.js ├── docs └── images │ ├── aws_pinpoint_push.png │ └── pinpoint_settings.png ├── image ├── sc_wallet_detail.png └── sc_wallet_list.png ├── index.js ├── ios ├── CybavoWalletExample-Bridging-Header.h ├── CybavoWalletExample-tvOS │ └── Info.plist ├── CybavoWalletExample-tvOSTests │ └── Info.plist ├── CybavoWalletExample.swift ├── CybavoWalletExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── CybavoWalletExample-tvOS.xcscheme │ │ └── CybavoWalletExample.xcscheme ├── CybavoWalletExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── CybavoWalletExample.entitlements │ ├── CybavoWalletExampleDebug.entitlements │ ├── CybavoWalletExampleRelease.entitlements │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── launcherWalletSdkLogoIos1024.png │ │ │ ├── launcherWalletSdkLogoIos20@2x.png │ │ │ ├── launcherWalletSdkLogoIos20@3x.png │ │ │ ├── launcherWalletSdkLogoIos29@2x.png │ │ │ ├── launcherWalletSdkLogoIos29@3x.png │ │ │ ├── launcherWalletSdkLogoIos40@2x.png │ │ │ ├── launcherWalletSdkLogoIos40@3x.png │ │ │ ├── launcherWalletSdkLogoIos60@2x.png │ │ │ └── launcherWalletSdkLogoIos60@3x.png │ │ └── Contents.json │ ├── Info.plist │ ├── LineLoginManager.h │ ├── LineLoginManager.m │ └── main.m ├── CybavoWalletExampleTests │ ├── CybavoWalletExampleTests.m │ └── Info.plist ├── GoogleService-Info.plist └── Podfile ├── metro.config.js ├── package.json ├── screens ├── ChangePinCodeScreen.js ├── CreateWalletScreen.js ├── DepositScreen.js ├── EosResourceScreen.js ├── InitializeScreen.js ├── MainScreen.js ├── RecoverPinCodeScreen.js ├── ResetPinCodeScreen.js ├── RestorePinCodeScreen.js ├── ScanScreen.js ├── SessionExpiredScreen.js ├── SettingsScreen.js ├── SetupPinCodeScreen.js ├── SetupSecurityQuestionsScreen.js ├── SignInScreen.js ├── TransactionDetailScreen.js ├── VerifySecurityQuestionsScreen.js ├── WalletDetailScreen.js └── WithdrawScreen.js ├── store ├── actions │ ├── auth │ │ ├── index.js │ │ └── providers │ │ │ ├── LINE.js │ │ │ ├── apple.js │ │ │ ├── facebook.js │ │ │ ├── google.js │ │ │ └── wechat.js │ ├── balance.js │ ├── common.js │ ├── currency.js │ ├── index.js │ ├── user.js │ └── wallets.js ├── index.js └── reducers │ ├── auth.js │ ├── balance.js │ ├── currency.js │ ├── index.js │ ├── user.js │ └── wallets.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/AppNavigator.js -------------------------------------------------------------------------------- /AppWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/AppWrapper.js -------------------------------------------------------------------------------- /BuildConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/BuildConfig.json -------------------------------------------------------------------------------- /Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/Constants.js -------------------------------------------------------------------------------- /Helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/Helpers.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/LICENSE -------------------------------------------------------------------------------- /NavigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/NavigationService.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/keystore/android-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/keystore/android-debug -------------------------------------------------------------------------------- /android/app/keystore/android-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/keystore/android-release -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/res/xml/react_native_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/debug/res/xml/react_native_config.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/cybavo/example/rn/wallet/LineLoginManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/java/com/cybavo/example/rn/wallet/LineLoginManager.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/cybavo/example/rn/wallet/LineLoginPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/java/com/cybavo/example/rn/wallet/LineLoginPackage.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/cybavo/example/rn/wallet/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/java/com/cybavo/example/rn/wallet/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/cybavo/example/rn/wallet/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/java/com/cybavo/example/rn/wallet/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/cybavo/example/rn/wallet/MyModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/java/com/cybavo/example/rn/wallet/MyModule.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/cybavo/example/rn/wallet/wxapi/WXEntryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/java/com/cybavo/example/rn/wallet/wxapi/WXEntryActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/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/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/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/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/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/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/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/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/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/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/app.json -------------------------------------------------------------------------------- /assets/image/bch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/bch@3x.png -------------------------------------------------------------------------------- /assets/image/bnb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/bnb@3x.png -------------------------------------------------------------------------------- /assets/image/btc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/btc@3x.png -------------------------------------------------------------------------------- /assets/image/currency_unknown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/currency_unknown@3x.png -------------------------------------------------------------------------------- /assets/image/eos@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/eos@3x.png -------------------------------------------------------------------------------- /assets/image/eth@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/eth@3x.png -------------------------------------------------------------------------------- /assets/image/gusd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/gusd@3x.png -------------------------------------------------------------------------------- /assets/image/ltc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/ltc@3x.png -------------------------------------------------------------------------------- /assets/image/pax@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/pax@3x.png -------------------------------------------------------------------------------- /assets/image/trx@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/trx@3x.png -------------------------------------------------------------------------------- /assets/image/tusd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/tusd@3x.png -------------------------------------------------------------------------------- /assets/image/usdc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/usdc@3x.png -------------------------------------------------------------------------------- /assets/image/usdt_erc20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/usdt_erc20@3x.png -------------------------------------------------------------------------------- /assets/image/usdt_omni@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/usdt_omni@3x.png -------------------------------------------------------------------------------- /assets/image/xrp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/assets/image/xrp@3x.png -------------------------------------------------------------------------------- /aws-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/aws-exports.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/ArrayPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/ArrayPicker.js -------------------------------------------------------------------------------- /components/Balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/Balance.js -------------------------------------------------------------------------------- /components/CurrencyIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/CurrencyIcon.js -------------------------------------------------------------------------------- /components/CurrencyPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/CurrencyPicker.js -------------------------------------------------------------------------------- /components/CurrencyText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/CurrencyText.js -------------------------------------------------------------------------------- /components/DisplayTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/DisplayTime.js -------------------------------------------------------------------------------- /components/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/Filter.js -------------------------------------------------------------------------------- /components/InputPinCodeModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/InputPinCodeModal.js -------------------------------------------------------------------------------- /components/TransactionList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/TransactionList.js -------------------------------------------------------------------------------- /components/WalletList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/WalletList.js -------------------------------------------------------------------------------- /components/WalletPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/components/WalletPicker.js -------------------------------------------------------------------------------- /docs/images/aws_pinpoint_push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/docs/images/aws_pinpoint_push.png -------------------------------------------------------------------------------- /docs/images/pinpoint_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/docs/images/pinpoint_settings.png -------------------------------------------------------------------------------- /image/sc_wallet_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/image/sc_wallet_detail.png -------------------------------------------------------------------------------- /image/sc_wallet_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/image/sc_wallet_list.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/index.js -------------------------------------------------------------------------------- /ios/CybavoWalletExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample-Bridging-Header.h -------------------------------------------------------------------------------- /ios/CybavoWalletExample-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/CybavoWalletExample-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/CybavoWalletExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample.swift -------------------------------------------------------------------------------- /ios/CybavoWalletExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/CybavoWalletExample.xcodeproj/xcshareddata/xcschemes/CybavoWalletExample-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample.xcodeproj/xcshareddata/xcschemes/CybavoWalletExample-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/CybavoWalletExample.xcodeproj/xcshareddata/xcschemes/CybavoWalletExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample.xcodeproj/xcshareddata/xcschemes/CybavoWalletExample.xcscheme -------------------------------------------------------------------------------- /ios/CybavoWalletExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/AppDelegate.h -------------------------------------------------------------------------------- /ios/CybavoWalletExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/AppDelegate.m -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/CybavoWalletExample/CybavoWalletExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/CybavoWalletExample.entitlements -------------------------------------------------------------------------------- /ios/CybavoWalletExample/CybavoWalletExampleDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/CybavoWalletExampleDebug.entitlements -------------------------------------------------------------------------------- /ios/CybavoWalletExample/CybavoWalletExampleRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/CybavoWalletExampleRelease.entitlements -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos1024.png -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos20@2x.png -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos20@3x.png -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos29@2x.png -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos29@3x.png -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos40@2x.png -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos40@3x.png -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos60@2x.png -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/AppIcon.appiconset/launcherWalletSdkLogoIos60@3x.png -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/CybavoWalletExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/Info.plist -------------------------------------------------------------------------------- /ios/CybavoWalletExample/LineLoginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/LineLoginManager.h -------------------------------------------------------------------------------- /ios/CybavoWalletExample/LineLoginManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/LineLoginManager.m -------------------------------------------------------------------------------- /ios/CybavoWalletExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExample/main.m -------------------------------------------------------------------------------- /ios/CybavoWalletExampleTests/CybavoWalletExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExampleTests/CybavoWalletExampleTests.m -------------------------------------------------------------------------------- /ios/CybavoWalletExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/CybavoWalletExampleTests/Info.plist -------------------------------------------------------------------------------- /ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/ios/Podfile -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/package.json -------------------------------------------------------------------------------- /screens/ChangePinCodeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/ChangePinCodeScreen.js -------------------------------------------------------------------------------- /screens/CreateWalletScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/CreateWalletScreen.js -------------------------------------------------------------------------------- /screens/DepositScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/DepositScreen.js -------------------------------------------------------------------------------- /screens/EosResourceScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/EosResourceScreen.js -------------------------------------------------------------------------------- /screens/InitializeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/InitializeScreen.js -------------------------------------------------------------------------------- /screens/MainScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/MainScreen.js -------------------------------------------------------------------------------- /screens/RecoverPinCodeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/RecoverPinCodeScreen.js -------------------------------------------------------------------------------- /screens/ResetPinCodeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/ResetPinCodeScreen.js -------------------------------------------------------------------------------- /screens/RestorePinCodeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/RestorePinCodeScreen.js -------------------------------------------------------------------------------- /screens/ScanScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/ScanScreen.js -------------------------------------------------------------------------------- /screens/SessionExpiredScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/SessionExpiredScreen.js -------------------------------------------------------------------------------- /screens/SettingsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/SettingsScreen.js -------------------------------------------------------------------------------- /screens/SetupPinCodeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/SetupPinCodeScreen.js -------------------------------------------------------------------------------- /screens/SetupSecurityQuestionsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/SetupSecurityQuestionsScreen.js -------------------------------------------------------------------------------- /screens/SignInScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/SignInScreen.js -------------------------------------------------------------------------------- /screens/TransactionDetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/TransactionDetailScreen.js -------------------------------------------------------------------------------- /screens/VerifySecurityQuestionsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/VerifySecurityQuestionsScreen.js -------------------------------------------------------------------------------- /screens/WalletDetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/WalletDetailScreen.js -------------------------------------------------------------------------------- /screens/WithdrawScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/screens/WithdrawScreen.js -------------------------------------------------------------------------------- /store/actions/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/auth/index.js -------------------------------------------------------------------------------- /store/actions/auth/providers/LINE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/auth/providers/LINE.js -------------------------------------------------------------------------------- /store/actions/auth/providers/apple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/auth/providers/apple.js -------------------------------------------------------------------------------- /store/actions/auth/providers/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/auth/providers/facebook.js -------------------------------------------------------------------------------- /store/actions/auth/providers/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/auth/providers/google.js -------------------------------------------------------------------------------- /store/actions/auth/providers/wechat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/auth/providers/wechat.js -------------------------------------------------------------------------------- /store/actions/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/balance.js -------------------------------------------------------------------------------- /store/actions/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/common.js -------------------------------------------------------------------------------- /store/actions/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/currency.js -------------------------------------------------------------------------------- /store/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/index.js -------------------------------------------------------------------------------- /store/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/user.js -------------------------------------------------------------------------------- /store/actions/wallets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/actions/wallets.js -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/index.js -------------------------------------------------------------------------------- /store/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/reducers/auth.js -------------------------------------------------------------------------------- /store/reducers/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/reducers/balance.js -------------------------------------------------------------------------------- /store/reducers/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/reducers/currency.js -------------------------------------------------------------------------------- /store/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/reducers/index.js -------------------------------------------------------------------------------- /store/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/reducers/user.js -------------------------------------------------------------------------------- /store/reducers/wallets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/store/reducers/wallets.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CYBAVO/react-native_wallet_sdk_sample/HEAD/yarn.lock --------------------------------------------------------------------------------