react-native-neural-wallet-lib 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/LICENSE +20 -0
  2. package/NeuralWalletLib.podspec +44 -0
  3. package/README.md +27 -0
  4. package/android/CMakeLists.txt +76 -0
  5. package/android/build.gradle +143 -0
  6. package/android/cpp-adapter.cpp +63 -0
  7. package/android/gradle.properties +5 -0
  8. package/android/src/main/AndroidManifest.xml +5 -0
  9. package/android/src/main/java/com/neuralwalletlib/NeuralWalletLibModule.kt +43 -0
  10. package/android/src/main/java/com/neuralwalletlib/NeuralWalletLibPackage.kt +34 -0
  11. package/android/src/main/jniLibs/arm64-v8a/libwallet.a +0 -0
  12. package/android/src/main/jniLibs/armeabi-v7a/libwallet.a +0 -0
  13. package/android/src/main/jniLibs/x86/libwallet.a +0 -0
  14. package/android/src/main/jniLibs/x86_64/libwallet.a +0 -0
  15. package/cpp/generated/wallet.cpp +1814 -0
  16. package/cpp/generated/wallet.hpp +77 -0
  17. package/cpp/react-native-neural-wallet-lib.cpp +16 -0
  18. package/cpp/react-native-neural-wallet-lib.h +15 -0
  19. package/ios/NeuralWalletLib.h +16 -0
  20. package/ios/NeuralWalletLib.mm +66 -0
  21. package/lib/module/NativeNeuralWalletLib.js +7 -0
  22. package/lib/module/NativeNeuralWalletLib.js.map +1 -0
  23. package/lib/module/generated/wallet-ffi.js +43 -0
  24. package/lib/module/generated/wallet-ffi.js.map +1 -0
  25. package/lib/module/generated/wallet.js +219 -0
  26. package/lib/module/generated/wallet.js.map +1 -0
  27. package/lib/module/index.js +43 -0
  28. package/lib/module/index.js.map +1 -0
  29. package/lib/module/package.json +1 -0
  30. package/lib/typescript/package.json +1 -0
  31. package/lib/typescript/src/NativeNeuralWalletLib.d.ts +8 -0
  32. package/lib/typescript/src/NativeNeuralWalletLib.d.ts.map +1 -0
  33. package/lib/typescript/src/generated/wallet-ffi.d.ts +84 -0
  34. package/lib/typescript/src/generated/wallet-ffi.d.ts.map +1 -0
  35. package/lib/typescript/src/generated/wallet.d.ts +166 -0
  36. package/lib/typescript/src/generated/wallet.d.ts.map +1 -0
  37. package/lib/typescript/src/index.d.ts +8 -0
  38. package/lib/typescript/src/index.d.ts.map +1 -0
  39. package/package.json +169 -0
  40. package/src/NativeNeuralWalletLib.ts +10 -0
  41. package/src/generated/wallet-ffi.ts +197 -0
  42. package/src/generated/wallet.ts +360 -0
  43. package/src/index.tsx +41 -0
package/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 wu zhongxin
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is
9
+ furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ SOFTWARE.
@@ -0,0 +1,44 @@
1
+ # Generated by uniffi-bindgen-react-native
2
+ require "json"
3
+
4
+ package = JSON.parse(File.read(File.join(__dir__, "package.json")))
5
+ folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
6
+
7
+ Pod::Spec.new do |s|
8
+ s.name = "NeuralWalletLib"
9
+ s.version = package["version"]
10
+ s.summary = package["description"]
11
+ s.homepage = package["homepage"]
12
+ s.license = package["license"]
13
+ s.authors = package["author"]
14
+
15
+ s.platforms = { :ios => min_ios_version_supported }
16
+ s.source = { :git => "https://github.com/nerverwind/neural-wallet-lib.git", :tag => "#{s.version}" }
17
+
18
+ s.source_files = "ios/**/*.{h,m,mm,swift}", "ios/generated/**/*.{h,m,mm}", "cpp/**/*.{hpp,cpp,c,h}", "cpp/generated/**/*.{hpp,cpp,c,h}"
19
+ s.vendored_frameworks = "NeuralWalletLibFramework.xcframework"
20
+ s.dependency "uniffi-bindgen-react-native", "0.29.3-0"
21
+
22
+ # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
23
+ # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
24
+ if respond_to?(:install_modules_dependencies, true)
25
+ install_modules_dependencies(s)
26
+ else
27
+ s.dependency "React-Core"
28
+
29
+ # Don't install the dependencies when we run `pod install` in the old architecture.
30
+ if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
31
+ s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
32
+ s.pod_target_xcconfig = {
33
+ "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
34
+ "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
35
+ "CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
36
+ }
37
+ s.dependency "React-Codegen"
38
+ s.dependency "RCT-Folly"
39
+ s.dependency "RCTRequired"
40
+ s.dependency "RCTTypeSafety"
41
+ s.dependency "ReactCommon/turbomodule/core"
42
+ end
43
+ end
44
+ end
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # react-native-neural-wallet-lib
2
+
3
+ Neural wallet native lib
4
+
5
+ ## alias ubrn
6
+
7
+ ```
8
+ alias ubrn=$(yarn uniffi-bindgen-react-native --path)
9
+ ```
10
+
11
+ ## yarn
12
+
13
+ ```
14
+ yarn workspace im.neuralwallet.wallet add eslint-config-airbnb-typescript -D
15
+ ```
16
+
17
+ ## start app metro
18
+
19
+ ```
20
+ yarn app start
21
+ ```
22
+
23
+ ## run app
24
+
25
+ ```
26
+ npm run ios -- --mode="Debug" --simulator="iPhone 16 Pro"
27
+ ```
@@ -0,0 +1,76 @@
1
+ # Generated by uniffi-bindgen-react-native
2
+ cmake_minimum_required(VERSION 3.9.0)
3
+ project(NeuralWalletLib)
4
+
5
+ set (CMAKE_VERBOSE_MAKEFILE ON)
6
+ set (CMAKE_CXX_STANDARD 17)
7
+
8
+ # Resolve the path to the uniffi-bindgen-react-native package
9
+ execute_process(
10
+ COMMAND node -p "require.resolve('uniffi-bindgen-react-native/package.json')"
11
+ OUTPUT_VARIABLE UNIFFI_BINDGEN_PATH
12
+ OUTPUT_STRIP_TRAILING_WHITESPACE
13
+ )
14
+ # Get the directory; get_filename_component and cmake_path will normalize
15
+ # paths with Windows path separators.
16
+ get_filename_component(UNIFFI_BINDGEN_PATH "${UNIFFI_BINDGEN_PATH}" DIRECTORY)
17
+
18
+ # Specifies a path to native header files.
19
+ include_directories(
20
+ ../cpp
21
+ ../cpp/generated
22
+
23
+ ${UNIFFI_BINDGEN_PATH}/cpp/includes
24
+ )
25
+
26
+ add_library(react-native-neural-wallet-lib SHARED
27
+ ../cpp/react-native-neural-wallet-lib.cpp
28
+ ../cpp/generated/wallet.cpp
29
+ cpp-adapter.cpp
30
+ )
31
+
32
+ # Set C++ compiler flags
33
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2")
34
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fexceptions")
35
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -frtti")
36
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstack-protector-all")
37
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
38
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
39
+
40
+ cmake_path(
41
+ SET MY_RUST_LIB
42
+ ${CMAKE_SOURCE_DIR}/src/main/jniLibs/${ANDROID_ABI}/libwallet.a
43
+ NORMALIZE
44
+ )
45
+ add_library(my_rust_lib STATIC IMPORTED)
46
+ set_target_properties(my_rust_lib PROPERTIES IMPORTED_LOCATION ${MY_RUST_LIB})
47
+
48
+ # Add ReactAndroid libraries, being careful to account for different versions.
49
+ find_package(ReactAndroid REQUIRED CONFIG)
50
+ find_library(LOGCAT log)
51
+
52
+ # REACTNATIVE_MERGED_SO seems to be only be set in a build.gradle.kt file,
53
+ # which we don't use. Thus falling back to version number sniffing.
54
+ if (ReactAndroid_VERSION_MINOR GREATER_EQUAL 76)
55
+ set(REACTNATIVE_MERGED_SO true)
56
+ endif()
57
+
58
+ # https://github.com/react-native-community/discussions-and-proposals/discussions/816
59
+ # This if-then-else can be removed once this library does not support version below 0.76
60
+ if (REACTNATIVE_MERGED_SO)
61
+ target_link_libraries(react-native-neural-wallet-lib ReactAndroid::reactnative)
62
+ else()
63
+ target_link_libraries(react-native-neural-wallet-lib
64
+ ReactAndroid::turbomodulejsijni
65
+ ReactAndroid::react_nativemodule_core
66
+ )
67
+ endif()
68
+
69
+ find_package(fbjni REQUIRED CONFIG)
70
+ target_link_libraries(
71
+ react-native-neural-wallet-lib
72
+ fbjni::fbjni
73
+ ReactAndroid::jsi
74
+ ${LOGCAT}
75
+ my_rust_lib
76
+ )
@@ -0,0 +1,143 @@
1
+ // Generated by uniffi-bindgen-react-native
2
+
3
+ buildscript {
4
+ // Buildscript is evaluated before everything else so we can't use getExtOrDefault
5
+ def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["DummyLibForAndroid_kotlinVersion"]
6
+
7
+ repositories {
8
+ google()
9
+ mavenCentral()
10
+ }
11
+
12
+ dependencies {
13
+ classpath "com.android.tools.build:gradle:7.2.1"
14
+ // noinspection DifferentKotlinGradleVersion
15
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
16
+ }
17
+ }
18
+
19
+ def reactNativeArchitectures() {
20
+ def value = rootProject.getProperties().get("reactNativeArchitectures")
21
+ return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
22
+ }
23
+
24
+ def isNewArchitectureEnabled() {
25
+ return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true"
26
+ }
27
+
28
+ apply plugin: "com.android.library"
29
+ apply plugin: "kotlin-android"
30
+
31
+ if (isNewArchitectureEnabled()) {
32
+ apply plugin: "com.facebook.react"
33
+ }
34
+
35
+ def getExtOrDefault(name) {
36
+ return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties["NeuralWalletLib_" + name]
37
+ }
38
+
39
+ def getExtOrIntegerDefault(name) {
40
+ return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["NeuralWalletLib_" + name]).toInteger()
41
+ }
42
+
43
+ def supportsNamespace() {
44
+ def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')
45
+ def major = parsed[0].toInteger()
46
+ def minor = parsed[1].toInteger()
47
+
48
+ // Namespace support was added in 7.3.0
49
+ return (major == 7 && minor >= 3) || major >= 8
50
+ }
51
+
52
+ android {
53
+ if (supportsNamespace()) {
54
+ namespace "com.neuralwalletlib"
55
+
56
+ sourceSets {
57
+ main {
58
+ manifest.srcFile "src/main/AndroidManifestNew.xml"
59
+ }
60
+ }
61
+ }
62
+
63
+ ndkVersion getExtOrDefault("ndkVersion")
64
+ compileSdkVersion getExtOrIntegerDefault("compileSdkVersion")
65
+
66
+ defaultConfig {
67
+ minSdkVersion getExtOrIntegerDefault("minSdkVersion")
68
+ targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
69
+ buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
70
+
71
+ buildFeatures {
72
+ prefab true
73
+ }
74
+ externalNativeBuild {
75
+ cmake {
76
+ arguments '-DANDROID_STL=c++_shared'
77
+ abiFilters (*reactNativeArchitectures())
78
+ }
79
+ }
80
+ ndk {
81
+ abiFilters "arm64-v8a", "armeabi-v7a", "x86", "x86_64"
82
+ }
83
+ }
84
+
85
+ externalNativeBuild {
86
+ cmake {
87
+ path "CMakeLists.txt"
88
+ }
89
+ }
90
+
91
+ buildFeatures {
92
+ buildConfig true
93
+ }
94
+
95
+ buildTypes {
96
+ release {
97
+ minifyEnabled false
98
+ }
99
+ }
100
+
101
+ lintOptions {
102
+ disable "GradleCompatible"
103
+ }
104
+
105
+ compileOptions {
106
+ sourceCompatibility JavaVersion.VERSION_1_8
107
+ targetCompatibility JavaVersion.VERSION_1_8
108
+ }
109
+
110
+ sourceSets {
111
+ main {
112
+ if (isNewArchitectureEnabled()) {
113
+ java.srcDirs += [
114
+ "generated/java",
115
+ "generated/jni"
116
+ ]
117
+ }
118
+ }
119
+ }
120
+ }
121
+
122
+ repositories {
123
+ mavenCentral()
124
+ google()
125
+ }
126
+
127
+ def kotlin_version = getExtOrDefault("kotlinVersion")
128
+
129
+ dependencies {
130
+ // For < 0.71, this will be from the local maven repo
131
+ // For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
132
+ //noinspection GradleDynamicVersion
133
+ implementation "com.facebook.react:react-native:+"
134
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
135
+ }
136
+
137
+ if (isNewArchitectureEnabled()) {
138
+ react {
139
+ jsRootDir = file("../src/")
140
+ libraryName = "NeuralWalletLib"
141
+ codegenJavaPackageName = "com.neuralwalletlib"
142
+ }
143
+ }
@@ -0,0 +1,63 @@
1
+ // Generated by uniffi-bindgen-react-native
2
+ #include <jni.h>
3
+ #include <jsi/jsi.h>
4
+ #include <ReactCommon/CallInvokerHolder.h>
5
+ #include "react-native-neural-wallet-lib.h"
6
+
7
+ namespace jsi = facebook::jsi;
8
+ namespace react = facebook::react;
9
+
10
+ // Automated testing checks Java_com_neuralwalletlib_NeuralWalletLibModule and neuralwalletlib
11
+ // by comparing the whole line here.
12
+ /*
13
+ Java_com_neuralwalletlib_NeuralWalletLibModule_nativeMultiply(JNIEnv *env, jclass type, jdouble a, jdouble b) {
14
+ return neuralwalletlib::multiply(a, b);
15
+ }
16
+ */
17
+
18
+ // Installer coming from NeuralWalletLibModule
19
+ extern "C"
20
+ JNIEXPORT jboolean JNICALL
21
+ Java_com_neuralwalletlib_NeuralWalletLibModule_nativeInstallRustCrate(
22
+ JNIEnv *env,
23
+ jclass type,
24
+ jlong rtPtr,
25
+ jobject callInvokerHolderJavaObj
26
+ ) {
27
+ // https://github.com/realm/realm-js/blob/main/packages/realm/binding/android/src/main/cpp/io_realm_react_RealmReactModule.cpp#L122-L145
28
+ // React Native uses the fbjni library for handling JNI, which has the concept of "hybrid objects",
29
+ // which are Java objects containing a pointer to a C++ object. The CallInvokerHolder, which has the
30
+ // invokeAsync method we want access to, is one such hybrid object.
31
+ // Rather than reworking our code to use fbjni throughout, this code unpacks the C++ object from the Java
32
+ // object `callInvokerHolderJavaObj` manually, based on reverse engineering the fbjni code.
33
+
34
+ // 1. Get the Java object referred to by the mHybridData field of the Java holder object
35
+ auto callInvokerHolderClass = env->GetObjectClass(callInvokerHolderJavaObj);
36
+ auto hybridDataField = env->GetFieldID(callInvokerHolderClass, "mHybridData", "Lcom/facebook/jni/HybridData;");
37
+ auto hybridDataObj = env->GetObjectField(callInvokerHolderJavaObj, hybridDataField);
38
+
39
+ // 2. Get the destructor Java object referred to by the mDestructor field from the myHybridData Java object
40
+ auto hybridDataClass = env->FindClass("com/facebook/jni/HybridData");
41
+ auto destructorField =
42
+ env->GetFieldID(hybridDataClass, "mDestructor", "Lcom/facebook/jni/HybridData$Destructor;");
43
+ auto destructorObj = env->GetObjectField(hybridDataObj, destructorField);
44
+
45
+ // 3. Get the mNativePointer field from the mDestructor Java object
46
+ auto destructorClass = env->FindClass("com/facebook/jni/HybridData$Destructor");
47
+ auto nativePointerField = env->GetFieldID(destructorClass, "mNativePointer", "J");
48
+ auto nativePointerValue = env->GetLongField(destructorObj, nativePointerField);
49
+
50
+ // 4. Cast the mNativePointer back to its C++ type
51
+ auto nativePointer = reinterpret_cast<facebook::react::CallInvokerHolder*>(nativePointerValue);
52
+ auto jsCallInvoker = nativePointer->getCallInvoker();
53
+
54
+ auto runtime = reinterpret_cast<jsi::Runtime *>(rtPtr);
55
+ return neuralwalletlib::installRustCrate(*runtime, jsCallInvoker);
56
+ }
57
+
58
+ extern "C"
59
+ JNIEXPORT jboolean JNICALL
60
+ Java_com_neuralwalletlib_NeuralWalletLibModule_nativeCleanupRustCrate(JNIEnv *env, jclass type, jlong rtPtr) {
61
+ auto runtime = reinterpret_cast<jsi::Runtime *>(rtPtr);
62
+ return neuralwalletlib::cleanupRustCrate(*runtime);
63
+ }
@@ -0,0 +1,5 @@
1
+ NeuralWalletLib_kotlinVersion=2.0.21
2
+ NeuralWalletLib_minSdkVersion=24
3
+ NeuralWalletLib_targetSdkVersion=34
4
+ NeuralWalletLib_compileSdkVersion=35
5
+ NeuralWalletLib_ndkVersion=27.1.12297006
@@ -0,0 +1,5 @@
1
+
2
+ <!-- Generated by uniffi-bindgen-react-native -->
3
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
4
+ package="com.neuralwalletlib">
5
+ </manifest>
@@ -0,0 +1,43 @@
1
+ // Generated by uniffi-bindgen-react-native
2
+ package com.neuralwalletlib
3
+
4
+ import com.facebook.react.bridge.ReactApplicationContext
5
+ import com.facebook.react.module.annotations.ReactModule
6
+ import com.facebook.react.turbomodule.core.interfaces.CallInvokerHolder
7
+
8
+ @ReactModule(name = NeuralWalletLibModule.NAME)
9
+ class NeuralWalletLibModule(reactContext: ReactApplicationContext) :
10
+ NativeNeuralWalletLibSpec(reactContext) {
11
+
12
+ override fun getName(): String {
13
+ return NAME
14
+ }
15
+
16
+ // Two native methods implemented in cpp-adapter.cpp, and ultimately
17
+ // react-native-neural-wallet-lib.cpp
18
+
19
+ external fun nativeInstallRustCrate(runtimePointer: Long, callInvoker: CallInvokerHolder): Boolean
20
+ external fun nativeCleanupRustCrate(runtimePointer: Long): Boolean
21
+
22
+ override fun installRustCrate(): Boolean {
23
+ val context = this.reactApplicationContext
24
+ return nativeInstallRustCrate(
25
+ context.javaScriptContextHolder!!.get(),
26
+ context.jsCallInvokerHolder!!
27
+ )
28
+ }
29
+
30
+ override fun cleanupRustCrate(): Boolean {
31
+ return nativeCleanupRustCrate(
32
+ this.reactApplicationContext.javaScriptContextHolder!!.get()
33
+ )
34
+ }
35
+
36
+ companion object {
37
+ const val NAME = "NeuralWalletLib"
38
+
39
+ init {
40
+ System.loadLibrary("react-native-neural-wallet-lib")
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,34 @@
1
+ // Generated by uniffi-bindgen-react-native
2
+ package com.neuralwalletlib
3
+
4
+ import com.facebook.react.TurboReactPackage
5
+ import com.facebook.react.bridge.NativeModule
6
+ import com.facebook.react.bridge.ReactApplicationContext
7
+ import com.facebook.react.module.model.ReactModuleInfo
8
+ import com.facebook.react.module.model.ReactModuleInfoProvider
9
+ import java.util.HashMap
10
+
11
+ class NeuralWalletLibPackage : TurboReactPackage() {
12
+ override fun getModule(name: String, reactContext: ReactApplicationContext): NativeModule? {
13
+ return if (name == NeuralWalletLibModule.NAME) {
14
+ NeuralWalletLibModule(reactContext)
15
+ } else {
16
+ null
17
+ }
18
+ }
19
+
20
+ override fun getReactModuleInfoProvider(): ReactModuleInfoProvider {
21
+ return ReactModuleInfoProvider {
22
+ val moduleInfos: MutableMap<String, ReactModuleInfo> = HashMap()
23
+ moduleInfos[NeuralWalletLibModule.NAME] = ReactModuleInfo(
24
+ NeuralWalletLibModule.NAME,
25
+ NeuralWalletLibModule.NAME,
26
+ false, // canOverrideExistingModule
27
+ false, // needsEagerInit
28
+ false, // isCxxModule
29
+ true // isTurboModule
30
+ )
31
+ moduleInfos
32
+ }
33
+ }
34
+ }