ton_sdk_client 1.25.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 539fe5e48336678680d4fc0a13c9f854d301c5cdd9bb3d58f4ce7b428948f29f
4
- data.tar.gz: 34a81f973ec7bd561c2606b9285852f1def1bbf1be234654db82c5d8d98232e1
3
+ metadata.gz: 6089c778489c542c5be6b2f08aaa25b658b0de1bc82cea166a36fe6005e6430e
4
+ data.tar.gz: 05511b5132c85588c2f2d9c9c26fc1681fa08ebecbf4445f7d4171ae997e9fc7
5
5
  SHA512:
6
- metadata.gz: b26e3dca9d5b62d0e595ab016d80e7cbb78749f236c456d19a302c140bc8220e78f945370acafbd0420ff5069c73d85813d04bb7c6255820fb8a668ee1ce140a
7
- data.tar.gz: e3d8636910463060f6ade2636a176524f138ad29f16b9330eff191fcf692689d8dacecbc8b7ae595b04e8f09d5ed51f68a4018d1f31d21def1e732d2146b70df
6
+ metadata.gz: a5287864732773d988a8a668e6a19a99d8c199bfbf59ddd913924c334771bcaf43b64ed1ed423ceb67270c5dfe1ad2a534cfb5251d2562981b2ff15351e9cc92
7
+ data.tar.gz: d058acfb7188d6e5c96a2b01294d90494138254ebfbf991f9ba97990c1b191cb10a0746a9247302bb610a6b42ce050af5b8e48cc12992c374c9ee30ab1d8b79d
data/CHANGELOG.md CHANGED
@@ -2,13 +2,17 @@
2
2
 
3
3
  all the changes are always according to the ones of the main TON SDK library; and on top on that, there may be additional ones
4
4
 
5
+ 1.26.0
6
+ -----
7
+ * Changes `1.26.0` https://github.com/tonlabs/TON-SDK/blob/master/CHANGELOG.md#1260--2021-11-25
8
+
5
9
  1.25.0
6
10
  -----
7
- * Changes `1.25.0` (https://github.com/tonlabs/TON-SDK/blob/master/CHANGELOG.md#1250--2021-11-08);
11
+ * Changes `1.25.0` https://github.com/tonlabs/TON-SDK/blob/master/CHANGELOG.md#1250--2021-11-08
8
12
 
9
13
  1.24.0
10
14
  -----
11
- * Changes `1.24.0` (https://github.com/tonlabs/TON-SDK/blob/master/CHANGELOG.md#1240--2021-10-18);
15
+ * Changes `1.24.0` https://github.com/tonlabs/TON-SDK/blob/master/CHANGELOG.md#1240--2021-10-18
12
16
  * **BREAKING CHANGE** All Params now require keyword arguments
13
17
 
14
18
  1.20.x
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # TON SDK client in Ruby and for Ruby
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/ton_sdk_client.svg)](https://rubygems.org/gems/ton_sdk_client)
4
- [![TON SDK version](https://img.shields.io/badge/TON%20SDK%20version-1.25.0-green)](https://github.com/tonlabs/TON-SDK/tree/1.25.0)
4
+ [![TON SDK version](https://img.shields.io/badge/TON%20SDK%20version-1.26.0-green)](https://github.com/tonlabs/TON-SDK/tree/1.26.0)
5
5
 
6
6
  Ruby gem-client bindings for [TON SDK](https://github.com/tonlabs/TON-SDK) which allows one to communicate with [FreeTON](https://freeton.org) blockchain in Ruby.
7
7
 
@@ -16,6 +16,8 @@ module TonSdk
16
16
 
17
17
  ParamsOfProofTransactionData = KwStruct.new(:transaction)
18
18
 
19
+ ParamsOfProofMessageData = KwStruct.new(:message)
20
+
19
21
  #
20
22
  # functions
21
23
  #
@@ -43,5 +45,17 @@ module TonSdk
43
45
  end
44
46
  end
45
47
  end
48
+
49
+ def self.proof_message_data(ctx, params)
50
+ Interop::request_to_native_lib(ctx, "proofs.proof_message_data", params) do |resp|
51
+ if resp.success?
52
+ yield NativeLibResponseResult.new(
53
+ result: ""
54
+ )
55
+ else
56
+ yield resp
57
+ end
58
+ end
59
+ end
46
60
  end
47
61
  end
@@ -1,4 +1,4 @@
1
1
  module TonSdk
2
- VERSION = "1.25.0"
3
- NATIVE_SDK_VERSION = "1.25.0"
2
+ VERSION = "1.26.0"
3
+ NATIVE_SDK_VERSION = "1.26.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ton_sdk_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Maslakov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-11 00:00:00.000000000 Z
11
+ date: 2021-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi