ton_sdk_client 1.7.1 → 1.9.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 +7 -0
- data/README.md +5 -6
- data/lib/ton_sdk_client/tvm.rb +5 -3
- data/lib/ton_sdk_client/version.rb +2 -3
- 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: 4628284d59b45da1c738c5d06d810fed3ec130ed943ad936ba33ce8b137646ac
|
4
|
+
data.tar.gz: 56016ac85cce1f045b4155f9319a586d6a72a70e513513834fd1101c611f4ee7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27278e85093709cbab1d1d792972cf33002dbce639ba8369076873ab8b4809c4f96ad7f5c9177bf13898d8155c011b5551baf37bfbaf671a2d2626a83a51062e
|
7
|
+
data.tar.gz: 91f3a8e4b4510a91a4268d0640f1354dd4c2d8a0bc3d90e6769077ac4aed70f0b46f1c02eae5a03cd818799a66da33e2f925cdab3ce13a48810165d1f891e45c
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,16 +1,15 @@
|
|
1
1
|
# TON SDK client in Ruby and for Ruby
|
2
2
|
|
3
3
|
[](https://badge.fury.io/rb/ton_sdk_client)
|
4
|
-
[](https://github.com/tonlabs/TON-SDK/tree/1.9.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
|
|
8
|
-
Note that there're
|
8
|
+
Note that there're 2 types of versions:
|
9
9
|
* `TonSdk::VERSION` - the version of the gem
|
10
|
-
* `TonSdk::
|
11
|
-
* `TonSdk::SDK_VERSION` - the version of SDK
|
10
|
+
* `TonSdk::NATIVE_SDK_VERSION` - the version of the original SDK
|
12
11
|
|
13
|
-
and they don't necessarily match each other.
|
12
|
+
and they don't necessarily have to match each other.
|
14
13
|
|
15
14
|
|
16
15
|
|
@@ -185,7 +184,7 @@ factorize
|
|
185
184
|
|
186
185
|
* MacOS Catalina 10.15.5
|
187
186
|
* Arch Linux x86_64
|
188
|
-
* TON client native library: `TonSdk::
|
187
|
+
* TON client native library: `TonSdk::NATIVE_SDK_VERSION`
|
189
188
|
|
190
189
|
|
191
190
|
## References
|
data/lib/ton_sdk_client/tvm.rb
CHANGED
@@ -141,13 +141,14 @@ module TonSdk
|
|
141
141
|
end
|
142
142
|
|
143
143
|
class ParamsOfRunGet
|
144
|
-
attr_reader :account, :function_name, :input, :execution_options
|
144
|
+
attr_reader :account, :function_name, :input, :execution_options, :tuple_list_as_array
|
145
145
|
|
146
|
-
def initialize(account:, function_name:, input: nil, execution_options: nil)
|
146
|
+
def initialize(account:, function_name:, input: nil, execution_options: nil, tuple_list_as_array: nil)
|
147
147
|
@account = account
|
148
148
|
@function_name = function_name
|
149
149
|
@input = input
|
150
150
|
@execution_options = execution_options
|
151
|
+
@tuple_list_as_array = tuple_list_as_array
|
151
152
|
end
|
152
153
|
|
153
154
|
def to_h
|
@@ -157,7 +158,8 @@ module TonSdk
|
|
157
158
|
account: @account,
|
158
159
|
function_name: @function_name,
|
159
160
|
input: @input,
|
160
|
-
execution_options: exe_opt_val
|
161
|
+
execution_options: exe_opt_val,
|
162
|
+
tuple_list_as_array: @tuple_list_as_array
|
161
163
|
}
|
162
164
|
end
|
163
165
|
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.9.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
|
+
date: 2021-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|