ton_sdk_client 1.25.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -2
- data/README.md +1 -1
- data/lib/ton_sdk_client/proofs.rb +14 -0
- data/lib/ton_sdk_client/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6089c778489c542c5be6b2f08aaa25b658b0de1bc82cea166a36fe6005e6430e
|
|
4
|
+
data.tar.gz: 05511b5132c85588c2f2d9c9c26fc1681fa08ebecbf4445f7d4171ae997e9fc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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`
|
|
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`
|
|
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
|
[](https://rubygems.org/gems/ton_sdk_client)
|
|
4
|
-
[](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
|
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.
|
|
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
|
+
date: 2021-11-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|