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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8505ce01575830f2e890e5c22c4791b48c937110ad1dc6f2b9d190de3badc380
4
- data.tar.gz: dfd3dcc6169961fa4f1f612c9b174972b6b227deba397e7ac3e3bc31dd510d52
3
+ metadata.gz: 4628284d59b45da1c738c5d06d810fed3ec130ed943ad936ba33ce8b137646ac
4
+ data.tar.gz: 56016ac85cce1f045b4155f9319a586d6a72a70e513513834fd1101c611f4ee7
5
5
  SHA512:
6
- metadata.gz: 44c4491a906aae4df0cdb1caa14c1e3678d0e131eb2af2c5d9b5a24fd3deb181e1eaa7ae05c3b5ba7a46e011b3a1ceb7a67e6b01a549ba0457e2efbbc7a62606
7
- data.tar.gz: f64f87a6370c6f6e95e6c65a0b5a1a09eb8cc8b71147b6bbe7ca65b7abd9ba57ef4cdf3359a858e836609427d3b5ebb73b5fb0667b36243a52eb131e569f893c
6
+ metadata.gz: 27278e85093709cbab1d1d792972cf33002dbce639ba8369076873ab8b4809c4f96ad7f5c9177bf13898d8155c011b5551baf37bfbaf671a2d2626a83a51062e
7
+ data.tar.gz: 91f3a8e4b4510a91a4268d0640f1354dd4c2d8a0bc3d90e6769077ac4aed70f0b46f1c02eae5a03cd818799a66da33e2f925cdab3ce13a48810165d1f891e45c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ 1.9.x
4
+ -----
5
+ * TON SDK version: 1.9.0
6
+ * remove TonSdk::NATIVE_LIB_VERSION, rename TonSdk::SDK_VERSION to TonSdk::NATIVE_SDK_VERSION
7
+ * the changes are according the ones of TON SDK
8
+
9
+
3
10
  1.7.x
4
11
  -----
5
12
  * TON SDK version: 1.7.0
data/README.md CHANGED
@@ -1,16 +1,15 @@
1
1
  # TON SDK client in Ruby and for Ruby
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/ton_sdk_client.png)](https://badge.fury.io/rb/ton_sdk_client)
4
- [![TON SDK version](https://img.shields.io/badge/TON%20SDK%20version-1.7.0-green)](https://github.com/tonlabs/TON-SDK/tree/1.7.0)
4
+ [![TON SDK version](https://img.shields.io/badge/TON%20SDK%20version-1.9.0-green)](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 3 types of versions:
8
+ Note that there're 2 types of versions:
9
9
  * `TonSdk::VERSION` - the version of the gem
10
- * `TonSdk::NATIVE_LIB_VERSION` - the version of native library (dll, dylib, so) shipped with SDK
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::NATIVE_LIB_VERSION`
187
+ * TON client native library: `TonSdk::NATIVE_SDK_VERSION`
189
188
 
190
189
 
191
190
  ## References
@@ -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
@@ -1,5 +1,4 @@
1
1
  module TonSdk
2
- VERSION = "1.7.1"
3
- NATIVE_LIB_VERSION = "1.7.0"
4
- SDK_VERSION = "1.7.0"
2
+ VERSION = "1.9.0"
3
+ NATIVE_SDK_VERSION = "1.9.0"
5
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.7.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-03-25 00:00:00.000000000 Z
11
+ date: 2021-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi