everscale-client-ruby 1.1.29 → 1.1.30
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/lib/code_generator/api.json +1 -1
- data/lib/code_generator/code_generator.rb +12 -12
- data/lib/everscale-client-ruby/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dff8003d58eca06a67fb2f2f228ed504d5e5e30f4861d913fe76a10e9f27f3bc
|
|
4
|
+
data.tar.gz: 5345852a75f28aed1c8be11f938e38112fee49e7058c29a8b03ff653cf8945bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 715525bcbfe42f0562edfc3624be875703cc73bca022ad47ea4e7fb3af8a433874fbb4bad3901d496d442dcc61dac9686123ef32291de5932036e11ef434a10a
|
|
7
|
+
data.tar.gz: f719dcaf7a6672ae39283b32528f4019e4c0f7eef77903ea46b30fcadf0825c68c9acc27b5effb41ac84a80230a9d9d91bf337255091a5782f9c352659d77c58
|
data/lib/code_generator/api.json
CHANGED
|
@@ -59,13 +59,13 @@ gem install ton-client-ruby
|
|
|
59
59
|
Install TON-SDK
|
|
60
60
|
```bash
|
|
61
61
|
ton-client-ruby setup
|
|
62
|
-
# result - path to dylib file for
|
|
62
|
+
# result - path to dylib file for everscale-client-ruby configuration
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
### Manual build FreeTON SDK
|
|
66
66
|
0. Install Rust to your OS
|
|
67
|
-
1. git clone https://github.com/tonlabs/
|
|
68
|
-
2. cd ./
|
|
67
|
+
1. git clone https://github.com/tonlabs/ever-sdk
|
|
68
|
+
2. cd ./ever-sdk
|
|
69
69
|
3. cargo update
|
|
70
70
|
4. cargo build --release
|
|
71
71
|
|
|
@@ -73,11 +73,11 @@ ton-client-ruby setup
|
|
|
73
73
|
|
|
74
74
|
```ruby
|
|
75
75
|
# For MAcOS
|
|
76
|
-
TonClient.configure { |config| config.ffi_lib(./
|
|
76
|
+
TonClient.configure { |config| config.ffi_lib(./ever-sdk/target/release/libton_client.dylib) }
|
|
77
77
|
# For Linux
|
|
78
|
-
# TonClient.configure { |config| config.ffi_lib(./
|
|
78
|
+
# TonClient.configure { |config| config.ffi_lib(./ever-sdk/target/release/libton_client.so) }
|
|
79
79
|
|
|
80
|
-
client = TonClient.create(config: {network: {
|
|
80
|
+
client = TonClient.create(config: {network: {endpoints: ["https://eri01.net.everos.dev", "https://rbx01.net.everos.dev"]}})
|
|
81
81
|
|
|
82
82
|
# All methods are asynchronous
|
|
83
83
|
|
|
@@ -148,7 +148,7 @@ end
|
|
|
148
148
|
|
|
149
149
|
example for NodeSE
|
|
150
150
|
```
|
|
151
|
-
spec_ffi=./
|
|
151
|
+
spec_ffi=./ever-sdk/target/release/libton_client.dylib
|
|
152
152
|
server_address=http://localhost:80
|
|
153
153
|
giver_abi_name=GiverNodeSE
|
|
154
154
|
giver_amount=10000000000
|
|
@@ -167,21 +167,21 @@ giver_amount=10000000000
|
|
|
167
167
|
|
|
168
168
|
\n## Update\n\n
|
|
169
169
|
```\n
|
|
170
|
-
|
|
170
|
+
everscale-client-ruby update\n
|
|
171
171
|
```\n\n
|
|
172
172
|
or\n\n
|
|
173
173
|
```\n
|
|
174
|
-
curl https://raw.githubusercontent.com/tonlabs/
|
|
174
|
+
curl https://raw.githubusercontent.com/tonlabs/ever-sdk/master/tools/api.json > api.json\n\n
|
|
175
175
|
```\n\n
|
|
176
176
|
```\n
|
|
177
|
-
|
|
177
|
+
everscale-client-ruby update ./api.json\n
|
|
178
178
|
```\n
|
|
179
179
|
or\n\n
|
|
180
180
|
```\n
|
|
181
|
-
cd
|
|
181
|
+
cd everscale-client-ruby\n
|
|
182
182
|
```\n\n
|
|
183
183
|
```\n
|
|
184
|
-
./bin/
|
|
184
|
+
./bin/everscale-client-ruby update\n
|
|
185
185
|
```\n
|
|
186
186
|
}
|
|
187
187
|
content = checkContent(content)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: everscale-client-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.30
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- nerzh
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
158
|
version: '0'
|
|
159
159
|
requirements: []
|
|
160
|
-
rubygems_version: 3.3.
|
|
160
|
+
rubygems_version: 3.3.7
|
|
161
161
|
signing_key:
|
|
162
162
|
specification_version: 4
|
|
163
163
|
summary: This is gem everscale-client-ruby
|