everscale-client-ruby 1.1.62 → 1.1.63

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: 2a2bab7f5d6d74b7d68602ecf6b77c0a999de5900dfa7ad4b02c812cd2eceb1e
4
- data.tar.gz: 47848c0c8c8cc1b44e8a6b24200f06fbf33bd91342448205a45c9cd9562bde0c
3
+ metadata.gz: 9dbc26200488873fe31f2b24aa622bbd36f2204e9564e78606b6f9e0c41ffbd8
4
+ data.tar.gz: 05db9abdd64c99d5fe4395550216229e6d64d3fa0bde339fa4a50e6f08a8fe9e
5
5
  SHA512:
6
- metadata.gz: 8b65048731697859466883fbd71fe0eefcabc812fb39464a14b9e403b04f6a94ad33fd42921c1d8a095a88f2f0780ef257cef119d70a7d189df3badced88c8c0
7
- data.tar.gz: 9125a9353c68f040e3e9122c69a6ebcbc6f0a21b06872439bfb776559e190b0b051e557164f481b0207ca55f63098c4a66031a00e07b546ae7ee05dd18355bd8
6
+ metadata.gz: 0b5f6eb1fc122801c939f0aaa0221b2249e9f55a3cd590ac8894108fa29e98ddd2e4a7a8772a9737987e4c615b81eee47484e4a533a4e789073779650a2c6198
7
+ data.tar.gz: e26806049ad9ff4092c99625286ac1d5ee05a5ae4b0d6f4200514215056b605e362ba499a99fbbf3886131cb5281626996eeb1b8cef0c0297908320d3642fd7a
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.39.0",
2
+ "version": "1.40.0",
3
3
  "modules": [
4
4
  {
5
5
  "name": "client",
@@ -254,6 +254,13 @@
254
254
  "value": "35",
255
255
  "summary": null,
256
256
  "description": null
257
+ },
258
+ {
259
+ "name": "InvalidData",
260
+ "type": "Number",
261
+ "value": "36",
262
+ "summary": null,
263
+ "description": null
257
264
  }
258
265
  ],
259
266
  "summary": null,
@@ -7126,6 +7133,47 @@
7126
7133
  ],
7127
7134
  "summary": null,
7128
7135
  "description": null
7136
+ },
7137
+ {
7138
+ "name": "ParamsOfGetSignatureData",
7139
+ "type": "Struct",
7140
+ "struct_fields": [
7141
+ {
7142
+ "name": "abi",
7143
+ "type": "Ref",
7144
+ "ref_name": "abi.Abi",
7145
+ "summary": "Contract ABI used to decode.",
7146
+ "description": null
7147
+ },
7148
+ {
7149
+ "name": "message",
7150
+ "type": "String",
7151
+ "summary": "Message BOC encoded in `base64`.",
7152
+ "description": null
7153
+ }
7154
+ ],
7155
+ "summary": null,
7156
+ "description": null
7157
+ },
7158
+ {
7159
+ "name": "ResultOfGetSignatureData",
7160
+ "type": "Struct",
7161
+ "struct_fields": [
7162
+ {
7163
+ "name": "signature",
7164
+ "type": "String",
7165
+ "summary": "Signature from the message in `hex`.",
7166
+ "description": null
7167
+ },
7168
+ {
7169
+ "name": "hash",
7170
+ "type": "String",
7171
+ "summary": "Hash to verify the signature in `base64`.",
7172
+ "description": null
7173
+ }
7174
+ ],
7175
+ "summary": null,
7176
+ "description": null
7129
7177
  }
7130
7178
  ],
7131
7179
  "functions": [
@@ -7698,6 +7746,44 @@
7698
7746
  ]
7699
7747
  },
7700
7748
  "errors": null
7749
+ },
7750
+ {
7751
+ "name": "get_signature_data",
7752
+ "summary": "Extracts signature from message body and calculates hash to verify the signature",
7753
+ "description": null,
7754
+ "params": [
7755
+ {
7756
+ "name": "context",
7757
+ "type": "Generic",
7758
+ "generic_name": "Arc",
7759
+ "generic_args": [
7760
+ {
7761
+ "type": "Ref",
7762
+ "ref_name": "ClientContext"
7763
+ }
7764
+ ],
7765
+ "summary": null,
7766
+ "description": null
7767
+ },
7768
+ {
7769
+ "name": "params",
7770
+ "type": "Ref",
7771
+ "ref_name": "abi.ParamsOfGetSignatureData",
7772
+ "summary": null,
7773
+ "description": null
7774
+ }
7775
+ ],
7776
+ "result": {
7777
+ "type": "Generic",
7778
+ "generic_name": "ClientResult",
7779
+ "generic_args": [
7780
+ {
7781
+ "type": "Ref",
7782
+ "ref_name": "abi.ResultOfGetSignatureData"
7783
+ }
7784
+ ]
7785
+ },
7786
+ "errors": null
7701
7787
  }
7702
7788
  ]
7703
7789
  },
@@ -302,6 +302,22 @@ module TonClient
302
302
  TonBinding.send_request_sync(context: context, method_name: full_method_name(MODULE, __method__.to_s).sub(/_sync$/, ''), payload: payload)
303
303
  end
304
304
 
305
+ # INPUT: ParamsOfGetSignatureData
306
+ # abi: Value - # # Contract ABI used to decode.
307
+ # message: String - # # Message BOC encoded in `base64`.
308
+ # RESPONSE: ResultOfGetSignatureData
309
+ # signature: String - # # Signature from the message in `hex`.
310
+ # hash: String - # # Hash to verify the signature in `base64`.
311
+ # Async
312
+ def get_signature_data(payload, &block)
313
+ TonBinding.requestLibrary(context: context, request_id: request_id, requests: requests, monitor: monitor, method_name: full_method_name(MODULE, __method__.to_s), payload: payload, &block)
314
+ end
315
+
316
+ # Sync
317
+ def get_signature_data_sync(payload)
318
+ TonBinding.send_request_sync(context: context, method_name: full_method_name(MODULE, __method__.to_s).sub(/_sync$/, ''), payload: payload)
319
+ end
320
+
305
321
  end
306
322
  end
307
323
 
@@ -1,4 +1,4 @@
1
1
  module TonClient
2
- VERSION = "1.1.62"
2
+ VERSION = "1.1.63"
3
3
  end
4
4
 
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.62
4
+ version: 1.1.63
5
5
  platform: ruby
6
6
  authors:
7
7
  - nerzh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-09 00:00:00.000000000 Z
11
+ date: 2023-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi