From 2844da4fb40e480992c5433afe48bd75f4f84682 Mon Sep 17 00:00:00 2001 From: svojsu Date: Mon, 1 Jul 2024 23:25:48 +0300 Subject: [PATCH 1/2] add system_properties RPC method constant --- SubstrateSdk/Classes/Network/RPCMethod.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/SubstrateSdk/Classes/Network/RPCMethod.swift b/SubstrateSdk/Classes/Network/RPCMethod.swift index e5959e2..f83d884 100644 --- a/SubstrateSdk/Classes/Network/RPCMethod.swift +++ b/SubstrateSdk/Classes/Network/RPCMethod.swift @@ -20,4 +20,5 @@ public enum RPCMethod { public static let getExtrinsicNonce = "system_accountNextIndex" public static let healthCheck = "system_health" public static let runtimeVersionSubscribe = "state_subscribeRuntimeVersion" + public static let properties = "system_properties" } From aed4a40c282afba7c5a908f020bd4d8729e6ffbb Mon Sep 17 00:00:00 2001 From: svojsu Date: Mon, 1 Jul 2024 23:29:15 +0300 Subject: [PATCH 2/2] pod version bump to 3.2.1 --- Example/Podfile.lock | 4 ++-- SubstrateSdk.podspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 4a06695..f4b146c 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -25,7 +25,7 @@ PODS: - scrypt.c (0.1.1) - secp256k1.c (0.1.2) - Starscream (4.0.4) - - SubstrateSdk (3.2.0): + - SubstrateSdk (3.2.1): - BigInt (~> 5.0) - IrohaCrypto/ed25519 (~> 0.9.0) - IrohaCrypto/Scrypt (~> 0.9.0) @@ -87,7 +87,7 @@ SPEC CHECKSUMS: scrypt.c: b42ae06183251329d2b2c620c226fb541a4a3592 secp256k1.c: db47b726585d80f027423682eb369729e61b3b20 Starscream: 5178aed56b316f13fa3bc55694e583d35dd414d9 - SubstrateSdk: a4190b1ec093bd09490c7ff20e1e03e2d4c45760 + SubstrateSdk: fe20689ad3f1bc680318a338c9e7dcde53e9c36b SwiftLint: 4fa9579c63416865179bc416f0a92d55f009600d TweetNacl: 3abf4d1d2082b0114e7a67410e300892448951e6 xxHash-Swift: 30bd6a7507b3b7348a277c49b1cb6346c2905ec7 diff --git a/SubstrateSdk.podspec b/SubstrateSdk.podspec index 9e1fb1f..db66738 100644 --- a/SubstrateSdk.podspec +++ b/SubstrateSdk.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'SubstrateSdk' - s.version = '3.2.0' + s.version = '3.2.1' s.summary = 'Utility library that implements clients specific logic to interact with substrate based networks' s.homepage = 'https://github.com/nova-wallet/substrate-sdk-ios'