File tree Expand file tree Collapse file tree 8 files changed +12
-10
lines changed
src/commonMain/kotlin/com/blockstream/common/gdk
androidMain/kotlin/com/blockstream/compose/managers
commonMain/kotlin/com/blockstream/compose/managers Expand file tree Collapse file tree 8 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ ARM_TARBALL="gdk-iphone.tar.gz"
2626ARM_SIM_TARBALL=" gdk-iphone-sim.tar.gz"
2727X86_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 "
3030ARM_URL=" https://github.com/Blockstream/gdk/releases/download/${TAGNAME} /${ARM_TARBALL} "
3131ARM_SIM_URL=" https://github.com/Blockstream/gdk/releases/download/${TAGNAME} /${ARM_SIM_TARBALL} "
3232X86_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 "
3636VALIDATE_CHECKSUM=true
3737COMMIT=master
3838GCLOUD_URL=" https://storage.googleapis.com/green-gdk-builds/gdk-"
Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ _EOF_
1818}
1919
2020# ----- Vars
21- TAGNAME=" release_0.74.2 "
21+ TAGNAME=" release_0.75.1 "
2222NAME=" gdk-$TAGNAME "
2323TARBALL=" ${NAME} .tar.gz"
2424# The version of gdk to fetch and its sha256 checksum for integrity checking
2525URL=" https://github.com/Blockstream/gdk/releases/download/${TAGNAME} /${TARBALL} "
26- SHA256=" 9e71718a7bf40197cb19ba4a59b56cd00bb4969ae1f7b5b756d35319bc6e6cc9 "
26+ SHA256=" 1e41fcbaa6da3cae965bccc0e61a78b8f3da86c43f26eaaa5ac9bf89bb7a894a "
2727VALIDATE_CHECKSUM=true
2828COMMIT=false
2929GCLOUD_URL=" https://storage.googleapis.com/green-gdk-builds/gdk-"
Original file line number Diff line number Diff line change 77echo ${JAVA_HOME:? }
88echo ${ANDROID_NDK:? }
99
10- TAGNAME=" release_0.74.2 "
10+ TAGNAME=" release_0.75.1 "
1111
1212if [ -d gdk ]; then
1313 cd gdk
You can’t perform that action at this time.
0 commit comments