Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
compileSdkVersion = 35
targetSdkVersion = 35
ndkVersion = "27.1.12297006"
kotlinVersion = "2.0.21"
kotlinVersion = "2.3.20" // Required by zcash-android-sdk >= 2.4.8 (Kotlin 2.3 metadata)
}
repositories {
google()
Expand All @@ -19,7 +19,7 @@ buildscript {
dependencies {
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")

// Edge additions:
classpath 'com.google.gms:google-services:4.3.14'
Expand Down
4 changes: 2 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1774,7 +1774,7 @@ PODS:
- react-native-zano (0.2.8):
- OpenSSL-Universal
- React-Core
- react-native-zcash (0.10.7):
- react-native-zcash (0.11.0):
- gRPC-Swift (~> 1.8)
- MnemonicSwift (~> 2.2)
- React-Core
Expand Down Expand Up @@ -3416,7 +3416,7 @@ SPEC CHECKSUMS:
react-native-safe-area-context: 83e0ac3d023997de1c2e035af907cc4dc05f718c
react-native-webview: 69c118d283fccfbc4fca0cd680e036ff3bf188fa
react-native-zano: 55542cc969fbe349608b3f877575b9f3ce62c303
react-native-zcash: 76620c76bc6f6fb86e151900c56a34ef0f7244f3
react-native-zcash: 75730d2bd433a354f441103724b0811f537fbe35
React-NativeModulesApple: df8e5bc59e78ca3040ffbf41336889f3bd0fad68
React-oscompat: ef5df1c734f19b8003e149317d041b8ce1f7d29c
React-perflogger: 9a151e0b4c933c9205fd648c246506a83f31395d
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
"react-native-wheel-picker-android": "^2.0.6",
"react-native-worklets": "^0.6.1",
"react-native-zano": "^0.2.8",
"react-native-zcash": "^0.10.7",
"react-native-zcash": "^0.11.0",
"react-redux": "^8.1.1",
"redux": "^4.2.1",
"redux-thunk": "^2.3.0",
Expand Down
1 change: 1 addition & 0 deletions src/constants/WalletAndCurrencyConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -876,6 +876,7 @@ export const SPECIAL_CURRENCY_INFO: Record<string, SpecialCurrencyInfo> = {
noChangeMiningFee: true,
isImportKeySupported: true,
keysOnlyMode: isZecBroken(),
highPrecisionSyncRatioDisplay: true,
importKeyOptions: [
{
optionName: 'birthdayHeight',
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15789,10 +15789,10 @@ react-native-zano@^0.2.8:
dependencies:
cleaners "^0.3.17"

react-native-zcash@^0.10.7:
version "0.10.7"
resolved "https://registry.yarnpkg.com/react-native-zcash/-/react-native-zcash-0.10.7.tgz#ca93f7b5dd1d729f4ca1adae9baefb656eadb8c3"
integrity sha512-HS2OE+xH1bOBHynVWwGEU7XtbqtiOB2nDVSngl5On3rSb8mn6A6JqY+/Em91CRrmCYQHWXR05nfqhqp/RAMBtA==
react-native-zcash@^0.11.0:
version "0.11.0"
resolved "https://registry.yarnpkg.com/react-native-zcash/-/react-native-zcash-0.11.0.tgz#a992f5f697b8774518962fc67f0d11f78f5db86b"
integrity sha512-cvbaA9Kqh0woKy/mKeNswvrw3dRKR8zr5mWlLoYoCJNh00yWoucvx2mn3Yj9r6Yt7d1osRwP8i9jnAcERtX57w==
dependencies:
biggystring "^4.2.3"
rfc4648 "^1.3.0"
Expand Down
Loading