Skip to content

Commit 778df47

Browse files
committed
Update GDK to Release 0.75.1
1 parent 08d57bd commit 778df47

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

common/fetch_ios_binaries.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ ARM_TARBALL="gdk-iphone.tar.gz"
2626
ARM_SIM_TARBALL="gdk-iphone-sim.tar.gz"
2727
X86_SIM_TARBALL="gdk-iphone-sim-x86_64.tar.gz"
2828
# The version of gdk to fetch and its sha256 checksum for integrity checking
29-
TAGNAME="release_0.74.2"
29+
TAGNAME="release_0.75.1"
3030
ARM_URL="https://github.com/Blockstream/gdk/releases/download/${TAGNAME}/${ARM_TARBALL}"
3131
ARM_SIM_URL="https://github.com/Blockstream/gdk/releases/download/${TAGNAME}/${ARM_SIM_TARBALL}"
3232
X86_SIM_URL="https://github.com/Blockstream/gdk/releases/download/${TAGNAME}/${X86_SIM_TARBALL}"
33-
ARM_SHA256="542885d90a7ceec5b3262307f0cc2f7b7e20daba8ec6678bc51f816f231227d8"
34-
ARM_SIM_SHA256="4c27f100d4481945a98cc706a4dfc7dc66b6da93239578f6f557610c457486b9"
35-
X86_SIM_SHA256="9b2777b26ab8ffc35b6fd5a460c981502388a32450c9b00804221064af82c221"
33+
ARM_SHA256="c0a6b6c2ec91dc63f6b1d86c2f174a1d3f07b3e2a5c8d86e108168c33e95188f"
34+
ARM_SIM_SHA256="19d5a8e74fb9ae0f7bfa3ba410e7871b1509df6e829fb4b39b14a8090f8ab25f"
35+
X86_SIM_SHA256="7314fd10fb233e6228e178aece112612496fe33fb7b06669bad3ec2437e0a15f"
3636
VALIDATE_CHECKSUM=true
3737
COMMIT=master
3838
GCLOUD_URL="https://storage.googleapis.com/green-gdk-builds/gdk-"

common/src/commonMain/kotlin/com/blockstream/common/gdk/GdkSession.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,6 @@ class GdkSession constructor(
676676
proxy = applicationSettings.proxyUrl ?: "",
677677
spvEnabled = spvEnabled,
678678
spvMulti = spvMulti,
679-
discountFees = true, // Liquid Discount fees CT
680679
gapLimit = if(network.isSinglesig) applicationSettings.electrumServerGapLimit?.coerceAtLeast(1) else null,
681680
electrumTls = if(electrumUrl.isNotBlank()) applicationSettings.personalElectrumServerTls else true,
682681
electrumUrl = electrumUrl,

common/src/commonMain/kotlin/com/blockstream/common/gdk/data/Device.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ data class Device constructor(
1414
@SerialName("supports_low_r") val supportsLowR: Boolean,
1515
@SerialName("supports_host_unblinding") val supportsHostUnblinding: Boolean,
1616
@SerialName("supports_external_blinding") val supportsExternalBlinding: Boolean,
17+
@SerialName("supports_p2tr") val supportsP2tr: Boolean,
1718

1819
@Serializable(with = DeviceSupportsLiquidSerializer::class)
1920
@SerialName("supports_liquid") val supportsLiquid: DeviceSupportsLiquid,

common/src/commonMain/kotlin/com/blockstream/common/gdk/params/ConnectionParams.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ data class ConnectionParams constructor(
2121
@SerialName("spv_servers") val spvServers: List<String>? = null,
2222
@SerialName("blob_server_url") val blobServerUrl: String? = null,
2323
@SerialName("blob_server_onion_url") val blobServerOnionUrl: String? = null,
24-
@SerialName("gap_limit") val gapLimit: Int? = null,
25-
@SerialName("discount_fees") val discountFees: Boolean = false,
24+
@SerialName("gap_limit") val gapLimit: Int? = null
2625
) : GreenJson<ConnectionParams>() {
2726

2827
override fun encodeDefaultsValues() = false

compose/src/androidMain/kotlin/com/blockstream/compose/managers/DeviceConnectionManagerAndroid.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ class DeviceConnectionManagerAndroid constructor(
137137
supportsLowR = false,
138138
supportsHostUnblinding = false,
139139
supportsExternalBlinding = false,
140+
supportsP2tr = false,
140141
supportsLiquid = DeviceSupportsLiquid.None,
141142
supportsAntiExfilProtocol = DeviceSupportsAntiExfilProtocol.None
142143
)
@@ -309,6 +310,7 @@ class DeviceConnectionManagerAndroid constructor(
309310
supportsLowR = false,
310311
supportsHostUnblinding = false,
311312
supportsExternalBlinding = false,
313+
supportsP2tr = false,
312314
supportsLiquid = DeviceSupportsLiquid.Lite,
313315
supportsAntiExfilProtocol = DeviceSupportsAntiExfilProtocol.None
314316
)

compose/src/commonMain/kotlin/com/blockstream/compose/managers/DeviceConnectionManager.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ open class DeviceConnectionManager(
8989
supportsHostUnblinding = true,
9090
supportsExternalBlinding = true,
9191
supportsLiquid = DeviceSupportsLiquid.Lite,
92+
supportsP2tr = false,
9293
supportsAntiExfilProtocol = DeviceSupportsAntiExfilProtocol.Optional
9394
)
9495

gdk/fetch_android_binaries.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ _EOF_
1818
}
1919

2020
# ----- Vars
21-
TAGNAME="release_0.74.2"
21+
TAGNAME="release_0.75.1"
2222
NAME="gdk-$TAGNAME"
2323
TARBALL="${NAME}.tar.gz"
2424
# The version of gdk to fetch and its sha256 checksum for integrity checking
2525
URL="https://github.com/Blockstream/gdk/releases/download/${TAGNAME}/${TARBALL}"
26-
SHA256="9e71718a7bf40197cb19ba4a59b56cd00bb4969ae1f7b5b756d35319bc6e6cc9"
26+
SHA256="1e41fcbaa6da3cae965bccc0e61a78b8f3da86c43f26eaaa5ac9bf89bb7a894a"
2727
VALIDATE_CHECKSUM=true
2828
COMMIT=false
2929
GCLOUD_URL="https://storage.googleapis.com/green-gdk-builds/gdk-"

gdk/prepare_gdk_clang.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ fi
77
echo ${JAVA_HOME:?}
88
echo ${ANDROID_NDK:?}
99

10-
TAGNAME="release_0.74.2"
10+
TAGNAME="release_0.75.1"
1111

1212
if [ -d gdk ]; then
1313
cd gdk

0 commit comments

Comments
 (0)