├── .github ├── DOCS │ └── e2e.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── documentation.yml ├── actions │ └── ci-setup │ │ └── action.yml ├── workflow-templates │ ├── e2e-template.properties.json │ └── e2e-template.yaml └── workflows │ ├── release-android-base.yaml │ ├── release-dapp-android-internal.yaml │ ├── release-dapp-android-production.yaml │ ├── release-dapp-ios-internal.yaml │ ├── release-dapp-ios-production.yaml │ ├── release-ios-base.yaml │ ├── release-wallet-android-internal.yaml │ ├── release-wallet-android-production.yaml │ ├── release-wallet-ios-internal.yaml │ └── release-wallet-ios-production.yaml ├── .gitignore ├── .maestro ├── config.yaml ├── dapp-flow.yaml └── wallet-flow.yaml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── dapps ├── ModalEthers │ ├── .bundle │ │ └── config │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── __tests__ │ │ └── App.test.tsx │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── modalviem │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── modalviem │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── release │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── modalviem │ │ │ │ └── ReactNativeFlipper.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── ModalEthers.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ModalEthers.xcscheme │ │ ├── ModalEthers.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── ModalEthers │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iOS App Icon_1024pt@1x.png │ │ │ │ │ ├── iOS App Icon_20pt@2x.png │ │ │ │ │ ├── iOS App Icon_20pt@3x.png │ │ │ │ │ ├── iOS App Icon_29pt@2x.png │ │ │ │ │ ├── iOS App Icon_29pt@3x.png │ │ │ │ │ ├── iOS App Icon_40pt@2x.png │ │ │ │ │ ├── iOS App Icon_40pt@3x.png │ │ │ │ │ ├── iOS App Icon_60pt@2x.png │ │ │ │ │ └── iOS App Icon_60pt@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── ModalEthersTests │ │ │ ├── Info.plist │ │ │ └── ModalEthersTests.m │ │ ├── Podfile │ │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ └── RequestModal.tsx │ │ ├── config │ │ │ └── polyfills.ts │ │ ├── types │ │ │ └── env.d.ts │ │ └── utils │ │ │ ├── ConfigUtils.ts │ │ │ └── ContractUtils.ts │ ├── tsconfig.json │ └── yarn.lock ├── ModalUProvider │ ├── .bundle │ │ └── config │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── __tests__ │ │ └── App.test.tsx │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── modalviem │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-playstore.png │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── modalviem │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── release │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── modalviem │ │ │ │ └── ReactNativeFlipper.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── ModalUProvider.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ModalUProvider.xcscheme │ │ ├── ModalUProvider.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── ModalUProvider │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iOS App Icon_1024pt@1x.png │ │ │ │ │ ├── iOS App Icon_20pt@2x.png │ │ │ │ │ ├── iOS App Icon_20pt@3x.png │ │ │ │ │ ├── iOS App Icon_29pt@2x.png │ │ │ │ │ ├── iOS App Icon_29pt@3x.png │ │ │ │ │ ├── iOS App Icon_40pt@2x.png │ │ │ │ │ ├── iOS App Icon_40pt@3x.png │ │ │ │ │ ├── iOS App Icon_60pt@2x.png │ │ │ │ │ └── iOS App Icon_60pt@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── ModalUProviderTests │ │ │ ├── Info.plist │ │ │ └── ModalUProviderTests.m │ │ ├── Podfile │ │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ └── RequestModal.tsx │ │ ├── types │ │ │ └── env.d.ts │ │ └── utils │ │ │ ├── ConfigUtils.ts │ │ │ └── ContractUtils.ts │ ├── tsconfig.json │ └── yarn.lock ├── ModalViem │ ├── .bundle │ │ └── config │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── __tests__ │ │ └── App.test.tsx │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── modalviem │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── modalviem │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── release │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── modalviem │ │ │ │ └── ReactNativeFlipper.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── ModalViem.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ModalViem.xcscheme │ │ ├── ModalViem.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── ModalViem │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon-20@2x.png │ │ │ │ │ ├── AppIcon-20@3x.png │ │ │ │ │ ├── AppIcon-29@2x.png │ │ │ │ │ ├── AppIcon-29@3x.png │ │ │ │ │ ├── AppIcon-40@2x.png │ │ │ │ │ ├── AppIcon-40@3x.png │ │ │ │ │ ├── AppIcon@2x.png │ │ │ │ │ ├── AppIcon@3x.png │ │ │ │ │ ├── AppIcon~ios-marketing.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── ModalViemTests │ │ │ ├── Info.plist │ │ │ └── ModalViemTests.m │ │ ├── Podfile │ │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ └── RequestModal.tsx │ │ ├── types │ │ │ └── env.d.ts │ │ └── utils │ │ │ ├── ConfigUtils.ts │ │ │ └── ContractUtils.ts │ ├── tsconfig.json │ └── yarn.lock ├── W3MEthers │ ├── .bundle │ │ └── config │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .tool-versions │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── __tests__ │ │ └── App.test.tsx │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── web3modalethers │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Web3ModalEthers.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Web3ModalEthers.xcscheme │ │ ├── Web3ModalEthers.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Web3ModalEthers │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── LaunchScreen.storyboard │ │ └── main.m │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ └── RequestModal.tsx │ │ ├── types │ │ │ └── env.d.ts │ │ ├── utils │ │ │ ├── ChainUtils.ts │ │ │ ├── SiweUtils.ts │ │ │ ├── eip712.ts │ │ │ ├── misc.ts │ │ │ ├── usdtAbi.ts │ │ │ └── wagmigotchiABI.ts │ │ └── views │ │ │ ├── ReadContract.tsx │ │ │ ├── SendTransaction.tsx │ │ │ ├── SignMessage.tsx │ │ │ ├── SignTypedDataV4.tsx │ │ │ └── WriteContract.tsx │ ├── tsconfig.json │ └── yarn.lock ├── W3MEthers5 │ ├── .bundle │ │ └── config │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── __tests__ │ │ └── App.test.tsx │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── web3modalethers5 │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Web3ModalEthers5.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Web3ModalEthers5.xcscheme │ │ ├── Web3ModalEthers5.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Web3ModalEthers5 │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ └── Web3ModalEthers5Tests │ │ │ ├── Info.plist │ │ │ └── Web3ModalEthers5Tests.m │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ └── RequestModal.tsx │ │ ├── types │ │ │ └── env.d.ts │ │ ├── utils │ │ │ ├── ChainUtils.ts │ │ │ ├── SiweUtils.ts │ │ │ ├── eip712.ts │ │ │ ├── misc.ts │ │ │ ├── usdtAbi.ts │ │ │ └── wagmigotchiABI.ts │ │ └── views │ │ │ ├── ReadContract.tsx │ │ │ ├── SendTransaction.tsx │ │ │ ├── SignMessage.tsx │ │ │ ├── SignTypedDataV4.tsx │ │ │ └── WriteContract.tsx │ ├── tsconfig.json │ └── yarn.lock └── W3MWagmi │ ├── .bundle │ └── config │ ├── .env.example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── .yarn │ └── releases │ │ └── yarn-3.6.4.cjs │ ├── .yarnrc.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── __tests__ │ └── App.test.tsx │ ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore.mock │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ └── res │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── internal │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ └── res │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_background.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── w3mwagmi │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── bootsplash_logo.png │ │ │ ├── drawable-mdpi │ │ │ └── bootsplash_logo.png │ │ │ ├── drawable-xhdpi │ │ │ └── bootsplash_logo.png │ │ │ ├── drawable-xxhdpi │ │ │ └── bootsplash_logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── bootsplash_logo.png │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── secrets.properties.mock │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ ├── .xcode.env │ ├── AppDelegate.swift │ ├── Podfile │ ├── Podfile.lock │ ├── PrivacyInfo.xcprivacy │ ├── W3MWagmi.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── W3MWagmi Debug.xcscheme │ │ │ ├── W3MWagmi Internal.xcscheme │ │ │ └── W3MWagmi.xcscheme │ ├── W3MWagmi.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── W3MWagmi │ │ ├── BootSplash.storyboard │ │ ├── Debug-Info.plist │ │ ├── Images.xcassets │ │ ├── AppIcon-Debug.appiconset │ │ │ ├── AppIcon-20@2x.png │ │ │ ├── AppIcon-20@3x.png │ │ │ ├── AppIcon-29@2x.png │ │ │ ├── AppIcon-29@3x.png │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-40@3x.png │ │ │ ├── AppIcon-60@2x~car.png │ │ │ ├── AppIcon-60@3x~car.png │ │ │ ├── AppIcon~ios-marketing.png │ │ │ └── Contents.json │ │ ├── AppIcon-Internal.appiconset │ │ │ ├── AppIcon-20@2x.png │ │ │ ├── AppIcon-20@3x.png │ │ │ ├── AppIcon-29@2x.png │ │ │ ├── AppIcon-29@3x.png │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-40@3x.png │ │ │ ├── AppIcon-60@2x~car.png │ │ │ ├── AppIcon-60@3x~car.png │ │ │ ├── AppIcon~ios-marketing.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-20@2x.png │ │ │ ├── AppIcon-20@3x.png │ │ │ ├── AppIcon-29@2x.png │ │ │ ├── AppIcon-29@3x.png │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-40@3x.png │ │ │ ├── AppIcon-60@2x~car.png │ │ │ ├── AppIcon-60@3x~car.png │ │ │ ├── AppIcon~ios-marketing.png │ │ │ └── Contents.json │ │ ├── BootSplashLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── bootsplash_logo-ytm62g.png │ │ │ ├── bootsplash_logo-ytm62g@2x.png │ │ │ └── bootsplash_logo-ytm62g@3x.png │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Internal-Info.plist │ │ └── W3MWagmi.entitlements │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── scripts │ ├── copy-sample-files.sh │ ├── copy-variant-files.sh │ ├── misc_debug.ts │ ├── misc_internal.ts │ └── misc_prod.ts │ ├── src │ ├── App.tsx │ ├── assets │ │ ├── ConnectionsTab.tsx │ │ └── SettingsTab.tsx │ ├── components │ │ ├── Card.tsx │ │ └── RequestModal.tsx │ ├── hooks │ │ ├── useLogs.ts │ │ ├── useSocketStatus.ts │ │ └── useTheme.ts │ ├── navigators │ │ ├── HomeTabNavigagor.tsx │ │ └── RootStackNavigator.tsx │ ├── screens │ │ ├── Connections │ │ │ ├── components │ │ │ │ ├── ReadContract.tsx │ │ │ │ ├── SendTransaction.tsx │ │ │ │ ├── SignMessage.tsx │ │ │ │ ├── SignTypedDataV4.tsx │ │ │ │ └── WriteContract.tsx │ │ │ └── index.tsx │ │ ├── LogList │ │ │ ├── components │ │ │ │ └── Log.tsx │ │ │ └── index.tsx │ │ └── Settings │ │ │ ├── components │ │ │ └── WalletInfo.tsx │ │ │ ├── index.tsx │ │ │ └── styles.ts │ ├── stores │ │ └── SettingsStore.ts │ ├── types │ │ └── env.d.ts │ └── utils │ │ ├── SiweUtils.ts │ │ ├── ThemeUtil.ts │ │ ├── TypesUtil.ts │ │ ├── WagmiUtils.ts │ │ ├── eip712.ts │ │ ├── misc.ts │ │ ├── usdtAbi.ts │ │ └── wagmigotchiABI.ts │ ├── tsconfig.json │ └── yarn.lock ├── fastlane ├── Appfile ├── Fastfile └── README.md └── wallets └── rn_cli_wallet ├── .bundle └── config ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .ruby-version ├── .vscode └── settings.json ├── .watchmanconfig ├── .yarn └── releases │ └── yarn-3.6.4.cjs ├── .yarnrc.yml ├── Gemfile ├── Gemfile.lock ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── build.gradle │ ├── debug.keystore.mock │ ├── google-services.mock.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ └── res │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ ├── internal │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ └── res │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ └── com │ │ │ └── walletconnect │ │ │ └── web3wallet │ │ │ └── rnsample │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable-hdpi │ │ └── bootsplash_logo.png │ │ ├── drawable-mdpi │ │ └── bootsplash_logo.png │ │ ├── drawable-xhdpi │ │ └── bootsplash_logo.png │ │ ├── drawable-xxhdpi │ │ └── bootsplash_logo.png │ │ ├── drawable-xxxhdpi │ │ └── bootsplash_logo.png │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── secrets.properties.mock └── settings.gradle ├── app.json ├── babel.config.js ├── declarations.d.ts ├── index.js ├── ios ├── .xcode.env ├── GoogleService │ └── GoogleService-Info.mock.plist ├── Podfile ├── Podfile.lock ├── RNWeb3Wallet.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RNWallet-Debug.xcscheme │ │ ├── RNWallet-Internal.xcscheme │ │ └── RNWallet.xcscheme ├── RNWeb3Wallet.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── RNWeb3Wallet │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── BootSplash.storyboard │ ├── Debug-Info.plist │ ├── Images.xcassets │ │ ├── AppIcon-Debug.appiconset │ │ │ ├── AppIcon-20@2x.png │ │ │ ├── AppIcon-20@2x~ipad.png │ │ │ ├── AppIcon-20@3x.png │ │ │ ├── AppIcon-20~ipad.png │ │ │ ├── AppIcon-29.png │ │ │ ├── AppIcon-29@2x.png │ │ │ ├── AppIcon-29@2x~ipad.png │ │ │ ├── AppIcon-29@3x.png │ │ │ ├── AppIcon-29~ipad.png │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-40@2x~ipad.png │ │ │ ├── AppIcon-40@3x.png │ │ │ ├── AppIcon-40~ipad.png │ │ │ ├── AppIcon-60@2x~car.png │ │ │ ├── AppIcon-60@3x~car.png │ │ │ ├── AppIcon-83.5@2x~ipad.png │ │ │ ├── AppIcon@2x.png │ │ │ ├── AppIcon@2x~ipad.png │ │ │ ├── AppIcon@3x.png │ │ │ ├── AppIcon~ios-marketing.png │ │ │ ├── AppIcon~ipad.png │ │ │ └── Contents.json │ │ ├── AppIcon-Internal.appiconset │ │ │ ├── AppIcon-20@2x.png │ │ │ ├── AppIcon-20@2x~ipad.png │ │ │ ├── AppIcon-20@3x.png │ │ │ ├── AppIcon-20~ipad.png │ │ │ ├── AppIcon-29.png │ │ │ ├── AppIcon-29@2x.png │ │ │ ├── AppIcon-29@2x~ipad.png │ │ │ ├── AppIcon-29@3x.png │ │ │ ├── AppIcon-29~ipad.png │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-40@2x~ipad.png │ │ │ ├── AppIcon-40@3x.png │ │ │ ├── AppIcon-40~ipad.png │ │ │ ├── AppIcon-60@2x~car.png │ │ │ ├── AppIcon-60@3x~car.png │ │ │ ├── AppIcon-83.5@2x~ipad.png │ │ │ ├── AppIcon@2x.png │ │ │ ├── AppIcon@2x~ipad.png │ │ │ ├── AppIcon@3x.png │ │ │ ├── AppIcon~ios-marketing.png │ │ │ ├── AppIcon~ipad.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-20@2x.png │ │ │ ├── AppIcon-20@2x~ipad.png │ │ │ ├── AppIcon-20@3x.png │ │ │ ├── AppIcon-20~ipad.png │ │ │ ├── AppIcon-29.png │ │ │ ├── AppIcon-29@2x.png │ │ │ ├── AppIcon-29@2x~ipad.png │ │ │ ├── AppIcon-29@3x.png │ │ │ ├── AppIcon-29~ipad.png │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-40@2x~ipad.png │ │ │ ├── AppIcon-40@3x.png │ │ │ ├── AppIcon-40~ipad.png │ │ │ ├── AppIcon-60@2x~car.png │ │ │ ├── AppIcon-60@3x~car.png │ │ │ ├── AppIcon-83.5@2x~ipad.png │ │ │ ├── AppIcon@2x.png │ │ │ ├── AppIcon@2x~ipad.png │ │ │ ├── AppIcon@3x.png │ │ │ ├── AppIcon~ios-marketing.png │ │ │ ├── AppIcon~ipad.png │ │ │ └── Contents.json │ │ ├── BootSplashLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── bootsplash_logo-eobxv3.png │ │ │ ├── bootsplash_logo-eobxv3@2x.png │ │ │ └── bootsplash_logo-eobxv3@3x.png │ │ └── Contents.json │ ├── Info.plist │ ├── Internal-Info.plist │ ├── PrivacyInfo.xcprivacy │ ├── RNWeb3Wallet.entitlements │ ├── RNWeb3WalletDebug.entitlements │ └── main.m └── RNWeb3WalletTests │ ├── Info.plist │ └── rn_cli_walletTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── patches └── @ethersproject+pbkdf2+5.7.0.patch ├── polyfills.ts ├── react-native.config.js ├── scripts ├── copy-sample-files.sh ├── copy-variant-files.sh ├── misc_debug.ts ├── misc_internal.ts └── misc_prod.ts ├── src ├── assets │ ├── AlertCircle.tsx │ ├── ChevronRight.tsx │ ├── ConnectTemplate.tsx │ ├── ConnectionsTab.tsx │ ├── Copy.tsx │ ├── QRCode.tsx │ ├── SettingsTab.tsx │ ├── VerifiedDomain.png │ ├── Warning.tsx │ ├── WarningRisk.tsx │ └── chains │ │ ├── arbitrum.webp │ │ ├── aurora.webp │ │ ├── avalanche.webp │ │ ├── base.webp │ │ ├── binance.webp │ │ ├── celo.webp │ │ ├── ethereum.webp │ │ ├── evmos.webp │ │ ├── fantom.webp │ │ ├── filecoin.webp │ │ ├── gnosis.webp │ │ ├── iotx.webp │ │ ├── metis.webp │ │ ├── moonbeam.webp │ │ ├── moonriver.webp │ │ ├── optimism.webp │ │ ├── polygon.webp │ │ ├── zksync.webp │ │ └── zora.webp ├── components │ ├── ActionButton.tsx │ ├── Card.tsx │ ├── CircleActionButton.tsx │ ├── ConnectButton.tsx │ ├── CopyURIDialog.tsx │ ├── Modal.tsx │ ├── Modal │ │ ├── Chains.tsx │ │ ├── Events.tsx │ │ ├── Message.tsx │ │ ├── Methods.tsx │ │ ├── ModalFooter.tsx │ │ └── ModalHeader.tsx │ ├── ScreenContainer.tsx │ ├── Tag.tsx │ ├── VerifyInfoBox.tsx │ └── VerifyTag.tsx ├── constants │ └── Storage.ts ├── hooks │ ├── useInitializeWalletKit.ts │ ├── useLogs.ts │ ├── useTheme.ts │ └── useWalletKitEventsManager.ts ├── lib │ └── EIP155Lib.ts ├── modals │ ├── LoadingModal.tsx │ ├── RequestModal.tsx │ ├── SessionAuthenticateModal.tsx │ ├── SessionProposalModal.tsx │ ├── SessionSendTransactionModal.tsx │ ├── SessionSignModal.tsx │ └── SessionSignTypedDataModal.tsx ├── navigators │ ├── ConnectionsStack.tsx │ ├── HomeTabNavigator.tsx │ ├── RootStackNavigator.tsx │ └── SettingsStack.tsx ├── screens │ ├── App.tsx │ ├── Connections │ │ ├── components │ │ │ ├── ActionButtons.tsx │ │ │ ├── IndividualSession.tsx │ │ │ └── Sessions.tsx │ │ └── index.tsx │ ├── LogList │ │ ├── components │ │ │ └── Log.tsx │ │ └── index.tsx │ ├── Scan │ │ ├── index.tsx │ │ └── styles.ts │ ├── SessionDetail │ │ ├── components │ │ │ └── DappInfo.tsx │ │ ├── index.tsx │ │ └── styles.ts │ └── Settings │ │ ├── index.tsx │ │ └── styles.ts ├── store │ ├── ModalStore.ts │ └── SettingsStore.ts └── utils │ ├── EIP155RequestHandlerUtil.ts │ ├── EIP155WalletUtil.ts │ ├── HelperUtil.ts │ ├── LinkingUtils.ts │ ├── PresetsUtil.ts │ ├── ThemeUtil.ts │ ├── TypesUtil.ts │ ├── WalletKitUtil.ts │ ├── date.ts │ └── misc.ts ├── tsconfig.json └── yarn.lock /.github/workflow-templates/e2e-template.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "e2e workflow", 3 | "description": "Runs e2e tests on a project" 4 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | wallets/.DS_Store 4 | **/node_modules 5 | vendor/ 6 | 7 | # Android 8 | *.keystore 9 | secrets.properties 10 | 11 | # Env files 12 | .env.* 13 | *.env 14 | !.env.example 15 | 16 | # Sentry 17 | sentry.properties 18 | 19 | # Fastlane 20 | fastlane/report.xml -------------------------------------------------------------------------------- /.maestro/config.yaml: -------------------------------------------------------------------------------- 1 | # Maestro configuration file 2 | baselineBranch: main 3 | flows: 4 | - "*" -------------------------------------------------------------------------------- /.maestro/dapp-flow.yaml: -------------------------------------------------------------------------------- 1 | # flow.yaml 2 | 3 | appId: "com.walletconnect.modal.viem" 4 | --- 5 | - launchApp 6 | - extendedWaitUntil: 7 | visible: "Connect" 8 | timeout: 60000 9 | -------------------------------------------------------------------------------- /.maestro/wallet-flow.yaml: -------------------------------------------------------------------------------- 1 | # flow.yaml 2 | appId: "com.walletconnect.web3wallet.rnsample" 3 | --- 4 | - launchApp 5 | - extendedWaitUntil: 6 | visible: "Get Started" 7 | timeout: 60000 8 | - tapOn: "Get Started" 9 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | gem "cocoapods", '1.15.2' 5 | gem "rexml", ">= 3.3.6" 6 | -------------------------------------------------------------------------------- /dapps/ModalEthers/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /dapps/ModalEthers/.env.example: -------------------------------------------------------------------------------- 1 | ENV_PROJECT_ID='YOUR_PROJECT_ID' #Get it from https://cloud.reown.com/ -------------------------------------------------------------------------------- /dapps/ModalEthers/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/ModalEthers/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /dapps/ModalEthers/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dapps/ModalEthers/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby ">= 2.6.10" 5 | 6 | gem 'cocoapods', '~> 1.12' 7 | gem 'rexml', '>= 3.3.6' 8 | -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/debug.keystore -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3396FF 4 | -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ModalEthers 3 | 4 | -------------------------------------------------------------------------------- /dapps/ModalEthers/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /dapps/ModalEthers/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dapps/ModalEthers/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip 4 | networkTimeout=10000 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /dapps/ModalEthers/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ModalEthers' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | includeBuild('../node_modules/@react-native/gradle-plugin') 5 | -------------------------------------------------------------------------------- /dapps/ModalEthers/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ModalEthers", 3 | "displayName": "ModalEthers" 4 | } 5 | -------------------------------------------------------------------------------- /dapps/ModalEthers/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | plugins: [['module:react-native-dotenv']], 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/ModalEthers/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './src/App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : RCTAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_1024pt@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_1024pt@1x.png -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_20pt@2x.png -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_20pt@3x.png -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_29pt@2x.png -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_29pt@3x.png -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_40pt@2x.png -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_40pt@3x.png -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_60pt@2x.png -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalEthers/ios/ModalEthers/Images.xcassets/AppIcon.appiconset/iOS App Icon_60pt@3x.png -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dapps/ModalEthers/ios/ModalEthers/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /dapps/ModalEthers/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /dapps/ModalEthers/metro.config.js: -------------------------------------------------------------------------------- 1 | const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config'); 2 | 3 | /** 4 | * Metro configuration 5 | * https://facebook.github.io/metro/docs/configuration 6 | * 7 | * @type {import('metro-config').MetroConfig} 8 | */ 9 | const config = {}; 10 | 11 | module.exports = mergeConfig(getDefaultConfig(__dirname), config); 12 | -------------------------------------------------------------------------------- /dapps/ModalEthers/src/config/polyfills.ts: -------------------------------------------------------------------------------- 1 | import '@walletconnect/react-native-compat'; 2 | import '@ethersproject/shims'; 3 | -------------------------------------------------------------------------------- /dapps/ModalEthers/src/types/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@env' { 2 | export const ENV_PROJECT_ID: string; 3 | } 4 | -------------------------------------------------------------------------------- /dapps/ModalEthers/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/react-native/tsconfig.json", 3 | "compilerOptions": { 4 | "typeRoots": ["./src/types"], 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/.env.example: -------------------------------------------------------------------------------- 1 | ENV_PROJECT_ID='YOUR_ENV_PROJECT_ID' #Get it from https://cloud.reown.com/ 2 | ENV_RELAY_URL='' 3 | ENV_SENTRY_DSN='...' -------------------------------------------------------------------------------- /dapps/ModalUProvider/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby ">= 2.6.10" 5 | 6 | gem 'cocoapods', '~> 1.12' 7 | gem 'rexml', '>= 3.3.6' 8 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/debug.keystore -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3396FF 4 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Modal UProvider 3 | 4 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip 4 | networkTimeout=10000 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ModalUProvider' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | includeBuild('../node_modules/@react-native/gradle-plugin') 5 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ModalUProvider", 3 | "displayName": "ModalUProvider" 4 | } 5 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | plugins: [['module:react-native-dotenv']], 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './src/App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : RCTAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_1024pt@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_1024pt@1x.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_20pt@2x.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_20pt@3x.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_29pt@2x.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_29pt@3x.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_40pt@2x.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_40pt@3x.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_60pt@2x.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/AppIcon.appiconset/iOS App Icon_60pt@3x.png -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/ios/ModalUProvider/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/metro.config.js: -------------------------------------------------------------------------------- 1 | const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config'); 2 | 3 | /** 4 | * Metro configuration 5 | * https://facebook.github.io/metro/docs/configuration 6 | * 7 | * @type {import('metro-config').MetroConfig} 8 | */ 9 | const config = {}; 10 | 11 | module.exports = mergeConfig(getDefaultConfig(__dirname), config); 12 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/src/types/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@env' { 2 | export const ENV_PROJECT_ID: string; 3 | export const ENV_RELAY_URL: string; 4 | export const ENV_SENTRY_DSN: string; 5 | } 6 | -------------------------------------------------------------------------------- /dapps/ModalUProvider/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/react-native/tsconfig.json", 3 | "compilerOptions": { 4 | "typeRoots": ["./src/types"], 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dapps/ModalViem/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /dapps/ModalViem/.env.example: -------------------------------------------------------------------------------- 1 | ENV_PROJECT_ID='YOUR_PROJECT_ID' #Get it from https://cloud.reown.com/ -------------------------------------------------------------------------------- /dapps/ModalViem/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/ModalViem/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /dapps/ModalViem/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dapps/ModalViem/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby ">= 2.6.10" 5 | 6 | gem 'cocoapods', '~> 1.12' 7 | gem 'rexml', '>= 3.3.6' 8 | -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/debug.keystore -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3396FF 4 | -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Modal RN 3 | 4 | -------------------------------------------------------------------------------- /dapps/ModalViem/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /dapps/ModalViem/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dapps/ModalViem/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip 4 | networkTimeout=10000 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /dapps/ModalViem/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ModalViem' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | includeBuild('../node_modules/@react-native/gradle-plugin') 5 | -------------------------------------------------------------------------------- /dapps/ModalViem/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ModalViem", 3 | "displayName": "ModalViem" 4 | } 5 | -------------------------------------------------------------------------------- /dapps/ModalViem/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | plugins: [['module:react-native-dotenv']], 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/ModalViem/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './src/App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : RCTAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon@2x.png -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon@3x.png -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/ModalViem/ios/ModalViem/Images.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dapps/ModalViem/ios/ModalViem/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /dapps/ModalViem/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /dapps/ModalViem/metro.config.js: -------------------------------------------------------------------------------- 1 | const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config'); 2 | 3 | /** 4 | * Metro configuration 5 | * https://facebook.github.io/metro/docs/configuration 6 | * 7 | * @type {import('metro-config').MetroConfig} 8 | */ 9 | const config = {}; 10 | 11 | module.exports = mergeConfig(getDefaultConfig(__dirname), config); 12 | -------------------------------------------------------------------------------- /dapps/ModalViem/src/types/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@env' { 2 | export const ENV_PROJECT_ID: string; 3 | export const ENV_SENTRY_DSN: string; 4 | } 5 | -------------------------------------------------------------------------------- /dapps/ModalViem/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/react-native/tsconfig.json", 3 | "compilerOptions": { 4 | "typeRoots": ["./src/types"], 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dapps/W3MEthers/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /dapps/W3MEthers/.env.example: -------------------------------------------------------------------------------- 1 | ENV_PROJECT_ID='YOUR_PROJECT_ID' #Get it from https://cloud.reown.com/ -------------------------------------------------------------------------------- /dapps/W3MEthers/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/W3MEthers/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /dapps/W3MEthers/.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18.20.0 2 | -------------------------------------------------------------------------------- /dapps/W3MEthers/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/debug.keystore -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | W3M Ethers 3 | 4 | -------------------------------------------------------------------------------- /dapps/W3MEthers/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /dapps/W3MEthers/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dapps/W3MEthers/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /dapps/W3MEthers/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Web3ModalEthers", 3 | "displayName": "Web3ModalEthers" 4 | } 5 | -------------------------------------------------------------------------------- /dapps/W3MEthers/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:@react-native/babel-preset'], 3 | plugins: [['module:react-native-dotenv']], 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/W3MEthers/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './src/App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /dapps/W3MEthers/ios/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | @interface AppDelegate : EXAppDelegateWrapper 6 | 7 | @end -------------------------------------------------------------------------------- /dapps/W3MEthers/ios/Web3ModalEthers.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /dapps/W3MEthers/ios/Web3ModalEthers.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /dapps/W3MEthers/ios/Web3ModalEthers/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dapps/W3MEthers/ios/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } -------------------------------------------------------------------------------- /dapps/W3MEthers/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /dapps/W3MEthers/metro.config.js: -------------------------------------------------------------------------------- 1 | const { getDefaultConfig } = require('expo/metro-config'); 2 | const { mergeConfig } = require('@react-native/metro-config'); 3 | 4 | /** 5 | * Metro configuration 6 | * https://facebook.github.io/metro/docs/configuration 7 | * 8 | * @type {import('metro-config').MetroConfig} 9 | */ 10 | const config = {}; 11 | 12 | module.exports = mergeConfig(getDefaultConfig(__dirname), config); 13 | -------------------------------------------------------------------------------- /dapps/W3MEthers/src/types/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@env' { 2 | export const ENV_PROJECT_ID: string; 3 | } 4 | -------------------------------------------------------------------------------- /dapps/W3MEthers/src/utils/misc.ts: -------------------------------------------------------------------------------- 1 | export const testAddress = '0x704457b418E9Fb723e1Bc0cB98106a6B8Cf87689'; 2 | -------------------------------------------------------------------------------- /dapps/W3MEthers/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@react-native/typescript-config/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/.env.example: -------------------------------------------------------------------------------- 1 | ENV_PROJECT_ID='YOUR_PROJECT_ID' #Get it from https://cloud.reown.com/ -------------------------------------------------------------------------------- /dapps/W3MEthers5/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/debug.keystore -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | W3M Ethers5 3 | 4 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MEthers5/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Web3ModalEthers5' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | includeBuild('../node_modules/@react-native/gradle-plugin') 5 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Web3ModalEthers5", 3 | "displayName": "Web3ModalEthers5" 4 | } 5 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:@react-native/babel-preset'], 3 | plugins: [['module:react-native-dotenv']], 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './src/App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/ios/Web3ModalEthers5.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/ios/Web3ModalEthers5.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/ios/Web3ModalEthers5/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : RCTAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/ios/Web3ModalEthers5/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/ios/Web3ModalEthers5/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/metro.config.js: -------------------------------------------------------------------------------- 1 | const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config'); 2 | 3 | /** 4 | * Metro configuration 5 | * https://facebook.github.io/metro/docs/configuration 6 | * 7 | * @type {import('metro-config').MetroConfig} 8 | */ 9 | const config = {}; 10 | 11 | module.exports = mergeConfig(getDefaultConfig(__dirname), config); 12 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/src/types/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@env' { 2 | export const ENV_PROJECT_ID: string; 3 | } 4 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/src/utils/misc.ts: -------------------------------------------------------------------------------- 1 | export const testAddress = '0x704457b418E9Fb723e1Bc0cB98106a6B8Cf87689'; 2 | -------------------------------------------------------------------------------- /dapps/W3MEthers5/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@react-native/typescript-config/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/.env.example: -------------------------------------------------------------------------------- 1 | # create .env.debug, env.internal, env.production files 2 | 3 | ENV_PROJECT_ID='YOUR_PROJECT_ID' 4 | ENV_SENTRY_DSN='' 5 | 6 | # for android builds. for iOS check xcode.env file 7 | SENTRY_DISABLE_AUTO_UPLOAD=true 8 | 9 | # debug, internal, production 10 | ENV_SENTRY_TAG='debug' 11 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | 3 | yarnPath: .yarn/releases/yarn-3.6.4.cjs 4 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/debug.keystore.mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/debug.keystore.mock -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/ic_launcher-playstore.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/ic_launcher-playstore.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/drawable-hdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/drawable-hdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/drawable-mdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/drawable-mdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/drawable-xhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/drawable-xhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/drawable-xxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/drawable-xxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/drawable-xxxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/drawable-xxxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | #D3D7EE 3 | 4 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #EDF1FF 4 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RN AppKit 3 | 4 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dapps/W3MWagmi/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "W3MWagmi", 3 | "slug": "w3m-wagmi-react-native", 4 | "plugins": [ 5 | [ 6 | "@sentry/react-native/expo", 7 | { 8 | "url": "https://sentry.io/", 9 | "note": "Use SENTRY_AUTH_TOKEN env to authenticate with Sentry.", 10 | "project": "w3m-wagmi-react-native", 11 | "organization": "walletconnect" 12 | } 13 | ] 14 | ] 15 | } -------------------------------------------------------------------------------- /dapps/W3MWagmi/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './src/App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-60@2x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-60@2x~car.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-60@3x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-60@3x~car.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Debug.appiconset/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-60@2x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-60@2x~car.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-60@3x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-60@3x~car.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon-Internal.appiconset/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x~car.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x~car.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-ytm62g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-ytm62g.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-ytm62g@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-ytm62g@2x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-ytm62g@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-ytm62g@3x.png -------------------------------------------------------------------------------- /dapps/W3MWagmi/ios/W3MWagmi/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/metro.config.js: -------------------------------------------------------------------------------- 1 | const {getSentryExpoConfig} = require('@sentry/react-native/metro'); 2 | 3 | const config = getSentryExpoConfig(__dirname); 4 | 5 | module.exports = config; 6 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/scripts/copy-sample-files.sh: -------------------------------------------------------------------------------- 1 | //bash script that copies the mock files to the correct location 2 | 3 | cp .env.example .env.debug 4 | cp android/app/debug.keystore.mock android/app/debug.keystore 5 | cp android/secrets.properties.mock android/secrets.properties 6 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/scripts/copy-variant-files.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ "$1" == "debug" ]; then 4 | cp scripts/misc_debug.ts src/utils/misc.ts 5 | fi 6 | 7 | if [ "$1" == "internal" ]; then 8 | cp scripts/misc_internal.ts src/utils/misc.ts 9 | fi 10 | 11 | if [ "$1" == "production" ]; then 12 | cp scripts/misc_prod.ts src/utils/misc.ts 13 | fi -------------------------------------------------------------------------------- /dapps/W3MWagmi/src/hooks/useTheme.ts: -------------------------------------------------------------------------------- 1 | import {useColorScheme} from 'react-native'; 2 | import {DarkTheme, LightTheme} from '@/utils/ThemeUtil'; 3 | 4 | export function useTheme() { 5 | const scheme = useColorScheme(); 6 | const Theme = scheme === 'dark' ? DarkTheme : LightTheme; 7 | 8 | return Theme; 9 | } 10 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/src/screens/Settings/styles.ts: -------------------------------------------------------------------------------- 1 | import {StyleSheet} from 'react-native'; 2 | 3 | export default StyleSheet.create({ 4 | container: { 5 | flex: 1, 6 | }, 7 | content: { 8 | paddingHorizontal: 16, 9 | }, 10 | subtitle: { 11 | fontSize: 18, 12 | fontWeight: 'bold', 13 | marginVertical: 16, 14 | }, 15 | sectionContainer: { 16 | rowGap: 8, 17 | }, 18 | }); 19 | -------------------------------------------------------------------------------- /dapps/W3MWagmi/src/types/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-native-config' { 2 | export interface NativeConfig { 3 | ENV_PROJECT_ID: string; 4 | ENV_SENTRY_DSN: string; 5 | ENV_SENTRY_TAG: string; 6 | } 7 | 8 | export const Config: NativeConfig; 9 | export default Config; 10 | } 11 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | itc_team_id("123564616") 2 | team_id("W5R8AG9K22") -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/.env.example: -------------------------------------------------------------------------------- 1 | # create .env.debug, env.internal, env.production files 2 | 3 | ENV_PROJECT_ID='39bc93c...' 4 | ENV_RELAY_URL='wss://relay.walletconnect.org' 5 | ENV_SENTRY_DSN='' 6 | 7 | # for android builds. for iOS check xcode.env file 8 | SENTRY_DISABLE_AUTO_UPLOAD=true 9 | 10 | # debug, internal, production 11 | ENV_SENTRY_TAG='debug' 12 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | rules: { 5 | 'react/react-in-jsx-scope': 'off', 6 | }, 7 | }; 8 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.6 2 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | 3 | yarnPath: .yarn/releases/yarn-3.6.4.cjs 4 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/debug.keystore.mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/debug.keystore.mock -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/ic_launcher-playstore.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/ic_launcher-playstore.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/internal/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/drawable-hdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/drawable-hdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/drawable-mdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/drawable-mdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/drawable-xhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/drawable-xhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/drawable-xxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/drawable-xxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/drawable-xxxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/drawable-xxxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | #F2E5FF 3 | 4 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RN Wallet 3 | 4 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'RNWeb3Wallet' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | includeBuild('../node_modules/@react-native/gradle-plugin') 5 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNWeb3Wallet" 3 | } 4 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/declarations.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.png'; 2 | declare module '*.webp'; 3 | 4 | declare module 'react-native-config' { 5 | export interface NativeConfig { 6 | ENV_PROJECT_ID: string; 7 | ENV_RELAY_URL: string; 8 | ENV_SENTRY_DSN: string; 9 | ENV_SENTRY_TAG: string; 10 | } 11 | 12 | export const Config: NativeConfig; 13 | export default Config; 14 | } 15 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : RCTAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-20~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-29~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-40~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-60@2x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-60@2x~car.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-60@3x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-60@3x~car.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon-83.5@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Debug.appiconset/AppIcon~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-20~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-29~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-40~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-60@2x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-60@2x~car.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-60@3x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-60@3x~car.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon-83.5@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon-Internal.appiconset/AppIcon~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-20@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-20@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-20~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x~car.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x~car.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon-83.5@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon@2x~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/AppIcon.appiconset/AppIcon~ipad.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-eobxv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-eobxv3.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-eobxv3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-eobxv3@2x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-eobxv3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo-eobxv3@3x.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/ios/RNWeb3Wallet/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/metro.config.js: -------------------------------------------------------------------------------- 1 | const {getDefaultConfig} = require('@react-native/metro-config'); 2 | const { withSentryConfig } = require("@sentry/react-native/metro"); 3 | 4 | const config = getDefaultConfig(__dirname); 5 | module.exports = withSentryConfig(config); 6 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/polyfills.ts: -------------------------------------------------------------------------------- 1 | import 'react-native-gesture-handler'; 2 | import '@walletconnect/react-native-compat'; 3 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/react-native.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | project: { 3 | ios: {}, 4 | android: {}, // grouped into "project" 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/scripts/copy-variant-files.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ "$1" == "debug" ]; then 4 | cp scripts/misc_debug.ts src/utils/misc.ts 5 | fi 6 | 7 | if [ "$1" == "internal" ]; then 8 | cp scripts/misc_internal.ts src/utils/misc.ts 9 | fi 10 | 11 | if [ "$1" == "production" ]; then 12 | cp scripts/misc_prod.ts src/utils/misc.ts 13 | fi -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/VerifiedDomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/VerifiedDomain.png -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/arbitrum.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/arbitrum.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/aurora.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/aurora.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/avalanche.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/avalanche.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/base.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/base.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/binance.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/binance.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/celo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/celo.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/ethereum.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/ethereum.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/evmos.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/evmos.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/fantom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/fantom.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/filecoin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/filecoin.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/gnosis.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/gnosis.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/iotx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/iotx.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/metis.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/metis.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/moonbeam.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/moonbeam.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/moonriver.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/moonriver.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/optimism.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/optimism.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/polygon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/polygon.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/zksync.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/zksync.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/assets/chains/zora.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reown-com/react-native-examples/89c06e2b2c59edce19f2b66cd1cd471326ee81ef/wallets/rn_cli_wallet/src/assets/chains/zora.webp -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/constants/Storage.ts: -------------------------------------------------------------------------------- 1 | export const SYM_KEY_PREFIX = 'symkey:'; 2 | -------------------------------------------------------------------------------- /wallets/rn_cli_wallet/src/hooks/useTheme.ts: -------------------------------------------------------------------------------- 1 | import {useColorScheme} from 'react-native'; 2 | 3 | import {DarkTheme, LightTheme} from '@/utils/ThemeUtil'; 4 | 5 | export function useTheme() { 6 | const scheme = useColorScheme(); 7 | const Theme = scheme === 'dark' ? DarkTheme : LightTheme; 8 | 9 | return Theme; 10 | } 11 | --------------------------------------------------------------------------------